/* ============================================================
   THE BALCONY PROJECT — Consolidated Stylesheet
   Brand: Luxury plant aesthetics, Colombo Sri Lanka
   Fonts: Playfair Display (headings), Poppins (body)
   Colors: Forest green, gold accent, warm neutrals

   ARCHITECTURE — single-pass cascade, no !important hacks
   1. Variables & Reset
   2. Base Typography & Utilities
   3. Buttons
   4. Header / Navigation (desktop-first, mobile override)
   5. Hero
   6. Sections (bespoke, services, plant doctor, portfolio, story,
      reviews, clients, CTA, gallery, contact, FAQ, care guide,
      about/founder, service detail, policy, lightbox)
   7. Footer
   8. Back-to-top & Scroll animations
   9. Responsive — ≤1100 px
  10. Responsive — ≤992 px (tablet)
  11. Responsive — ≤768 px (mobile)
  12. Responsive — ≤480 px (small phone)
   ============================================================ */

/* ==========================================================
   1. VARIABLES & RESET
   ========================================================== */
:root {
  /* Brand Colors */
  --green-dark: #2D5016;
  --green-mid: #4A7C23;
  --green-light: #6B8E23;
  --green-pale: #E8F0DE;
  --green-faint: #F4F8EF;
  --gold: #C5A253;
  --gold-light: #D4B86A;
  --gold-dark: #A68732;
  --black: #1A1A1A;
  --charcoal: #333333;
  --gray-dark: #555555;
  --gray-mid: #888888;
  --gray-light: #CCCCCC;
  --gray-pale: #F0F0F0;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F7F5F0;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Layout */
  --container-width: 1240px;
  --container-padding: 0 clamp(1rem, 2.4vw, 2rem);
  --section-padding: clamp(4rem, 7vw, 6rem) 0;

  /* Radii */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.15);
  --shadow-soft: 0 18px 60px rgba(22, 31, 20, 0.10);
  --shadow-lift: 0 24px 80px rgba(22, 31, 20, 0.14);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: #243126;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(197, 162, 83, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfcfa 0%, #f7f8f2 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold); }

/* ==========================================================
   2. BASE TYPOGRAPHY & UTILITIES
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.container {
  width: min(100%, var(--container-width));
  margin-inline: auto;
  padding: var(--container-padding);
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* Utilities */
.text-center { text-align: center; }
.text-gold  { color: var(--gold); }
.text-green { color: var(--green-dark); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  color: var(--gray-dark);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 0.8rem;
  position: relative;
}
.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 0.8rem;
  border-radius: 999px;
}
.text-center .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.section-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.gold-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0;
  border-radius: 999px;
}
.text-center .gold-divider {
  margin-left: auto;
  margin-right: auto;
}
.gold-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* Section CTA spacing (replaces inline margin-top) */
.section-cta {
  margin-top: 2.5rem;
}

/* ==========================================================
   3. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-align: center;
  min-height: 48px;
  box-shadow: 0 10px 30px rgba(34, 48, 28, 0.08);
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background-color: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background-color: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background-color: var(--green-pale);
  border-color: var(--green-pale);
  color: var(--green-dark);
}
.btn-full {
  width: 100%;
}

/* Contact page helpers */
.contact-follow-heading {
  margin-top: 2rem;
}
.contact-socials {
  margin-top: 0.5rem;
}
.contact-form-heading {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

/* ==========================================================
   4. HEADER / NAVIGATION
   ========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(27, 40, 29, 0.06);
  transition: all var(--transition-base);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container-width));
  margin-inline: auto;
  padding: 0.85rem clamp(1rem, 2.4vw, 2rem);
  min-height: 96px;
  gap: 1.5rem;
}

.site-logo img {
  height: clamp(72px, 7vw, 96px);
  width: auto;
  transition: height var(--transition-base);
}
.site-header.scrolled .site-logo img {
  height: 68px;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 0.15rem;
}
.desktop-nav ul li {
  position: relative;
}
.desktop-nav ul li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  background: rgba(45, 80, 22, 0.08);
  color: var(--green-dark);
}

/* Dropdown */
.desktop-nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: var(--shadow-lift);
  border-radius: 18px;
  padding: 0.6rem;
  /* No margin-top gap — use padding-top instead so hover isn't broken */
  padding-top: calc(0.6rem + 0.45rem);
  z-index: 100;
}
/* Invisible bridge so cursor can travel from parent to dropdown */
.desktop-nav ul li.has-dropdown {
  position: relative;
}
.desktop-nav ul li.has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: transparent;
}
.desktop-nav ul li:hover .dropdown {
  display: block;
}
.desktop-nav ul li .dropdown li a {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 400;
  white-space: normal;
  border-radius: 12px;
  min-height: 40px;
}
.desktop-nav ul li .dropdown li a:hover {
  background-color: var(--green-faint);
  color: var(--green-dark);
}

