    /* ============================================
       1. RESET & VARIABLES
       ============================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      /* Palette matched to the H&O logo: forest green + terracotta + cream */
      --green-900: #142318;
      --green-800: #1b2f1c;   /* logo lettering green */
      --green-700: #264a2e;
      --green-600: #34653f;
      --green-500: #4a9e6f;
      --green-100: #e6f2e9;
      --green-50: #f1f8f2;
      --cream: #fbfbef;        /* logo background cream */
      --cream-dark: #f2efdf;
      /* Terracotta orange accent (from logo tulips) */
      --orange-500: #c46d30;
      --orange-600: #a85825;
      --orange-100: #f7ead9;
      --brass: #c46d30;
      --brass-dark: #a85825;
      --gold-soft: #e3a572;
      --sage: #7a9e7e;
      --white: #ffffff;
      --gray-50: #fafafa;
      --gray-100: #f5f5f5;
      --gray-200: #eeeeee;
      --gray-300: #e0e0e0;
      --gray-600: #757575;
      --gray-800: #424242;
      --gray-900: #212121;
      --radius: 16px;
      --radius-sm: 10px;

      /* Seasonal accent — updated by GSAP */
      --season-hue: 140;
      --season-sat: 40%;
      --season-lit: 38%;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 70px;
    }

    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-900);
      line-height: 1.6;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.2; }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

    /* GSAP fallback — reveals elements if JS fails or is slow.
       Short delay so the fallback is a genuine safety net (not a
       source of slow LCP). GSAP normally reveals hero content well
       before this fires. */
    @keyframes gsap-fallback {
      to { visibility: visible; opacity: 1; }
    }
    [data-animate] {
      animation: gsap-fallback 0s forwards;
      animation-delay: 0.6s;
    }
    /* LCP-CRITICAL: the hero headline must paint on first frame, never
       wait on JS/fonts/CDN. It carries its own quick reveal and is
       animated by transform only (see .hero h1 rule + main.js). */
    .hero h1[data-animate] {
      visibility: visible !important;
      animation: none !important;
    }

    /* ============================================
       2. SCROLL PROGRESS BAR
       ============================================ */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      z-index: 1000;
      background: transparent;
    }
    .scroll-progress-fill {
      height: 100%;
      width: 100%;
      background: linear-gradient(90deg,
        hsl(128, 28%, 20%),
        hsl(100, 25%, 34%),
        hsl(26, 58%, 48%));
      transform: scaleX(0);
      transform-origin: left;
    }

    /* ============================================
       3. NAVIGATION
       ============================================ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 500;
      background: rgba(251, 251, 239, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 8px 0;
      border-bottom: 1px solid rgba(27, 47, 28, 0.08);
      transition: box-shadow 0.3s;
    }
    .nav.scrolled {
      box-shadow: 0 4px 24px rgba(20, 35, 24, 0.12);
    }
    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      line-height: 0;
    }
    .nav-logo img {
      height: 46px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 32px;
    }
    .nav-link {
      color: var(--green-800);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: color 0.3s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange-500);
      transition: width 0.3s ease;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--orange-600);
    }
    .nav-link.active::after {
      width: 100%;
    }
    .nav-cta {
      background: var(--orange-500);
      color: var(--white);
      padding: 10px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.88rem;
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .nav-cta:hover {
      background: var(--orange-600);
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(196,109,48,0.3);
    }
    .nav-cta:active { transform: scale(0.97); }

    /* ============================================
       4. HERO
       ============================================ */
    .hero {
      background: linear-gradient(160deg, var(--green-900) 0%, #112a1c 40%, var(--green-700) 100%);
      padding: 80px 0 110px;
      position: relative;
      overflow: hidden;
    }
    /* Cinematic video background */
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-video-wrap video {
      position: absolute;
      top: 50%; left: 50%;
      min-width: 100%; min-height: 100%;
      width: auto; height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      /* The poster is the hero background and must be visible immediately
         (great LCP). The <video> element renders its poster at opacity:1;
         the actual clip, once attached + playing, is what we cross-fade in. */
      opacity: 1;
      transition: opacity 1.2s ease;
    }
    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(15,40,28,0.92) 0%, rgba(15,40,28,0.72) 42%, rgba(15,40,28,0.45) 100%),
        linear-gradient(to bottom, rgba(15,40,28,0.2) 0%, rgba(15,40,28,0) 30%, rgba(15,40,28,0.55) 100%);
    }
    .hero-bg-shapes {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.15;
    }
    .hero-blob-1 {
      width: 500px; height: 500px;
      background: var(--sage);
      top: -20%; right: -10%;
    }
    .hero-blob-2 {
      width: 350px; height: 350px;
      background: var(--orange-500);
      bottom: -10%; left: 10%;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      color: var(--orange-100);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 50px;
      margin-bottom: 24px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .hero h1 {
      color: var(--white);
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    /* LCP headline: paints immediately (visible from first frame) and
       animates in with a pure transform/opacity CSS entrance — no JS,
       no visibility gate. GSAP's per-word reveal (if it loads in time)
       simply replaces this; if GSAP is slow, the headline is already
       here so LCP stays fast. */
    .hero h1.hero-h1-lcp {
      visibility: visible;
      animation: heroH1In 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes heroH1In {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero h1 em {
      color: var(--orange-500);
      font-style: normal;
    }
    .hero-word {
      display: inline-block;
    }
    .hero-word-wrap {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
    }
    .hero-sub {
      color: rgba(255,255,255,0.8);
      font-size: 1.12rem;
      margin-bottom: 36px;
      line-height: 1.8;
      max-width: 480px;
    }
    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-500);
      color: var(--white);
      padding: 16px 34px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.02rem;
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 25px rgba(196,109,48,0.35);
    }
    .hero-cta:hover {
      transform: translateY(-2px);
      background: var(--orange-600);
      box-shadow: 0 8px 30px rgba(196,109,48,0.4);
    }
    .hero-cta:active { transform: scale(0.97); }
    .hero-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      color: var(--white);
      padding: 16px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid rgba(255,255,255,0.2);
      transition: transform 0.2s, background 0.2s;
    }
    .hero-cta-secondary:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-1px);
    }
    .hero-micro {
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
      margin-top: 16px;
    }
    /* Hero image card */
    .hero-image-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    }
    .hero-image-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }
    .hero-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(transparent, rgba(0,0,0,0.6));
    }
    .hero-image-tag {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      color: var(--white);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    /* Hero wave divider */
    .hero-wave {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      z-index: 3;
      line-height: 0;
    }
    .hero-wave svg {
      width: 100%;
      height: 60px;
    }

    /* ============================================
       4b. ATMOSPHERE PARTICLES (fixed canvas)
       ============================================ */
    .atmosphere-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 50;
    }

    /* ============================================
       4c. HERO DEPTH ELEMENTS
       ============================================ */
    .hero-depth-leaf {
      position: absolute;
      z-index: 1;
      pointer-events: none;
    }
    .hero-depth-left {
      left: -40px;
      top: 10%;
    }
    .hero-depth-right {
      right: -30px;
      bottom: 15%;
    }

    /* ============================================
       5. TRUST STRIP
       ============================================ */
    .trust-strip {
      background: var(--cream);
      padding: 28px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .trust-items {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--gray-600);
      font-size: 0.88rem;
      font-weight: 500;
    }
    .trust-icon {
      width: 28px;
      height: 28px;
      background: var(--green-100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    /* ============================================
       6. PROBLEM SECTION
       ============================================ */
    .problem {
      padding: 110px 0;
      background: var(--white);
    }
    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: hsl(var(--season-hue), var(--season-sat), var(--season-lit));
      margin-bottom: 16px;
    }
    .problem h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      color: var(--green-900);
    }
    .problem-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.05rem;
      max-width: 550px;
      margin: 0 auto 60px;
      line-height: 1.7;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
    }
    .pain-card {
      background: var(--cream);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .pain-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    }
    .pain-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: var(--orange-100);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pain-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .pain-card p {
      color: var(--gray-600);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* ============================================
       7. BEFORE/AFTER SLIDER
       ============================================ */
    .ba-section {
      padding: 100px 0;
      background: var(--cream);
    }
    .ba-section h2 {
      text-align: center;
      font-size: 2.2rem;
      color: var(--green-900);
      margin-bottom: 14px;
    }
    .ba-section-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.05rem;
      max-width: 500px;
      margin: 0 auto 50px;
    }
    .ba-slider {
      position: relative;
      max-width: 750px;
      margin: 0 auto;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: ew-resize;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      touch-action: pan-y;
      -webkit-user-select: none;
      user-select: none;
    }
    .ba-before-img {
      display: block;
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
    .ba-after-wrap {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      clip-path: inset(0 0 0 50%);
    }
    .ba-after-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: var(--white);
      transform: translateX(-50%);
      z-index: 10;
      pointer-events: none;
    }
    .ba-handle::before,
    .ba-handle::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      background: rgba(255,255,255,0.4);
    }
    .ba-handle-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      font-size: 1.1rem;
      color: var(--green-900);
      font-weight: 700;
    }
    .ba-label {
      position: absolute;
      bottom: 16px;
      background: rgba(0,0,0,0.65);
      backdrop-filter: blur(4px);
      color: var(--white);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      z-index: 5;
    }
    .ba-label-before { left: 16px; }
    .ba-label-after { right: 16px; }
    .ba-caption {
      text-align: center;
      color: var(--gray-600);
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 14px;
    }
    /* Secondary row of two smaller interactive sliders */
    .ba-duo {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1080px;
      margin: 44px auto 0;
    }
    .ba-duo .ba-slider { max-width: none; box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
    .ba-duo .ba-before-img { height: 280px; }
    .ba-duo .ba-caption { margin-top: 10px; font-size: 0.82rem; }
    @media (max-width: 920px) {
      .ba-duo { grid-template-columns: 1fr 1fr; max-width: 750px; }
    }
    @media (max-width: 640px) {
      .ba-duo { grid-template-columns: 1fr; gap: 30px; }
      .ba-before-img { height: 320px; }
    }

    /* ============================================
       7a-ii. GARDEN VISUALISER (added 2026-05-29)
       ============================================ */
    /* Deep-green "spotlight" so the tool breaks out of the cream sections
       around it and catches the eye on scroll (added 2026-06-02). */
    .visualiser {
      padding: 110px 0; position: relative; overflow: hidden;
      background:
        radial-gradient(1100px 460px at 50% -8%, rgba(227,165,114,0.12), transparent 62%),
        linear-gradient(180deg, var(--green-900) 0%, #11301d 58%, var(--green-900) 100%);
    }
    /* soft floating glow blobs (peripheral motion) */
    .visualiser::before, .visualiser::after {
      content: ''; position: absolute; border-radius: 50%; pointer-events: none;
      filter: blur(64px); z-index: 0;
    }
    .visualiser::before { width: 340px; height: 340px; left: -90px; top: 8%;
      background: rgba(45,106,79,0.55); animation: visFloatA 15s ease-in-out infinite; }
    .visualiser::after { width: 300px; height: 300px; right: -80px; bottom: 6%;
      background: rgba(227,165,114,0.28); animation: visFloatB 19s ease-in-out infinite; }
    @keyframes visFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(28px); } }
    @keyframes visFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-32px); } }
    .visualiser > .container { position: relative; z-index: 1; }
    .visualiser .section-label { color: #f0b079 !important; }
    .visualiser h2 { text-align: center; font-size: 2.2rem; margin-bottom: 14px; color: var(--cream); }
    .visualiser h2 em { color: #f0b079; font-style: italic; }
    .vis-sub {
      text-align: center; color: rgba(251,251,239,0.78); font-size: 1.05rem;
      max-width: 600px; margin: 0 auto 30px;
    }
    /* attention badge */
    .vis-badge-wrap { text-align: center; margin-bottom: 18px; }
    .vis-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(227,165,114,0.14); border: 1px solid rgba(227,165,114,0.5);
      color: #f4c98a; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em;
      text-transform: uppercase; padding: 9px 18px; border-radius: 50px;
      animation: visBadgePulse 2.6s ease-in-out infinite;
    }
    .vis-badge .spk { display: inline-block; animation: visSpark 2.6s ease-in-out infinite; }
    @keyframes visBadgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(227,165,114,0); } 50% { box-shadow: 0 0 0 7px rgba(227,165,114,0.12); } }
    @keyframes visSpark { 0%,100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.28) rotate(12deg); } }
    .vis-card {
      position: relative; max-width: 640px; margin: 0 auto;
      background: var(--white); border: 1px solid rgba(255,255,255,0.65);
      border-radius: var(--radius); padding: 36px 32px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.34);
      animation: visCardGlow 3.6s ease-in-out infinite;
    }
    @keyframes visCardGlow {
      0%,100% { box-shadow: 0 30px 80px rgba(0,0,0,0.34), 0 0 0 0 rgba(227,165,114,0); }
      50% { box-shadow: 0 30px 80px rgba(0,0,0,0.34), 0 0 0 6px rgba(227,165,114,0.20); }
    }
    /* periodic light sweep across the card */
    .vis-card::after {
      content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
      background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.55) 48%, transparent 64%);
      background-size: 250% 100%; background-position: 140% 0; opacity: 0;
      mix-blend-mode: overlay; animation: visShine 6s ease-in-out 1.4s infinite;
    }
    @keyframes visShine {
      0% { background-position: 140% 0; opacity: 0; }
      7% { opacity: 0.95; }
      24% { background-position: -45% 0; opacity: 0; }
      100% { background-position: -45% 0; opacity: 0; }
    }
    @media (max-width: 560px) { .vis-card { padding: 22px; } }
    /* nudge the CTA so it invites the tap */
    .visualiser .form-submit { animation: visCtaPulse 2.4s ease-in-out infinite; }
    @keyframes visCtaPulse {
      0%,100% { box-shadow: 0 4px 15px rgba(196,109,48,0.30); }
      50% { box-shadow: 0 10px 30px rgba(196,109,48,0.55); }
    }
    @media (prefers-reduced-motion: reduce) {
      .visualiser::before, .visualiser::after, .vis-card, .vis-card::after,
      .vis-badge, .vis-badge .spk, .visualiser .form-submit { animation: none !important; }
    }
    .vis-step .form-group { margin-bottom: 22px; }
    .vis-step textarea { min-height: 70px; }
    .vis-chips { margin-top: 12px; }
    .vis-gate-lead { font-weight: 600; color: var(--green, #2b4a2c); margin: 4px 0 12px; font-size: 0.98rem; }
    .vis-gate { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 480px) { .vis-gate { grid-template-columns: 1fr; } }
    /* non-blocking "missing field" highlight */
    .vis-missing input, .vis-missing .photo-drop {
      border-color: #c0392b !important;
      box-shadow: 0 0 0 3px rgba(192,57,43,0.16) !important;
      animation: visShake 0.32s ease;
    }
    .vis-missing label { color: #c0392b; }
    @keyframes visShake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
    @media (prefers-reduced-motion: reduce) { .vis-missing input, .vis-missing .photo-drop { animation: none; } }
    /* loading */
    .vis-loader { display: flex; justify-content: center; margin: 16px 0 26px; }
    .vis-spinner {
      width: 54px; height: 54px; border-radius: 50%;
      border: 4px solid var(--gray-200); border-top-color: var(--green-600);
      animation: visspin 0.9s linear infinite;
    }
    @keyframes visspin { to { transform: rotate(360deg); } }
    .vis-loading-title { text-align: center; font-weight: 700; font-size: 1.15rem; color: var(--green-900); margin-bottom: 6px; }
    .vis-loading-sub { text-align: center; color: var(--gray-600); font-size: 0.9rem; }
    /* result */
    #visSlider { margin-bottom: 16px; }
    #visSlider .ba-before-img { height: 360px; }
    .vis-disclaimer {
      font-size: 0.78rem; color: var(--gray-600); text-align: center;
      max-width: 520px; margin: 0 auto 20px; line-height: 1.5;
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm); padding: 10px 14px;
    }
    .vis-result-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .vis-result-actions .form-submit { display: block; text-align: center; text-decoration: none; max-width: 320px; width: 100%; }
    .vis-save-btn { background: var(--green-700) !important; color: var(--white) !important; animation: none !important; }
    .vis-save-btn:hover { background: var(--green-800) !important; box-shadow: 0 4px 15px rgba(45,106,79,0.32) !important; }
    .vis-save-hint { text-align: center; font-size: 0.78rem; color: var(--gray-600); margin: -4px 0 2px; max-width: 320px; line-height: 1.45; }
    .vis-retry {
      background: none; border: none; color: var(--green-700);
      font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
      cursor: pointer; text-decoration: underline; padding: 4px;
    }
    .vis-error-title { text-align: center; font-weight: 700; font-size: 1.1rem; color: var(--green-900); margin-bottom: 6px; }
    .vis-error-sub { text-align: center; color: var(--gray-600); font-size: 0.92rem; margin-bottom: 18px; }
    #visStepError { text-align: center; }
    #visStepError .vis-retry { display: inline-block; }
    /* full-screen overlay "page" for loading / result / error */
    .vis-overlay[hidden] { display: none; }
    .vis-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: var(--cream);
      overflow-y: auto; -webkit-overflow-scrolling: touch;
      display: flex; flex-direction: column; align-items: center;
      padding: 0;
      animation: visFade 0.25s ease;
    }
    @keyframes visFade { from { opacity: 0; } to { opacity: 1; } }
    /* margin:auto vertically centres when content fits but stays scroll-safe
       when it overflows (justify-content:center would clip the top). */
    .vis-overlay-inner {
      width: 100%; max-width: 680px; margin: auto;
      padding: 72px 28px 56px;
      position: relative;
    }
    @media (max-width: 560px) { .vis-overlay-inner { padding: 64px 18px 40px; } }
    .vis-overlay-close {
      position: absolute; top: 18px; right: 18px;
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--white); border: 1px solid var(--gray-200);
      color: var(--green-900); font-size: 1.4rem; line-height: 1;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(20,48,31,0.1); z-index: 2;
    }
    .vis-overlay-brand {
      text-align: center; font-family: 'DM Serif Display', serif;
      color: var(--green-900); font-size: 1.25rem; margin-bottom: 4px;
    }
    .vis-overlay-step { width: 100%; }
    .vis-overlay .vis-loader { margin: 40px 0 26px; }
    .vis-overlay .vis-spinner { width: 64px; height: 64px; }
    .vis-overlay .vis-loading-title { font-size: 1.4rem; }
    .vis-overlay .vis-loading-sub { font-size: 1rem; max-width: 420px; margin: 8px auto 0; }
    .vis-overlay #visSlider .ba-before-img { height: 420px; }
    @media (max-width: 560px) { .vis-overlay #visSlider .ba-before-img { height: 300px; } }
    .vis-overlay .vis-result-actions .form-submit { max-width: 360px; padding: 16px 28px; font-size: 1.05rem; }
    .vis-result-heading { text-align: center; font-family: 'DM Serif Display', serif; color: var(--green-900); font-size: 1.6rem; margin-bottom: 6px; }
    .vis-result-intro { text-align: center; color: var(--gray-600); font-size: 0.98rem; max-width: 460px; margin: 0 auto 20px; }

    /* ============================================
       7b. BESPOKE PLANTING CONSULTANCY (added 2026-05-23)
       ============================================ */
    .consultancy {
      padding: 110px 0;
      background: var(--cream);
    }
    .consultancy h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      color: var(--green-900);
    }
    .consultancy h2 em {
      font-style: italic;
      color: var(--green-700);
    }
    .consultancy-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }
    .consult-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1050px;
      margin: 0 auto 50px;
    }
    .consult-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .consult-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .consult-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 14px;
    }
    .consult-card h3 {
      color: var(--green-900);
      font-size: 1.15rem;
      margin-bottom: 8px;
    }
    .consult-card p {
      color: var(--gray-600);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .consult-price-line {
      text-align: center;
      color: var(--green-900);
      font-size: 1rem;
      margin-bottom: 24px;
      font-weight: 600;
    }
    .consult-price-line em {
      color: var(--orange-500);
      font-style: normal;
      font-weight: 700;
    }
    .consult-cta-wrap {
      text-align: center;
    }
    @media (max-width: 768px) {
      .consult-grid { grid-template-columns: 1fr; }
    }

    /* ============================================
       7b. PARTNERS / BIGGER JOBS
       ============================================ */
    .partners {
      padding: 110px 0;
      background: var(--cream-dark);
    }
    .partners h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      color: var(--green-900);
    }
    .partners h2 em {
      font-style: italic;
      color: var(--green-700);
    }
    .partners-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.05rem;
      max-width: 660px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1050px;
      margin: 0 auto 36px;
    }
    .partner-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: transform 0.25s, box-shadow 0.25s;
      border-top: 3px solid var(--sage);
    }
    .partner-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .partner-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 12px;
    }
    .partner-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--green-700);
      background: rgba(122,158,126,0.18);
      padding: 3px 10px;
      border-radius: 999px;
      margin-bottom: 10px;
    }
    .partner-card h3 {
      color: var(--green-900);
      font-size: 1.15rem;
      margin-bottom: 8px;
    }
    .partner-card p {
      color: var(--gray-600);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .partners-note {
      text-align: center;
      color: var(--gray-600);
      font-size: 0.98rem;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.7;
    }
    @media (max-width: 768px) {
      .partners-grid { grid-template-columns: 1fr; }
    }

    /* ============================================
       7c. FAQ
       ============================================ */
    .faq {
      padding: 110px 0;
      background: var(--cream);
    }
    .faq h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      color: var(--green-900);
    }
    .faq-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      margin-bottom: 14px;
      box-shadow: 0 3px 14px rgba(0,0,0,0.04);
      overflow: hidden;
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 56px 22px 26px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--green-900);
      position: relative;
      transition: color 0.2s;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--green-700);
      transition: transform 0.25s;
      line-height: 1;
    }
    .faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
    .faq-item summary:hover { color: var(--green-700); }
    .faq-answer {
      padding: 0 26px 24px;
      color: var(--gray-600);
      font-size: 0.98rem;
      line-height: 1.7;
    }
    .service-link {
      display: inline-block;
      margin-top: 12px;
      color: var(--sage);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.2s;
    }
    .service-link:hover { color: #fff; }
    .partner-link {
      display: inline-block;
      margin-top: 14px;
      color: var(--green-700);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
    }
    .partner-link:hover { text-decoration: underline; }

    /* ============================================
       8. SERVICES
       ============================================ */
    .services {
      padding: 110px 0;
      background: var(--green-900);
      color: var(--white);
      position: relative;
    }
    .services-wave-top {
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      line-height: 0;
    }
    .services-wave-top svg { width: 100%; height: 50px; }
    .services h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      padding-top: 10px;
    }
    .services-sub {
      text-align: center;
      color: rgba(255,255,255,0.65);
      font-size: 1.02rem;
      max-width: 500px;
      margin: 0 auto 60px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 32px 24px 24px;
      text-align: center;
      transition: transform 0.35s ease, background 0.3s, box-shadow 0.3s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.1);
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block;
    }
    .service-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .service-card > p {
      color: rgba(255,255,255,0.7);
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .service-price {
      display: inline-block;
      margin-top: 16px;
      background: var(--orange-500);
      color: var(--white);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
    }
    .service-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s;
      opacity: 0;
      margin-top: 0;
    }
    .service-card:hover .service-detail,
    .service-card.expanded .service-detail {
      max-height: 120px;
      opacity: 1;
      margin-top: 14px;
    }
    .service-detail p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* ============================================
       9. WHY H&O
       ============================================ */
    .why {
      padding: 110px 0;
      background: var(--white);
    }
    .why h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      color: var(--green-900);
    }
    .why-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.05rem;
      max-width: 550px;
      margin: 0 auto 60px;
      line-height: 1.7;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .why-card {
      text-align: center;
      padding: 40px 28px;
      border-radius: var(--radius);
      border: 2px solid var(--green-100);
      background: var(--green-50);
      transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    }
    .why-card:hover {
      border-color: var(--green-600);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    }
    .why-emoji {
      font-size: 2.8rem;
      margin-bottom: 18px;
      display: block;
    }
    .why-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--green-900);
    }
    .why-card p {
      color: var(--gray-600);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ============================================
       10. TESTIMONIALS
       ============================================ */
    .testimonials {
      padding: 100px 0;
      background: var(--cream);
    }
    .testimonials h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 50px;
      color: var(--green-900);
    }
    .testimonial-carousel-wrap {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }
    .testimonial-carousel {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
      padding: 10px 24px 20px;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }
    .testimonial-carousel::-webkit-scrollbar { display: none; }
    .testimonial-card {
      flex: 0 0 340px;
      scroll-snap-align: center;
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      border: 1px solid var(--gray-200);
      transition: transform 0.3s;
    }
    .testimonial-card:hover { transform: translateY(-3px); }
    .testimonial-stars {
      color: var(--orange-500);
      font-size: 1rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .testimonial-card blockquote {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--gray-800);
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-author {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--green-800);
    }
    .testimonial-location {
      font-size: 0.8rem;
      color: var(--gray-600);
      margin-top: 2px;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--green-900);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
      z-index: 5;
    }
    .carousel-btn:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .carousel-prev { left: -8px; }
    .carousel-next { right: -8px; }

    /* ============================================
       11. HOW IT WORKS
       ============================================ */
    .how {
      padding: 110px 0;
      background: var(--white);
    }
    .how h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 14px;
      color: var(--green-900);
    }
    .how-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 1.02rem;
      max-width: 450px;
      margin: 0 auto 60px;
    }
    .timeline {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      padding-left: 50px;
    }
    .timeline-track {
      position: absolute;
      left: 16px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--gray-200);
    }
    .timeline-fill {
      position: absolute;
      left: 16px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--green-700);
      transform-origin: top;
      transform: scaleY(0);
    }
    .timeline-step {
      position: relative;
      padding-bottom: 50px;
    }
    .timeline-step:last-child { padding-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -42px;
      top: 4px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 3px solid var(--gray-300);
      background: var(--white);
      z-index: 2;
      transition: border-color 0.4s, background 0.4s;
    }
    .timeline-step.reached .timeline-dot {
      border-color: var(--green-700);
      background: var(--green-700);
    }
    .timeline-step h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--green-900);
    }
    .timeline-step p {
      color: var(--gray-600);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    /* ============================================
       12. AREAS
       ============================================ */
    .areas {
      padding: 60px 0;
      background: var(--green-100);
    }
    .areas .container { text-align: center; }
    .areas h2 {
      font-size: 1.6rem;
      color: var(--green-900);
      margin-bottom: 24px;
    }
    .area-tags {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .area-tag {
      display: inline-block;
      text-decoration: none;
      background: var(--white);
      color: var(--green-800);
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      border: 1px solid var(--green-700);
      transition: transform 0.2s, background 0.2s, color 0.2s;
    }
    .area-tag:hover {
      background: var(--green-700);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ============================================
       13. CTA / FORM
       ============================================ */
    .cta-section {
      padding: 110px 0;
      background: linear-gradient(160deg, var(--green-900) 0%, #15332a 40%, var(--green-700) 100%);
      color: var(--white);
      position: relative;
    }
    .cta-wave-top {
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      line-height: 0;
    }
    .cta-wave-top svg { width: 100%; height: 50px; }
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .cta-content h2 {
      font-size: 2.2rem;
      margin-bottom: 18px;
    }
    .cta-content h2 em {
      color: var(--orange-500);
      font-style: normal;
    }
    .cta-text {
      color: rgba(255,255,255,0.75);
      font-size: 1.02rem;
      margin-bottom: 18px;
      line-height: 1.7;
    }
    .cta-phone {
      margin-top: 28px;
    }
    .cta-phone-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 6px;
    }
    .cta-phone a {
      color: var(--orange-500);
      font-size: 1.4rem;
      font-weight: 700;
      text-decoration: none;
      transition: color 0.2s;
    }
    .cta-phone a:hover { color: var(--orange-100); }
    .form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      color: var(--gray-900);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    .form-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--green-900);
    }
    .form-sub {
      color: var(--gray-600);
      font-size: 0.85rem;
      margin-bottom: 24px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--gray-800);
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
      background: var(--gray-50);
    }
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--green-600);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }
    .form-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .chip {
      display: inline-block;
      padding: 9px 14px;
      border: 1.5px solid var(--gray-200);
      border-radius: 50px;
      background: var(--gray-50);
      color: var(--gray-800);
      font-size: 0.86rem;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: all 0.18s;
      -webkit-tap-highlight-color: transparent;
    }
    .chip:hover { border-color: var(--green-600); }
    .chip.selected {
      background: var(--green-700);
      border-color: var(--green-700);
      color: var(--white);
    }
    /* ---- Optional photo upload ---- */
    .photo-drop {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 2px; text-align: center;
      padding: 22px 16px;
      border: 2px dashed var(--gray-200);
      border-radius: var(--radius-sm, 12px);
      background: var(--gray-50);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .photo-drop:hover { border-color: var(--orange-500); background: #fff; }
    .photo-drop-icon { font-size: 1.5rem; line-height: 1; }
    .photo-drop-text { font-weight: 700; color: var(--green-800); font-size: 0.98rem; }
    .photo-drop-sub { font-size: 0.78rem; color: var(--gray-600); }
    .photo-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
    .photo-previews:empty { margin-top: 0; }
    .photo-thumb {
      position: relative; width: 76px; height: 76px; border-radius: 10px; overflow: hidden;
      box-shadow: 0 2px 8px rgba(20,48,31,0.14); background: var(--gray-200);
    }
    .photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .photo-thumb-remove {
      position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border: none;
      border-radius: 50%; background: rgba(20,48,31,0.78); color: #fff; font-size: 0.95rem;
      line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
      padding: 0;
    }
    .photo-thumb-remove:hover { background: var(--orange-600); }
    .photo-thumb.is-busy::after {
      content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.55);
    }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: var(--orange-500);
      color: var(--white);
      border: none;
      border-radius: 50px;
      font-size: 1.02rem;
      font-weight: 700;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
      margin-top: 6px;
    }
    .form-submit:hover {
      background: var(--orange-600);
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(196,109,48,0.3);
    }
    .form-submit:active { transform: scale(0.97); }
    .form-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--gray-600);
      margin-top: 14px;
    }
    .whatsapp-alt {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--gray-200);
    }
    .whatsapp-label {
      font-size: 0.8rem;
      color: var(--gray-600);
      margin-bottom: 10px;
    }
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: var(--white);
      padding: 13px 26px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.92rem;
      transition: transform 0.2s, background 0.2s;
    }
    .whatsapp-btn:hover {
      background: #1da851;
      transform: translateY(-1px);
    }
    .whatsapp-btn:active { transform: scale(0.97); }

    /* ============================================
       14. FLOATING CTA
       ============================================ */
    .floating-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 400;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    }
    .floating-cta.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .floating-cta a {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: var(--white);
      padding: 14px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.92rem;
      box-shadow: 0 6px 25px rgba(37,211,102,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .floating-cta a:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 35px rgba(37,211,102,0.4);
    }
    .floating-cta-pulse {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 14px;
      height: 14px;
      background: var(--orange-500);
      border-radius: 50%;
      border: 2px solid var(--white);
    }
    @keyframes pulse-ring {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(2.2); opacity: 0; }
    }
    .floating-cta-pulse::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: var(--orange-500);
      animation: pulse-ring 2s ease-out infinite;
    }

    /* ============================================
       15. FOOTER
       ============================================ */
    .footer {
      background: var(--green-900);
      color: rgba(255,255,255,0.6);
      padding: 40px 0;
      text-align: center;
      font-size: 0.85rem;
    }
    .footer a {
      color: var(--orange-500);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer a:hover { color: var(--orange-100); }
    .footer-phone {
      font-size: 1.1rem;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .footer-areas {
      margin-top: 6px;
      color: rgba(255,255,255,0.4);
    }
    .footer-tagline {
      margin-top: 16px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }

    /* ============================================
       16. STICKY MOBILE BAR
       ============================================ */
    .sticky-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--green-900);
      padding: 12px 20px;
      z-index: 600;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    .sticky-bar a {
      display: block;
      background: var(--orange-500);
      color: var(--white);
      text-align: center;
      padding: 14px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
    }

    /* ============================================
       17. VINE SVG
       ============================================ */
    .vine-container {
      position: absolute;
      top: 0;
      left: 2%;
      width: 90px;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      overflow: visible;
    }
    .vine-svg {
      width: 100%;
      height: 100%;
    }
    .vine-path {
      fill: none;
      stroke: #2d6a4f;
      stroke-width: 2.5;
      stroke-linecap: round;
      opacity: 0.35;
    }
    .vine-branch {
      fill: none;
      stroke: #3a7d5e;
      stroke-width: 1.5;
      stroke-linecap: round;
      opacity: 0;
    }
    .vine-tendril {
      fill: none;
      stroke: #4a9e6f;
      stroke-width: 0.9;
      stroke-linecap: round;
      opacity: 0;
    }
    .vine-leaf-shape {
      fill: #2d6a4f;
      opacity: 0;
    }
    .vine-leaf-vein {
      fill: none;
      stroke: #1e4d35;
      stroke-width: 0.4;
      opacity: 0;
    }

    /* ============================================
       18. LEAF PARALLAX
       ============================================ */
    .parallax-leaf {
      position: absolute;
      pointer-events: none;
      z-index: 1;
      will-change: transform;
    }
    .parallax-leaf svg {
      display: block;
    }

    /* ============================================
       19. PAGE WRAPPER
       ============================================ */
    .page-wrapper {
      position: relative;
      overflow-x: hidden;
    }

    /* ============================================
       20. RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .why-card:last-child { grid-column: span 2; max-width: 400px; justify-self: center; }
    }

    @media (max-width: 768px) {
      .hero { padding: 50px 0 80px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero h1 { font-size: 2.1rem; }
      .hero-image-card img { height: 280px; }
      .ba-before-img { height: 260px; }
      .pain-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .why-card:last-child { grid-column: span 1; max-width: none; }
      .testimonial-card { flex: 0 0 290px; }
      .cta-grid { grid-template-columns: 1fr; gap: 40px; }
      .trust-items { gap: 16px; }
      .sticky-bar { display: block; }
      body { padding-bottom: 70px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .floating-cta { bottom: 80px; right: 16px; z-index: 550; }
      .vine-container { display: none; }
      .hero-depth-leaf { display: none; }
      .parallax-leaf { display: none; }
      .carousel-btn { display: none; }
      .problem, .consultancy, .services, .why, .how, .cta-section { padding: 80px 0; }
      .ba-section, .testimonials { padding: 70px 0; }
      h2 { font-size: 1.8rem !important; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 1.75rem; }
      .hero-sub { font-size: 1rem; }
      .container { padding: 0 18px; }
      .form-card { padding: 28px 22px; }
      .testimonial-card { flex: 0 0 270px; padding: 24px; }
    }

    /* ============================================
       21. REDUCED MOTION
       ============================================ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
      [data-animate] {
        visibility: visible !important;
        opacity: 1 !important;
      }
    }

    /* ============================================
       22. GALLERY (real work)
       ============================================ */
    .gallery { background: var(--cream); padding: 90px 0; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 40px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 26px rgba(20,48,31,0.12);
      aspect-ratio: 4 / 3;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-cap {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 18px 18px 14px;
      background: linear-gradient(transparent, rgba(20,48,31,0.78));
      color: #fff; font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.3px;
    }
    .gallery-tall { grid-row: span 2; aspect-ratio: auto; }
    @media (max-width: 760px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-tall { grid-row: span 1; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

    /* ============================================
       23. MEET THE TEAM (E-E-A-T)
       ============================================ */
    .meet { background: var(--cream-dark); padding: 96px 0; }
    .meet-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 56px;
      align-items: center;
    }
    .meet-photo {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(20,48,31,0.22);
    }
    .meet-photo img { width: 100%; height: 460px; object-fit: cover; display: block; }
    .meet-monogram {
      position: absolute; top: 18px; left: 18px;
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(20,48,31,0.55); backdrop-filter: blur(6px);
      color: var(--gold-soft); font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem;
      border: 1px solid rgba(216,183,101,0.5);
    }
    .meet-body h2 { color: var(--green-900); font-size: 2.2rem; margin-bottom: 8px; }
    .meet-body h2 em { font-style: italic; color: var(--orange-500); }
    .meet-kicker { color: var(--brass-dark); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 14px; }
    .meet-body p { color: var(--gray-800); line-height: 1.85; margin-bottom: 16px; max-width: 560px; }
    .meet-sign { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.3rem; color: var(--green-700); margin-top: 6px; }
    .meet-stats { display: flex; gap: 30px; margin: 26px 0 6px; flex-wrap: wrap; }
    .meet-stat strong { display: block; font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--green-800); line-height: 1.1; }
    .meet-stat span { font-size: 0.82rem; color: var(--gray-600); }
    @media (max-width: 820px) {
      .meet-grid { grid-template-columns: 1fr; gap: 32px; }
      .meet-photo img { height: 340px; }
    }