/* ============================================================
   Chef Xport — Redesign layer (v2)
   Cinematic, motion-driven, conversion-engineered.
   Loads AFTER styles.css. Brand tokens unchanged.
   ============================================================ */

:root {
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-grad: linear-gradient(120deg, #e6bd6b 0%, #c8963e 45%, #a87a2e 100%);
}

/* hide scrollbar but keep scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* baseline rhythm — tightened so scrolling between sections feels shorter */
.section { padding-block: clamp(3.25rem, 6.5vw, 6.5rem); }

/* bigger, more confident display */
.display { font-size: clamp(3.4rem, 11vw, 8.5rem); line-height: 0.96; letter-spacing: -0.03em; }
.h1 { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.03em; }

/* gold gradient text accent for hero word.
   padding-bottom extends the gradient's paint box below the baseline so italic
   descenders (the g in "engineered", p in "plate") get filled instead of
   rendering cut — a known -webkit-background-clip:text quirk. */
.gi.shine {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-bottom: 0.3em;
}

/* ============================================================ PRELOADER */
.preloader {
  position: fixed; inset: 0; z-index: 2000; background: var(--forest);
  display: grid; place-items: center; transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader .pl-mark { width: clamp(260px, 46vw, 460px); height: auto; opacity: 0; transform: translateY(8px); }
.preloader .pl-bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--gold-grad); }
.no-js .preloader, .reduced .preloader { display: none; }

/* ============================================================ CUSTOM CURSOR */
/* Custom cursor retired — using the normal system cursor. */
.cursor, .cursor-dot { display: none !important; }

/* ============================================================ SCROLL PROGRESS */
.scroll-prog { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 120; transform: scaleX(0); transform-origin: 0 50%; background: var(--gold-grad); }

/* ============================================================ HERO v2 */
.hero2 { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: clip; background: var(--forest); color: var(--cream); padding: 9rem 0 clamp(2.5rem,5vw,4.5rem); }
.hero2-media { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero2-media picture { display: contents; }
.hero2-media img { width: 100%; height: 112%; object-fit: cover; object-position: 75% center; }
.hero2-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(86deg, rgba(15,33,25,0.95) 0%, rgba(15,33,25,0.74) 32%, rgba(15,33,25,0.12) 62%, rgba(15,33,25,0.30) 100%),
    linear-gradient(0deg, rgba(15,33,25,0.92) 0%, transparent 46%);
}
.hero2-grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E"); }
.hero2 .wrap { position: relative; z-index: 2; width: 100%; }
.hero2 .eyebrow { color: var(--gold); margin-bottom: 1.8rem; }
.hero2 h1 { color: var(--cream); max-width: 15ch; margin-bottom: 1.8rem; }
.hero2 .hero-sub { max-width: 42ch; color: var(--cream-70); font-size: clamp(1.05rem,1.5vw,1.35rem); line-height: 1.6; margin-bottom: 2.6rem; }
.hero2 .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem 1.2rem; align-items: center; }
/* ghost buttons sit on dark canvases (hero photo, dark flow) → cream, not forest */
.hero2 .btn-ghost, .flow-dark .btn-ghost, .cta2 .btn-ghost { color: var(--cream); border-color: var(--cream-45); }
.hero2 .btn-ghost:hover, .flow-dark .btn-ghost:hover, .cta2 .btn-ghost:hover {
  background: var(--cream); color: var(--forest); border-color: var(--cream); }

/* line-mask reveal for kinetic headlines */
/* padding-bottom gives italic descenders (g, j) room inside the clip box;
   the matching negative margin keeps line spacing unchanged */
.reveal-lines .line { display: block; overflow: hidden; padding-bottom: 0.3em; }
/* collapse the extra padding only BETWEEN lines, so the last line's descender
   keeps its room without pulling the following text up into it */
.reveal-lines .line:not(:last-child) { margin-bottom: -0.3em; }
.reveal-lines .line > span { display: block; transform: translateY(110%); }
.reveal-lines.in .line > span { transform: translateY(0); transition: transform 1s var(--ease-lux); }
.reveal-lines.in .line:nth-child(2) > span { transition-delay: 0.08s; }
.reveal-lines.in .line:nth-child(3) > span { transition-delay: 0.16s; }
.reduced .reveal-lines .line > span, .no-js .reveal-lines .line > span { transform: none; }

.hero2-foot { position: absolute; left: 0; right: 0; bottom: 1.5rem; z-index: 2; }
.hero2-foot .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.scrollcue { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-45); display: flex; align-items: center; gap: 0.6rem; }
.scrollcue .dash { width: 40px; height: 1px; background: var(--cream-45); position: relative; overflow: hidden; }
.scrollcue .dash::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: cue 2.4s var(--ease-lux) infinite; }
@keyframes cue { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(100%)} }
.hero2-credits { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-45); text-align: right; line-height: 1.9; }

/* ============================================================ MAGNETIC BTN */
.btn.btn-lg { padding: 1.15rem 2.3rem; font-size: 1rem; }
.btn-gold.btn-sheen { position: relative; overflow: hidden; }
.btn-gold.btn-sheen::after { content:""; position:absolute; top:0; left:-120%; width:60%; height:100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-18deg); transition: left 0.7s var(--ease-lux); }
.btn-gold.btn-sheen:hover::after { left: 130%; }