/* Hamburger toggle — hidden on desktop */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(45, 80, 22, 0.06);
  border: 1px solid rgba(45, 80, 22, 0.10);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobile-menu-btn:hover {
  background: rgba(45, 80, 22, 0.10);
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 4px 0;
  transition: all var(--transition-base);
  border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Navigation backdrop — handled by .mobile-drawer-overlay */

/* ==========================================================
   5. HERO
   ========================================================== */
.hero {
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding-top: 134px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: clip;
  background:
    radial-gradient(circle at 12% 20%, rgba(107, 142, 35, 0.12), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(197, 162, 83, 0.16), transparent 18%),
    linear-gradient(180deg, #fbfbf8 0%, #f4f7ee 100%);
}
.hero::before {
  content: '';
  position: absolute;
  right: -110px;
  top: 40px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 162, 83, 0.16) 0%, rgba(197, 162, 83, 0) 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: min(100%, var(--container-width));
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.4vw, 2rem);
}

.hero-content {
  z-index: 2;
  max-width: 620px;
}
.hero-content h1,
.hero-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--black);
  margin-bottom: 1.1rem;
  line-height: 1.08;
  font-style: italic;
}
.hero-content p {
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  color: var(--gray-dark);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-images {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  z-index: 2;
}
.hero-images img {
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.hero-images .hero-img-main {
  grid-row: 1 / 3;
  height: 100%;
  min-height: clamp(360px, 48vw, 600px);
}
.hero-images .hero-img-secondary {
  height: 100%;
  min-height: clamp(180px, 18vw, 240px);
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  opacity: 0.5;
  z-index: 2;
}

/* ==========================================================
   6. SECTIONS
   ========================================================== */

/* --- Bespoke / Intro --- */
.bespoke-section {
  padding: var(--section-padding);
  background: transparent;
}
.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.bespoke-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.bespoke-content h2 { margin-bottom: 1rem; }
.bespoke-content p {
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* --- Services Cards --- */
.services-section {
  padding: var(--section-padding);
  background: var(--green-faint);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-top: 2.5rem;
}
.service-card {
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius-md);
  border: 1px solid rgba(32, 50, 28, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: var(--green-faint);
}
.service-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}
.service-card-body h3 {
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  margin-bottom: 0.6rem;
  color: var(--black);
}
.service-card-body h3 a { color: var(--black); }
.service-card-body h3 a:hover { color: var(--green-dark); }
.service-card-body p {
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  color: var(--gray-dark);
  line-height: 1.75;
}

/* --- Plant Doctor Home Section --- */
.plant-doctor-home {
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(107, 142, 35, 0.10), transparent 20%),
    radial-gradient(circle at 86% 16%, rgba(197, 162, 83, 0.14), transparent 18%),
    linear-gradient(180deg, #f9faf6 0%, #edf3e5 100%);
}
.plant-doctor-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.plant-doctor-copy,
.plant-doctor-visual {
  min-width: 0;
}
.plant-doctor-copy .section-heading::after {
  margin-top: 1rem;
}
.plant-doctor-lead {
  max-width: 640px;
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
  line-height: 1.75;
}
.plant-doctor-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.plant-stat {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(45, 80, 22, 0.10);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
}
.plant-doctor-points {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.8rem;
}
.plant-point {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(32, 50, 28, 0.08);
  box-shadow: var(--shadow-sm);
}
.plant-point h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.plant-point p { margin-bottom: 0; }

.plant-doctor-mini-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 1rem;
}
.plant-mini-card {
  padding: 1.05rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(32, 50, 28, 0.08);
  box-shadow: var(--shadow-sm);
}
.plant-mini-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.28rem 0.62rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(45, 80, 22, 0.08);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.plant-mini-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.plant-mini-card p,
.plant-doctor-note {
  margin-bottom: 0;
}
.plant-doctor-note {
  max-width: 58ch;
  color: var(--gray-dark);
  margin-bottom: 1.45rem;
  line-height: 1.75;
}
.plant-doctor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Plant Doctor Preview Card */
.plant-doctor-preview-card {
  position: relative;
  padding: clamp(0.8rem, 2vw, 1rem);
  padding-top: 0.9rem;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(7, 24, 15, 0.98), rgba(10, 43, 28, 0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(11, 24, 16, 0.18);
}
.plant-doctor-preview-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.plant-doctor-preview-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.45rem 0.85rem;
  color: rgba(255,255,255,0.84);
}
.plant-doctor-preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.plant-doctor-preview-top p {
  margin: 0 0 0 0.35rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
}
.plant-doctor-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 0.2rem 0.2rem;
}
.plant-doctor-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 0.84rem;
  font-weight: 500;
}

