/* Generated verbatim from html/ecs/book-a-tour.html */
:root {
      /* ECS palette */
      --gum-tree-green: #3D5E46;
      --gum-mid-green: #324437;
      --leaf-green: #79A16F;
      --leaf-text: #3E6D30;
      --dark-green: #293203;
      --light-green: #F3FAEA;
      --bark-light: #EEEDE7;
      --bark-brown: #D7D5C9;
      --blob-green: #C9D4AE;
      --wattle: #EDD889;
      --lutheran-blue: #004580;
      --light-light-blue: #F0FAFF;

      --container: 1280px;
      --page-pad: clamp(24px, 5vw, 64px);
      --section-y: clamp(56px, 8vw, 96px);
      --content-measure: 68ch;

      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 20px;
      --space-6: 24px;
      --space-8: 32px;
      --space-10: 40px;
      --space-12: 48px;
      --space-16: 64px;

      --radius: 5px;
      --radius-lg: 8px;
      --shadow-sm: 0 1px 3px rgba(41, 50, 3, .08), 0 1px 2px rgba(41, 50, 3, .06);
      --shadow-md: 0 10px 30px rgba(41, 50, 3, .14);
    }

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

    html {
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      color-scheme: light;
    }

    body {
      font-family: 'Sarabun', system-ui, sans-serif;
      color: var(--dark-green);
      background: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    .page {
      margin: 0 auto;
      overflow: clip;
    }

    a:focus-visible,
    .btn:focus-visible,
    button:focus-visible,
    .link-yellow:focus-visible,
    .nav-burger-cb:focus-visible+.nav-main .nav-burger,
    .dropdown-toggle:focus-visible {
      outline: none;
      border-radius: var(--radius);
      box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--leaf-green);
    }

    .skip-link {
      position: absolute;
      left: var(--space-4);
      top: -56px;
      z-index: 100;
      background: var(--gum-tree-green);
      color: #fff;
      padding: 12px 20px;
      border-radius: var(--radius);
      font-weight: 700;
    }

    .skip-link:focus {
      top: var(--space-4);
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      width: 100%;
    }

    h1,
    h2,
    h3 {
      font-family: 'Livvic', system-ui, sans-serif;
      font-weight: 500;
    }

    .h1 {
      font-family: 'Livvic', system-ui, sans-serif;
      font-weight: 400;
      font-size: clamp(52px, 8vw, 100px);
      line-height: 1;
      letter-spacing: -2px;
      text-wrap: balance;
    }

    .h2 {
      font-family: 'Livvic', system-ui, sans-serif;
      font-weight: 500;
      font-size: clamp(34px, 4.5vw, 55px);
      line-height: 1.2;
      letter-spacing: -0.5px;
      text-wrap: balance;
    }

    .h3 {
      font-family: 'Livvic', system-ui, sans-serif;
      font-weight: 500;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.1;
      letter-spacing: -0.72px;
    }

    .body {
      font-size: 20px;
      line-height: 1.3;
      font-weight: 400;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 51px;
      padding: 0 40px;
      border-radius: var(--radius);
      font-family: 'Sarabun', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 1.5;
      cursor: pointer;
      border: none;
      white-space: nowrap;
      text-align: center;
      transition: filter 0.2s;
    }

    .btn:hover {
      filter: brightness(.95);
    }

    .btn-yellow {
      background: var(--wattle);
      color: var(--gum-tree-green);
      /* Sarabun reserves tall ascender space for Thai marks, so its Latin label
         sits low — extra bottom padding lifts the text 2px to the optical centre
         without moving the button box (siblings stay aligned) */
      padding-bottom: 4px;
    }

    .link-yellow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--wattle);
      font-family: 'Sarabun', sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 1.3;
      cursor: pointer;
    }

    .link-yellow img,
    .link-yellow svg {
      width: 24px;
      height: 24px;
      flex: none;
    }

    .link-yellow:hover {
      filter: brightness(1.08);
    }

    /* ---------- Header / Nav ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 90;
    }

    .nav-top {
      background: var(--bark-brown);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(4px, 0.8vw, 12px);
      padding: 6px var(--page-pad);
      flex-wrap: wrap;
    }

    .nav-top .call {
      color: var(--gum-tree-green);
      font-weight: 700;
      font-size: 18px;
      padding: 8px 12px;
    }

    .nav-edu-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 40px;
      padding: 0 16px;
      border-radius: var(--radius);
      background: transparent;
      color: var(--lutheran-blue);
      font-weight: 700;
      font-size: 18px;
      transition: filter 0.2s;
    }

    .nav-edu-btn:hover {
      filter: brightness(.96);
    }

    .nav-edu-btn img {
      width: 22px;
      height: 22px;
      flex: none;
    }

    .nav-main {
      background: var(--bark-light);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      padding: 12px var(--page-pad) 20px;
      box-shadow: 0 4px 12px rgba(41, 50, 3, .06);
      position: relative;
    }

    .nav-logo {
      flex: none;
      z-index: 51;
    }

    .nav-logo img {
      height: 84px;
      width: auto;
    }

    .nav-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 18px;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 14px;
      border-radius: var(--radius);
      background: #fff;
      color: var(--gum-tree-green);
      font-weight: 700;
      font-size: 16px;
      transition: filter 0.2s, box-shadow 0.2s;
    }

    .nav-pill.waitlist {
      background: var(--wattle);
      color: var(--gum-tree-green);
      /* Match the yellow buttons: nudge the Sarabun label up to optical centre */
      padding-left: 18px;
      padding-right: 18px;
      padding-bottom: 4px;
    }

    .nav-pill:hover {
      filter: brightness(.97);
    }

    .nav-pill img {
      width: 20px;
      height: 20px;
      flex: none;
    }

    /* Find-a-centre search field sits beside the waitlist button */
    .nav-search {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 14px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid rgba(61, 94, 70, .3);
      transition: border-color 0.2s;
    }

    .nav-search:hover {
      border-color: rgba(61, 94, 70, .5);
    }

    .nav-search input {
      flex: 1;
      width: 150px;
      border: none;
      outline: none;
      background: transparent;
      font-family: 'Sarabun', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: var(--gum-tree-green);
    }

    .nav-search input::placeholder {
      color: var(--gum-tree-green);
      opacity: .6;
    }

    .nav-search img {
      width: 20px;
      height: 20px;
      flex: none;
      opacity: .8;
    }

    /* Match the form fields' active state: green border + soft glow */
    .nav-search:focus-within {
      border-color: var(--leaf-green);
      box-shadow: 0 0 0 3px rgba(121, 161, 111, .25);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-8);
      flex-wrap: nowrap;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--gum-tree-green);
      font-weight: 700;
      font-size: 18px;
      padding: 4px 2px;
      border-radius: var(--radius);
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a[aria-current="page"] {
      color: var(--leaf-text);
    }

    .nav-links img {
      width: 20px;
      height: 20px;
      flex: none;
    }

    /* Nav dropdowns — open on hover/focus on desktop, tap-to-expand accordions on mobile (CSS-only, no JS) */
    .dropdown {
      position: relative;
      display: flex;
      align-items: center;
    }

    /* Hidden checkbox drives the mobile accordion state; ignored on desktop where hover/focus rules take over */
    .dropdown-toggle-cb {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--gum-tree-green);
      font-family: 'Sarabun', sans-serif;
      font-weight: 700;
      font-size: 18px;
      padding: 4px 2px;
      border-radius: var(--radius);
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    .dropdown-toggle img {
      width: 20px;
      height: 20px;
      flex: none;
      transition: transform 0.2s ease;
    }

    .dropdown-toggle:hover {
      color: var(--leaf-text);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 240px;
      background: #fff;
      box-shadow: var(--shadow-md);
      border-radius: var(--radius-lg);
      padding: 12px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.2s ease;
      z-index: 100;
      display: flex;
      flex-direction: column;
    }

    .dropdown-menu a {
      padding: 8px 20px;
      font-size: 16px;
      color: var(--gum-tree-green);
      width: 100%;
    }

    .dropdown-menu a:hover {
      background: var(--light-green);
      color: var(--leaf-text);
    }

    @media (min-width: 1151px) {

      .dropdown:hover .dropdown-menu,
      .dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown:hover .dropdown-toggle img,
      .dropdown:focus-within .dropdown-toggle img {
        transform: rotate(180deg);
      }
    }

    /* Mobile control cluster (phone + burger) shown once the top bar is hidden */
    .mobile-nav-controls {
      display: none;
      align-items: center;
      gap: 12px;
      z-index: 51;
    }

    .mobile-icon-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      color: var(--gum-tree-green);
    }

    .mobile-icon-btn:hover {
      background: var(--bark-brown);
    }

    .mobile-icon-btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    /* LEVNT Education link mapped into the drawer for mobile ONLY */
    .mobile-utility-links {
      display: none;
    }

    /* CSS-only burger */
    .nav-burger-cb {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .nav-burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 48px;
      height: 48px;
      padding: 12px;
      cursor: pointer;
      border-radius: var(--radius);
      border: none;
      background: transparent;
      flex: none;
      z-index: 51;
    }

    .nav-burger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--gum-tree-green);
      border-radius: 2px;
      transition: transform 0.3s ease, background-color 0.2s ease;
      transform-origin: center;
    }

    /* ---------- Hero (warm invitation + booking form) ---------- */
    .hero {
      position: relative;
      overflow: clip;
      background: var(--gum-tree-green);
      padding: var(--section-y) var(--page-pad);
      display: flex;
      justify-content: center;
    }

    /* Organic ECS blob fills the empty green area under the copy column.
       Purely decorative — sits behind the content and ignores pointer events. */
    .hero::before {
      content: "";
      position: absolute;
      left: clamp(-80px, -4vw, -40px);
      bottom: clamp(-60px, -3vw, -30px);
      width: clamp(220px, 26vw, 400px);
      height: clamp(220px, 26vw, 400px);
      background: var(--blob-green);
      opacity: .16;
      border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--container);
      width: 100%;
      display: grid;
      grid-template-columns: 1fr minmax(440px, 560px);
      gap: clamp(32px, 5vw, 72px);
      align-items: start;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
      padding-top: var(--space-4);
    }

    .breadcrumbs {
      font-weight: 700;
      font-size: 14px;
      line-height: 1.2;
      letter-spacing: .03em;
      color: var(--bark-light);
    }

    .breadcrumbs .current {
      color: var(--wattle);
    }

    .hero-text .h1 {
      color: #fff;
    }

    /* "flourish" set in italic Crimson Pro for a soft, script-like accent in wattle */
    .flourish {
      font-family: 'Crimson Pro', Georgia, serif;
      font-style: italic;
      font-weight: 600;
      color: var(--wattle);
    }

    .hero-lead {
      color: var(--bark-light);
      font-size: 20px;
      line-height: 1.4;
      max-width: 52ch;
    }

    .trust-badges {
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      margin-top: var(--space-2);
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      line-height: 1.3;
    }

    .trust-badge svg,
    .trust-badge img {
      display: block;
      width: 32px;
      height: 32px;
      flex: none;
      object-fit: contain;
      color: var(--wattle);
    }

    /* ---------- Tour booking form ---------- */
    .tour-form {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: clamp(24px, 3vw, 40px);
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
    }

    .form-head {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }

    .form-head .h3 {
      color: var(--leaf-text);
    }

    .form-sub {
      color: var(--dark-green);
      font-size: 16px;
      line-height: 1.4;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4) var(--space-5);
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      font-weight: 700;
      font-size: 14px;
      color: var(--dark-green);
    }

    .field label .opt {
      font-weight: 400;
      color: var(--leaf-text);
      opacity: .8;
    }

    .field input,
    .field select,
    .field textarea {
      font-family: 'Sarabun', sans-serif;
      font-size: 16px;
      line-height: 1.4;
      color: var(--dark-green);
      padding: 12px 14px;
      border: 1px solid var(--bark-brown);
      border-radius: var(--radius);
      background: #fff;
      width: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
    }


    .field select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;

      /* Custom arrow SVG matching your theme color */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232b3820' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;

      /* Positions arrow 14px away from the right border */
      background-position: right 14px center;

      /* Ensures text doesn't overlap the arrow */
      padding-right: 36px;
    }

    .field textarea {
      min-height: 100px;
      resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: var(--dark-green);
      opacity: .45;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--leaf-green);
      box-shadow: 0 0 0 3px rgba(121, 161, 111, .25);
    }

    .form-submit {
      width: 100%;
    }

    .form-note {
      display: flex;
      align-items: flex-start;
      gap: var(--space-2);
      font-size: 13px;
      line-height: 1.45;
      color: var(--gum-tree-green);
    }

    .form-note svg {
      width: 18px;
      height: 18px;
      flex: none;
      margin-top: 1px;
      color: var(--leaf-text);
    }

    /* ---------- What to expect (3 steps) ---------- */
    .steps {
      background: #fff;
      padding: var(--section-y) var(--page-pad);
      display: flex;
      justify-content: center;
    }

    .steps-inner {
      max-width: var(--container);
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-4);
    }

    .steps .h2 {
      color: var(--leaf-text);
      text-align: center;
      max-width: 770px;
    }

    .steps-sub {
      color: var(--gum-tree-green);
      font-size: 20px;
      line-height: 1.3;
      text-align: center;
      max-width: 640px;
    }

    .step-grid {
      width: 100%;
      margin-top: var(--space-8);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-8);
    }

    .step {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      padding: var(--space-8);
      background: var(--light-green);
      border: 1px solid rgba(61, 94, 70, .12);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .step:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    /* Connector between cards signals the 1 -> 2 -> 3 sequence on the desktop 3-up grid.
       Sits in the grid gap, decorative only; hidden once the cards wrap (<= 900px). */
    .step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: calc(var(--space-8) + 32px);
      right: calc(-1 * var(--space-8));
      width: var(--space-8);
      height: 2px;
      background: repeating-linear-gradient(to right,
          rgba(61, 94, 70, .35) 0 6px, transparent 6px 12px);
    }

    .step-head {
      display: flex;
      align-items: center;
    }

    /* Circular icon holder with a small numbered badge pinned to its top-right,
       signalling the step order (1 -> 2 -> 3) */
    .step-icon-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(121, 161, 111, .16);
      flex: none;
    }

    .step-icon {
      width: 28px;
      height: 28px;
      flex: none;
      color: var(--gum-tree-green);
    }

    .step-num {
      position: absolute;
      top: -4px;
      right: -4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--wattle);
      color: var(--gum-tree-green);
      /* Ring in the card colour lifts the badge cleanly off the icon circle */
      border: 2px solid var(--light-green);
      font-family: 'Livvic', sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 1;
      flex: none;
    }

    .step h3 {
      font-family: 'Livvic', sans-serif;
      font-weight: 500;
      font-size: clamp(22px, 2.4vw, 26px);
      line-height: 1.1;
      letter-spacing: -0.5px;
      color: var(--leaf-text);
    }

    .step p {
      font-size: 16px;
      line-height: 1.45;
      color: var(--dark-green);
    }

    /* ---------- Why / Values ---------- */
    .why {
      background: var(--bark-light);
      padding: var(--section-y) var(--page-pad);
      display: flex;
      justify-content: center;
    }

    .why-inner {
      max-width: var(--container);
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
      align-items: center;
    }

    .why .h2 {
      color: var(--leaf-text);
      text-align: center;
      max-width: 770px;
    }

    .why-intro {
      color: var(--leaf-text);
      font-size: 20px;
      line-height: 1.3;
      text-align: center;
      max-width: 711px;
    }

    /* Values sit as a 4-up grid, each with the icon stacked above centred text */
    .values {
      width: 100%;
      margin: var(--space-4) auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-10) var(--space-8);
    }

    .value {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--space-5);
    }

    .value .icon {
      width: 200px;
      max-width: 100%;
      height: 200px;
      flex: none;
    }

    .value .icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .value-text {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }

    .value-name {
      font-family: 'Livvic', sans-serif;
      font-weight: 500;
      font-size: clamp(24px, 2.4vw, 30px);
      line-height: 1.05;
      letter-spacing: -0.5px;
      color: var(--leaf-text);
    }

    .value-desc {
      font-family: 'Sarabun', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.45;
      color: var(--dark-green);
    }

    /* ---------- Testimonials ---------- */
    .testi {
      background: #fff;
      padding: var(--section-y) var(--page-pad);
      display: flex;
      justify-content: center;
    }

    .testi-inner {
      max-width: var(--container);
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: var(--space-10);
      align-items: center;
    }

    .testi-row {
      display: flex;
      justify-content: center;
      width: 100%;
      max-width: 820px;
    }

    .quote {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-8);
      padding: 0 var(--space-8);
      text-align: center;
    }

    .quote .text {
      font-family: 'Sarabun', sans-serif;
      font-style: italic;
      font-size: clamp(24px, 2.6vw, 32px);
      line-height: 1.4;
      color: var(--dark-green);
    }

    .quote .name {
      font-weight: 700;
      font-size: 18px;
      color: var(--dark-green);
    }

    .quote .role {
      font-size: 20px;
      line-height: 1.3;
      color: var(--dark-green);
    }

    .testi-controls {
      display: flex;
      align-items: center;
      gap: var(--space-6);
    }

    .slider-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--gum-tree-green);
      color: var(--gum-tree-green);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: filter 0.2s;
    }

    .slider-arrow:hover {
      filter: brightness(.95);
    }

    .slider-arrow img,
    .slider-arrow svg {
      width: 24px;
      height: 24px;
    }

    .slider-arrow.prev img,
    .slider-arrow.prev svg {
      transform: scaleX(-1);
    }

    .dots {
      display: flex;
      gap: 10px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--bark-brown);
    }

    .dots span.active {
      background: var(--gum-tree-green);
    }

    /* ---------- FAQ ---------- */
    .faq {
      background: #fff;
      padding: var(--section-y) var(--page-pad);
      display: flex;
      justify-content: center;
    }

    .faq-inner {
      max-width: 820px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: var(--space-8);
    }

    .faq .h2 {
      color: var(--leaf-text);
      text-align: center;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .acc-item {
      border-top: 1px solid var(--bark-brown);
    }

    .acc-item:last-child {
      border-bottom: 1px solid var(--bark-brown);
    }

    /* Hidden radios drive the open/closed state; a shared name means opening one
       question closes whichever was open (CSS-only, no JS) */
    .acc-toggle,
    .acc-toggle-none {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .acc-title {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      padding: var(--space-6) 0;
      cursor: pointer;
      width: 100%;
      background: none;
      border: none;
      font-family: inherit;
      text-align: left;
    }

    /* The "close" label is hidden until its item is open, then it swaps in for the "open" one */
    .acc-close {
      display: none;
    }

    .acc-toggle:checked~.acc-open {
      display: none;
    }

    .acc-toggle:checked~.acc-close {
      display: flex;
    }

    .acc-title:hover {
      opacity: .72;
    }

    .acc-title p {
      flex: 1;
      font-family: 'Livvic', sans-serif;
      font-weight: 500;
      font-size: clamp(19px, 2.2vw, 22px);
      line-height: 1.2;
      letter-spacing: -0.3px;
      color: var(--gum-tree-green);
    }

    .acc-title img {
      width: 28px;
      height: 28px;
      flex: none;
      transition: transform 0.2s ease;
    }

    /* Answer panel — collapsed to a 0fr grid row so it can smoothly animate open/closed */
    .acc-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }

    .acc-panel p {
      overflow: hidden;
      min-height: 0;
      padding: 0;
      opacity: 0;
      transition: opacity 0.3s ease, padding 0.3s ease;
      font-size: 18px;
      line-height: 1.5;
      color: var(--dark-green);
      max-width: 68ch;
    }

    .acc-toggle:checked~.acc-panel {
      grid-template-rows: 1fr;
    }

    .acc-toggle:checked~.acc-panel p {
      opacity: 1;
      padding-bottom: var(--space-6);
    }

    .acc-toggle:checked~.acc-title img {
      transform: rotate(180deg);
    }

    .acc-toggle:focus-visible~.acc-title {
      outline: none;
      border-radius: var(--radius);
      box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--leaf-green);
    }

    /* ---------- Secondary CTA band ---------- */
    .cta-band {
      padding: 60px var(--page-pad);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-4);
    }

    .cta-band.tour {
      background: var(--gum-mid-green);
      gap: var(--space-6);
    }

    .cta-band .tour-icon {
      height: 184px;
      width: auto;
      flex: none;
    }

    .cta-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-3);
      text-align: left;
      max-width: 762px;
    }

    .cta-content .h2 {
      color: var(--bark-light);
    }

    .cta-content .sub {
      color: var(--bark-light);
      font-size: 20px;
      line-height: 1.3;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      gap: var(--space-6);
      margin-top: var(--space-4);
    }

    /* ---------- Footer ---------- */
    .footer {
      background: var(--bark-light);
      padding: 60px var(--page-pad);
      display: flex;
      flex-direction: column;
      gap: var(--space-8);
      align-items: center;
    }

    .footer>* {
      width: 100%;
      max-width: var(--container);
    }

    .footer-logos {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-8);
      flex-wrap: wrap;
    }

    .footer-logos .ec img {
      height: 100px;
      width: auto;
    }

    .footer-logos .others {
      display: flex;
      align-items: center;
      gap: var(--space-8);
      flex-wrap: wrap;
    }

    .footer-logos .others img {
      height: 84px;
      width: auto;
      mix-blend-mode: multiply;
    }

    .footer-main {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--space-10);
      flex-wrap: wrap;
    }

    .foot-contact {
      width: 227px;
      flex: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
    }

    .foot-contact .head {
      font-weight: 700;
      font-size: 1rem;
      color: var(--dark-green);
      margin-bottom: var(--space-1);
    }

    .foot-contact .lines {
      display: flex;
      flex-direction: column;
      gap: 12px;
      color: var(--dark-green);
      font-size: 1rem;
      line-height: 1.3;
    }

    .foot-social {
      display: flex;
      gap: var(--space-3);
    }

    .foot-social a {
      display: inline-flex;
      padding: 6px;
      border-radius: var(--radius);
    }

    .foot-social a:hover {
      background: var(--bark-brown);
    }

    /* Icons are recoloured to the brand green via CSS mask (the source SVGs
       carry their own fill, which an <img> can't inherit). */
    .foot-social .ic {
      width: 24px;
      height: 24px;
      flex: none;
      background-color: var(--dark-green);
      -webkit-mask: var(--icon) center / contain no-repeat;
      mask: var(--icon) center / contain no-repeat;
    }

    .foot-links {
      display: flex;
      gap: var(--space-8);
      flex-wrap: wrap;
    }

    .foot-links .list {
      display: flex;
      flex-direction: column;
    }

    .foot-links a {
      padding: 8px 0;
      color: var(--dark-green);
      font-weight: 700;
      font-size: 1rem;
    }

    .foot-links a:hover {
      color: var(--leaf-text);
    }

    .foot-ack {
      width: 339px;
      flex: none;
      color: var(--dark-green);
    }

    .foot-ack .head {
      font-weight: 700;
      font-size: 1rem;
    }

    .foot-ack p {
      font-size: 1rem;
      line-height: 1.3;
      font-weight: 400;
      margin-top: var(--space-3);
    }

    .footer-credits {
      display: flex;
      flex-direction: column;
      gap: var(--space-8);
    }

    .footer-credits .divider {
      height: 1px;
      background: var(--dark-green);
      opacity: .25;
    }

    .credits-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--space-6);
      flex-wrap: wrap;
      color: var(--dark-green);
    }

    .credits-row .copy {
      font-size: 14px;
      line-height: 1.5;
    }

    .credits-links {
      display: flex;
      gap: var(--space-6);
      font-size: 14px;
      flex-wrap: wrap;
    }

    .credits-links a {
      text-decoration: underline;
    }

    .credits-links a:hover {
      color: var(--leaf-text);
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1000px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-text {
        padding-top: 0;
      }
    }

    @media (max-width: 1150px) {
      .nav-top {
        display: none;
      }

      .nav-main {
        flex-wrap: wrap;
        row-gap: 0;
        padding: 8px var(--page-pad);
      }

      .nav-logo img {
        height: 60px;
      }

      .mobile-nav-controls {
        display: flex;
      }

      /* LEVNT Education utility link revealed inside the drawer — full-width band
         (breaks out of the drawer padding) with a blue accent tint that signals
         the sibling education brand, echoing the team page */
      .mobile-utility-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: var(--light-light-blue);
        padding: var(--space-4) var(--page-pad);
        margin: calc(-1 * var(--space-4)) calc(-1 * var(--page-pad)) var(--space-4);
        border-top: 1px solid rgba(0, 69, 128, .12);
        border-bottom: 1px solid rgba(0, 69, 128, .12);
      }

      /* mobile drawer — fills the viewport below the header, scrolls internally if the menu is tall */
      .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 84px);
        height: calc(100dvh - 84px);
        overflow-y: auto;
        background: var(--bark-light);
        align-items: stretch;
        gap: 0;
        padding: var(--space-4) var(--page-pad) var(--space-8);
        box-shadow: 0 12px 24px rgba(41, 50, 3, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
      }

      .nav-burger-cb:checked+.nav-main .nav-right {
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .nav-burger-cb:checked+.nav-main .nav-burger span:first-child {
        transform: translateY(4px) rotate(45deg);
        background: var(--leaf-text);
      }

      .nav-burger-cb:checked+.nav-main .nav-burger span:last-child {
        transform: translateY(-4px) rotate(-45deg);
        background: var(--leaf-text);
      }

      .nav-cta {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
      }

      /* Match the drawer links: full-width, taller tap target and 18px text.
         The button label centres (no icon to balance it against). */
      .nav-pill {
        justify-content: center;
        width: 100%;
        min-height: 51px;
        font-size: 18px;
      }

      .nav-search {
        width: 100%;
        justify-content: space-between;
        min-height: 51px;
      }

      .nav-search input {
        width: auto;
        font-size: 18px;
      }

      /* Break the links out to the full drawer width so the divider lines run
         edge to edge; the page-pad padding moves onto each link to keep the
         text aligned with the rest of the drawer content. */
      .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(41, 50, 3, .1);
        margin-top: var(--space-4);
        margin-left: calc(-1 * var(--page-pad));
        margin-right: calc(-1 * var(--page-pad));
      }

      .nav-links>a,
      .dropdown-toggle {
        width: 100%;
        padding: 18px var(--page-pad);
        border-bottom: 1px solid rgba(41, 50, 3, .08);
        font-size: 18px;
        font-weight: 700;
        justify-content: space-between;
      }

      /* Hover wash on the drawer rows — a pale green tint (the same one the
         nested submenu uses) alongside the leaf-green text shift from the base
         :hover rules; mirrors home.html's tinted drawer-link hover */
      .nav-links>a:hover,
      .dropdown-toggle:hover {
        background: var(--light-green);
      }

      /* Dropdowns become full-width accordions inside the drawer */
      .dropdown {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
      }

      .dropdown-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--light-green);
        padding: 0;
      }

      .dropdown-toggle-cb:checked~.dropdown-menu {
        display: flex;
      }

      .dropdown-toggle-cb:checked~.dropdown-toggle img {
        transform: rotate(180deg);
      }

      .dropdown-menu a {
        padding: 14px var(--page-pad) 14px calc(var(--page-pad) + 20px);
        border-bottom: 1px solid rgba(41, 50, 3, .06);
      }
    }

    @media (max-width: 900px) {

      .values,
      .step-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Cards no longer sit in a single row — drop the sequence connector */
      .step:not(:last-child)::after {
        display: none;
      }
    }

    @media (max-width: 820px) {
      .cta-band.tour {
        flex-direction: column;
        text-align: center;
      }

      .cta-content {
        align-items: center;
        text-align: center;
      }

      .cta-actions {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {

      .values,
      .step-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 560px) {
      .footer-logos {
        justify-content: center;
      }
    }

    /* On the narrowest phones the logo + controls run out of room and the nav
       wraps to two lines; drop the phone icon so it stays a single row. */
    @media (max-width: 420px) {
      .mobile-nav-controls .mobile-icon-btn {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .nav-right,
      .nav-burger span,
      .acc-panel,
      .acc-panel p,
      .acc-title img,
      .step {
        transition: none;
      }

      .step:hover {
        transform: none;
      }
    }