/* ============================================================ MARQUEE */
.marquee { overflow: hidden; border-block: 1px solid var(--gold-30); padding-block: 1.4rem; background: var(--forest); }
.marquee .track { display: flex; gap: 3.5rem; width: max-content; animation: marq 32s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .item { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem,3vw,2.4rem); color: var(--cream); white-space: nowrap; display: flex; align-items: center; gap: 3.5rem; }
.marquee .item::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.7em; }
@keyframes marq { to { transform: translateX(-50%); } }
.reduced .marquee .track { animation: none; }

/* ============================================================ STAT COUNTERS */
.stats2 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,4vw,3rem); }
@media (max-width: 760px){ .stats2 { grid-template-columns: 1fr; gap: 2.5rem; } }
.stat2 { border-top: 1px solid var(--gold-30); padding-top: 1.6rem; }
.forest .stat2 { border-top-color: var(--cream-14); }
.stat2 .n { font-family: var(--serif); font-size: clamp(3.2rem,7vw,5.5rem); line-height: 1; color: var(--gold); letter-spacing: -0.02em; }
.stat2 .l { margin-top: 0.9rem; font-size: 1rem; max-width: 26ch; }
.forest .stat2 .l { color: var(--cream-70); }

/* ============================================================ PINNED PROCESS */
.process { position: relative; background: var(--forest); color: var(--cream); }
.process .frame { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,5rem); align-items: center; min-height: 100svh; padding-block: clamp(4rem,8vw,7rem); }
@media (max-width: 900px){ .process .frame { grid-template-columns: 1fr; min-height: auto; } }
.process .left { position: relative; }
.process .steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.2rem; }
.process .step-btn { display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--cream-14); align-items: baseline; opacity: 0.4; transition: opacity 0.5s var(--ease-lux); }
.process .step-btn.active { opacity: 1; }
.process .step-btn .sn { font-family: var(--mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; }
.process .step-btn h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,3vw,2.2rem); }
.process .step-btn p { font-size: 0.95rem; color: var(--cream-70); margin-top: 0.3rem; max-width: 44ch; height: 0; overflow: hidden; opacity: 0; transition: all 0.5s var(--ease-lux); }
.process .step-btn.active p { height: auto; opacity: 1; margin-top: 0.5rem; }
.process .right { position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; }
@media (max-width: 900px){ .process .right { aspect-ratio: 16/11; margin-top: 2rem; } }
.process .pimg { position: absolute; inset: 0; opacity: 0; transform: scale(1.08); transition: opacity 0.7s var(--ease-lux), transform 0.9s var(--ease-lux); }
.process .pimg.active { opacity: 1; transform: scale(1); }
.process .pimg img { width: 100%; height: 100%; object-fit: cover; }
.process .pimg::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(15,33,25,0.5), transparent 55%); }
.process .pcount { position: absolute; right: 1.4rem; bottom: 1.2rem; z-index: 2; font-family: var(--serif); font-style: italic; font-size: 3rem; color: var(--cream); }

/* ============================================================ STACKING CARDS (sectors) */
.stack-wrap { position: relative; }
.scard {
  position: sticky; top: clamp(5rem, 14vh, 9rem);
  background: var(--cream); border: 1px solid var(--forest-08); border-radius: 4px;
  padding: clamp(2rem,4vw,3.4rem); box-shadow: 0 -10px 60px -30px rgba(27,58,45,0.5);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center;
  margin-bottom: 2rem; overflow: hidden;
}
.scard:nth-child(even) { background: var(--paper); }
@media (max-width: 820px){ .scard { grid-template-columns: 1fr; gap: 1.5rem; } }
.scard .txt .sn { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; }
.scard .txt h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem,4vw,3rem); margin: 0.8rem 0; letter-spacing: -0.01em; }
.scard .txt p { font-size: 1.02rem; max-width: 48ch; }
.scard .shot { aspect-ratio: 16/11; border-radius: 3px; overflow: hidden; }
.scard .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-lux); }
.scard:hover .shot img { transform: scale(1.05); }

/* ============================================================ MANIFESTO — full width, typed reveal */
.mwords { font-family: var(--serif); font-size: clamp(2.2rem,5.8vw,4.8rem); line-height: 1.16; letter-spacing: -0.02em; max-width: none; }
/* words start nearly invisible and "type" in as the pinned section scrubs */
.mwords span { color: var(--cream); opacity: 0.08; transition: opacity 0.35s var(--ease-lux); }
.mwords span.au { color: var(--gold); }
.mwords span.lit { opacity: 1; }
.reduced .mwords span, .no-js .mwords span { opacity: 1; }

/* ============================================================ AUDIENCES reveal */
/* number + stacked label on the LEFT; hover image reveals in the clear RIGHT
   gutter so it never covers the text (prior bug). */
.auds { display: grid; grid-template-columns: 1fr; }
.aud { position: relative; display: grid; grid-template-columns: 3.5rem 1fr; gap: 0.4rem 1.4rem; align-items: center; padding: clamp(1.6rem,3.5vw,2.6rem) 0; border-top: 1px solid var(--gold-30); cursor: pointer; }
.aud:last-child { border-bottom: 1px solid var(--gold-30); }
.aud .an { font-family: var(--mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; align-self: start; padding-top: 0.55rem; }
.aud .ax { min-width: 0; }
.aud h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,5.5vw,3.7rem); letter-spacing: -0.02em; transition: transform 0.5s var(--ease-lux), color 0.4s; line-height: 1; }
.aud .meta { display: block; margin-top: 0.7rem; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); }
.aud .peek { position: absolute; right: 0; top: 50%; width: clamp(170px, 20vw, 240px); aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; transform: translateY(-50%) scale(0.92) rotate(-2.5deg); opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease-lux), transform 0.6s var(--ease-lux); z-index: 3; box-shadow: 0 34px 70px -30px rgba(0,0,0,0.55); }
.aud .peek::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(247,244,239,0.18); border-radius: 8px; }
.aud .peek img { width: 100%; height: 100%; object-fit: cover; }
/* only float the image once there's a wide empty gutter to hold it */
@media (hover: hover) and (min-width: 1024px){
  .aud:hover h3 { transform: translateX(1.1rem); color: var(--forest); }
  .aud:hover .peek { opacity: 1; transform: translateY(-50%) scale(1) rotate(0deg); }
}
@media (max-width: 1023px){ .aud .peek { display: none; } }
.aud .body { display: none; }