/* --- Portfolio / Gallery Showcase --- */
.portfolio-section {
  padding: var(--section-padding);
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-top: 2.5rem;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
  /* FIX #14: Placeholder background while images load */
  background: var(--green-faint);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow);
}
.portfolio-item:hover img {
  transform: scale(1.06);
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.portfolio-item .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 12, 0.82), rgba(8, 18, 12, 0.16));
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  margin-bottom: 0.3rem;
}
.portfolio-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --- Our Story / About --- */
.story-section {
  padding: var(--section-padding);
  background: transparent;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 500px;
}
.story-content h2 { margin-bottom: 1rem; }
.story-content p {
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  line-height: 1.75;
}

/* --- Reviews --- */
.reviews-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, rgba(244, 248, 239, 0.78), rgba(255,255,255,0));
}
.reviews-widget {
  max-width: 900px;
  margin: 2rem auto 0;
}

/* --- Client Logos --- */
.clients-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(244, 248, 239, 0.78), rgba(255,255,255,0));
}
.clients-section .container {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(32, 50, 28, 0.06);
  box-shadow: var(--shadow-soft);
}
.clients-section .section-heading {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
}
.clients-section p { margin-bottom: 0; }
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: 2.1rem;
}
.clients-logos img {
  justify-self: center;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: all var(--transition-base);
}
.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: clamp(2.2rem, 5vw, 4rem) 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(107, 142, 35, 0.22), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(197, 162, 83, 0.18), transparent 16%),
    linear-gradient(135deg, #061911 0%, #0a2d1d 55%, #0c3623 100%);
  color: var(--white);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -28px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 162, 83, 0.16) 0%, rgba(197, 162, 83, 0) 68%);
  filter: blur(8px);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  max-width: 920px;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.84);
  margin-bottom: 1.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* --- Gallery Page --- */
.gallery-section {
  padding: var(--section-padding);
  background: transparent;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.94);
  cursor: pointer;
  border-radius: var(--radius-md);
  border: 1px solid rgba(32, 50, 28, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.gallery-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}
.gallery-card-body h3 {
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.gallery-card-body p {
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 0;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 8, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem);
}
.lightbox.active { display: flex; }
.lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(92vh, 880px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  background: #0f160f;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.lightbox-media {
  background:
    radial-gradient(circle at 20% 20%, rgba(197, 162, 83, 0.14), transparent 22%),
    linear-gradient(180deg, #0f160f 0%, #090d09 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0,0,0,0.35);
  border: none;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  opacity: 0.9;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}
.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.04);
}
.lightbox-caption {
  position: static;
  transform: none;
  color: var(--white);
  text-align: left;
  max-width: none;
  padding: 2rem 1.8rem;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}
.lightbox-caption h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}
.lightbox-subtitle {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.lightbox-description {
  padding-right: 0.2rem;
}
.lightbox-description p,
.lightbox-caption p {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.95rem;
}

/* --- Contact Page --- */
.contact-section {
  padding: var(--section-padding);
  background: transparent;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 2vw, 3rem);
  align-items: start;
  width: 100%;
}
.contact-info,
.contact-form {
  min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(32, 50, 28, 0.08);
  overflow: hidden;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
}
.contact-info {
  padding: clamp(1.3rem, 2vw, 2rem);
}
.contact-info h3 {
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.3rem;
  align-items: flex-start;
}
.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--green-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}
.contact-item p {
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  line-height: 1.75;
}
.contact-item a { color: var(--charcoal); }
.contact-item a:hover { color: var(--green-dark); }

.contact-map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(32, 50, 28, 0.08);
  box-shadow: none;
}
.contact-map-card iframe {
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-md);
}

