:root {
  --accent: #06b49a;
  --accent-dark: #04907c;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --bg-light: #f7f7f7;
  --footer-bg: #111111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header {
  background: var(--accent);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.header-icons {
  display: flex;
  gap: 10px;
}

.header-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: #ffffff;
  transition: background 0.2s ease;
}

.header-icon:hover {
  background: rgba(0, 0, 0, 0.25);
}

.header-icon svg,
.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  color: #ffffff;
  text-align: center;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 16px;
}

.hero h1,
.hero h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin: 0;
  letter-spacing: 2px;
}

.home-hero {
  min-height: 520px;
}

.home-hero img {
  filter: brightness(0.6);
}

.home-hero .hero-content h1 {
  color: var(--accent);
  text-shadow: rgb(255, 255, 255) 1px 1px 0px;
}

.page-hero img {
  filter: brightness(0.35);
}

.hero p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section.center {
  text-align: center;
}

.section h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 28px;
  font-size: 1.8rem;
}

.section p {
  margin-bottom: 18px;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.metric {
  text-align: center;
}

.metric h3 {
  margin: 0;
  font-size: 2.5rem;
  color: var(--accent);
}

.metric p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-block {
  position: relative;
  background: url('../img/ZIlhVlbqDEy38KYKAF3lyg_800.jpg') center/cover;
  padding: 120px 24px;
  text-align: center;
  color: #ffffff;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.cta-block h2,
.cta-block .button {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.list-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.9;
}

.gallery {
  display: grid;
  gap: 24px;
}

.gallery.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.gallery img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.gallery.uniform img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-section {
  background: var(--bg-light);
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.contact-card h2 {
  margin-top: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-card .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: grid;
  gap: 6px;
}

.contact-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.contact-item .value {
  font-weight: 600;
  line-height: 1.5;
}

.contact-item .value a {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.button.outline:hover {
  background: rgba(6, 180, 154, 0.12);
}

.footer {
  background: var(--footer-bg);
  color: #f0f0f0;
  padding: 34px 24px;
}

.footer .inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.footer small {
  color: #9f9f9f;
}

.footer a {
  color: #f0f0f0;
}

.footer-icons {
  display: flex;
  gap: 10px;
}

.footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.recaptcha-placeholder {
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.recaptcha-placeholder span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .site-header .inner {
    flex-direction: column;
    gap: 14px;
  }

  .main-nav ul {
    gap: 18px;
  }

  .hero {
    min-height: 260px;
  }

  .section {
    padding: 50px 20px;
  }
}

.main-nav a.active {
  border-bottom: 2px solid #ffffff;
  padding-bottom: 6px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.two-column img {
  width: 100%;
  border-radius: 4px;
}