/* ============================================================ GLASS WIDGETS
   Frosted, transparent panels. They sit on a ".glass-stage" that supplies a
   blurable backdrop (faint photo + gold/heritage glow) so the blur is real. */
.glass-stage { position: relative; background: var(--forest); color: var(--cream); overflow: clip; }
.glass-stage > .gbg { position: absolute; inset: 0; z-index: 0; }
.glass-stage > .gbg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.20; }
.glass-stage > .gbg::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(65% 85% at 82% 8%, rgba(46,107,79,0.55), transparent 60%),
    radial-gradient(55% 70% at 8% 96%, rgba(200,150,62,0.18), transparent 60%),
    linear-gradient(0deg, rgba(15,33,25,0.70), rgba(15,33,25,0.50)); }
.glass-stage > .wrap { position: relative; z-index: 1; }
.glass-stage .eyebrow, .glass-stage .eyebrow.kicker { color: var(--gold); }
.glass-stage h2, .glass-stage .h1, .glass-stage .h2 { color: var(--cream); }
.glass-stage .lead { color: var(--cream-70); }

.glass { position: relative; border-radius: 16px; height: 100%; color: var(--cream);
  background: rgba(247,244,239,0.055);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(247,244,239,0.16);
  box-shadow: 0 26px 60px -34px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.10);
  padding: clamp(1.5rem,3vw,2.3rem);
  transition: transform .55s var(--ease-lux), background .4s, border-color .4s, box-shadow .4s; }
.glass:hover { transform: translateY(-6px); background: rgba(247,244,239,0.10);
  border-color: var(--gold-30); box-shadow: 0 36px 74px -34px rgba(0,0,0,0.72), inset 0 1px 0 rgba(255,255,255,0.14); }
.glass::before { content: ""; position: absolute; top: 0; left: clamp(1.5rem,3vw,2.3rem); width: 32px; height: 2px; background: var(--gold-grad); border-radius: 0 0 2px 2px; }
.glass .gnum { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.glass h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,3vw,2.05rem); margin: 0.7rem 0 0.6rem; color: var(--cream); letter-spacing: -0.01em; line-height: 1.1; }
.glass p { color: var(--cream-70); font-size: 0.98rem; }
.glass .verse { font-family: var(--serif); font-style: italic; color: var(--cream-45); font-size: 0.95rem; margin-top: 0.9rem; display: block; }
.glass.stat-g .n { font-family: var(--serif); font-size: clamp(3rem,7vw,5rem); line-height: 1; color: var(--gold); letter-spacing: -0.02em; }
.glass.stat-g .l { margin-top: 0.8rem; color: var(--cream-70); font-size: 1rem; }
.glass ul { list-style: none; padding: 0; margin-top: 0.5rem; }
.glass li { font-size: 0.92rem; color: var(--cream-70); padding: 0.45rem 0; border-bottom: 1px solid rgba(247,244,239,0.10); }
.glass li:last-child { border-bottom: 0; }

.glass-grid { display: grid; gap: clamp(1rem,2vw,1.4rem); }
.gg-2 { grid-template-columns: repeat(2,1fr); }
.gg-3 { grid-template-columns: repeat(3,1fr); }
.gg-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .gg-3, .gg-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .gg-2, .gg-3, .gg-4 { grid-template-columns: 1fr; } }

/* graceful fallback where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass { background: rgba(20,42,32,0.72); }
}

/* ============================================================ TESTIMONIAL */
.quote-big { position: relative; }
.quote-big .q { font-family: var(--serif); font-style: italic; font-size: clamp(1.9rem,4.6vw,3.6rem); line-height: 1.24; max-width: 20ch; color: var(--cream); letter-spacing: -0.015em; }
.quote-big .q .gi { font-style: italic; }
.quote-big .mark { font-family: var(--serif); font-size: 9rem; line-height: 0.6; color: var(--gold); opacity: 0.5; display: block; height: 0.6em; }
.quote-big .by { margin-top: 2rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-45); }