.contact-map-section {
  padding: 0 0 4rem;
}
.contact-map-wrap { display: flex; }
.contact-map-frame {
  width: min(100%, 1120px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map-frame iframe { width: 100%; }

/* Contact Form */
.contact-form {
  padding: clamp(1.4rem, 2.4vw, 2.5rem);
  background: rgba(255,255,255,0.92);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(107,142,35,0.1);
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
}
.form-status {
  display: none;
  padding: 1rem;
  border-radius: 3px;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.form-status.success {
  display: block;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}
.form-status.error {
  display: block;
  background: #FDE8E8;
  color: #B91C1C;
  border: 1px solid #F87171;
}

/* --- FAQ Accordion --- */
.faq-section {
  padding: var(--section-padding);
  background: transparent;
}
.faq-list {
  max-width: 920px;
  margin: 2rem auto 0;
}
.faq-item {
  border: 1px solid rgba(32, 50, 28, 0.08);
  border-radius: 22px;
  margin-bottom: 1rem;
  padding: 0 1.2rem;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition-fast);
  gap: 1rem;
  min-height: 44px;
}
.faq-question:hover { color: var(--green-dark); }
.faq-question .faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding-bottom: 1.3rem;
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  color: var(--gray-dark);
  line-height: 1.75;
}

/* --- Care Guide --- */
.care-guide-section {
  padding: var(--section-padding);
  background: transparent;
}
.care-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.care-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}
.care-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-pale);
  font-size: 0.9rem;
  vertical-align: top;
  color: var(--gray-dark);
}
.care-table tr:hover { background: var(--green-faint); }
.care-table .plant-type-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.care-cards { display: none; }
.care-card {
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius-md);
  border: 1px solid rgba(32, 50, 28, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.care-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.care-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.care-card-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.care-card-header h3 { font-size: 1.1rem; }
.care-card dt {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.88rem;
  margin-top: 0.8rem;
}
.care-card dd {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-left: 0;
  line-height: 1.6;
}

/* --- About / Founder Page --- */
.founder-section { padding: var(--section-padding); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
.founder-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}
.founder-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 420px;
}
.founder-content h2 { margin-bottom: 0.8rem; }
.founder-content p {
  font-size: 0.98rem;
  line-height: 1.8;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 10rem 1rem 3.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background:
    radial-gradient(circle at 50% 35%, rgba(197, 162, 83, 0.12), transparent 17%),
    linear-gradient(180deg, #fafaf7 0%, #f2f4eb 100%);
}
.page-header::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 16px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 162, 83, 0.16) 0%, rgba(197, 162, 83, 0) 68%);
  filter: blur(8px);
  pointer-events: none;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
}

/* --- Service Detail Pages --- */
.service-detail { padding: var(--section-padding); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.service-steps {
  padding: var(--section-padding);
  background: var(--green-faint);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.step-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold-light);
}
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.service-includes {
  list-style: none;
  margin: 1rem 0;
}
.service-includes li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--gray-dark);
  padding-left: 1.5rem;
  position: relative;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
}

/* --- Privacy Policy --- */
.policy-section {
  padding: var(--section-padding);
  background: transparent;
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
}
.policy-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
}
.policy-content p {
  font-size: clamp(0.98rem, 1.1vw, 1.02rem);
  line-height: 1.75;
}

/* ==========================================================
   7. FOOTER
   ========================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(107, 142, 35, 0.18), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(197, 162, 83, 0.12), transparent 16%),
    linear-gradient(135deg, #041a11 0%, #08291b 50%, #0b2e1d 100%);
  color: var(--gray-light);
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none;
}

.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--gold) 50%, var(--green-dark) 100%);
}

.footer-main {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.4vw, 2rem);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  box-sizing: border-box;
}

/* Footer brand */
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.footer-logo {
  height: 72px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-col:first-child { max-width: 28rem; }

/* Footer socials */
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-base);
  font-size: 1rem;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-socials a svg {
  width: 18px;
  height: 18px;
}
.social-link-tiktok svg {
  width: 17px;
  height: 17px;
}
.site-footer .social-link-tiktok svg {
  transform: translateX(0.5px);
}

/* Footer columns */
.footer-col h3 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.footer-col h3,
.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.footer-col p,
.footer-col li {
  font-size: 0.88rem;
}

/* Footer links */
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.45rem;
}
.footer-links li a,
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  transition: all var(--transition-fast);
  display: inline-block;
}
.footer-links li a:hover,
.footer-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-links a {
  min-height: 38px;
  display: flex;
  align-items: center;
}

/* Footer contact info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.8;
}
.footer-contact-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}
.footer-contact-item a:hover { color: var(--gold); }

/* WhatsApp CTA */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-base);
}
.footer-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Google Reviews badge */
.footer-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  transition: all var(--transition-base);
}
.footer-reviews:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--gold);
}
.footer-reviews .stars {
  color: #FBBC04;
  letter-spacing: 1px;
}

/* Footer bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container-width));
  margin-inline: auto;
  padding: 1.2rem clamp(1rem, 2.4vw, 2rem) calc(1.4rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
  max-width: 62rem;
  text-wrap: balance;
  line-height: 1.5;
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  transition: color var(--transition-fast);
}
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================
   8. BACK TO TOP & SCROLL ANIMATIONS
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999999;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   9. RESPONSIVE — max-width 1100px
   ========================================================== */
@media (max-width: 1100px) {
  .plant-doctor-shell {
    grid-template-columns: 1fr;
  }
  .plant-doctor-mini-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
  }
  .lightbox-media {
    min-height: 280px;
  }
}

/* ==========================================================
  10. RESPONSIVE — max-width 992px (tablet)
   ========================================================== */
