/* ============================================================
   SJ LANDSCAPES — MAIN STYLESHEET
   Design System: Editorial Minimalism, Deep Forest + Warm Gold
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── GOOGLE FONTS loaded via <link> in HTML for parallel loading ── */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Brand colours */
  --forest:          #1A3A1A;
  --forest-light:    #2A5A2A;
  --sage:            #4A7C59;
  --gold:            #C9A84C;
  --gold-hover:      #B8922E;
  --gold-light:      #F5EDDA;

  /* Backgrounds */
  --bg-white:        #FFFFFF;
  --bg-parchment:    #F5F0E8;
  --bg-dark:         #1A3A1A;
  --bg-footer:       #111810;
  --overlay:         rgba(26, 58, 26, 0.72);

  /* Text */
  --text-dark:       #1C1C1C;
  --text-muted:      #6B7280;
  --text-light:      #A3B59D;
  --text-on-gold:    #1A1A00;
  --text-on-dark:    #FFFFFF;

  /* UI */
  --border:          #E2E8DC;
  --shadow-sm:       0 1px 3px rgba(26,58,26,0.08);
  --shadow-md:       0 4px 12px rgba(26,58,26,0.10);
  --shadow-lg:       0 8px 24px rgba(26,58,26,0.12);
  --shadow-xl:       0 16px 48px rgba(26,58,26,0.15);

  /* Radius */
  --radius-sm:       4px;
  --radius-md:       8px;
  --radius-lg:       12px;
  --radius-xl:       16px;

  /* Fonts */
  --font-heading:    'Outfit', system-ui, sans-serif;
  --font-body:       'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap:     96px;
  --section-gap-sm:  64px;
  --container:       1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── SECTION BASE ── */