/* ============================================================ CONVERSION CTA */
.cta2 { position: relative; background: var(--forest); color: var(--cream); overflow: clip; }
.cta2 .mesh { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 80% 20%, rgba(46,107,79,0.6), transparent 60%), radial-gradient(50% 60% at 10% 90%, rgba(200,150,62,0.16), transparent 60%); }
.cta2 .wrap { position: relative; z-index: 1; }
.cta2 .big { font-family: var(--serif); font-size: clamp(2.8rem,8vw,6.5rem); line-height: 0.98; letter-spacing: -0.03em; color: var(--cream); max-width: 16ch; }
.cta2 .sub { max-width: 44ch; margin: 1.6rem 0 2.6rem; color: var(--cream-70); font-size: 1.15rem; }
.cta2 .assure { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; margin-top: 3rem; }
.cta2 .assure span { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-45); display: flex; align-items: center; gap: 0.6rem; }
.cta2 .assure span::before { content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ============================================================ STICKY CTA BAR */
/* Compact pill, anchored bottom-right. Just the gold CTA — text label hidden. */
.cta-bar { position: fixed; right: 1.4rem; bottom: 1.4rem; left: auto; transform: translateY(180%); z-index: 110;
  display: flex; align-items: center; padding: 0; background: none; border: 0; box-shadow: none;
  transition: transform 0.6s var(--ease-lux); }
.cta-bar.show { transform: translateY(0); }
.cta-bar .t { display: none; }
.cta-bar .btn { padding: 0.7rem 1.25rem; font-size: 0.82rem; border-radius: 100px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.55); }
@media (max-width: 560px){ .cta-bar { right: 1rem; bottom: 1rem; } .cta-bar .btn { padding: 0.7rem 1.1rem; } }

/* fade/slide reveal driven by JS (works without GSAP too) */
[data-fx] { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux); }
[data-fx="scale"] { transform: scale(1.04); }
[data-fx].in { opacity: 1; transform: none; }
.reduced [data-fx], .no-js [data-fx] { opacity: 1; transform: none; }

/* ============================================================ LOGO LOCKUP (full: X brandmark + wordmark) */
.nav .logo { height: 34px; }
.nav.scrolled .logo { height: 30px; }
.footer .logo-white { height: 50px; }
.menu-panel .logo-white { height: 40px; }

/* ============================================================ PROCESS — clickable steps */
.process .step-btn { cursor: pointer; }
.process .step-btn:not(.active):hover { opacity: 0.7; }
.process .step-btn:not(.active):hover h3 { color: var(--gold); transition: color .3s; }

/* ============================================================ GLASS — bright variant for light sections */
.glass-stage.bright { background: var(--paper); color: var(--ink); }
.glass-stage.bright > .gbg img { opacity: 0.14; }
.glass-stage.bright > .gbg::after {
  background:
    radial-gradient(60% 80% at 85% 6%, rgba(200,150,62,0.10), transparent 60%),
    linear-gradient(0deg, rgba(247,244,239,0.88), rgba(247,244,239,0.80)); }
.glass-stage.bright .eyebrow, .glass-stage.bright .eyebrow.kicker { color: var(--gold); }
.glass-stage.bright h2, .glass-stage.bright .h1, .glass-stage.bright .h2 { color: var(--ink); }
.glass-stage.bright .lead { color: var(--ink-60); }
.glass.light { color: var(--ink);
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(27,58,45,0.10);
  box-shadow: 0 24px 54px -34px rgba(27,58,45,0.45), inset 0 1px 0 rgba(255,255,255,0.65); }
.glass.light:hover { background: rgba(255,255,255,0.74); border-color: var(--gold-30);
  box-shadow: 0 32px 66px -34px rgba(27,58,45,0.5); }
.glass.light h3 { color: var(--ink); }
.glass.light p { color: var(--ink-60); }
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass.light { background: rgba(255,255,255,0.9); }
}

/* ============================================================ AUDIENCE TRIAD (who / need / offer) */
.aud-block { padding: clamp(1.8rem,4vw,2.8rem) 0; border-top: 1px solid var(--gold-30); }
.aud-block:last-child { border-bottom: 1px solid var(--gold-30); }
.aud-block .ah { display: flex; align-items: baseline; gap: 1rem 1.4rem; margin-bottom: clamp(1.2rem,2.5vw,1.8rem); flex-wrap: wrap; }
.aud-block .ah .rk { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.aud-block .ah h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,4.5vw,3.2rem); letter-spacing: -0.02em; line-height: 1; }
.aud-block .ah .tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); }
.triad { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.3rem,3vw,2.6rem); }
@media (max-width: 760px){ .triad { grid-template-columns: 1fr; gap: 1.5rem; } }
.triad .col .lbl { display: block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding-bottom: 0.7rem; margin-bottom: 0.9rem; border-bottom: 1px solid var(--gold-30); }
.triad .col p { font-size: 0.98rem; color: var(--ink-60); }

/* ============================================================ TESTIMONIALS */
.tmnl .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.8rem; }
.tmnl .quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,1.8vw,1.5rem); line-height: 1.38; color: var(--cream); margin: 1rem 0 1.4rem; }
.tmnl .who .nm { font-weight: 600; font-size: 0.95rem; color: var(--cream); display: block; }
.tmnl .who .rl { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; display: block; }

/* ============================================================ CONTACT closer quote — wider */
.contact-quote { max-width: 58ch; margin-inline: auto; }
.contact-quote .qbig { font-family: var(--serif); font-size: clamp(1.9rem,3.6vw,3rem); line-height: 1.28; color: var(--ink); display: block; }

/* ============================================================ MANIFESTO STAGE (auto fade-in on enter) */
.manifesto-stage { position: relative; background: var(--forest); color: var(--cream); padding-block: clamp(6rem,14vw,11rem); display: flex; align-items: center; overflow: clip; }
.manifesto-stage .eyebrow, .manifesto-stage .eyebrow.kicker { color: var(--gold); }
.manifesto-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 70% at 85% 15%, rgba(46,107,79,0.4), transparent 60%); }
.manifesto-stage .wrap { position: relative; z-index: 1; }