@media (max-width: 992px) {
  .header-inner {
    min-height: 88px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  /* Stack all 2-col grids to single column */
  .hero-grid,
  .bespoke-grid,
  .story-grid,
  .founder-grid,
  .founder-grid.reverse,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-grid.reverse {
    direction: ltr;
  }

  /* Hero: text first, images below */
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-images {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Bespoke: image on top */
  .bespoke-image { order: 1; }
  .bespoke-content {
    order: 2;
    text-align: center;
  }
  .bespoke-content .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  /* Story: centered */
  .story-grid { text-align: center; }
  .story-content .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }
  .story-image img { margin: 0 auto; }

  /* Founder: image first */
  .founder-grid .founder-image { order: -1; }

  /* Footer: 2 columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 2rem;
    gap: 1.5rem;
  }

  /* Portfolio: 2 columns */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact: full width children */
  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* ==========================================================
  11. RESPONSIVE — max-width 768px (mobile)
   ========================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.75rem 0;
  }

  html {
    scroll-padding-top: 98px;
  }

  /* --- Header --- */
  .site-header {
    background: rgba(255,255,255,0.95);
  }
  .header-inner {
    min-height: 84px;
    padding-inline: 1rem;
  }

  /* --- Mobile nav: slide-in drawer from right --- */
  .mobile-menu-btn {
    display: inline-flex;
    position: relative;
    z-index: 1001;
  }

  /* Old mobile nav removed — replaced by .mobile-drawer system */

  /* --- Hero --- */
  .hero {
    padding-top: 110px;
    padding-bottom: 2.4rem;
  }
  .hero-content {
    text-align: left;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  /* Single column, main image only, capped height */
  .hero-images {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero-img-main {
    min-height: auto;
    max-height: 320px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .hero-images .hero-img-secondary {
    display: none;
  }

  /* Bespoke: cap image so it doesn't stack huge with hero */
  .bespoke-image img {
    max-height: 280px;
    object-fit: cover;
    width: 100%;
  }

  /* --- Page Header --- */
  .page-header {
    padding: 9rem 1rem 2.8rem;
  }

  /* --- Grids: single column --- */
  .gallery-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio: keep 2 cols on mobile for visual density */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .clients-logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 0.5rem 1rem;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .clients-logos::-webkit-scrollbar {
    display: none;
  }
  .clients-logos img {
    height: 42px;
    max-height: none;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* --- Steps & Plant Doctor --- */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .plant-doctor-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .plant-doctor-lead {
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }
  .plant-doctor-stats {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .plant-stat {
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
  }
  /* Hide the 3-step mini-flow on mobile — it's redundant with the preview image */
  .plant-doctor-mini-flow {
    display: none;
  }
  .plant-doctor-note {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }
  .plant-doctor-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  .plant-doctor-actions .btn {
    width: 100%;
  }
  /* Only show one button on mobile */
  .plant-doctor-actions .btn:last-child {
    display: none;
  }
  /* Tighter preview card */
  .plant-doctor-preview-card {
    padding: 0.6rem;
    border-radius: 22px;
  }
  .plant-doctor-preview-card img {
    border-radius: 16px;
  }
  .plant-doctor-preview-top {
    padding: 0 0.3rem 0.5rem;
  }
  .plant-doctor-preview-top p {
    font-size: 0.72rem;
  }
  .plant-doctor-preview-top span {
    width: 8px;
    height: 8px;
  }
  .plant-doctor-preview-meta {
    gap: 0.4rem;
    padding: 0.6rem 0.15rem 0.15rem;
  }
  .plant-doctor-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
  }

  /* --- Contact --- */
  .contact-section .container,
  .gallery-section .container,
  .faq-section .container,
  .care-guide-section .container,
  .policy-content {
    padding-inline: 1rem;
  }
  .contact-grid {
    gap: 1.1rem;
  }
  .contact-info,
  .contact-form {
    padding: 1.15rem;
  }
  .contact-map-card iframe {
    min-height: 240px;
  }
  .contact-map-section {
    padding: 0 0 3rem;
  }
  .contact-map-frame {
    width: 100%;
    border-radius: 0;
  }

  /* --- Lightbox --- */
  .lightbox {
    padding: 0.75rem;
  }
  .lightbox-panel {
    max-height: 94vh;
    border-radius: 22px;
  }
  .lightbox-media {
    min-height: 220px;
    padding: 0.75rem;
  }
  .lightbox-caption {
    padding: 1.1rem 1rem 1.35rem;
  }
  .lightbox-caption h3 {
    font-size: 1.2rem;
  }

  /* --- FAQ --- */
  .faq-item {
    padding: 0 1rem;
    border-radius: 18px;
  }
  .faq-question {
    font-size: 1rem;
    line-height: 1.35;
    padding: 1.05rem 0;
    min-height: 52px;
  }

  /* --- Care Guide: show cards, hide table --- */
  .care-table-wrapper { display: none; }
  .care-cards { display: block; }

  /* --- CTA --- */
  .cta-banner .container {
    padding: 1.6rem 1.2rem;
  }

  /* --- Footer: ultra-compact mobile --- */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding: 1.5rem 0 1rem;
  }

  /* Hide the Services and Explore link columns on mobile — they're in the nav */
  .footer-grid > .footer-col:not(.footer-brand):not(:last-child) {
    display: none;
  }

  /* Brand column */
  .footer-brand {
    padding-bottom: 0.8rem;
    text-align: center;
  }
  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand p {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-col:first-child {
    max-width: none;
  }
  .footer-logo { height: 56px; margin-bottom: 0.6rem; }
  .footer-socials {
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
  }
  .footer-socials a {
    width: 34px;
    height: 34px;
  }
  .footer-socials a svg {
    width: 14px;
    height: 14px;
  }
  .footer-reviews {
    font-size: 0.74rem;
    padding: 0.35rem 0.7rem;
    margin-top: 0.6rem;
  }

  /* Get In Touch — compact inline layout */
  .footer-col:last-child {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-col:last-child h3 {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
  }
  .footer-col:last-child h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
  }
  .footer-contact-item {
    justify-content: center;
    margin-bottom: 0.4rem;
    gap: 0.4rem;
  }
  .footer-contact-item svg {
    width: 13px;
    height: 13px;
  }
  .footer-contact-item p,
  .footer-contact-item a {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .footer-whatsapp {
    font-size: 0.76rem;
    padding: 0.4rem 0.9rem;
    margin-top: 0.5rem;
  }

  /* Footer bottom */
  .footer-bottom {
    padding: 0.6rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }
  .footer-bottom p {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  .footer-bottom a {
    font-size: 0.68rem;
  }

  /* --- Clients --- */
  .clients-section .container {
    padding: 1.3rem 1rem;
    border-radius: 24px;
  }

  /* --- Back to top — keep same 60px size, just adjust position --- */
  .back-to-top {
    right: 20px;
  }
}

/* ==========================================================
  12. RESPONSIVE — max-width 480px (small phone)
   ========================================================== */
@media (max-width: 480px) {
  .site-logo img {
    height: 58px;
  }
  .header-inner {
    min-height: 78px;
  }

  .page-header h1,
  .hero-content h2 {
    letter-spacing: -0.02em;
  }

  /* Tighter section headings */
  .section-heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* Tighter container padding */
  .container {
    padding-inline: 1rem;
  }

  /* Hero images */
  .hero-images {
    grid-template-columns: 1fr;
  }
  .hero-images .hero-img-main {
    min-height: auto;
    max-height: 260px;
  }

  /* Portfolio: single col on tiny screens */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Steps & services: single col */
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Plant doctor mini-flow */
  .plant-doctor-mini-flow {
    grid-template-columns: 1fr;
  }

  /* FAQ touch targets */
  .faq-question {
    min-height: 52px;
  }

  /* Client logos: keep horizontal scroll from 768px */
  .clients-logos {
    gap: 1.5rem;
  }
  .clients-logos img {
    height: 36px;
  }

  /* Footer brand: centered */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    gap: 0.75rem;
  }

  /* Lightbox close */
  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  /* Back-to-top: match chat bot's mobile size (52px) and position */
  .back-to-top {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
}


/* --- Simplified Footer Layout --- */
.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  position: relative;
  z-index: 1;
}
.footer-simple-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-simple-brand .footer-logo {
  margin-bottom: 0;
}
.footer-simple-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-simple-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}
.footer-simple-contact a:hover {
  color: var(--gold);
}
.footer-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}
.footer-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #25D366;
}
.footer-whatsapp-inline:hover {
  color: #1da851;
}

@media (max-width: 768px) {
  .footer-simple {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
  }
  .footer-simple-brand {
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-simple-contact {
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
  }
}

/* ==========================================================
   13. MERGED UI REFINEMENTS + NEW IMPROVEMENTS
   Dropdown chevrons, footer CTA band, reviews carousel,
   portfolio touch overlay, scroll hints, chat z-index fix
   ========================================================== */

/* --- Dropdown chevron indicator --- */
.desktop-nav ul li.has-dropdown > a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.5rem;
  transition: transform var(--transition-base);
  opacity: 0.7;
}
.desktop-nav ul li.dropdown-open > a::after,
.desktop-nav ul li:hover > a::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}

/* --- Footer: refined background --- */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(circle at 12% 14%, rgba(107, 142, 35, 0.16), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(197, 162, 83, 0.14), transparent 18%),
    linear-gradient(145deg, #04150f 0%, #072117 48%, #0a2b1c 100%);
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: auto -8% -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 162, 83, 0.18) 0%, rgba(197, 162, 83, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

/* --- Footer CTA band --- */
.footer-main {
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
}
.footer-cta-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.25rem 2rem;
  align-items: center;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}
.footer-cta-band::before {
  content: '';
  position: absolute;
  inset: -40% auto auto 62%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 162, 83, 0.18) 0%, rgba(197, 162, 83, 0) 70%);
  pointer-events: none;
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}
.footer-cta-copy h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 0.55rem;
}
.footer-cta-copy p:last-child {
  margin-bottom: 0;
  max-width: 46rem;
  color: rgba(255,255,255,0.66);
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.btn-footer-outline {
  background: rgba(255,255,255,0.02);
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.btn-footer-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}

/* --- Footer grid (merged from Sec 7 + 13 — single source now) --- */
.footer-grid {
  grid-template-columns: 1.45fr 0.9fr 0.9fr 1.15fr;
  gap: clamp(1.15rem, 2.2vw, 1.9rem);
  padding: clamp(1.6rem, 3vw, 2.25rem) 0;
}
.footer-brand-shell {
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.footer-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.72;
}
.footer-logo {
  height: 72px;
  margin-bottom: 1rem;
}
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 1rem;
}
.footer-highlight {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}
.footer-highlight strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}
.footer-highlight span {
  display: block;
  color: rgba(255,255,255,0.56);
  font-size: 0.78rem;
  line-height: 1.55;
}
.footer-col h3 {
  color: rgba(255,255,255,0.92);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
}
.footer-links {
  display: grid;
  gap: 0.3rem;
}
.footer-links li {
  margin-bottom: 0;
}
.footer-links li a {
  position: relative;
  gap: 0.7rem;
  padding-left: 0;
  color: rgba(255,255,255,0.66);
}
.footer-links li a::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: rgba(197, 162, 83, 0.45);
  transition: transform var(--transition-fast), background var(--transition-fast);
}
.footer-links li a:hover::before {
  background: var(--gold);
  transform: scale(1.15);
}
.footer-socials {
  gap: 0.7rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.footer-socials a:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.site-footer .social-link-tiktok svg {
  width: 15px;
  height: 15px;
  transform: none;
}
.footer-contact-item {
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255,255,255,0.64);
}
.footer-contact-item a:hover {
  color: var(--white);
}
.footer-whatsapp {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(16, 92, 43, 0.26);
}
.footer-reviews {
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
}
.footer-reviews span:last-child {
  font-weight: 500;
}
.footer-section-toggle {
  display: none;
}
.footer-bottom {
  width: min(100%, var(--container-width));
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.42);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.footer-bottom-links span {
  color: rgba(255,255,255,0.22);
  font-size: 0.78rem;
  line-height: 1;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.52);
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* --- UI FIX #16: Reviews carousel --- */
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.review-card {
  padding: 1.8rem 1.5rem;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(32, 50, 28, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.review-stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.review-card blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
}
.reviews-cta {
  margin-top: 0.5rem;
}

/* --- UI FIX #17: Scroll hint for horizontal scrollable containers --- */
.clients-subtitle {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.clients-heading {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
}

/* --- UI FIX #15: Portfolio overlay visible on touch / mobile --- */
@media (hover: none) and (pointer: coarse) {
  .portfolio-item .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(8, 18, 12, 0.72) 0%, transparent 60%);
  }
}

