    /* ════════════════════════════════════════════
       TOKENS
       Palette: Forest family, derived from the brand
       logo (ink brown #42210b, leaf green #82be20).
       Radius rule: controls 10px, cards 16px, media 24px.
       ════════════════════════════════════════════ */
    :root {
      --bg: #F6F7F1;
      --surface: #FFFFFF;
      --surface-tint: #EEF1E6;
      --ink: #2A1A0C;
      --ink-soft: #5C5247;
      --ink-faint: #8A8073;
      --green-deep: #2F5310;
      --green-dark: #24400C;
      --leaf: #82BE20;
      --leaf-soft: rgba(130, 190, 32, 0.14);
      --line: rgba(42, 26, 12, 0.10);
      --line-strong: rgba(42, 26, 12, 0.16);
      --band: #22390E;
      --band-ink: #F2F5E9;
      --band-ink-soft: rgba(242, 245, 233, 0.72);
      --shadow-card: 0 1px 2px rgba(42, 26, 12, 0.05), 0 10px 28px rgba(42, 26, 12, 0.07);
      --shadow-card-hover: 0 2px 4px rgba(42, 26, 12, 0.06), 0 18px 40px rgba(42, 26, 12, 0.12);
      --r-control: 10px;
      --r-card: 16px;
      --r-media: 24px;
      --container: 1200px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      /* spacing scale (4pt base) */
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 24px;
      --space-6: 32px;
      --space-7: 48px;
      --space-8: 64px;
      --space-9: 96px;
      /* section rhythm */
      --section-pad: clamp(72px, 8.5vw, 112px);
      --section-pad-sm: clamp(44px, 5vw, 68px);
      --section-head-gap: clamp(36px, 5vw, 56px);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 88px;
    }

    body {
      font-family: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ::selection {
      background: var(--leaf);
      color: var(--green-dark);
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Type scale ── */
    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.12;
      text-wrap: balance;
    }

    .display {
      font-size: clamp(2.4rem, 5.4vw, 3.9rem);
    }

    .heading {
      font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    }

    .lede {
      font-size: clamp(1.02rem, 1.5vw, 1.15rem);
      color: var(--ink-soft);
      max-width: 56ch;
    }

    .accent {
      color: var(--green-deep);
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 26px;
      border-radius: var(--r-control);
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: transform 0.25s var(--ease), background 0.25s var(--ease),
        border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
      white-space: nowrap;
    }

    .btn:active {
      transform: scale(0.98);
    }

    .btn-primary {
      background: var(--green-deep);
      color: #FDFDF9;
      box-shadow: 0 6px 18px rgba(47, 83, 16, 0.22);
    }

    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(47, 83, 16, 0.28);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn-ghost:hover {
      border-color: var(--green-deep);
      color: var(--green-deep);
      transform: translateY(-2px);
    }

    .btn-on-dark {
      background: transparent;
      color: var(--band-ink);
      border-color: rgba(242, 245, 233, 0.4);
    }

    .btn-on-dark:hover {
      background: rgba(242, 245, 233, 0.1);
      border-color: var(--band-ink);
    }

    /* ── Reveal on scroll ── */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .btn,
      .product-card,
      .product-card img {
        transition: none !important;
      }
    }

    /* ════════ NAV ════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(246, 247, 241, 0);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .nav.scrolled {
      background: rgba(246, 247, 241, 0.9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .brand img {
      width: 42px;
      height: 42px;
    }

    .brand-name {
      font-size: 1.18rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .brand-name span {
      color: var(--green-deep);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links a:not(.btn) {
      font-size: 0.93rem;
      font-weight: 500;
      color: var(--ink-soft);
      transition: color 0.2s ease;
    }

    .nav-links a:not(.btn):hover {
      color: var(--green-deep);
    }

    .nav-links .btn {
      padding: 10px 20px;
      font-size: 0.88rem;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: var(--ink);
      font-size: 1.5rem;
      line-height: 1;
    }

    .mobile-menu {
      display: none;
      background: rgba(246, 247, 241, 0.98);
      backdrop-filter: blur(14px);
      border-top: 1px solid var(--line);
      padding: 16px 24px 24px;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-weight: 500;
      color: var(--ink-soft);
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu a:last-child {
      border-bottom: none;
    }

    @media (max-width: 860px) {
      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: block;
      }
    }

    /* ════════ HERO ════════ */
    .hero {
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 110px 0 var(--space-8);
      background:
        radial-gradient(900px 500px at 85% 0%, rgba(130, 190, 32, 0.10), transparent 65%),
        var(--bg);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(36px, 6vw, 72px);
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5.6vw, 4.1rem);
      font-weight: 650;
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: italic;
      font-weight: 600;
      color: var(--green-deep);
      line-height: 1.15;
      padding-bottom: 4px;
    }

    .hero .lede {
      margin-bottom: 34px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-media {
      position: relative;
    }

    .hero-media .frame {
      border-radius: var(--r-media);
      overflow: hidden;
      background: var(--surface-tint);
      box-shadow: var(--shadow-card-hover);
    }

    .hero-media img {
      width: 100%;
      aspect-ratio: 4 / 4.6;
      object-fit: cover;
    }

    .hero-media .caption {
      margin-top: 14px;
      font-size: 0.9rem;
      color: var(--ink-faint);
    }

    @media (max-width: 860px) {
      .hero {
        padding-top: 96px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-media {
        order: -1;
      }

      .hero-media img {
        aspect-ratio: 4 / 3;
      }
    }

    /* ════════ BENEFITS STRIP ════════ */
    .benefits {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--surface);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .benefit {
      padding: 34px 28px;
      border-left: 1px solid var(--line);
    }

    .benefit:first-child {
      border-left: none;
      padding-left: 0;
    }

    .benefit i {
      font-size: 1.6rem;
      color: var(--green-deep);
    }

    .benefit h3 {
      font-size: 1.02rem;
      margin: 12px 0 6px;
    }

    .benefit p {
      font-size: 0.9rem;
      color: var(--ink-soft);
    }

    @media (max-width: 860px) {
      .benefits-grid {
        grid-template-columns: 1fr 1fr;
      }

      .benefit {
        padding: 24px 20px;
      }

      .benefit:nth-child(odd) {
        border-left: none;
        padding-left: 0;
      }

      .benefit:nth-child(n+3) {
        border-top: 1px solid var(--line);
      }
    }

    /* ════════ SECTIONS ════════ */
    section.block {
      padding: var(--section-pad) 0;
    }

    .section-head {
      max-width: 620px;
      margin-bottom: var(--section-head-gap);
    }

    .section-head p {
      margin-top: 14px;
    }

    /* ════════ FEATURED (split) ════════ */
    .featured-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: clamp(36px, 6vw, 80px);
      align-items: center;
    }

    .featured-media {
      border-radius: var(--r-media);
      overflow: hidden;
      background: var(--surface-tint);
      box-shadow: var(--shadow-card);
    }

    .featured-media img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }

    .featured-points {
      margin: 26px 0 32px;
      display: grid;
      gap: 14px;
    }

    .featured-points li {
      list-style: none;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.98rem;
      color: var(--ink-soft);
    }

    .featured-points i {
      color: var(--green-deep);
      font-size: 1.15rem;
      margin-top: 3px;
    }

    .featured-points strong {
      color: var(--ink);
      font-weight: 600;
    }

    @media (max-width: 860px) {
      .featured-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ════════ PRODUCTS ════════ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .product-card {
      background: var(--surface);
      border-radius: var(--r-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-card-hover);
    }

    .product-card .img-wrap {
      overflow: hidden;
      background: var(--surface-tint);
    }

    .product-card img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      transition: transform 0.6s var(--ease);
    }

    .product-card:hover img {
      transform: scale(1.05);
    }

    .product-body {
      padding: 22px 24px 24px;
    }

    .product-body h3 {
      font-size: 1.12rem;
      margin-bottom: 3px;
    }

    .product-body .sub {
      font-size: 0.88rem;
      color: var(--ink-faint);
      margin-bottom: 16px;
    }

    .product-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .price {
      font-size: 1.08rem;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .price small {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--ink-faint);
    }

    .product-foot .order {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--green-deep);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: var(--r-control);
      background: var(--leaf-soft);
      transition: background 0.25s ease, color 0.25s ease;
    }

    .product-foot .order:hover {
      background: var(--green-deep);
      color: #FDFDF9;
    }

    .tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--green-deep);
      background: var(--leaf-soft);
      padding: 4px 10px;
      border-radius: var(--r-control);
      margin-bottom: 12px;
    }

    @media (max-width: 980px) {
      .products-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 620px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ════════ STORY BAND (dark) ════════ */
    .story-band {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(800px 420px at 12% 110%, rgba(130, 190, 32, 0.16), transparent 60%),
        var(--band);
      color: var(--band-ink);
    }

    /* Hanging foliage garland along the top edge (decorative only) */
    .story-band::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 340px;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='340' viewBox='0 0 560 340'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0 Q13 -9 28 0 Q13 9 0 0Z'/%3E%3Cg id='b'%3E%3Cpath d='M0 0 Q16 74 56 138' fill='none' stroke='%2382BE20' stroke-width='2'/%3E%3Cuse href='%23a' transform='translate(3 26) rotate(158) scale(1.1)'/%3E%3Cuse href='%23a' transform='translate(8 46) rotate(36)'/%3E%3Cuse href='%23a' transform='translate(15 70) rotate(150) scale(1.2)'/%3E%3Cuse href='%23a' transform='translate(24 92) rotate(44)'/%3E%3Cuse href='%23a' transform='translate(34 110) rotate(142) scale(1.1)'/%3E%3Cuse href='%23a' transform='translate(45 126) rotate(54)'/%3E%3Cuse href='%23a' transform='translate(56 138) rotate(82) scale(1.25)'/%3E%3C/g%3E%3C/defs%3E%3Cg fill='%2382BE20'%3E%3Cuse href='%23b' transform='translate(42 -12) rotate(9)' opacity='0.20'/%3E%3Cuse href='%23b' transform='translate(128 -26) scale(1.45) rotate(-13)' opacity='0.12'/%3E%3Cuse href='%23b' transform='translate(255 -8) scale(-1 1) rotate(6)' opacity='0.17'/%3E%3Cuse href='%23b' transform='translate(330 -20) scale(1.2) rotate(-5)' opacity='0.11'/%3E%3Cuse href='%23b' transform='translate(470 -14) scale(-1.3 1.3) rotate(-8)' opacity='0.16'/%3E%3Cuse href='%23b' transform='translate(540 -4) rotate(14) scale(0.85)' opacity='0.20'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 560px 340px;
      background-repeat: repeat-x;
      background-position: top center;
    }

    .story-band .container {
      position: relative;
      z-index: 1;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: clamp(40px, 7vw, 90px);
      align-items: center;
    }

    .story-band h2 {
      color: var(--band-ink);
      margin-bottom: 20px;
    }

    .story-band .body {
      display: grid;
      gap: 16px;
      color: var(--band-ink-soft);
      font-size: 1.02rem;
      max-width: 56ch;
    }

    .story-stats {
      display: grid;
      gap: 0;
      border-left: 1px solid rgba(242, 245, 233, 0.18);
    }

    .stat {
      padding: 26px 0 26px 32px;
      border-bottom: 1px solid rgba(242, 245, 233, 0.14);
    }

    .stat:last-child {
      border-bottom: none;
    }

    .stat .num {
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      font-weight: 650;
      letter-spacing: -0.02em;
      color: var(--leaf);
      line-height: 1.1;
    }

    .stat .label {
      font-size: 0.92rem;
      color: var(--band-ink-soft);
      margin-top: 4px;
    }

    @media (max-width: 860px) {
      .story-grid {
        grid-template-columns: 1fr;
      }

      .story-stats {
        border-left: none;
        border-top: 1px solid rgba(242, 245, 233, 0.18);
      }

      .stat {
        padding-left: 0;
      }
    }

    /* ════════ PROCESS (tinted band, connected timeline) ════════ */
    .process-band {
      position: relative;
      background: var(--surface-tint);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: var(--section-pad) 0;
      overflow: hidden;
    }

    .process-band::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, var(--leaf-soft), transparent 70%);
      pointer-events: none;
    }

    .process-band .section-head {
      max-width: 640px;
      margin-bottom: var(--section-head-gap);
    }

    .process-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-deep);
      background: var(--surface);
      border: 1px solid var(--line);
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 18px;
    }

    .process-eyebrow i {
      font-size: 0.95rem;
      color: var(--leaf);
    }

    .process-band .section-head p {
      color: var(--ink-soft);
    }

    .process-flow {
      position: relative;
      display: flex;
      align-items: stretch;
      gap: clamp(16px, 2vw, 28px);
    }

    /* connecting rail behind the badges */
    .process-flow::before {
      content: "";
      position: absolute;
      top: 38px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 16px);
      z-index: 0;
    }

    .pstep {
      position: relative;
      z-index: 1;
      flex: 1;
      min-width: 0;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-card);
      padding: clamp(22px, 2.4vw, 30px) clamp(18px, 2vw, 26px) clamp(24px, 2.6vw, 30px);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    }

    .pstep:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
      border-color: var(--line-strong);
    }

    .pstep-badge {
      position: relative;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--green-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 0 0 6px var(--surface), 0 0 0 7px var(--line);
    }

    .pstep-badge i {
      font-size: 1.55rem;
      color: #FDFDF9;
    }

    .pstep-num {
      position: absolute;
      top: -8px;
      right: -8px;
      min-width: 24px;
      height: 24px;
      padding: 0 6px;
      border-radius: 999px;
      background: var(--leaf);
      color: var(--green-dark);
      font-size: 0.72rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--surface);
    }

    .pstep h3 {
      font-size: 1.12rem;
      margin-bottom: 8px;
    }

    .pstep p {
      font-size: 0.92rem;
      color: var(--ink-soft);
      line-height: 1.55;
    }

    .flow-arrow {
      display: none;
    }

    @media (max-width: 860px) {
      .process-flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }

      .process-flow::before {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .process-flow {
        grid-template-columns: 1fr;
      }
    }

    /* ════════ TESTIMONIALS ════════ */
    .quotes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 2vw, 26px);
    }

    .quote {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-card);
      padding: clamp(26px, 2.6vw, 34px);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    }

    .quote:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
      border-color: var(--line-strong);
    }

    .quote::before {
      content: "\201C";
      position: absolute;
      top: -18px;
      right: 14px;
      font-size: 7rem;
      line-height: 1;
      font-family: Georgia, 'Times New Roman', serif;
      color: var(--leaf-soft);
      pointer-events: none;
    }

    .quote-stars {
      display: inline-flex;
      gap: 3px;
      color: #E8A317;
      font-size: 1rem;
      margin-bottom: 16px;
    }

    .quote blockquote {
      position: relative;
      z-index: 1;
      font-size: 1.05rem;
      line-height: 1.6;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
      flex: 1;
    }

    .quote-person {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    .quote-avatar {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--green-deep);
      color: #FDFDF9;
      font-size: 0.92rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .quote .who {
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.3;
    }

    .quote .where {
      font-size: 0.82rem;
      color: var(--ink-faint);
    }

    @media (max-width: 860px) {
      .quotes {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    }

    /* ════════ FAQ ════════ */
    .faq-wrap {
      max-width: 100%;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-card);
      box-shadow: var(--shadow-card);
      margin-bottom: 14px;
      overflow: hidden;
      transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    }

    .faq-item:hover {
      border-color: var(--line-strong);
    }

    .faq-item[open] {
      border-color: var(--green-deep);
      box-shadow: var(--shadow-card-hover);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.25s var(--ease);
    }

    .faq-item summary:hover {
      color: var(--green-deep);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary i {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--leaf-soft);
      color: var(--green-deep);
      font-size: 1rem;
      transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
    }

    .faq-item[open] summary i {
      transform: rotate(45deg);
      background: var(--green-deep);
      color: #FDFDF9;
    }

    .faq-item .answer {
      margin: 0 24px;
      padding: 18px 0 22px;
      border-top: 1px solid var(--line);
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    .faq-item[open] .answer {
      animation: faqReveal 0.4s var(--ease);
    }

    @keyframes faqReveal {
      from {
        opacity: 0;
        transform: translateY(-6px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ════════ CTA BAND ════════ */
    .cta-band {
      position: relative;
      isolation: isolate;
      padding: var(--section-pad-sm) 0;
      background: radial-gradient(circle at 50% 120%, var(--green-deep), var(--green-dark) 55%, #1A2E08 100%);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      text-align: center;
      overflow: hidden;
    }

    /* soft glow */
    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(130, 190, 32, 0.28), transparent 60%);
      z-index: -2;
    }

    /* organic leaf illustration layer */
    .cta-illo {
      position: absolute;
      inset: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      pointer-events: none;
      color: var(--leaf);
      opacity: 0.16;
    }

    .cta-band .container {
      position: relative;
      z-index: 1;
    }

    .cta-band .heading {
      color: #FBFDF4;
      max-width: 18ch;
      margin-inline: auto;
    }

    .cta-band .lede {
      margin: 14px auto 26px;
      max-width: 52ch;
      color: var(--band-ink-soft);
    }

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--leaf);
      background: rgba(130, 190, 32, 0.12);
      border: 1px solid rgba(130, 190, 32, 0.3);
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
    }

    .cta-band .actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .cta-band .btn-primary {
      background: #FBFDF4;
      color: var(--green-dark);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    }

    .cta-band .btn-primary:hover {
      background: #FFFFFF;
      color: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
    }

    /* ════════ CONTACT ════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }

    .contact-rows {
      margin-top: 34px;
      display: grid;
      gap: 6px;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }

    .contact-row:last-child {
      border-bottom: none;
    }

    .contact-row i {
      font-size: 1.35rem;
      color: var(--green-deep);
      flex-shrink: 0;
    }

    .contact-row .k {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink-faint);
    }

    .contact-row .v {
      font-weight: 600;
      font-size: 0.98rem;
    }

    .contact-row a.v:hover {
      color: var(--green-deep);
    }

    .contact-form {
      background: var(--surface);
      border-radius: var(--r-card);
      box-shadow: var(--shadow-card);
      padding: clamp(26px, 4vw, 40px);
    }

    .field {
      margin-bottom: 18px;
    }

    .field label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 7px;
    }

    .field input,
    .field textarea {
      width: 100%;
      font-family: inherit;
      font-size: 0.95rem;
      color: var(--ink);
      background: var(--bg);
      border: 1.5px solid var(--line-strong);
      border-radius: var(--r-control);
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: var(--ink-faint);
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--green-deep);
      box-shadow: 0 0 0 3px var(--leaf-soft);
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    form-note {
      display: none;
      margin-top: 14px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--green-deep);
    }

    form-note.show {
      display: block;
    }

    @media (max-width: 860px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .field-row {
        grid-template-columns: 1fr;
      }
    }

    /* ════════ FOOTER ════════ */
    footer {
      background: #1B1209;
      color: rgba(246, 247, 241, 0.65);
      padding: 56px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(246, 247, 241, 0.12);
    }

    .footer-grid .brand-name {
      color: #F6F7F1;
    }

    .footer-grid .brand-name span {
      color: var(--leaf);
    }

    .footer-about {
      margin-top: 14px;
      font-size: 0.92rem;
      max-width: 36ch;
    }

    .footer-col h4 {
      color: #F6F7F1;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: grid;
      gap: 10px;
      font-size: 0.92rem;
    }

    .footer-col a:hover {
      color: var(--leaf);
    }

    .footer-bottom {
      padding-top: 26px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      font-size: 0.85rem;
      color: rgba(246, 247, 241, 0.45);
    }

    @media (max-width: 860px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ════════ CONTACT FORM 7 ════════ */
    .contact-form .wpcf7-form-control-wrap {
      display: block;
    }

    form input.wpcf7-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      width: 100%;
      margin-top: 6px;
      padding: 13px 26px;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.2;
      color: #FDFDF9;
      background: var(--green-deep);
      border: 1.5px solid transparent;
      border-radius: var(--r-control);
      box-shadow: 0 6px 18px rgba(47, 83, 16, 0.22);
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      transition: transform 0.25s var(--ease), background 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
    }

    form input.wpcf7-submit:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(47, 83, 16, 0.28);
    }

    form input.wpcf7-submit:active {
      transform: scale(0.98);
    }

    form input.wpcf7-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    /* validation / error text under fields */
    .contact-form .wpcf7-not-valid-tip {
      display: block;
      margin-top: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #b3261e;
    }

    .contact-form .wpcf7-form-control.wpcf7-not-valid {
      border-color: #b3261e;
      box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
    }

    /* CF7 response banner (success / error / spam) */
    .contact-form .wpcf7-response-output {
      margin: 18px 0 0;
      padding: 12px 16px;
      border-radius: var(--r-control);
      font-size: 0.9rem;
      font-weight: 600;
      border: 1.5px solid var(--line-strong);
    }

    .contact-form .wpcf7-mail-sent-ok {
      color: var(--green-deep);
      border-color: var(--green-deep);
      background: var(--leaf-soft);
    }

    .contact-form .wpcf7-validation-errors,
    .contact-form .wpcf7-mail-sent-ng,
    .contact-form .wpcf7-spam-blocked {
      color: #b3261e;
      border-color: #b3261e;
      background: rgba(179, 38, 30, 0.06);
    }

    .contact-form .wpcf7-spinner {
      margin: 14px auto 0;
    }