/* ============================================================ RESPONSIVE / MOBILE */
html, body { max-width: 100%; }
@media (max-width: 600px){
  .display { font-size: clamp(2.5rem, 12.5vw, 3.6rem); }
  .h1 { font-size: clamp(2rem, 8.5vw, 3rem); }
  .hero2 { padding-top: 7rem; }
  .hero2-credits { display: none; }
  /* full-width, easy-to-tap CTAs stacked on phones */
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta2 .big { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .mwords { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .band { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .contact-line { flex-wrap: wrap; gap: 0.2rem; }
}
@media (max-width: 400px){
  .nav .logo { height: 28px; }
  .nav .btn:not(.nav-toggle) { display: none; }
}

/* ============================================================ PROCESS — side-by-side step cards (all visible) */
.process-grid { background: var(--forest); color: var(--cream); }
.process-grid .eyebrow, .process-grid .eyebrow.kicker { color: var(--gold); }
.process-grid h2, .process-grid .h1 { color: var(--cream); }
.pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
@media (max-width: 860px){ .pcards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.pcard { position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: rgba(247,244,239,0.04); border: 1px solid var(--cream-14); border-radius: 14px;
  transition: transform .5s var(--ease-lux), border-color .4s, box-shadow .4s; }
.pcard:hover { transform: translateY(-6px); border-color: var(--gold-30); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.6); }
.pcard-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-lux); }
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,33,25,0.72), transparent 55%); }
.pcard .pn { position: absolute; left: 1.1rem; bottom: 0.7rem; z-index: 1; font-family: var(--serif); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--cream); }
.pcard .pn::before { content: "Step "; font-family: var(--mono); font-style: normal; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); vertical-align: middle; margin-right: 0.4rem; }
.pcard-body { padding: clamp(1.3rem, 2.2vw, 1.8rem); border-top: 2px solid var(--gold); }
.pcard-body h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--cream); margin-bottom: 0.55rem; letter-spacing: -0.01em; line-height: 1.12; }
.pcard-body p { color: var(--cream-70); font-size: 0.97rem; }

/* ============================================================ PROOF & CREDIBILITY (Phase 1)
   Trusted-by strip, partner logo grid, video testimonial, press wall, social proof. */

/* --- trusted-by strip (home teaser) --- */
.trusted { background: var(--paper); border-block: 1px solid var(--gold-30); padding-block: clamp(2.2rem,4vw,3.2rem); text-align: center; }
.trusted .eyebrow.kicker { justify-content: center; display: flex; }
.tlogos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.6rem,4vw,3.6rem); margin: 1.4rem 0 1.6rem; }
.tlogo { font-family: var(--mono); font-weight: 500; font-size: clamp(0.9rem,1.6vw,1.15rem); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); opacity: 0.55; transition: opacity .35s, color .35s; }
.tlogo:hover { opacity: 1; color: var(--heritage); }
/* partner logo images — grayscale so the strip reads as one quiet band */
.tlogo-img { height: clamp(26px,3.6vw,40px); width: auto; opacity: 0.6; filter: grayscale(1); transition: opacity .35s, filter .35s; }
.tlogo-img:hover { opacity: 1; filter: none; }
.tlogo-img.tall { height: clamp(40px,5.4vw,60px); } /* portrait marks (NFL / NBA shields) */
.tlogo-soon { color: var(--gold); opacity: 0.85; font-style: normal; }

/* --- partner logo grid (proof page) --- */
.logo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gold-30); border: 1px solid var(--gold-30); border-radius: 4px; overflow: hidden; }
@media (max-width: 700px){ .logo-grid { grid-template-columns: repeat(2,1fr); } }
.logo-cell { background: var(--cream); display: flex; align-items: center; justify-content: center; min-height: clamp(90px,12vw,140px); font-family: var(--mono); font-size: clamp(0.85rem,1.5vw,1.1rem); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); opacity: 0.6; transition: opacity .35s, background .35s, color .35s; text-align: center; padding: 1rem; }
.logo-cell:hover { opacity: 1; color: var(--heritage); background: #fff; }
.logo-cell img { max-height: clamp(44px,6vw,68px); max-width: 65%; width: auto; filter: grayscale(1); transition: filter .35s; }
.logo-cell:hover img { filter: none; }

/* --- featured video testimonial --- */
.tvideo { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--cream-14); background: rgba(247,244,239,0.05); }
@media (max-width: 820px){ .tvideo { grid-template-columns: 1fr; } }
.tvideo-media { position: relative; min-height: clamp(240px,32vw,420px); overflow: hidden; }
.tvideo-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.tvideo-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,33,25,0.55), rgba(15,33,25,0.2)); }
.tvideo-ph { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem; height: 100%; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-70); }
.tvideo-ph .play { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-size: 1.1rem; padding-left: 4px; transition: transform .4s, background .4s, color .4s; }
.tvideo:hover .tvideo-ph .play { transform: scale(1.08); background: var(--gold); color: var(--forest); }
.tvideo-body { padding: clamp(1.6rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: center; }
.tvideo-body .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.8rem; }
.tvideo-body .quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.9rem); line-height: 1.34; color: var(--cream); margin: 1rem 0 1.4rem; }
.tvideo-body .quote.long { font-size: clamp(1.05rem,1.45vw,1.32rem); line-height: 1.5; }
.tvideo-body .who .nm { font-weight: 600; font-size: 1rem; color: var(--cream); display: block; }
.tvideo-body .who .rl { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; display: block; }