/* --- Footer responsive: 992px --- */
@media (max-width: 992px) {
  .footer-cta-band {
    grid-template-columns: 1fr;
  }
  .footer-cta-actions {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-carousel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- Footer responsive: 768px --- */
@media (max-width: 768px) {
  .desktop-nav ul li.has-dropdown > a {
    justify-content: space-between;
  }
  .desktop-nav ul li.has-dropdown > a::after {
    margin-left: auto;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .footer-main {
    padding-top: 1rem;
  }
  .footer-cta-band {
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
  }
  .footer-kicker {
    font-size: 0.7rem;
    margin-bottom: 0.65rem;
  }
  .footer-cta-copy h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta-actions .btn {
    width: 100%;
  }

  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    text-align: left;
    padding: 1.2rem 0 1rem;
  }
  .site-footer .footer-grid > .footer-col:not(.footer-brand):not(:last-child) {
    display: block;
  }
  .footer-brand {
    padding-bottom: 0;
  }
  .footer-brand-shell {
    padding: 1.05rem;
    border-radius: 22px;
  }
  .footer-brand p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.82rem;
  }
  .footer-logo {
    height: 48px;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-highlights {
    margin: 1rem 0 0.9rem;
  }
  .footer-socials {
    justify-content: flex-start;
    margin-top: 0.8rem;
  }
  .footer-socials a {
    width: 38px;
    height: 38px;
  }
  .footer-reviews {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    margin-top: 0.85rem;
  }
  .footer-col:first-child {
    max-width: none;
  }

  .footer-accordion {
    padding-top: 0;
    border-top: none;
  }
  .footer-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.045);
    color: var(--white);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
  }
  .footer-section-toggle svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
  }
  .footer-accordion.is-open .footer-section-toggle svg {
    transform: rotate(180deg);
  }
  .footer-accordion .footer-section-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0.2rem;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
    margin-top: 0;
  }
  .footer-accordion.is-open .footer-section-content {
    opacity: 1;
    margin-top: 0.8rem;
  }
  .footer-accordion .footer-section-content h3 {
    display: none;
  }
  .footer-links {
    gap: 0.2rem;
  }
  .footer-links li a {
    min-height: 42px;
  }
  .footer-contact-col .footer-section-content {
    padding: 0 0.2rem;
  }
  .footer-contact-item {
    justify-content: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
  }
  .footer-contact-item svg {
    width: 14px;
    height: 14px;
    margin-top: 4px;
  }
  .footer-contact-item p,
  .footer-contact-item a {
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .footer-whatsapp {
    margin-top: 0.25rem;
    font-size: 0.8rem;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.95rem;
  }
  .footer-bottom p {
    font-size: 0.72rem;
  }
  .footer-bottom-links {
    gap: 0.5rem;
  }
  .footer-bottom-links a,
  .footer-bottom-links span {
    font-size: 0.72rem;
  }

  /* Reviews: stack on mobile */
  .reviews-carousel {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .review-card {
    padding: 1.3rem 1.1rem;
  }

  /* Scroll hint fade for client logos */
  .scroll-hint-container {
    position: relative;
  }
  .scroll-hint-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.85));
    pointer-events: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
}