.section { padding: var(--section-gap) 0; }
.section--parchment { background: var(--bg-parchment); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.section--dark .section-eyebrow { color: var(--gold); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 16px;
}
.section--dark .section-heading { color: #FFFFFF; }

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section--dark .section-subheading { color: var(--text-light); }

.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-subheading { margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  min-height: 52px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--text-on-gold);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: buttonShine 3.5s infinite;
  transform: skewX(-20deg);
}
@keyframes buttonShine {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}
.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.1);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: #FFFFFF;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Safety: always readable even before scroll triggers the solid state */
  background: linear-gradient(to bottom, rgba(26,58,26,0.55) 0%, transparent 100%);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--forest);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav__links a:hover { color: #FFFFFF; }
.nav__links a.active { color: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone:hover { color: #FFFFFF; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 1001; /* above the nav bar */
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px; /* push links below the nav bar height */
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: color 0.15s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn {
  width: calc(100% - 48px);
  max-width: 360px;
  text-align: center;
  justify-content: center;
  display: flex;
  margin-top: 8px;
}
.nav__mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: #FFFFFF;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    align-items: flex-start; /* start from top on mobile so headline doesn't fight the nav */
    height: 100svh;
    min-height: 560px;
    max-height: 800px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #1A3A1A; /* deep forest — shows instantly before video loads, no flash */
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}
/* Hide video on mobile — saves 15MB per visit, bg colour shows instead */
@media (max-width: 768px) {
  .hero__video { display: none; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 140px; /* Increased to give more room from nav */
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .hero__content {
    padding-top: 130px; /* clear the fixed nav + status bar on mobile */
    padding-bottom: 120px;
    width: 100%;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
/* Desktop shows full text, mobile shows compact badge */
.eyebrow--mobile { display: none; }
.eyebrow--desktop { display: inline; }
@media (max-width: 768px) {
  .eyebrow--desktop { display: none; }
  .eyebrow--mobile {
    display: inline-block;
    background: rgba(191,149,63,0.15);
    border: 1px solid rgba(191,149,63,0.4);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  /* Hide the decorative line on mobile when showing the pill */
  .hero__eyebrow::before { display: none; }
}
.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 900px; /* Increased to fill more width */
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 700px; /* Increased to fill more width */
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__reviews {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__stars {
  display: flex;
  gap: 2px;
}
.hero__stars span {
  color: var(--gold);
  font-size: 1rem;
}
.hero__review-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero__review-text strong { color: #FFFFFF; }
.hero__scroll {
  position: absolute;
  bottom: 12px; /* Even lower to fully clear all pills/badges */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 5;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 32px; /* Slightly shorter line to save vertical space */
  background: rgba(255,255,255,0.3);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}
@media (max-width: 768px) {
  .hero__scroll { display: none; }
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3x3 layout for 9 services (no orphans) */
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--forest-light);
}
.service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img { transform: scale(1.06); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,26,0.92) 0%, rgba(26,58,26,0.2) 55%, transparent 100%);
  transition: background 0.3s;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(26,58,26,0.97) 0%, rgba(26,58,26,0.6) 60%, rgba(26,58,26,0.2) 100%);
}
.service-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.service-card__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.service-card:hover .service-card__cta { opacity: 1; transform: translateY(0); }

/* Placeholder when no photo */
.service-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

/* ── WHY CHOOSE US ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-card {
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(26, 58, 26, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s, border-color 0.25s;
}
.pillar-card:hover {
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
  transform: translateY(-8px) scale(1.02);
  background: rgba(26, 58, 26, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}
.pillar-card__icon {
  width: 52px; height: 52px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-card__icon svg { width: 24px; height: 24px; color: var(--gold); }
.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.pillar-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--forest);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  display: none;
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--forest-light);
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 4/5; }
.gallery-item:nth-child(3) { aspect-ratio: 4/5; }
.gallery-item:nth-child(4) { aspect-ratio: 16/9; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,26,0.65);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg {
  width: 44px; height: 44px;
  color: #FFFFFF;
}

/* Placeholder */
.gallery-placeholder {
  width: 100%; height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
  line-height: 1;
}
.lightbox__close:hover { opacity: 1; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-card__quote {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__name {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.9rem;
}
.testimonial-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── SERVICE AREA ── */
.area-section { background: var(--bg-white); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-tag {
  background: var(--bg-parchment);
  border: 1px solid var(--border);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}
.area-map {
  background: var(--bg-parchment);
  border-radius: var(--radius-xl);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── CONTACT CTA SECTION ── */
.cta-section {
  background: var(--forest);
  padding: 96px 0;
  text-align: center;
}
.cta-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
  margin-inline: auto;
}
.cta-section__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
}
.cta-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__links a:hover { color: #FFFFFF; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}
.footer__contact-item a { transition: color 0.15s; }
.footer__contact-item a:hover { color: #FFFFFF; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { transition: color 0.15s; }
.footer__bottom a:hover { color: #FFFFFF; }

/* ── ABOUT PAGE ── */
.about-hero {
  padding-top: 148px;
  padding-bottom: 80px;
  background: var(--bg-parchment);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--forest-light);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-placeholder {
  width: 100%; height: 100%;
  min-height: 400px;
  background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.value-card__title {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card__title::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.value-card__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES PAGE ── */
.services-hero {
  padding-top: 148px;
  padding-bottom: 80px;
  background: var(--bg-parchment);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-full-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-white);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-full-card__image {
  aspect-ratio: 16/9;
  background: var(--forest-light);
  overflow: hidden;
}
.service-full-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-full-card:hover .service-full-card__image img { transform: scale(1.05); }
.service-full-card__body { padding: 28px 28px 32px; }
.service-full-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.service-full-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── GALLERY PAGE ── */
.gallery-hero {
  padding-top: 148px;
  padding-bottom: 80px;
  background: var(--bg-parchment);
}
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #FFFFFF;
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-full-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--forest-light);
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-full-item:hover img { transform: scale(1.05); }
.gallery-full-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,26,0.7);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  text-align: center;
  padding: 20px;
}
.gallery-full-item:hover .gallery-full-item__overlay { opacity: 1; }
.gallery-full-item__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}
.gallery-full-item__sub { font-size: 0.8rem; opacity: 0.8; }

/* ── CONTACT PAGE ── */
.contact-hero {
  padding-top: 148px;
  padding-bottom: 80px;
  background: var(--bg-parchment);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}
.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.contact-form p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,58,26,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--forest);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.contact-details { padding-top: 8px; }
.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 20px; height: 20px; color: var(--forest); }
.contact-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-item__value a { transition: color 0.15s; }
.contact-item__value a:hover { color: var(--sage); }
.response-note {
  background: var(--bg-parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 32px;
  line-height: 1.6;
}
.response-note strong { color: var(--forest); }

/* ── 404 PAGE ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-parchment);
  text-align: center;
  padding: 40px 24px;
}
.page-404__inner { max-width: 480px; }
.page-404__num {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  color: var(--forest);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -20px;
}
.page-404__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 14px;
}
.page-404__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 148px;
  padding-bottom: 72px;
  background: var(--bg-parchment);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 600px;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-forest { color: var(--forest); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── ANIMATIONS (initial hidden states for GSAP) ── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-gap: 72px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__phone span { display: none; }
  .nav__burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { height: auto; min-height: 100svh; }
  .hero__actions { flex-direction: column; align-items: flex-start; width: 100%; margin-bottom: 32px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .contact-form { padding: 28px 20px; }
  .mobile-fab { width: 56px; height: 56px; bottom: 20px; right: 20px; }
}

/* ── HERO VIDEO ── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-object-fit: cover;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  display: block;
}
@media (max-width: 768px) {
  .hero__video { display: none; }
  .hero__bg {
    background: #1A3A1A;
  }
}
/* Real garden photo — no video, no AI art */
.hero__video { display: none; }
.hero__bg {
  background-image: url('https://images.unsplash.com/photo-1416169607655-0c2b3ce2e1cc?w=1920&q=80');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}

/* ── UI INTEGRATION LOGO MARQUEE ── */
.marquee-section {
  padding: 40px 0;
  background: var(--bg-parchment);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
}
.marquee-content {
  display: flex;
  width: max-content;
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 80px;
  animation: scrollMarquee 25s linear infinite;
  padding-right: 80px;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(26,58,26,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-item svg { width: 24px; height: 24px; color: var(--gold); display: inline-block; }
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ── FAQ ACCORDION ── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-summary {
  padding: 24px 32px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { background: var(--bg-parchment); }
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s;
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-icon::before { transform: rotate(180deg); }
.faq-content {
  padding: 0 32px 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── MOBILE FAB ── */
.mobile-fab {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: #1A1A00;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  z-index: 9999;
  animation: pulseFab 2s infinite;
  transition: transform 0.2s, background 0.2s;
}
.mobile-fab:active { transform: scale(0.9); }
@keyframes pulseFab {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ── PAGE TRANSITION OVERLAY ── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-fab { display: flex; }
  .faq-summary { padding: 20px 24px; font-size: 1rem; }
  .faq-content { padding: 0 24px 24px; }
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--forest-light);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .back-to-top { bottom: 96px; left: 20px; width: 44px; height: 44px; }
}

/* ── HERO BADGES & ALIGNMENT ── */
.hero__badge-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center; /* Centers urgency pill relative to the trust pills */
  gap: 16px;
}

/* ── HERO TRUST SIGNALS ── */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0; /* Handled by .hero__badge-group gap */
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 32px;
  backdrop-filter: blur(4px);
}
.hero__trust svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 768px) {
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%; /* Stretch to fill group container */
  }
  .hero__trust span {
    justify-content: center;
    font-size: 0.78rem;
    padding: 10px 10px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    line-height: 1.3;
  }
  /* Third pill spans both columns */
  .hero__trust span:last-child {
    grid-column: 1 / -1;
  }
  .hero__badge-group {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ── HERO URGENCY BAR ── */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(20, 35, 20, 0.4); /* Darker green base for better readability */
  border: 1px solid rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(8px); /* Glassmorphism effect as requested */
  padding: 8px 16px;
  border-radius: 32px;
  margin-top: 0;
  animation: pulseUrgency 3s ease-in-out infinite;
}
@keyframes pulseUrgency {
  0%, 100% { border-color: rgba(201, 168, 76, 0.4); }
  50% { border-color: rgba(201, 168, 76, 0.8); }
}

/* ── SECTION MODIFIERS ── */
.section--process {
  background: var(--bg-parchment);
  background-image: 
    radial-gradient(var(--sage) 0.5px, transparent 0.5px),
    radial-gradient(var(--sage) 0.5px, var(--bg-parchment) 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  position: relative;
}
.section--process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 30, 0.1), transparent);
}

/* ── HOW IT WORKS / PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 16px;
}
.process-step {
  text-align: center;
  padding: 0 16px;
}
.process-step__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sage);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-step__icon {
  width: 72px;
  height: 72px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .process-step__icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.process-step__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin-inline: auto;
}
.process-step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}
.process-step__connector::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 2px;
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-step__connector {
    padding-top: 0;
    transform: rotate(90deg);
    height: 20px;
  }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
@media (max-width: 768px) {
  .whatsapp-float { display: none; }
}

/* ── STICKY MOBILE CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  transition: background 0.15s, transform 0.15s;
  color: #FFFFFF;
}
.mobile-cta-bar__btn--call { background: rgba(255,255,255,0.1); }
.mobile-cta-bar__btn--call:hover { background: rgba(255,255,255,0.2); }
.mobile-cta-bar__btn--whatsapp { background: #25D366; }
.mobile-cta-bar__btn--whatsapp:hover { background: #20b857; }
.mobile-cta-bar__btn--quote { background: var(--gold); color: var(--text-on-gold); }
.mobile-cta-bar__btn--quote:hover { background: var(--gold-hover); }
.mobile-cta-bar__btn:active { transform: scale(0.97); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ── DESKTOP SCALING (Premium Laptop Feel) ── */
@media (min-width: 1024px) {
  .nav {
    height: 88px;
  }
  .nav__links {
    gap: 48px;
  }
  .nav__links a {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .nav__phone {
    font-size: 0.95rem;
    gap: 8px;
  }
  .hero__content {
    padding-top: 160px; /* Even more room on premium screens */
    padding-bottom: 160px; /* Added more room at the bottom for pills */
  }
  .hero__heading {
    font-size: clamp(3rem, 7vw, 5.2rem);
    margin-bottom: 28px;
    max-width: 900px;
  }
  .hero__sub {
    font-size: 1.25rem;
    max-width: 750px; /* Increased width */
    margin-bottom: 48px;
  }
  .hero__trust {
    gap: 16px;
    margin-bottom: 0; /* Let group-badge gap handle it */
  }
  .hero__trust span {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