/* --- press wall ("as seen in") --- */
.press-row { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(0.9rem,1.8vw,1.3rem); }
@media (max-width: 760px){ .press-row { grid-template-columns: 1fr; } }
.press-item { display: block; border: 1px solid var(--cream-14); border-radius: 12px; padding: clamp(1.3rem,2.4vw,1.9rem); transition: border-color .4s, transform .4s, background .4s; }
.press-item:hover { border-color: var(--gold-30); transform: translateY(-4px); background: rgba(247,244,239,0.05); }
.press-item .pub { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.press-item .headline { font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.55rem); line-height: 1.3; color: var(--cream); margin: 0.7rem 0 0.9rem; }
.press-item .read { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-45); }

/* --- responsive video embed (C·CAP impact film) --- */
.yt-embed { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(17,17,17,0.08); box-shadow: 0 30px 60px -46px rgba(0,0,0,0.35); background: #000; }
.yt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- social proof grid --- */
.social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(0.8rem,1.6vw,1.2rem); }
@media (max-width: 900px){ .social-grid { grid-template-columns: repeat(2,1fr); } }
.social-card { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 1px solid var(--cream-14); background: rgba(247,244,239,0.04); }
.social-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform .6s var(--ease-lux), opacity .4s; }
.social-card:hover img { transform: scale(1.06); opacity: 1; }
.social-card .tag { position: absolute; left: 0.8rem; bottom: 0.7rem; z-index: 1; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--cream); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.social-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,33,25,0.6), transparent 50%); }
.social-card.wide { grid-column: span 2; aspect-ratio: auto; height: 100%; }
@media (max-width: 900px){ .social-card.wide { aspect-ratio: 2.05; } }

/* ============================================================ IMPACT / C-CAP (Phase 2) */
.impact-lede { max-width: 60ch; }
/* apprentice cards */
.people-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1rem,2vw,1.4rem); }
@media (max-width: 760px){ .people-grid { grid-template-columns: 1fr; } }
.person { display: grid; grid-template-columns: 0.8fr 1.2fr; border-radius: 14px; overflow: hidden; border: 1px solid var(--cream-14); background: rgba(247,244,239,0.05); }
.person-media { position: relative; min-height: 100%; overflow: hidden; }
.person-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.person-media .vbadge { position: absolute; left: 0.7rem; bottom: 0.7rem; z-index: 1; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); background: rgba(15,33,25,0.6); padding: 0.35rem 0.55rem; border-radius: 20px; border: 1px solid var(--gold-30); }
.person-body { padding: clamp(1.2rem,2.4vw,1.8rem); }
.person-body h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,3vw,2.05rem); color: var(--cream); margin-bottom: 0.4rem; }
.person-body .role { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.person-body p { color: var(--cream-70); font-size: 0.97rem; margin-top: 0.8rem; }
/* scholarship highlight */
.scholarship { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.4rem); }
@media (max-width: 760px){ .scholarship { grid-template-columns: 1fr; } }
.event-banner { border: 1px solid var(--gold-30); border-radius: 14px; padding: clamp(1.6rem,3vw,2.4rem); background: rgba(200,150,62,0.06); }
.event-banner .when { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.event-banner h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem,3.4vw,2.4rem); color: var(--cream); margin: 0.6rem 0 0.8rem; }
.event-banner p { color: var(--cream-70); max-width: 60ch; }

/* ============================================================ REVISION 2026-06-30
   Collapsible header · testimonial avatars · fluid sector index · de-blocking. */

/* --- collapsible header: hides on scroll, returns on hover at the top edge --- */
.nav { transition: background 0.4s, padding 0.4s, border-color 0.4s, transform 0.45s var(--ease-lux); }
.nav.hide { transform: translateY(-105%); }
/* thin invisible hover strip that lets you summon the header back */
.nav-peek { position: fixed; inset: 0 0 auto 0; height: 12px; z-index: 99; }

/* --- testimonial avatars --- */
.tmnl .who { display: flex; align-items: center; gap: 0.85rem; }
.tmnl .who .avatar { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--gold-30); background: rgba(200,150,62,0.12); }
.tmnl .who .avatar img { width: 100%; height: 100%; object-fit: cover; }
.tmnl .who .avatar.mono { display: grid; place-items: center; color: var(--gold); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.tmnl .who .who-t { display: flex; flex-direction: column; }
.tmnl .who .who-t .nm { margin: 0; }
.tmnl .quote { margin-top: 0.9rem; }

/* --- fluid sector index (replaces the stacked card rows) --- */
.sector-index .si-head { margin-bottom: clamp(2rem,4vw,3.5rem); max-width: 60ch; }
.si-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
@media (max-width: 880px){ .si-grid { grid-template-columns: 1fr; } }
.si-list { list-style: none; margin: 0; padding: 0; }
.si-item { border-top: 1px solid var(--cream-14); padding: clamp(1.05rem,2vw,1.5rem) 0;
  display: grid; grid-template-columns: auto 1fr; column-gap: 1.2rem; align-items: baseline; cursor: pointer; outline: none; }
.si-item:last-child { border-bottom: 1px solid var(--cream-14); }
.si-n { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; color: var(--gold); opacity: 0.55; transition: opacity .4s; }
.si-item.active .si-n, .si-item:hover .si-n, .si-item:focus-visible .si-n { opacity: 1; }
.si-t { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em;
  font-size: clamp(1.55rem,3.4vw,2.5rem); color: var(--cream-45); transition: color .4s, transform .4s var(--ease-lux); }
.si-item.active .si-t, .si-item:hover .si-t, .si-item:focus-visible .si-t { color: var(--cream); transform: translateX(6px); }
.si-d { grid-column: 2; max-height: 0; opacity: 0; overflow: hidden; color: var(--cream-70); font-size: 0.98rem; max-width: 44ch;
  transition: max-height .55s var(--ease-lux), opacity .45s, margin-top .45s; }
.si-item.active .si-d { max-height: 180px; opacity: 1; margin-top: 0.75rem; }
.si-tag { display: block; margin-top: 0.5rem; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.si-stage { position: sticky; top: 96px; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; box-shadow: 0 40px 80px -50px rgba(0,0,0,0.7); }
@media (max-width: 880px){ .si-stage { display: none; } .si-item .si-d { max-height: 180px; opacity: 1; margin-top: 0.6rem; } .si-item .si-t { color: var(--cream); } }
.si-shot { position: absolute; inset: 0; opacity: 0; transition: opacity .7s var(--ease-lux); }
.si-shot.active { opacity: 1; }
.si-shot img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.si-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 50%, rgba(15,33,25,0.5)); }