@media (max-width: 480px) {
  .footer-cta-band {
    padding: 1.05rem;
  }
  .footer-cta-copy p:last-child {
    font-size: 0.9rem;
  }
  .footer-highlight {
    padding: 0.75rem 0.8rem;
  }
  .footer-section-toggle {
    padding: 0.9rem 0.9rem;
  }
  .hero-content h1 {
    letter-spacing: -0.02em;
  }
}


/* ==========================================================
   14. MOBILE NAVIGATION DRAWER (new build)
   Completely self-contained — no shared selectors with desktop nav.
   ========================================================== */

/* --- Hamburger button: hidden on desktop, shown on mobile --- */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(45, 80, 22, 0.06);
  border: 1px solid rgba(45, 80, 22, 0.10);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.mobile-menu-btn:hover {
  background: rgba(45, 80, 22, 0.12);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 4px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Overlay --- */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 12, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Drawer panel --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

/* --- Drawer header --- */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.mobile-drawer-logo {
  height: 44px;
  width: auto;
}
.mobile-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(45, 80, 22, 0.06);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-close-btn:hover {
  background: rgba(45, 80, 22, 0.12);
}

/* --- Nav list --- */
.mobile-nav-list {
  list-style: none;
  padding: 0.75rem 1rem;
  flex: 1;
}
.mobile-nav-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.mobile-nav-list > li > a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.9rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: color 0.15s, background 0.15s;
  border-radius: 10px;
  min-height: 48px;
}
.mobile-nav-list > li > a:hover,
.mobile-dropdown-toggle:hover {
  color: var(--green-dark);
  background: var(--green-faint);
}
.mobile-nav-list > li > a.active {
  color: var(--green-dark);
  font-weight: 600;
}

