
  :root {
    --noir:    #1C1C1C;
    --tabaco:  #2E2520;
    --gold:    #B87355;
    --sahara:  #D4966E;
    --crema:   #F5F0E8;
    --linen:   #F7F3EE;
    --white:   #FDFAF6;
    --copper-dark:  #7A4D35;
    --aqua:    #6ECED4;
    --copper-mid:   #B87355;
    --copper-light: #D4966E;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--linen);
    color: var(--noir);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── UTILITY ───────────────────────────────── */
  .serif { font-family: 'Cormorant Garamond', serif; }
  .gold  { color: var(--gold); }
  .small-caps {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  /* ── NAV ────────────────────────────────────── */
  #nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(28, 28, 28, 0.35);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 0.5px solid rgba(184, 115, 85, 0.18);
    transition: background 0.4s ease,
                border-color 0.4s ease,
                backdrop-filter 0.4s ease,
                box-shadow 0.4s ease;
  }
  #nav.scrolled {
    background: rgba(28, 28, 28, 0.72);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    border-bottom: 0.5px solid rgba(184, 115, 85, 0.32);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.4),
                inset 0 0.5px 0 rgba(184, 115, 85, 0.12);
  }
  #nav.scrolled.nav-light {
    background: rgba(253, 250, 246, 0.82);
    border-bottom: 0.5px solid rgba(184, 115, 85, 0.25);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.08),
                inset 0 0.5px 0 rgba(184, 115, 85, 0.12);
  }
  #nav.nav-light .nav-logo,
  #nav.nav-light .nav-links a { color: var(--noir); }
  #nav.nav-light .hamburger span { background: var(--noir); }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.16em;
    color: var(--crema);
    text-decoration: none;
    text-shadow: 0 1px 12px rgba(184, 115, 85, 0.25);
    transition: text-shadow 0.3s ease, color 0.3s ease;
  }
  .nav-logo:hover {
    color: var(--sahara);
    text-shadow: 0 1px 20px rgba(184, 115, 85, 0.5);
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--crema); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--crema); }
  .nav-links a { position: relative; padding-bottom: 4px; }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: currentColor;
    transition: width 0.3s ease;
  }
  .nav-links a.active::after { width: 100%; }
  .nav-cta {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--noir);
    background: var(--sahara);
    padding: 13px 26px;
    border: 0.5px solid rgba(212, 150, 110, 0.6);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
    box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.15),
                0 2px 16px rgba(184, 115, 85, 0.2);
  }
  .nav-cta:hover {
    background: var(--aqua);
    border-color: rgba(110, 206, 212, 0.6);
  }

  /* ── HERO ───────────────────────────────────── */
  .hero {
    position: relative;
    background: var(--noir);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 168px 48px 0;
    overflow: hidden;
  }



  .hero-video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* Dark overlay so text reads over video */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom,
        rgba(28,28,28,0.55) 0%,
        rgba(28,28,28,0.35) 40%,
        rgba(28,28,28,0.60) 75%,
        rgba(28,28,28,0.82) 100%
      );
    pointer-events: none;
  }

  /* Grain texture on top of video */
  .hero-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 180px;
    opacity: 0.4;
    pointer-events: none;
  }

  /* Copper warm glow bottom left */
  .hero-overlay::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 50%; height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(184,115,85,0.14) 0%, transparent 65%);
    pointer-events: none;
  }

  /* All hero content sits above video + overlay */
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-bottom: 72px;
  }

  .video-credit {
    position: absolute;
    bottom: 90px; right: 20px;
    font-size: 9px; letter-spacing: 0.15em;
    color: rgba(245,240,232,0.18);
    text-transform: uppercase;
    z-index: 3;
    writing-mode: vertical-rl;
  }

  .video-credit a {
    color: rgba(184,115,85,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .video-credit a:hover { color: var(--gold); }

    /* Horizontal rule accent */
  .hero-rule {
    width: 40px; height: 0.5px;
    background: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s 0.2s forwards;
  }

  .hero-eyebrow {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    opacity: 0; animation: fadeUp 1s 0.4s forwards;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 300; line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--crema);
    max-width: 800px;
    opacity: 0; animation: fadeUp 1.2s 0.6s forwards;
  }
  .hero-headline em {
    font-style: italic; color: var(--sahara);
  }

  .hero-sub {
    margin-top: 32px;
    font-size: 17px; letter-spacing: 0.01em; line-height: 1.7;
    color: rgba(235,190,160,0.95);
    max-width: 420px;
    opacity: 0; animation: fadeUp 1s 0.9s forwards;
  }

  .hero-actions {
    margin-top: 48px; display: flex; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp 1s 1.1s forwards;
  }

  .btn-primary {
    font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--noir); background: var(--sahara);
    padding: 18px 40px; border: none; cursor: pointer;
    text-decoration: none; transition: background 0.2s;
    display: inline-block; line-height: 1.2;
  }
  .btn-primary:hover { background: var(--aqua); }

  .btn-ghost {
    font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--crema); background: transparent;
    padding: 18px 0; border: none; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
    transition: color 0.2s;
  }
  .btn-ghost::after {
    content: ''; display: block;
    width: 32px; height: 0.5px;
    background: var(--gold); transition: width 0.3s;
  }
  .btn-ghost:hover { color: var(--crema); }
  .btn-ghost:hover::after { width: 56px; }

  /* Scrolling marquee strip */
  .marquee-strip {
    position: relative;
    left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
    width: 100vw;
    margin-top: auto;
    border-top: 0.5px solid rgba(184,115,85,0.2);
    background: rgba(28,28,28,0.6);
    padding: 14px 0; overflow: hidden;
    opacity: 0; animation: fadeIn 1s 1.4s forwards;
    z-index: 10;
  }
  .marquee-inner {
    display: flex; white-space: nowrap;
    animation: marquee 28s linear infinite;
  }
  .marquee-item {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--aqua); padding: 0 48px;
  }
  .marquee-dot {
    color: var(--tabaco); padding: 0 8px;
  }

  /* ── INTRO STRIP ────────────────────────────── */
  .intro-strip {
    background: var(--noir);
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px; align-items: start;
  }
  .intro-label {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); padding-top: 8px;
  }
  .intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300; line-height: 1.25;
    color: var(--crema);
  }
  .intro-text em { font-style: italic; color: var(--sahara); }

  /* ── SERVICES ───────────────────────────────── */
  .services {
    padding: 120px 48px;
    background: var(--linen);
  }
  .section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 64px;
    border-bottom: 0.5px solid rgba(184,115,85,0.3);
    padding-bottom: 24px;
    gap: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300; line-height: 1;
    color: var(--noir);
  }
  /* Dark-background sections reusing the light-mode title component need a light title color */
  .benefits .section-title,
  .funding-section .section-title,
  .enquiry-section .section-title {
    color: var(--crema);
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .benefits .section-title em,
  .funding-section .section-title em,
  .enquiry-section .section-title em { color: var(--sahara); }
  .section-count {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
  }

  /* section-count sits on light backgrounds in some sections, tabaco in others —
     default gold only reliably passes WCAG AA on noir, so override per context */
  .services .section-count,
  .steps-section .section-count,
  .booking-section .section-count,
  .pricing .section-count {
    color: var(--copper-dark);
  }
  .funding-section .section-count {
    color: var(--sahara);
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .service-card {
    background: var(--white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card:hover { background: var(--noir); }
  .service-card:hover .service-title { color: var(--crema); }
  .service-card:hover .service-desc  { color: var(--sahara); }
  .service-card:hover .service-num   { color: rgba(184,115,85,0.3); }
  .service-card:hover .service-tag   { color: var(--gold); border-color: var(--gold); }
  .service-card:hover .service-rule  { background: var(--gold); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300; line-height: 1;
    color: rgba(184,115,85,0.12);
    position: absolute; top: 24px; right: 32px;
    transition: color 0.3s;
  }
  .service-rule {
    width: 32px; height: 0.5px;
    background: var(--gold); margin-bottom: 24px;
    transition: background 0.3s;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; line-height: 1.1;
    color: var(--noir); margin-bottom: 16px;
    transition: color 0.3s;
  }
  .service-desc {
    font-size: 16px; line-height: 1.75;
    color: var(--tabaco); max-width: 400px;
    transition: color 0.3s; margin-bottom: 28px;
  }
  .service-tag {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--copper-dark); border: 0.5px solid rgba(184,115,85,0.4);
    padding: 6px 14px; display: inline-block;
    transition: color 0.3s, border-color 0.3s;
  }

  /* ── EQUIPMENT ──────────────────────────────── */
  .equipment {
    background: var(--tabaco);
    padding: 120px 48px;
  }
  .equipment-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .equipment-copy {}
  .equipment-eyebrow {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sahara); margin-bottom: 24px;
  }
  .equipment-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300; line-height: 1.15;
    color: var(--crema); margin-bottom: 24px;
  }
  .equipment-title em { font-style: italic; color: var(--sahara); }
  .equipment-body {
    font-size: 16px; line-height: 1.8; color: var(--crema);
    margin-bottom: 40px; max-width: 420px;
  }

  .kit-list {
    list-style: none; display: flex; flex-direction: column; gap: 0;
  }
  .kit-item {
    display: flex; align-items: center;
    padding: 18px 0;
    border-bottom: 0.5px solid rgba(184,115,85,0.2);
    font-size: 15px; letter-spacing: 0.02em;
    color: var(--crema);
  }
  .kit-item::before { content: none; }
  .kit-item.reveal:nth-child(1) { transition-delay: 0.05s; }
  .kit-item.reveal:nth-child(2) { transition-delay: 0.2s; }
  .kit-item.reveal:nth-child(3) { transition-delay: 0.35s; }
  .kit-item.reveal:nth-child(4) { transition-delay: 0.5s; }
  .kit-item.reveal:nth-child(5) { transition-delay: 0.65s; }
  .kit-item.reveal:nth-child(6) { transition-delay: 0.8s; }
  .kit-icon {
    width: 22px; height: 22px; flex-shrink: 0; margin-right: 20px;
  }
  .kit-icon path, .kit-icon circle, .kit-icon rect {
    stroke: var(--gold); fill: none; stroke-width: 1.2;
    stroke-dasharray: 1; stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.9s ease;
  }
  .kit-item.visible .kit-icon path,
  .kit-item.visible .kit-icon circle,
  .kit-item.visible .kit-icon rect { stroke-dashoffset: 0; transition-delay: 0.25s; }
  .kit-brand {
    margin-left: auto;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold);
  }

  /* ── SOCIAL PROOF ───────────────────────────── */
  .proof {
    background: var(--linen);
    padding: 120px 48px;
  }
  .proof-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2px; margin-top: 64px;
  }
  .proof-slideshow { margin-top: 64px; max-width: 640px; margin-left: auto; margin-right: auto; position: relative; min-height: 260px; }
  .proof-slideshow .proof-card {
    position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
    display: flex; flex-direction: column; justify-content: center; text-align: center; align-items: center;
  }
  .proof-slideshow .proof-card.active { opacity: 1; z-index: 1; }
  .proof-slideshow .proof-card { background: transparent; box-shadow: none; }
  .proof-card {
    background: var(--white);
    padding: 40px 36px;
  }
  .proof-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic; font-weight: 300;
    line-height: 1.45; color: var(--noir);
    margin-bottom: 28px;
  }
  .proof-rule {
    width: 24px; height: 0.5px; background: var(--gold); margin-bottom: 16px;
  }
  .proof-name {
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
  }
  .proof-role {
    font-size: 13px; color: rgba(46,37,32,0.65); letter-spacing: 0.02em;
  }

  /* ── FOUNDERS ───────────────────────────────── */
  .founders {
    background: var(--noir);
    padding: 120px 48px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .founders-copy {}
  .founders-eyebrow {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .founders-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 300; line-height: 1.1;
    color: var(--crema); margin-bottom: 32px;
  }
  .founders-title em { font-style: italic; color: var(--sahara); }
  .founders-body {
    font-size: 16px; line-height: 1.85;
    color: rgba(230,185,155,0.95); max-width: 440px;
  }
  .founders-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; margin-top: 64px;
  }
  .stat-block {
    background: var(--tabaco);
    padding: 36px 32px;
  }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 300; line-height: 1;
    color: var(--crema); margin-bottom: 8px;
  }
  .stat-label {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold);
  }

  /* ── PRICING PREVIEW ────────────────────────── */
  .pricing {
    background: var(--linen);
    padding: 120px 48px;
  }
  .pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2px; margin-top: 64px;
  }
  .pricing-card {
    background: var(--white);
    padding: 48px 36px;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 0.5px solid transparent;
  }
  .pricing-card:hover, .pricing-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(46,37,32,0.16);
    border-color: rgba(184,115,85,0.35);
  }
  .pricing-card.featured { background: var(--noir); }
  .pricing-card.featured:hover, .pricing-card.featured:focus-visible {
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
    border-color: rgba(212,150,110,0.4);
  }
  .pricing-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold);
    opacity: 0; transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .pricing-card:hover .pricing-cta,
  .pricing-card:focus-visible .pricing-cta {
    opacity: 1; transform: translateY(0);
  }
  /* Touch devices don't have a reliable hover state — show the affordance by default */
  @media (hover: none) {
    .pricing-cta { opacity: 1; transform: translateY(0); }
  }
  .pricing-card.featured .pricing-cta { color: var(--sahara); }
  .pricing-eyebrow {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--copper-dark); margin-bottom: 20px;
  }
  .pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; line-height: 1.1;
    color: var(--noir); margin-bottom: 8px;
  }
  .pricing-card.featured .pricing-name { color: var(--crema); }
  .pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300; line-height: 1;
    color: var(--gold); margin: 20px 0 8px;
  }
  .pricing-unit {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--copper-dark); margin-bottom: 24px;
  }
  .pricing-rule {
    width: 100%; height: 0.5px;
    background: rgba(184,115,85,0.2); margin-bottom: 24px;
  }
  .pricing-stats { display: flex; gap: 20px; margin-bottom: 16px; }
  .pricing-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--noir); display: block; }
  .pricing-card.featured .pricing-stat-num { color: var(--crema); }
  .pricing-stat-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tabaco); }
  .pricing-card.featured .pricing-stat-label { color: var(--sahara); }
  .pricing-desc {
    font-size: 16px; line-height: 1.75;
    color: var(--tabaco);
  }
  .pricing-card.featured .pricing-desc { color: var(--sahara); }
  .pricing-stat-row {
    display: flex; flex-wrap: wrap; gap: 14px 20px; margin-bottom: 14px;
  }
  .pricing-stat-row span {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--tabaco);
  }
  .pricing-card.featured .pricing-stat-row span { color: var(--sahara); }
  .pricing-stat-icon {
    width: 16px; height: 16px; flex-shrink: 0;
    stroke: var(--gold); fill: none; stroke-width: 1.3;
  }
  .pricing-card.reveal:nth-child(1) { transition-delay: 0s; }
  .pricing-card.reveal:nth-child(2) { transition-delay: 0.3s; }
  .pricing-card.reveal:nth-child(3) { transition-delay: 0.6s; }


  /* ── FOOTER ─────────────────────────────────── */
  footer {
    background: var(--noir);
    padding: 64px 48px;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    border-top: 0.5px solid var(--tabaco);
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; letter-spacing: 0.14em;
    color: var(--crema); margin-bottom: 12px;
  }
  .footer-tagline {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold);
  }
  .footer-col-title {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 15px; color: var(--sahara); text-decoration: none;
    transition: color 0.2s;
    display: inline-block; padding: 4px 0;
  }
  .footer-links a:hover { color: var(--crema); }
  .footer-legal {
    grid-column: 1 / -1;
    border-top: 0.5px solid var(--tabaco);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    font-size: 12px; letter-spacing: 0.06em;
    color: rgba(212,150,110,0.55);
  }



  /* ── ANIMATIONS ─────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Large monitors: fluid side padding so content doesn't hug the edges */
  @media (min-width: 901px) {
    #nav, .hero, .intro-strip, .services, .equipment, .proof, .founders, .pricing,
    footer, .calc-section, .faq, .benefits, .steps-section, .booking-section,
    .funding-section, .enquiry-section {
      padding-left: clamp(48px, 6vw, 140px) !important;
      padding-right: clamp(48px, 6vw, 140px) !important;
    }
  }

  /* Scroll-reveal base state */
  .reveal {
    opacity: 0; transition: opacity 0.5s ease;
  }
  .reveal.visible {
    opacity: 1;
  }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* Card grids: bigger, clearly sequential pop-in */
  .benefit-card.reveal, .funding-card.reveal, .pricing-card.reveal {
    transition-duration: 0.5s;
    transform: none;
  }
  .benefit-card.reveal.visible, .funding-card.reveal.visible, .pricing-card.reveal.visible {
    transform: none;
  }


  /* ── CALCULATOR ─────────────────────────────── */
  .calc-section {
    background: var(--noir);
    padding: 120px 48px;
  }
  .calc-container {}
  .calc-intro { margin-bottom: 48px; }
  .calc-intro-text {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 300;
    color: var(--crema);
    line-height: 1.5;
    max-width: 600px;
  }
  .calc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .calc-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
    font-weight: 500;
  }
  .calc-opt-grid {
    display: grid;
    gap: 8px;
    margin-bottom: 32px;
  }
  .calc-opt-grid.c2 { grid-template-columns: repeat(2, 1fr); }
  .calc-opt-grid.c3 { grid-template-columns: repeat(3, 1fr); }
  .calc-opt {
    padding: 16px 12px;
    border: 0.5px solid rgba(184,115,85,0.2);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
    border-radius: 2px;
  }
  .calc-opt:hover {
    border-color: rgba(184,115,85,0.5);
    background: rgba(184,115,85,0.06);
  }
  .calc-opt.sel {
    border: 1px solid var(--gold);
    background: rgba(184,115,85,0.1);
  }
  .calc-opt .opt-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--crema);
    display: block;
    margin-bottom: 3px;
    letter-spacing: 0.03em;
  }
  .calc-opt .opt-detail {
    font-size: 12px;
    color: var(--sahara);
    display: block;
    line-height: 1.4;
  }
  .calc-opt .opt-price {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    display: block;
    margin-top: 6px;
  }
  .calc-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .calc-slider-row label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    min-width: 90px;
  }
  .calc-slider-row input[type=range] {
    flex: 1;
    accent-color: var(--gold);
  }
  .calc-slider-val {
    font-size: 13px;
    font-weight: 500;
    color: var(--crema);
    min-width: 60px;
    text-align: right;
  }
  /* Right column */
  .calc-custom-msg {
    font-size: clamp(16px,1.8vw,22px);
    font-weight: 300;
    color: var(--crema);
    line-height: 1.5;
    margin: 0 0 28px;
  }
  .calc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .calc-metric {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(184,115,85,0.15);
    padding: 16px;
  }
  .cm-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crema);
    margin: 0 0 8px;
  }
  .cm-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--crema);
    margin: 0;
  }
  .cm-val.copper { color: var(--gold); }
  .calc-breakdown {
    border: 0.5px solid rgba(184,115,85,0.2);
    margin-bottom: 24px;
  }
  .calc-bk-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 0.5px solid rgba(184,115,85,0.1);
    font-size: 12px;
  }
  .calc-bk-row:last-child { border-bottom: none; }
  .calc-bk-row.calc-total {
    background: rgba(184,115,85,0.08);
    font-size: 13px;
  }
  .bk-l { color: var(--sahara); }
  .bk-v { color: var(--crema); font-weight: 500; }
  .bk-v.copper { color: var(--gold); }
  .calc-quote-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    color: var(--crema);
    border: 0.5px solid var(--gold);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .calc-quote-btn:hover {
    background: var(--gold);
    color: var(--noir);
  }
  .calc-note {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--crema);
    text-align: center;
    margin-top: 40px;
    text-transform: uppercase;
  }

  /* ═══════════════════════════════════════════════
     RESPONSIVE — MOBILE FIRST
     Breakpoints: 768px (tablet), 480px (phone)
  ═══════════════════════════════════════════════ */

  /* Switch to hamburger nav earlier (900px) so logo + 3 links + CTA never overflow/wrap on tablet-width screens */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .desktop-cta { display: none; }
    .hamburger { display: flex; }
  }

  @media (max-width: 768px) {

    /* ── NAV ── */
    #nav {
      padding: 0 24px;
      height: 60px;
    }
    .nav-links { display: none; }
    .nav-cta {
      font-size: 11px;
      padding: 10px 18px;
    }
    .nav-logo { font-size: 22px; }

    /* ── HERO ── */
    .hero {
      padding: 128px 24px 0;
    }
    .hero-content { padding-bottom: 48px; }
    .hero-headline {
      font-size: clamp(44px, 12vw, 72px);
    }
    .hero-sub { max-width: 100%; font-size: 15px; }
    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-top: 32px;
    }
    .btn-primary { padding: 14px 32px; width: 100%; text-align: center; }
    .video-credit { display: none; }

    /* ── INTRO STRIP ── */
    .intro-strip {
      padding: 64px 24px;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    /* ── SECTION SHARED ── */
    .services,
    .proof,
    .pricing,
    .calc-section,
    .equipment,
    .founders {
      padding: 72px 24px;
    }
    .section-header {
      flex-direction: column; align-items: flex-start;
      margin-bottom: 40px; gap: 8px;
    }
    .section-title { max-width: 100%; }

    /* ── SERVICES ── */
    .service-grid {
      grid-template-columns: 1fr;
      gap: 2px;
    }
    .service-card { padding: 36px 28px; }
    .service-num { font-size: 52px; }

    /* ── EQUIPMENT ── */
    .equipment-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .equipment-body { max-width: 100%; }

    /* ── SOCIAL PROOF ── */
    .proof-grid, .proof-grid.proof-grid-2 {
      grid-template-columns: 1fr;
      gap: 2px;
    }
    .proof-card { padding: 32px 24px; }
    .proof-quote { font-size: 18px; }

    /* ── FOUNDERS ── */
    .founders {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .founders-body { max-width: 100%; }
    .founders-stats { margin-top: 0; }

    /* ── PRICING ── */
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 2px;
    }
    .pricing-card { padding: 36px 28px; }
    .pricing-card.featured { order: -1; }

    /* ── CALCULATOR ── */
    .calc-body {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .calc-opt-grid.c2 { grid-template-columns: 1fr 1fr; }
    .calc-opt-grid.c3 { grid-template-columns: 1fr 1fr; }
    .calc-metrics { grid-template-columns: 1fr 1fr; }
    .calc-metrics .calc-metric:last-child {
      grid-column: 1 / -1;
    }
    .calc-slider-row {
      flex-wrap: wrap;
      gap: 10px;
    }
    .calc-slider-row label { min-width: auto; }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 72px 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
    }
    .cta-actions { width: 100%; }
    .btn-primary { display: block; text-align: center; }

    /* ── SITEMAP ── */


    /* ── FOOTER ── */
    footer {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 56px 24px;
    }
    .footer-legal {
      flex-direction: column;
      gap: 8px;
    }
  }

  /* ── SMALL PHONES (max 480px) ── */
  @media (max-width: 480px) {

    #nav { padding: 0 16px; }

    .hero { padding: 0 16px; }
    .hero-headline { font-size: clamp(38px, 13vw, 56px); }
    .hero-rule { margin-bottom: 24px; }

    .services,
    .proof,
    .pricing,
    .calc-section,
    .equipment {
      padding: 56px 16px;
    }
    .founders { padding: 56px 16px; }
    .intro-strip { padding: 56px 16px; }

    .calc-opt-grid.c2,
    .calc-opt-grid.c3 { grid-template-columns: 1fr; }

    .benefits, .steps-section, .booking-section, .funding-section, .enquiry-section, .faq {
      padding: 56px 16px;
    }

    .calc-metrics { grid-template-columns: 1fr; }
    .calc-metrics .calc-metric:last-child { grid-column: auto; }


    .proof-quote { font-size: 16px; }
    .stat-number { font-size: 44px; }

    .cta-band { padding: 56px 16px; }
    footer { padding: 48px 16px; }

    /* Marquee slightly smaller on tiny screens */
    .marquee-item { font-size: 9px; padding: 0 28px; }
  }


  /* ── HAMBURGER & MOBILE MENU ── */
  .hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: -4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 1px;
    background: var(--crema);
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .desktop-cta { display: inline-block; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--noir);
    isolation: isolate;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 32px 28px 48px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu-close {
    align-self: flex-end;
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    color: var(--crema);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    margin-right: -8px;
    margin-bottom: 32px;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus-visible {
    color: var(--gold);
  }
  .mobile-menu-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    letter-spacing: 0.16em;
    color: var(--crema);
    text-decoration: none;
    margin-bottom: 48px;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }
  .mobile-nav a {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sahara);
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 0.5px solid rgba(184,115,85,0.15);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--crema); }
  .mobile-menu-cta {
    margin-top: 40px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .desktop-cta { display: none; }
  }


  /* ── FAQ ─────────────────────────────────────── */
  .faq {
    background: var(--linen);
    padding: 120px 48px;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .faq-sidebar { position: sticky; top: 100px; }
  .faq-sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--noir);
    margin-bottom: 24px;
  }
  .faq-sidebar-title em { font-style: italic; color: var(--gold); }
  .faq-sidebar-sub {
    font-size: 15px;
    color: var(--tabaco);
    line-height: 1.8;
    margin-bottom: 32px;
  }
  .faq-contact-link {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: gap 0.3s;
  }
  .faq-contact-link::after {
    content: '';
    display: block;
    width: 28px; height: 0.5px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .faq-contact-link:hover { gap: 16px; }
  .faq-contact-link:hover::after { width: 44px; }

  /* Categories */
  .faq-category { margin-bottom: 40px; }
  .faq-category-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--copper-dark);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(184,115,85,0.25);
  }

  /* Accordion items */
  .faq-item {
    border-bottom: 0.5px solid rgba(46,37,32,0.12);
  }
  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 0;
    min-height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
  }
  .faq-q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--noir);
    line-height: 1.3;
    transition: color 0.2s;
  }
  .faq-question:hover .faq-q-text { color: var(--gold); }
  .faq-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    position: relative;
  }
  .faq-icon::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 6px; height: 6px;
    border-right: 1px solid var(--tabaco);
    border-bottom: 1px solid var(--tabaco);
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.35s ease, border-color 0.35s ease;
  }
  .faq-question:hover .faq-icon::before { border-color: var(--gold); }
  .faq-item.open .faq-icon::before {
    transform: translate(-50%, -35%) rotate(225deg);
    border-color: var(--gold);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 600px;
  }
  .faq-answer-inner {
    padding: 0 40px 24px 0;
    font-size: 16px;
    color: var(--tabaco);
    line-height: 1.85;
  }
  .faq-answer-inner strong {
    color: var(--noir);
    font-weight: 500;
  }
  .faq-answer-inner a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 0.5px solid var(--gold);
  }

  @media (max-width: 768px) {
    .faq { padding: 72px 24px; }
    .faq-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .faq-sidebar { position: static; }
    .faq-q-text { font-size: 16px; }
  }
  @media (max-width: 480px) {
    .faq { padding: 56px 16px; }
  }

  /* ── BENEFITS ───────────────────────────────── */
  .benefits {
    background: var(--noir);
    padding: 120px 48px;
  }
  .benefits-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 24px; margin-top: 64px;
  }
  .benefit-card {
    background: rgba(245,240,232,0.03);
    border: 0.5px solid rgba(184,115,85,0.25);
    transition: border-color 0.3s ease, transform 0.3s ease;
    padding: 40px 32px;
  }
  .benefit-card:hover { border-color: rgba(212,150,110,0.55); transform: translateY(-2px); }
  .benefit-card.reveal:nth-child(1) { transition-delay: 0s; }
  .benefit-card.reveal:nth-child(2) { transition-delay: 0.4s; }
  .benefit-card.reveal:nth-child(3) { transition-delay: 0.8s; }
  .benefit-card.reveal:nth-child(4) { transition-delay: 1.2s; }
  .benefit-card.reveal:nth-child(5) { transition-delay: 1.6s; }
  .benefit-card.reveal:nth-child(6) { transition-delay: 2s; }
  .benefit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300; color: rgba(212,150,110,0.4);
    display: block; margin-bottom: 20px;
  }
  .benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; line-height: 1.15;
    color: var(--crema); margin-bottom: 14px;
  }
  .benefit-desc {
    font-size: 15px; line-height: 1.7;
    color: var(--sahara);
  }
  @media (max-width: 768px) {
    .benefits { padding: 72px 24px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .benefit-card { padding: 32px 28px; }
  }

  /* ── STEPS (How a workplace day works) ──────── */
  .steps-section {
    background: var(--linen);
    padding: 120px 48px;
  }
  .steps-list { margin-top: 64px; display: flex; flex-direction: column; position: relative; }
  .step-dot-col { display: flex; align-items: center; justify-content: center; position: relative; }
  .step-dot-col::before {
    content: ''; position: absolute; top: -32px; bottom: -32px; left: 50%; width: 1px;
    background: rgba(184,115,85,0.2); transform: translateX(-50%); z-index: 0;
  }
  .step-row:first-child .step-dot-col::before { top: 50%; }
  .step-row:last-child .step-dot-col::before { bottom: 50%; }
  .step-dot {
    position: relative; z-index: 1; width: 9px; height: 9px; border-radius: 50%;
    background: rgba(184,115,85,0.3); transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  }
  .step-row.active .step-dot { background: var(--gold); transform: scale(1.6); box-shadow: 0 0 0 4px rgba(212,175,120,0.18); }
  .step-row.seen .step-dot { background: var(--gold); }
  .step-num { position: relative; transition: color 0.5s ease, opacity 0.5s ease; opacity: 0.4; }
  .step-row.seen .step-num { color: var(--gold); opacity: 1; }
  .step-title, .step-desc { transition: opacity 0.5s ease; opacity: 0.4; }
  .step-row.seen .step-title, .step-row.seen .step-desc { opacity: 1; }
  .step-row.active .step-num { color: var(--gold); }
  @media (max-width: 900px) { .step-dot-col { display: none; } }
  .step-row {
    display: grid; grid-template-columns: 100px 32px 1fr;
    gap: 32px; padding: 32px 0;
    border-bottom: 0.5px solid rgba(184,115,85,0.2);
  }
  @media (max-width: 900px) { .step-row { grid-template-columns: 100px 1fr; } }
  .step-row:first-child { padding-top: 0; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: var(--gold);
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400;
    color: var(--noir); margin-bottom: 10px;
    display: flex; align-items: center; gap: 12px;
  }
  .step-title-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.3; }
  .step-desc {
    font-size: 16px; line-height: 1.7;
    color: var(--tabaco); max-width: 620px;
  }
  @media (max-width: 768px) {
    .steps-section { padding: 72px 24px; }
    .step-row { grid-template-columns: 1fr; gap: 8px; }
    .step-num { display: block; text-align: center; font-size: 34px; opacity: 1 !important; }
  }

  /* ── BOOKING LIST (What employees can book) ─── */
  .intro-copy-block { width: 100%; margin-bottom: 56px; }
  @media (min-width: 1920px) { .intro-copy-block { width: 66.67%; } }
  .booking-section {
    background: var(--white);
    padding: 120px 48px;
  }
  .booking-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; margin-top: 64px;
  }
  .booking-item {
    background: var(--linen);
    padding: 32px 32px;
    display: flex; align-items: center; gap: 20px;
  }
  .booking-item::before {
    content: ''; flex-shrink: 0;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
  }
  .booking-item-text {
    font-size: 16px; line-height: 1.5;
    color: var(--noir);
  }
  @media (max-width: 768px) {
    .booking-section { padding: 72px 24px; }
    .booking-grid { grid-template-columns: 1fr; }
  }
  .book-tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
  @media (max-width: 768px) { .book-tile-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .book-tile-grid { grid-template-columns: 1fr; } }
  .book-editorial-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 56px; }
  .book-editorial-grid > div {
    background: rgba(184,115,85,0.05);
    border: 0.5px solid rgba(184,115,85,0.35);
    padding: 14px 14px;
    transition: background 0.3s ease;
  }
  .book-editorial-grid > div:hover {
    background: var(--white);
  }
  @media (max-width: 768px) {
    .book-editorial-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  }
  @media (max-width: 480px) {
    .book-editorial-grid { grid-template-columns: 1fr; }
  }

  /* ── FUNDING MODELS TABLE ────────────────────── */
  .funding-section {
    background: var(--tabaco);
    padding: 120px 48px;
  }
  .visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  .funding-table-wrap {
    margin-top: 64px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .funding-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
    min-width: 640px;
  }
  .funding-table th, .funding-table td {
    text-align: left;
    background: var(--noir);
    padding: 24px 28px;
    vertical-align: top;
  }
  .funding-table thead th {
    padding: 20px 28px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 400;
    color: var(--sahara);
  }
  .funding-cards {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 64px;
  }
  .funding-card {
    background: rgba(245,240,232,0.03); border: 0.5px solid rgba(184,115,85,0.25);
    padding: 36px 28px;
  }
  .funding-card.reveal:nth-child(1) { transition-delay: 0.05s; }
  .funding-card.reveal:nth-child(2) { transition-delay: 0.35s; }
  .funding-card.reveal:nth-child(3) { transition-delay: 0.65s; }
  .funding-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300; color: rgba(212,150,110,0.4);
    display: block; margin-bottom: 16px;
  }
  .funding-card-label {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sahara); margin-bottom: 16px;
  }
  @media (max-width: 768px) { .funding-cards { grid-template-columns: 1fr; } }
  .funding-model {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400;
    color: var(--crema);
  }
  .funding-contribution, .funding-fit {
    font-size: 15px; line-height: 1.6;
    color: var(--sahara);
    font-weight: 300;
  }
  .cta-inline-actions {
    margin-top: 64px;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  }
  .cta-inline-note {
    font-size: 16px;
    color: var(--sahara);
  }
  @media (max-width: 768px) {
    .funding-section { padding: 72px 24px; }
    .funding-table th, .funding-table td { padding: 18px 20px; }
    .cta-inline-actions { margin-top: 40px; gap: 20px; }
  }

  /* ── ENQUIRY FORM ("Request a CHÉ day") ──────── */
  .enquiry-section {
    background: var(--noir);
    padding: 120px 48px;
  }
  .enquiry-container { max-width: 900px; margin: 0 auto; }
  .enquiry-intro { margin-bottom: 48px; max-width: 620px; }
  .enquiry-intro-text {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300; color: var(--crema); line-height: 1.5;
  }
  .enquiry-form {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .enquiry-field { display: flex; flex-direction: column; gap: 10px; }
  .enquiry-field.full { grid-column: 1 / -1; }
  .enquiry-label {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold);
  }
  .enquiry-field input[type=text],
  .enquiry-field input[type=email],
  .enquiry-field input[type=date],
  .enquiry-field select,
  .enquiry-field textarea {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: var(--crema);
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(184,115,85,0.35);
    padding: 14px 16px;
    min-height: 48px;
    border-radius: 2px;
  }
  .enquiry-field textarea { min-height: 100px; resize: vertical; }
  .enquiry-field input:focus,
  .enquiry-field select:focus,
  .enquiry-field textarea:focus {
    outline: none; border-color: var(--gold);
  }
  .enquiry-check-group {
    display: flex; flex-direction: column; gap: 12px;
  }
  .enquiry-check-row {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: var(--crema); line-height: 1.4;
  }
  .enquiry-check-row input {
    margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0;
  }
  .enquiry-consent {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--sahara); line-height: 1.5;
  }
  .enquiry-consent input {
    margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0;
  }
  .enquiry-submit {
    padding: 18px 44px; min-height: 48px;
  }
  @media (max-width: 768px) {
    .enquiry-section { padding: 72px 24px; }
    .enquiry-form { grid-template-columns: 1fr; }
  }
  /* ── ACCESSIBILITY ───────────────────────────── */

  /* Visible keyboard focus on every interactive element (buttons, links, form fields) */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  .faq-question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* Skip link — hidden until focused, lets keyboard/screen-reader users bypass the nav */
  .skip-link {
    position: absolute;
    left: 16px; top: -60px;
    background: var(--crema); color: var(--noir);
    padding: 12px 20px;
    font-size: 13px; letter-spacing: 0.04em;
    z-index: 1000;
    transition: top 0.2s ease;
    text-decoration: none;
    border-radius: 2px;
  }
  .skip-link:focus {
    top: 16px;
  }

  /* ── PAGE LOADER ─────────────────────────────── */
  #page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--noir);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease;
  }
  #page-loader.loaded { opacity: 0; pointer-events: none; }
  #page-loader span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; letter-spacing: 0.2em; color: var(--crema);
    animation: loader-pulse 1.4s ease-in-out infinite;
  }
  @keyframes loader-pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

  /* Larger touch target around checkboxes in the enquiry form (44px minimum row height) */
  .enquiry-check-row, .enquiry-consent {
    min-height: 44px;
    padding: 6px 0;
    cursor: pointer;
  }
  .enquiry-check-row input, .enquiry-consent input {
    width: 20px; height: 20px;
  }

  /* Respect the OS-level reduced-motion preference */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .hero-rule, .hero-eyebrow, .hero-headline, .hero-sub { opacity: 1; }
    .reveal { opacity: 1; transform: none; }
  }

  /* ── FLOATING WHATSAPP BUTTON ────────────────── */
  .wa-float {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--sahara);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    z-index: 90;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .wa-float:hover, .wa-float:focus-visible {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  }
  .wa-float svg { width: 30px; height: 30px; }
  @media (max-width: 768px) {
    .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  }


.macd-prov-banner{position:fixed;left:12px;bottom:12px;z-index:9999;max-width:calc(100% - 96px);background:rgba(46,37,32,.92);color:#F5F0E8;font:500 11px/1.35 Jost,system-ui,sans-serif;letter-spacing:.03em;padding:6px 10px;border:1px solid #B87355;pointer-events:none}
.macd-prov{text-decoration:underline dotted #B87355;text-underline-offset:3px}
.macd-prov::after{content:"*";color:#B87355;font-size:.7em;vertical-align:super;margin-left:1px}
.macd-square-ph{border:1px dashed #B87355;padding:10px 12px;margin:0 0 16px;font-size:13px;line-height:1.45}