/* --- de-blocking: soften the boxy strips into fluid, airy bands --- */
/* trusted strip: drop the hard gold rules, let it breathe and fade at the seams */
.trusted { border-block: 0; background: linear-gradient(180deg, var(--cream), var(--paper) 50%, var(--cream)); }
/* partner grid: remove the table gridlines; logos float in airy space */
.logo-grid { background: none; border: 0; gap: clamp(1.5rem,3vw,2.5rem); }
.logo-cell { background: none; border-radius: 10px; min-height: clamp(96px,11vw,130px); }
.logo-cell:hover { background: rgba(27,58,45,0.04); }
/* give flat fills subtle dimensionality so sections read as atmosphere, not blocks */
.glass-stage { background: radial-gradient(120% 90% at 80% 10%, #20402f 0%, var(--forest) 55%); }
.glass-stage.bright { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.cta2 { background: radial-gradient(120% 100% at 20% 0%, #20402f, var(--forest) 60%); }

/* ============================================================ INTAKE FORM (contact.html → Notion) */
.intake-form { max-width: 880px; }
.if-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.1rem,2.2vw,1.6rem) clamp(1.2rem,2.5vw,2rem); }
@media (max-width: 700px){ .if-grid { grid-template-columns: 1fr; } }
.if-field { display: flex; flex-direction: column; gap: 0.5rem; border: 0; padding: 0; margin: 0; min-width: 0; }
.if-span2 { grid-column: 1 / -1; }
.if-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }
.if-field input[type="text"], .if-field input[type="email"], .if-field input[type="tel"],
.if-field select, .if-field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: rgba(255,255,255,0.65);
  border: 1px solid rgba(17,17,17,0.14); border-radius: 8px; padding: 0.8rem 0.95rem;
  transition: border-color .25s, background .25s, box-shadow .25s; width: 100%; }
.if-field textarea { resize: vertical; min-height: 110px; }
.if-field input:focus, .if-field select:focus, .if-field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(200,150,62,0.16); }
.if-field ::placeholder { color: rgba(17,17,17,0.35); }
.if-checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 0.6rem 1.2rem; }
.if-checks label { display: flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; color: var(--ink); cursor: pointer; }
.if-checks input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.if-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* location autocomplete */
.if-loc { position: relative; }
.if-suggest { position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid rgba(17,17,17,0.14); border-radius: 8px;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,0.28); max-height: 240px; overflow-y: auto; }
.if-suggest button { display: block; width: 100%; text-align: left; font: inherit; font-size: 0.95rem;
  color: var(--ink); background: none; border: 0; padding: 0.6rem 0.95rem; cursor: pointer; }
.if-suggest button:hover, .if-suggest button.sel { background: rgba(200,150,62,0.14); }

/* scheduler gate — locked until the intake is received */
.sched-gate { position: relative; }
.sched-gate.locked .calendly-inline-widget { filter: blur(7px) saturate(0.8); opacity: 0.45; pointer-events: none; user-select: none; }
.sched-lock { position: absolute; inset: 0; z-index: 5; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem;
  text-align: center; padding: 2rem; }
