/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-deep:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --green-pale:   #B7E4C7;
  --cream:        #FAF8F0;
  --cream-dark:   #F0EDE0;
  --gold:         #D4A843;
  --gold-light:   #E8C96A;
  --text-dark:    #1A1A1A;
  --text-mid:     #3D3D3D;
  --text-light:   #6B6B6B;
  --white:        #FFFFFF;
  --serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.section-title--light { color: var(--white); }

/* ── Scroll Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}

.nav--scrolled {
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav__logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.nav__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu__link {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s var(--ease);
}

.mobile-menu__link:hover { color: var(--gold); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(30%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.95) 0%,
    rgba(27, 67, 50, 0.80) 50%,
    rgba(27, 67, 50, 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 64px;
  max-width: 680px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  position: relative;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__tag svg { flex-shrink: 0; }

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}

.btn--primary {
  background: var(--green-deep);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}

.btn--gold {
  background: var(--gold);
  color: var(--green-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

.btn--outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-deep);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 10px;
}

/* Floating stat cards */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  z-index: 3;
}

.stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) { animation-delay: -1s; margin-top: -20px; }
.stat-card:nth-child(3) { animation-delay: -2s; }

.stat-card__number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Services ───────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--cream);
}

.services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services__header p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12);
  border-color: rgba(27, 67, 50, 0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--green-deep);
}

.service-card:hover .service-card__icon svg { stroke: var(--gold); }

.service-card__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── About ──────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-stack {
  position: relative;
  height: 520px;
}

.about__image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 70%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 6px solid var(--white);
}

.about__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(212, 168, 67, 0.4);
  z-index: 2;
}

.about__accent-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}

.about__accent-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-deep);
}

.about__content { max-width: 480px; }

.about__content .section-title { margin-bottom: 24px; }

.about__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about__feature svg { flex-shrink: 0; color: var(--green-mid); }

/* ── Why Choose ─────────────────────────────────────── */
.why {
  padding: 120px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.05);
}

.why::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(64, 145, 108, 0.1);
}

.why__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.why__header p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.3);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(212, 168, 67, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon svg { stroke: var(--gold); }

.why-card__title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
}

.testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.testimonials__header p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__stars svg { color: var(--gold); }

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
  padding: 120px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__inner .section-title {
  margin-bottom: 20px;
}

.cta__text {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.cta__contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(27, 67, 50, 0.12);
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.cta__contact-item svg { color: var(--green-mid); flex-shrink: 0; }

.cta__contact-item a {
  color: var(--green-deep);
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

.cta__contact-item a:hover { color: var(--gold); }

/* ── Contact ────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info { max-width: 440px; }

.contact__info .section-title { margin-bottom: 20px; }

.contact__text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__details { display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg { stroke: var(--green-mid); }

.contact__detail-content { display: flex; flex-direction: column; gap: 4px; }

.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.contact__detail-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact__detail-value a {
  color: var(--green-deep);
  transition: color 0.3s var(--ease);
}

.contact__detail-value a:hover { color: var(--gold); }

.contact__hours {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px 28px;
}

.contact__hours-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact__hours-row:last-child { border-bottom: none; }

.contact__hours-day { color: var(--text-mid); }
.contact__hours-time { font-weight: 600; color: var(--text-dark); }

/* Form */
.contact__form-wrapper {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
}

.contact__form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.contact__form-sub {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-light); }

.form__textarea { resize: vertical; min-height: 120px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__submit {
  width: 100%;
  margin-top: 8px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form__success.show { display: block; }

.form__success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__success-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.form__success-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Map ────────────────────────────────────────────── */
.map {
  height: 400px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.6) contrast(1.1);
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand { max-width: 280px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.footer__social a:hover { background: var(--gold); }
.footer__social a:hover svg { stroke: var(--green-deep); }

.footer__col-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease);
}

.footer__link:hover { color: var(--gold); }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s var(--ease);
}

.footer__bottom-link:hover { color: var(--gold); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__stats {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .stat-card { min-width: 140px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__card { padding: 40px 28px; }
  .hero__headline { font-size: clamp(2rem, 8vw, 3rem); }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image-stack { height: 360px; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; max-width: 320px; }
  .cta__contact-row { flex-direction: column; align-items: center; gap: 16px; }
  .about__features { grid-template-columns: 1fr; }
  .contact__form-wrapper { padding: 24px; }
}