/* --- Dropdown toggle chevron --- */
.mobile-dropdown-toggle {
  justify-content: space-between;
}
.mobile-dropdown-toggle svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.5;
}
.mobile-has-dropdown.is-expanded .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* --- Dropdown items --- */
.mobile-dropdown {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  opacity: 0;
  padding: 0;
}
.mobile-has-dropdown.is-expanded .mobile-dropdown {
  max-height: 300px;
  opacity: 1;
}
.mobile-dropdown li a {
  display: block;
  padding: 0.7rem 0.5rem 0.7rem 1.5rem;
  font-size: 0.92rem;
  color: var(--gray-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  min-height: 44px;
  line-height: 1.4;
}
.mobile-dropdown li a:hover {
  background: var(--green-faint);
  color: var(--green-dark);
}

/* --- Drawer footer --- */
.mobile-drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}
.mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #25D366;
  color: var(--white);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.mobile-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-1px);
}
.mobile-phone {
  display: block;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-dark);
  text-decoration: none;
}
.mobile-phone:hover {
  color: var(--green-dark);
}

/* --- Hide/show at breakpoint --- */
/* Desktop: hide mobile drawer, overlay, hamburger */
.mobile-drawer,
.mobile-drawer-overlay {
  /* Drawer is always in DOM but off-screen via translateX(100%) */
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: inline-flex;
  }
  /* Hide desktop nav on mobile */
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 769px) {
  /* On desktop, ensure drawer stays off-screen even if JS state is wrong */
  .mobile-drawer {
    transform: translateX(100%) !important;
    visibility: hidden;
  }
  .mobile-drawer-overlay {
    display: none;
  }
}