.sched-gate.locked .sched-lock { display: flex; }
.sched-lock .sl-t { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.7rem); color: var(--ink); max-width: 22ch; line-height: 1.3; }
.if-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: clamp(1.4rem,2.6vw,2rem); }
.if-msg { font-size: 0.95rem; margin: 0; }
.if-msg.ok { color: var(--heritage); }
.if-msg.err { color: #a04425; }
.intake-form.sending .btn { opacity: 0.55; pointer-events: none; }

/* ============================================================ FLUID FLOW (de-block) 2026-06-30b
   Consecutive dark sections share ONE continuous canvas + soft seams, so the page reads as a
   single cinematic story instead of stacked color blocks. */
.flow-dark { position: relative;
  background: linear-gradient(180deg, #163021 0%, #122a1d 24%, #0f2218 52%, #14291e 78%, #0e1f16 100%); }
/* inner dark sections go transparent so the wrapper gradient flows straight through */
.flow-dark .process-grid,
.flow-dark .glass-stage,
.flow-dark .manifesto-stage,
.flow-dark .cta2 { background: transparent; }
/* drop the per-section photo slabs that made each block feel separate */
.flow-dark .glass-stage > .gbg { display: none; }
.flow-dark .cta2 .mesh { opacity: 0.5; }
/* the full-bleed image band becomes a soft interleaf, fading into the flow at both edges */
.flow-dark .imgband::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, #122a1d, transparent 22%, transparent 78%, #14291e); }

/* soft seam where a light section meets the dark flow (no hard horizontal edge) */
.seam-to-dark { position: relative; }
.seam-to-dark::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(60px,8vw,120px);
  background: linear-gradient(180deg, transparent, #163021); pointer-events: none; z-index: 2; }

/* --- flow-dark: make normally-light sections legible on the dark canvas --- */
.flow-dark .section h2, .flow-dark .section .h1, .flow-dark .section .h2 { color: var(--cream); }
.flow-dark .section p, .flow-dark .section .lead, .flow-dark .section .stack p { color: var(--cream-70); }
/* audience blocks (What We Do) — h3 headings, tags, and triad copy on the dark canvas */
.flow-dark .aud-block .ah h3 { color: var(--cream); }
.flow-dark .aud-block .ah .tag { color: var(--cream-45); }
.flow-dark .triad .col p { color: var(--cream-70); }
.flow-dark .section .eyebrow, .flow-dark .section .eyebrow.kicker, .flow-dark .eyebrow.kicker { color: var(--gold); }
.flow-dark .tlink { color: var(--cream); }
.flow-dark .tlink:hover { color: #fff; }
/* WWD bright sectors fold into the dark flow */
.flow-dark .glass-stage.bright { background: transparent; }
.flow-dark .glass-stage.bright h2, .flow-dark .glass-stage.bright .h1, .flow-dark .glass-stage.bright .h2 { color: var(--cream); }
.flow-dark .glass-stage.bright .lead { color: var(--cream-70); }
.flow-dark .glass.light { color: var(--cream); background: rgba(247,244,239,0.05); border-color: var(--cream-14); }
.flow-dark .glass.light h3 { color: var(--cream); }
.flow-dark .glass.light p { color: var(--cream-70); }
.flow-dark .glass.light:hover { background: rgba(247,244,239,0.09); }
/* trusted strip folded into dark flow → cream wordmarks */
.flow-dark .trusted { background: transparent; }
.flow-dark .trusted .tlogo { color: var(--cream); }
.flow-dark .trusted .tlogo:hover { color: #fff; }
/* on the dark strip, invert the grayscale logos to light so dark marks stay visible */
.flow-dark .trusted .tlogo-img { filter: grayscale(1) invert(1) brightness(1.15); opacity: 0.75; }
.flow-dark .trusted .tlogo-img:hover { opacity: 1; }
/* proof partner grid folded into dark flow → cream wordmarks */
.flow-dark .logo-cell { color: var(--cream); }
.flow-dark .logo-cell:hover { background: rgba(247,244,239,0.05); color: #fff; }
/* dark canvas: invert logo marks to light so solid-dark SVGs (adidas) stay visible */
.flow-dark .logo-cell img { filter: grayscale(1) invert(1) brightness(1.15); opacity: 0.8; }
.flow-dark .logo-cell:hover img { filter: grayscale(1) invert(1) brightness(1.3); opacity: 1; }

/* ============================================================ FLOW-LIGHT (warm pages)
   One continuous cream/paper canvas; dark components are re-toned to light. */
.flow-light { position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 30%, #f0ebe0 55%, var(--paper) 78%, var(--cream) 100%); }
.flow-light .section, .flow-light .glass-stage, .flow-light .glass-stage.bright, .flow-light .paper, .flow-light .closer { background: transparent; }
.flow-light .glass-stage > .gbg { display: none; }
.flow-light .eyebrow, .flow-light .eyebrow.kicker { color: var(--gold); }
.flow-light .glass-stage h2, .flow-light .glass-stage .h1, .flow-light .glass-stage .h2,
.flow-light .closer .display { color: var(--ink); }
.flow-light .glass-stage .lead, .flow-light .closer .lead { color: var(--ink-60); }
/* glass cards → light */
.flow-light .glass { color: var(--ink); background: rgba(255,255,255,0.62); border: 1px solid rgba(17,17,17,0.07);
  box-shadow: 0 30px 60px -46px rgba(0,0,0,0.3); }
.flow-light .glass:hover { background: rgba(255,255,255,0.85); border-color: var(--gold-30); }
.flow-light .glass h3 { color: var(--ink); }
.flow-light .glass p { color: var(--ink-60); }
.flow-light .glass .gnum { color: var(--gold); }
.flow-light .glass .verse { color: var(--ink-45); }
.flow-light .glass li { color: var(--ink-60); border-bottom-color: rgba(17,17,17,0.08); }
/* impact components → light */
.flow-light .person, .flow-light .tvideo { background: rgba(255,255,255,0.6); border-color: rgba(17,17,17,0.08); }
.flow-light .person-body h3, .flow-light .tvideo-body .quote, .flow-light .tvideo-body .who .nm { color: var(--ink); }
.flow-light .person-body p { color: var(--ink-60); }
.flow-light .event-banner { background: rgba(200,150,62,0.08); }
.flow-light .event-banner h3 { color: var(--ink); }
.flow-light .event-banner p { color: var(--ink-60); }
/* soft seam where the dark hero meets a light flow below */
.seam-to-light { position: relative; }
.seam-to-light::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: clamp(50px,7vw,100px);
  background: linear-gradient(180deg, transparent, var(--cream)); pointer-events: none; z-index: 2; }
