/* ============================================================
   STILLWATER AGENTIC — Version 2
   Editorial aesthetic. Story-driven. Quiet confidence.
   Inspired by: Kinfolk, Aesop, Monocle, Stripe Press
   ============================================================ */

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'WHermann';
  src: url('fonts/WHermann-Heavy.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'WHermann';
  src: url('fonts/WHermann-HeavyItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'WHermann';
  src: url('fonts/WHermann-Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'WHermann';
  src: url('fonts/WHermann-Black.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'WHermann';
  src: url('fonts/WHermann-BlackItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blur-in {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.blur-in {
  animation: blur-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.blur-in-d1 { animation-delay: 0.15s; }
.blur-in-d2 { animation-delay: 0.32s; }
.blur-in-d3 { animation-delay: 0.50s; }
.blur-in-d4 { animation-delay: 0.68s; }

@media (prefers-reduced-motion: reduce) {
  .blur-in { animation: none; }
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --navy:           #194930;
  --navy-secondary: #1B2E4B;
  --navy-deep:      #0f2c1d;
  --teal:           #C09A52;
  --teal-muted:     rgba(192, 154, 82, 0.1);

  /* Warm Grounds */
  --ground:       #EBF1E7;
  --ground-alt:   #E5EBE1;
  --ground-dark:  #DCE5D8;
  --pure:         #F4F7F3;

  /* Text */
  --ink:          #1B2E4B;
  --ink-mid:      #4A5568;
  --ink-light:    #718096;
  --ink-faint:    #A0AEC0;

  /* Borders */
  --rule:         rgba(25, 73, 48, 0.1);
  --rule-light:   rgba(25, 73, 48, 0.06);

  /* Shadows */
  --lift-sm:  0 2px 12px rgba(25, 73, 48, 0.06);
  --lift-md:  0 4px 24px rgba(25, 73, 48, 0.09);
  --lift-lg:  0 8px 40px rgba(25, 73, 48, 0.13);
  --lift-xl:  0 20px 64px rgba(25, 73, 48, 0.18);

  /* Typography */
  --serif:  'WHermann', Georgia, 'Times New Roman', serif;
  --sans:   'Red Hat Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:      1200px;
  --max-w-wide: 1320px;
  --max-w-text: 720px;
  --pad-x:      clamp(20px, 4vw, 48px);
  --section-y:  clamp(80px, 10vw, 140px);
  --nav-h:      84px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Motion */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-o: cubic-bezier(0.16, 1, 0.3, 1);
  --fast:   180ms;
  --base:   300ms;
  --slow:   500ms;
  --enter:  700ms;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ground);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}


/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}

p { color: var(--ink-mid); max-width: 62ch; }

em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.eyebrow-light { color: rgba(245, 240, 232, 0.55); }
.eyebrow-teal  { color: var(--teal); }


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}


/* ============================================================
   ANIMATION SYSTEM
   Elements start visible. JS adds .below-fold to hide
   elements below the viewport, then removes on scroll.
   ============================================================ */
.fade-in {
  transition: opacity var(--enter) var(--ease-o),
              transform var(--enter) var(--ease-o);
}

.fade-in-d1 { transition-delay: 0.15s; }
.fade-in-d2 { transition-delay: 0.3s; }

.fade-in.below-fold {
  opacity: 0;
  transform: translateY(24px);
}

@keyframes line-grow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

@keyframes fade-slide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 60px;
  border: 1.5px solid var(--navy);
  transition: background var(--base) var(--ease),
              border-color var(--base) var(--ease),
              transform var(--base) var(--ease),
              box-shadow var(--base) var(--ease);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 46, 75, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 60px;
  border: 1.5px solid var(--rule);
  transition: border-color var(--base), background var(--base), transform var(--base);
}

.btn-ghost:hover {
  border-color: rgba(27, 46, 75, 0.3);
  background: rgba(27, 46, 75, 0.03);
  transform: translateY(-1px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--pure);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 60px;
  border: 1.5px solid rgba(253, 251, 248, 0.35);
  text-decoration: none;
  transition: border-color var(--base), background var(--base), transform var(--base);
}
.btn-ghost-light:hover {
  border-color: rgba(253, 251, 248, 0.65);
  background: rgba(253, 251, 248, 0.08);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 60px;
  border: 1.5px solid var(--rule);
  transition: border-color var(--base), background var(--base), transform var(--base);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(27, 46, 75, 0.3);
  transform: translateY(-1px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(27, 46, 75, 0.25);
  padding-bottom: 2px;
  transition: border-color var(--base), color var(--base);
}

.btn-text:hover {
  border-color: var(--navy);
  color: var(--navy-deep);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: rgba(245, 240, 232, 0.1);
  color: var(--ground);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 60px;
  border: 1.5px solid rgba(245, 240, 232, 0.2);
  backdrop-filter: blur(8px);
  transition: background var(--base), border-color var(--base), transform var(--base);
}

.btn-light:hover {
  background: rgba(245, 240, 232, 0.18);
  border-color: rgba(245, 240, 232, 0.35);
  transform: translateY(-1px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: transparent;
  color: var(--pure);
  font-size: 13px;
  font-weight: 500;
  border-radius: 60px;
  border: 1.5px solid rgba(253, 251, 248, 0.55);
  transition: background var(--base), border-color var(--base), color var(--base), transform var(--base);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  border-color: var(--pure);
  transform: translateY(-1px);
}

#nav.scrolled .btn-nav {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

#nav.scrolled .btn-nav:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn-cta {
  padding: 18px 48px;
  font-size: 16px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

/* Blur vignette — blurs content as it scrolls up behind the nav */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 998;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--slow) var(--ease),
              border-color var(--slow) var(--ease),
              backdrop-filter var(--slow) var(--ease);
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(25, 73, 48, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-light { display: block; }
.logo-dark  { display: none; }
#nav.scrolled .logo-light { display: none; }
#nav.scrolled .logo-dark  { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(253, 251, 248, 0.80);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--fast);
}

.nav-links a:hover { color: var(--pure); }

#nav.scrolled .nav-links a       { color: var(--ink-mid); }
#nav.scrolled .nav-links a:hover { color: var(--navy); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
  transition: opacity var(--fast);
}

.nav-burger:hover { opacity: 0.7; }

.nav-burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--pure);
  border-radius: 2px;
  transition: all var(--base) var(--ease);
}

#nav.scrolled .nav-burger span { background: var(--navy); }

.nav-burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Overlay */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ground);
  z-index: 999;
  padding: 96px var(--pad-x) var(--pad-x);
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--slow) var(--ease);
}

.mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-link {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-light);
  transition: color var(--fast);
}

.mob-link:hover { color: var(--teal); }

.mob-cta {
  margin-top: 32px;
  align-self: flex-start;
}


/* ============================================================
   HERO
   ============================================================ */
.c-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 100px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #EBF1E7 0%, #EBF1E7 4%, transparent 45%),
    linear-gradient(
      to top,
      rgba(12, 36, 22, 0.85) 0%,
      rgba(12, 36, 22, 0.40) 50%,
      rgba(12, 36, 22, 0.05) 100%
    );
  z-index: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-overlay { background: var(--navy-deep); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.hero-text .eyebrow {
  margin-bottom: 24px;
  color: var(--pure);
}

.hero-text h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--pure);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(28px, 5.2vw, 72px);
  text-align: center;
  line-height: 1.05;
}

.hero-body {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(253, 251, 248, 0.92);
  margin-top: 24px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-props {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0;
  flex-wrap: wrap;
}

.hero-props li {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(253, 251, 248, 0.50);
  padding: 0 20px;
  line-height: 1;
}

.hero-props li + li {
  border-left: 1px solid rgba(253, 251, 248, 0.18);
}

/* Hero Canvas — abstract warm composition */
.hero-canvas { width: 100%; }

.canvas-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255, 253, 248, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(42, 127, 127, 0.07) 0%, transparent 50%),
    linear-gradient(145deg, #EAE3D6 0%, #F0E9DF 30%, #E8E2D8 60%, #EDE6DC 100%);
  border-radius: var(--r-sm);
  border: 1px solid rgba(27, 46, 75, 0.08);
  overflow: hidden;
}

.canvas-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(27, 46, 75, 0.045);
  border-radius: 2px;
  pointer-events: none;
}

.canvas-light {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 253, 248, 0.7) 0%, transparent 70%);
}

.canvas-surface {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.canvas-block {
  background: rgba(27, 46, 75, 0.06);
  border-radius: 2px;
}

.canvas-block-a { width: 120px; height: 80px; }
.canvas-block-b { width: 60px; height: 50px; }

.canvas-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(42, 127, 127, 0.1);
  border: 1px solid rgba(42, 127, 127, 0.15);
  margin-bottom: 4px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-bar {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253, 251, 248, 0) 0%, rgba(253, 251, 248, 0.3) 100%);
  animation: line-grow 2.5s var(--ease) infinite 1.2s both;
}


/* ============================================================
   QUIET STATS
   ============================================================ */
.quiet-stats {
  padding: 24px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  background: var(--ground-alt);
}

.qs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.01em;
}

.qs-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-faint);
  flex-shrink: 0;
}


/* ============================================================
   MANIFESTO
   ============================================================ */
.c-manifesto {
  background: var(--ground);
  padding: 96px 0 80px;
  text-align: center;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.manifesto-inner p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
  color: var(--ink);
}

.manifesto-inner p + p {
  margin-top: 20px;
}

/* ============================================================
   RECOGNITION
   ============================================================ */
.c-recognition {
  padding: var(--section-y) 0;
  background: var(--ground);
}

.recognition-headline {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 48px;
}

.recognition-headline em {
  color: var(--teal);
}

.recognition-prose p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 24px;
  max-width: 62ch;
}

.recognition-prose p:last-child { margin-bottom: 0; }


/* ============================================================
   INTERLUDE
   ============================================================ */
.interlude {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(to bottom, var(--ground) 0%, #D4E0CC 50%, var(--ground) 100%);
}

.interlude-alt {
  background: var(--pure);
}

.interlude-text {
  font-family: var(--serif);
  font-size: clamp(26px, 3.8vw, 52px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: none;
}


/* ============================================================
   APPROACH / ABOUT
   ============================================================ */
.c-approach {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 96px;
  align-items: start;
}

.approach-left h2 { margin: 0 0 28px; }

.approach-left p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
  max-width: 56ch;
}

.approach-left .btn-text { margin-top: 8px; }

.approach-quote {
  padding: 36px 36px 36px 40px;
  border-left: 2px solid var(--teal);
  background: rgba(42, 127, 127, 0.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.approach-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
  line-height: 1.35;
  max-width: none;
  margin-bottom: 16px;
}

.approach-quote cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}


/* ============================================================
   TRANSFORMATION
   ============================================================ */
.c-transform {
  padding: var(--section-y) 0;
  background: var(--ground);
}

.transform-header {
  max-width: var(--max-w);
  margin: 0 auto 16px;
  padding: 0 var(--pad-x);
}

.transform-header h2 { margin-top: 8px; }

.transform-items {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.transform-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--rule-light);
  align-items: start;
}

.transform-item:last-child { border-bottom: 1px solid var(--rule-light); }

.t-num {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 400;
  line-height: 0.9;
  color: rgba(27, 46, 75, 0.07);
  letter-spacing: -0.04em;
  user-select: none;
  padding-top: 4px;
}

.t-body h3 {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  margin-bottom: 16px;
}

.t-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 56ch;
}


/* ============================================================
   FRAMEWORK — Educate. Empower. Elevate.
   ============================================================ */
.c-framework {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}

.framework-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
}

.framework-header h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.15;
}

.framework-sub {
  font-size: 16px;
  color: var(--ink-mid);
  margin-top: 16px;
  font-style: italic;
}

.framework-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.framework-step {
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
}

.f-num {
  display: block;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
  color: rgba(25, 73, 48, 0.08);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  user-select: none;
}

.f-body h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
}

.f-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
}

@media (max-width: 768px) {
  .framework-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .framework-step {
    padding: 32px 0;
    border-top: 1px solid var(--rule-light);
  }
  .f-num { font-size: 48px; }
}


/* ============================================================
   SERVICES
   ============================================================ */
.c-services {
  padding: var(--section-y) 0;
  background: var(--pure);
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 { margin-top: 8px; }

.services-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-top: 20px;
  max-width: 52ch;
}

.svc-list { border-top: 1px solid var(--rule-light); }

.svc {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule-light);
  transition: background var(--fast);
}

.svc:hover { background: rgba(27, 46, 75, 0.015); }

.svc-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.svc-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--teal);
  padding-top: 7px;
  flex-shrink: 0;
}

.svc-left h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--navy);
}

.svc-right {
  padding-top: 4px;
}

.svc-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 56ch;
}


/* ============================================================
   TV ADVERTISING
   ============================================================ */
.c-tv { background: none; }

.tv-inner {
  background: var(--navy);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.tv-inner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(42, 127, 127, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.tv-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tv-content h2 {
  color: var(--ground);
  margin: 8px 0 28px;
  font-size: clamp(36px, 5vw, 68px);
}

.tv-content h2 em {
  color: rgba(42, 127, 127, 0.9);
}

.tv-lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  max-width: 52ch;
  margin-bottom: 32px;
}

.tv-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.tv-points li {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.7);
  padding-left: 20px;
  position: relative;
}

.tv-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 1px;
  background: var(--teal);
}

/* TV Screen CSS illustration */
.tv-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-bezel {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--r-md) var(--r-md) 4px 4px;
  overflow: hidden;
}

.tv-chrome {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.tv-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.15);
}

.tv-display {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
}

.tv-display-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ground);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.tv-display-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  border: 1px solid rgba(245, 240, 232, 0.15);
  padding: 6px 14px;
  border-radius: 30px;
}

.tv-stem {
  width: 56px;
  height: 24px;
  background: rgba(245, 240, 232, 0.06);
  border-left: 1.5px solid rgba(245, 240, 232, 0.1);
  border-right: 1.5px solid rgba(245, 240, 232, 0.1);
  border-bottom: 1.5px solid rgba(245, 240, 232, 0.1);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.tv-base {
  width: 110px;
  height: 7px;
  background: rgba(245, 240, 232, 0.08);
  border: 1.5px solid rgba(245, 240, 232, 0.1);
  border-radius: 3px;
}


/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.c-process {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}

.process-header {
  margin-bottom: 64px;
}

.process-header h2 { margin-top: 8px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule-light);
}

.process-step {
  padding: 32px 32px 0 0;
  border-top: 2px solid var(--rule);
  position: relative;
}

.process-step:hover { border-top-color: var(--teal); }

.ps-track { display: none; }

.process-step h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: none;
}

.ps-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-faint);
  font-family: var(--sans);
}


/* ============================================================
   PRICING
   ============================================================ */
.c-pricing {
  padding: var(--section-y) 0;
  background: var(--ground);
}

.pricing-header {
  margin-bottom: 64px;
  text-align: center;
}

.pricing-header h2 { margin-top: 8px; }

.pricing-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-top: 20px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tier {
  background: var(--pure);
  border: 1px solid var(--rule-light);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: transform var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
}

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

.tier-hero {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: var(--lift-xl);
}

.tier-hero:hover { transform: translateY(-14px); }

.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.tier-hero .tier-name { color: rgba(245, 240, 232, 0.6); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tier-from {
  font-size: 13px;
  color: var(--ink-faint);
}

.tier-hero .tier-from { color: rgba(245, 240, 232, 0.4); }

.tier-amount {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.tier-hero .tier-amount { color: var(--ground); }

.tier-period {
  font-size: 14px;
  color: var(--ink-light);
}

.tier-hero .tier-period { color: rgba(245, 240, 232, 0.4); }

.tier-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: none;
}

.tier-hero .tier-desc { color: rgba(245, 240, 232, 0.6); }

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-mid);
}

.tier-features li::before {
  content: '—';
  color: var(--teal);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.tier-hero .tier-features li { color: rgba(245, 240, 232, 0.65); }

.tier-hero .tier-features li::before { color: rgba(42, 127, 127, 0.8); }

.tier-btn {
  width: 100%;
  justify-content: center;
}

.tier-hero .btn-primary {
  background: var(--ground);
  color: var(--navy);
  border-color: var(--ground);
}

.tier-hero .btn-primary:hover {
  background: #fff;
  border-color: #fff;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-light);
  max-width: 56ch;
  margin: 40px auto 0;
  line-height: 1.7;
}


/* ============================================================
   FOUNDER
   ============================================================ */
.c-founder {
  padding: var(--section-y) 0;
  background: var(--pure);
}

.founder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  align-items: start;
}

.founder-portrait {
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255, 253, 248, 0.7) 0%, transparent 60%),
    linear-gradient(155deg, #EDE6D8 0%, #F2EAE0 40%, #E8E3D9 100%);
  border-radius: var(--r-sm);
  border: 1px solid rgba(27, 46, 75, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portrait-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-inner svg {
  width: 80px;
  height: 80px;
  color: var(--navy);
}

.founder-portrait::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(27, 46, 75, 0.04);
  border-radius: 2px;
  pointer-events: none;
}

.founder-text-col h2 { margin: 8px 0 28px; }

.founder-lead {
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 24px;
  max-width: 58ch;
}

.founder-text-col p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
  max-width: 58ch;
}

.founder-text-col .btn-text { margin-top: 8px; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.c-testimonials {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}

.c-testimonials .eyebrow { display: block; margin-bottom: 56px; }

.testimonials-prose { border-top: 1px solid var(--rule-light); }

.t-quote {
  padding: 64px 0;
}

.t-quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  max-width: none;
  margin-bottom: 32px;
}

.t-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t-quote footer strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

.t-quote footer span {
  font-size: 13px;
  color: var(--ink-light);
  font-style: normal;
}

.t-rule {
  height: 1px;
  background: var(--rule-light);
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.c-cta {
  padding: var(--section-y) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.c-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 127, 127, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: var(--ground);
  margin: 8px 0 24px;
  font-size: clamp(34px, 5vw, 64px);
}

.cta-inner > p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.6);
  margin: 0 auto 40px;
  max-width: 52ch;
}

.cta-meta {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 20px;
  letter-spacing: 0.02em;
  max-width: none;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--rule-light);
  background: var(--pure);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
  border-radius: 2px;
  transition: border-color var(--fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23194930' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-note {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 16px;
  font-style: italic;
}

.form-success {
  display: none;
  padding: 32px;
  background: var(--pure);
  border-left: 3px solid var(--navy);
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info-col h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-light);
}

.expect-list {
  list-style: none;
}

.expect-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-light);
}

.expect-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 500;
  padding-top: 2px;
  flex-shrink: 0;
  width: 24px;
}

.expect-item p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

.contact-direct {
  margin-top: 32px;
}

.contact-direct p {
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-direct a {
  font-size: 16px;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy-deep);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.07);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img { display: block; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.35);
  max-width: 32ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--fast);
}

.footer-nav a:hover { color: var(--ground); }

.footer-contact a {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--fast);
}

.footer-contact a:hover { color: rgba(42, 127, 127, 0.9); }

.footer-base { padding: 24px 0; }

.footer-base-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.25);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(245, 240, 232, 0.25);
  transition: color var(--fast);
}

.footer-legal a:hover { color: rgba(245, 240, 232, 0.55); }


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-canvas { max-width: 420px; }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .approach-right { max-width: 480px; }

  .tv-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .tv-visual { max-width: 320px; }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .tier-hero { transform: none; }
  .tier-hero:hover { transform: translateY(-4px); }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .founder-portrait-col { max-width: 360px; }

  .svc {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand { grid-column: 1 / -1; }
}


/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .mob-overlay { display: flex; }

  /* Stats */
  .qs-inner { gap: 12px; }
  .qs-dot { display: none; }

  /* Svc list */
  .svc {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .svc-left { align-items: center; }

  /* Transform */
  .transform-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .t-num { font-size: 56px; }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step { padding: 28px 0; border-top: none; border-bottom: 1px solid var(--rule-light); }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-canvas { display: none; }
  .hero-scroll { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-base-inner { flex-direction: column; gap: 12px; text-align: center; }

  /* CTA */
  .btn-cta { width: 100%; }

  /* TV */
  .tv-visual { display: none; }

  /* Testimonials */
  .t-quote p { font-size: clamp(18px, 4.5vw, 24px); }
}


/* ============================================================
   RESPONSIVE — SMALL (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .transform-item { grid-template-columns: 1fr; }
  .t-num { display: none; }
  .process-steps { grid-template-columns: 1fr; }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in.below-fold {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* ── Inner-page hero ─────────────────────────────────────── */
.c-page-hero {
  padding: calc(var(--nav-h) + 72px) 0 80px;
  background: var(--ground);
}
.c-page-hero .eyebrow { margin-bottom: 16px; }
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.page-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-mid);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 36px;
}
.page-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.c-faq {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}
.faq-list { margin-top: 56px; }
.faq-item {
  padding: 36px 0;
  border-top: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule-light); }
.faq-q {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
}
.faq-a {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ── Services page — detail rows ─────────────────────────── */
.svc-expanded .svc-right { display: flex; flex-direction: column; gap: 16px; }
.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.svc-tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-muted);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Add-ons ─────────────────────────────────────────────── */
.c-addons {
  padding: 64px 0 var(--section-y);
  background: var(--ground);
}
.addons-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule-light);
}
.addons-list { list-style: none; }
.addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 16px;
  color: var(--ink-mid);
}
.addons-list li:first-child { border-top: 1px solid var(--rule-light); }
.addon-price {
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

/* ── TV teaser (services page) ───────────────────────────── */
.tv-teaser {
  margin-top: 80px;
  padding: 56px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.tv-teaser h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--pure);
  line-height: 1.3;
  margin-bottom: 12px;
}
.tv-teaser p {
  font-size: 16px;
  color: rgba(253, 251, 248, 0.7);
  line-height: 1.65;
}

/* ── Pricing — entry point ───────────────────────────────── */
.c-entry {
  padding: 56px 0;
  background: var(--ground);
  border-bottom: 1px solid var(--rule-light);
}
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-light);
  border-radius: var(--r-md);
  overflow: hidden;
}
.entry-item {
  background: var(--pure);
  padding: 40px;
}
.entry-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.entry-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.entry-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── Pricing — TV callout ────────────────────────────────── */
.tv-pricing-callout {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
.tv-pricing-callout h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--pure);
  margin-bottom: 8px;
}
.tv-pricing-callout .tv-price-range {
  font-size: clamp(28px, 3vw, 40px);
  font-family: var(--serif);
  color: var(--pure);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.tv-pricing-callout .tv-price-compare {
  font-size: 14px;
  color: rgba(253,251,248,0.55);
}
.tv-pricing-callout p {
  font-size: 15px;
  color: rgba(253,251,248,0.65);
  line-height: 1.65;
  margin-top: 12px;
}

/* ── Pricing — build tiers ───────────────────────────────── */
.pricing-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-light);
}

/* ── Care plans ──────────────────────────────────────────── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border-radius: var(--r-md);
  overflow: hidden;
}
.care-tier {
  background: var(--pure);
  padding: 36px;
}
.care-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.care-price {
  font-size: clamp(28px, 3vw, 38px);
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
}
.care-price-period {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-light);
  font-weight: 400;
}
.care-hours {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 20px;
}
.care-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.care-detail {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── Good to know ────────────────────────────────────────── */
.c-good-to-know {
  padding: 64px 0;
  background: var(--ground-alt);
}
.good-to-know-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}
.good-to-know-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.good-to-know-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.good-to-know-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 6px;
  height: 1px;
  background: var(--teal);
}
.good-to-know-list li:first-child { border-top: 1px solid var(--rule-light); }

/* ── TV page — comparison ────────────────────────────────── */
.c-comparison {
  padding: var(--section-y) 0;
  background: var(--ground);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--rule-light);
}
.comparison-table thead th {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--rule);
}
.comparison-table thead th:first-child { color: var(--ink-light); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.comparison-table tbody td:first-child { color: var(--ink-mid); }
.comparison-table tbody td:nth-child(2) { color: var(--ink-light); }
.comparison-table tbody td:nth-child(3) { color: var(--teal); font-weight: 500; }
.comparison-table tr:last-child td { border-bottom: none; }

/* ── TV page — who this is for ───────────────────────────── */
.who-for-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
}
.who-for-list li {
  padding: 20px 0;
  padding-left: 24px;
  border-bottom: 1px solid var(--rule-light);
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.5;
  position: relative;
}
.who-for-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 8px;
  height: 1px;
  background: var(--teal);
}
.who-for-list li:nth-child(odd) { padding-right: 40px; }
.who-for-list li:nth-last-child(-n+2) { border-bottom: none; }

/* ── About — name section ────────────────────────────────── */
.c-name {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}
.name-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.name-pull {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0;
}
.name-body {
  padding-top: 8px;
}
.name-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ── About — values ──────────────────────────────────────── */
.c-values {
  padding: var(--section-y) 0;
  background: var(--ground);
}
.values-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.values-list {
  list-style: none;
  columns: 2;
  column-gap: 40px;
}
.values-list li {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-light);
  padding-left: 20px;
  position: relative;
  break-inside: avoid;
}
.values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 1px;
  background: var(--teal);
}
.values-list li:first-child { border-top: 1px solid var(--rule-light); }

/* ── About — how we're different ─────────────────────────── */
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.diff-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-left: 28px;
  position: relative;
}
.diff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 12px;
  height: 1px;
  background: var(--teal);
}
.diff-list li:first-child { border-top: 1px solid var(--rule-light); }

/* ── About — founder detail ──────────────────────────────── */
.c-founder-josh {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}
.founder-josh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.founder-name-tag {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}
.founder-name-tag em {
  font-style: italic;
  color: var(--teal);
}
.founder-josh-grid p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.founder-josh-grid p:last-child { margin-bottom: 0; }
.founder-credential {
  margin-top: 32px;
  padding: 24px;
  background: var(--ground-dark);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  font-style: italic;
}

/* ── Simple social proof (with placeholders) ─────────────── */
.c-proof-simple {
  padding: var(--section-y) 0;
  background: var(--ground);
}
.proof-quotes {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}

/* ── TV investment section ───────────────────────────────── */
.c-investment {
  padding: var(--section-y) 0;
  background: var(--ground-alt);
}
.investment-card {
  max-width: 680px;
  padding: 48px 56px;
  background: var(--pure);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.investment-price {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 8px;
}
.investment-note {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 24px;
}
.investment-card p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ── What's included list (TV page) ──────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
}
.included-item {
  padding: 18px 0;
  padding-left: 24px;
  border-bottom: 1px solid var(--rule-light);
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.5;
  position: relative;
}
.included-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 8px;
  height: 1px;
  background: var(--teal);
}
.included-item:nth-child(odd) { padding-right: 40px; }
.included-item:nth-last-child(-n+2) { border-bottom: none; }

/* ── TV how-it-works (numbered steps vertical) ───────────── */
.tv-steps {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}
.tv-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}
.tv-step:first-child { border-top: 1px solid var(--rule-light); }
.tv-step-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: rgba(27,46,75,0.12);
  line-height: 1;
  padding-top: 4px;
}
.tv-step h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.tv-step p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ── Pricing page about-section note ────────────────────── */
.pricing-note-alt {
  margin-top: 56px;
  padding: 32px 40px;
  background: var(--ground-alt);
  border-radius: var(--r-sm);
  border-left: 2px solid var(--teal);
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ── Nav active state ────────────────────────────────────── */
.nav-links a.nav-active {
  color: var(--navy);
  font-weight: 500;
}

/* ── RESPONSIVE — multi-page ─────────────────────────────── */
@media (max-width: 1024px) {
  .faq-item { grid-template-columns: 1fr; gap: 16px; }
  .addons-grid { grid-template-columns: 1fr; gap: 32px; }
  .name-layout { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-josh-grid { grid-template-columns: 1fr; gap: 40px; }
  .good-to-know-grid { grid-template-columns: 1fr; gap: 32px; }
  .tv-pricing-callout { grid-template-columns: 1fr; gap: 24px; }
  .tv-teaser { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .entry-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .who-for-list { grid-template-columns: 1fr; }
  .who-for-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule-light); }
  .who-for-list li:last-child { border-bottom: none; }
  .included-grid { grid-template-columns: 1fr; }
  .included-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule-light); }
  .included-item:last-child { border-bottom: none; }
  .values-list { columns: 1; }
  .tv-pricing-callout { padding: 32px; }
  .investment-card { padding: 32px; }
}


/* ============================================================
   IMAGE MASK SHAPES
   D-shape: flat on one side, circular arc on the other.
   Apply to the image wrapper. The img/bg inside fills the shape.
   ============================================================ */

/* Image on the RIGHT — circle arc on top/right, square corner bottom-left */
.img-mask-right {
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 50% 0;
  overflow: hidden;
  flex-shrink: 0;
}

/* Image on the LEFT — mirrored: circle arc on top/left, square corner bottom-right */
.img-mask-left {
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 0 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Image fill — use as a direct child of the mask wrapper */
.img-mask-right img,
.img-mask-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background-image variant (for CSS placeholder or photo) */
.img-mask-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}


/* ============================================================
   DARK MODE
   ============================================================ */

[data-theme="dark"] {
  --ground:      #111d14;
  --ground-alt:  #0d1810;
  --ground-dark: #09120b;
  --pure:        #182a1b;

  --ink:         #EDE8E0;
  --ink-mid:     rgba(237, 232, 224, 0.68);
  --ink-light:   rgba(237, 232, 224, 0.44);
  --ink-faint:   rgba(237, 232, 224, 0.24);

  --rule:        rgba(237, 232, 224, 0.09);
  --rule-light:  rgba(237, 232, 224, 0.05);

  --lift-sm:  0 2px 12px rgba(0, 0, 0, 0.28);
  --lift-md:  0 4px 24px rgba(0, 0, 0, 0.38);
  --lift-lg:  0 8px 40px rgba(0, 0, 0, 0.48);
  --lift-xl:  0 20px 64px rgba(0, 0, 0, 0.58);
}

[data-theme="dark"] body {
  background: var(--ground);
  color: var(--ink);
}

/* Headings */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 { color: #EDE8E0; }

/* Keep headings inside already-dark sections as-is */
[data-theme="dark"] .c-cta h2,
[data-theme="dark"] #footer h2,
[data-theme="dark"] .c-tv h2,
[data-theme="dark"] .c-tv h3 { color: inherit; }

/* Nav */
/* Nav — dark mode scrolled state */
[data-theme="dark"] #nav.scrolled {
  background: rgba(10, 20, 12, 0.94);
  border-bottom-color: rgba(237, 232, 224, 0.08);
}
[data-theme="dark"] #nav.scrolled .logo-light { display: block; }
[data-theme="dark"] #nav.scrolled .logo-dark  { display: none; }
[data-theme="dark"] #nav.scrolled .nav-links a { color: rgba(237, 232, 224, 0.65); }
[data-theme="dark"] #nav.scrolled .nav-links a:hover { color: #EDE8E0; }
[data-theme="dark"] #nav.scrolled .btn-nav {
  background: rgba(237, 232, 224, 0.10);
  color: #EDE8E0;
  border-color: rgba(237, 232, 224, 0.25);
}
[data-theme="dark"] #nav.scrolled .btn-nav:hover {
  background: rgba(237, 232, 224, 0.16);
}
[data-theme="dark"] #nav.scrolled .theme-toggle {
  border-color: rgba(237, 232, 224, 0.20);
  color: rgba(237, 232, 224, 0.65);
}
[data-theme="dark"] .brand-name { color: #EDE8E0; }

/* Mobile menu */
[data-theme="dark"] .mob-overlay { background: var(--ground); }
[data-theme="dark"] .mob-link { color: rgba(237, 232, 224, 0.75); border-color: var(--rule-light); }

/* Hero bottom fade matches dark bg */
[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(to top, #111d14 0%, #111d14 4%, transparent 45%),
    linear-gradient(to right, rgba(12, 36, 22, 0.75) 0%, rgba(12, 36, 22, 0.45) 35%, rgba(12, 36, 22, 0.05) 100%);
}

/* Interlude */
[data-theme="dark"] .interlude { background: linear-gradient(to bottom, var(--ground) 0%, #0a1a0d 50%, var(--ground) 100%); }
[data-theme="dark"] .interlude-text { color: #EDE8E0; }

/* Services */
[data-theme="dark"] .svc { border-color: var(--rule-light); }
[data-theme="dark"] .svc-list { border-color: var(--rule); }

/* Nav button (transparent state) — pure resolves to dark in dark mode, force white */
[data-theme="dark"] .btn-nav {
  color: #FDFBF8;
  border-color: rgba(253, 251, 248, 0.45);
}

/* Hero eyebrow — uses var(--pure) which goes dark in dark mode */
[data-theme="dark"] .hero-text .eyebrow { color: rgba(253, 251, 248, 0.80); }

/* Hero ghost button — always on dark bg, must stay white in both modes */
[data-theme="dark"] .btn-ghost-light {
  color: #FDFBF8;
  border-color: rgba(253, 251, 248, 0.35);
}
[data-theme="dark"] .btn-ghost-light:hover {
  border-color: rgba(253, 251, 248, 0.65);
  background: rgba(253, 251, 248, 0.08);
}

/* Benefits watermark numbers */
[data-theme="dark"] .t-num { color: rgba(237, 232, 224, 0.13); }

/* Approach pull quote */
[data-theme="dark"] .approach-quote {
  border-color: var(--rule);
  color: #EDE8E0;
}

/* Pricing tiers */
[data-theme="dark"] .tier {
  background: var(--pure);
  border-color: var(--rule);
}
[data-theme="dark"] .tier-hero { border-color: var(--navy); }
[data-theme="dark"] .care-tier { background: var(--pure); }
[data-theme="dark"] .tier-features li { border-color: var(--rule-light); }
[data-theme="dark"] .entry-item { border-color: var(--rule); }

/* Testimonials */
[data-theme="dark"] .t-rule { background: var(--rule); }
[data-theme="dark"] .t-quote p { color: #EDE8E0; }

/* FAQ */
[data-theme="dark"] .faq-item { border-color: var(--rule-light); }

/* Inner page hero */
[data-theme="dark"] .c-page-hero { background: var(--ground); }

/* About — founder credential */
[data-theme="dark"] .founder-credential {
  background: var(--pure);
  border-color: var(--rule);
  color: rgba(237, 232, 224, 0.72);
}

/* TV section — already dark, keep as-is */
[data-theme="dark"] .c-tv { background: var(--navy-deep); }

/* ============================================================
   ARCH REVEAL INTRO (Homepage)
   ============================================================ */
.c-arch-reveal {
  position: relative;
  height: 270vh;  /* extra 70vh = dwell at full screen before page scrolls on */
  background: var(--navy);
}

.arch-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.arch-portal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42vmin;
  height: 42vmin;
  border-radius: 50% 50% 50% 0;
  overflow: hidden;
  will-change: width, height, border-radius;
}

.arch-video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.arch-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 20, 0.35);
}

.arch-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(244, 247, 243, 0.9);
  transition: opacity 0.3s ease;
}

.arch-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(244, 247, 243, 0.3);
  transition: opacity 0.4s ease;
  animation: tv-bounce 2.2s ease-in-out infinite;
}

.arch-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 100px;
}

/* ============================================================
   TV SCROLL REVEAL INTRO
   ============================================================ */
.c-tv-reveal {
  position: relative;
  height: 210vh;
  background: var(--navy);
}

.tv-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-reveal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  clip-path: inset(43% 35% round 12px);
  will-change: clip-path;
  pointer-events: none;
}

.tv-reveal-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(244, 247, 243, 0.85);
  transition: opacity 0.3s ease;
}

.tv-reveal-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244, 247, 243, 0.32);
  transition: opacity 0.4s ease;
  animation: tv-bounce 2.2s ease-in-out infinite;
}

@keyframes tv-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
  .tv-reveal-hint { animation: none; }
  .c-tv-reveal { height: auto; }
  .tv-reveal-sticky { position: relative; height: auto; padding: 80px 0; }
  .tv-reveal-img {
    position: relative; inset: auto;
    object-fit: contain; clip-path: none;
    width: 80%; max-width: 700px; height: auto;
    margin: 0 auto; display: block;
  }
}

/* ── Theme toggle button ── */
.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(253, 251, 248, 0.40);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 251, 248, 0.75);
  flex-shrink: 0;
  padding: 0;
  transition: color var(--base), border-color var(--base);
}
.theme-toggle:hover {
  color: var(--pure);
  border-color: rgba(253, 251, 248, 0.75);
}
#nav.scrolled .theme-toggle {
  border-color: var(--rule);
  color: var(--ink-light);
}
#nav.scrolled .theme-toggle:hover {
  color: var(--navy);
  border-color: rgba(25, 73, 48, 0.35);
}
.theme-toggle svg { width: 15px; height: 15px; display: block; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle:hover {
  color: var(--teal);
  border-color: rgba(192, 154, 82, 0.35);
}

/* Case study dark mode fixes */
[data-theme="dark"] .cs-overview-item { color: #EDE8E0; }
[data-theme="dark"] .cs-placeholder { background: linear-gradient(135deg, #1a2e1d 0%, #142219 100%); }
[data-theme="dark"] .cs-placeholder span { color: #5a7a62; }
[data-theme="dark"] .work-card-placeholder .work-card-image { background: #1a2e1d; }
[data-theme="dark"] .work-card-placeholder .work-card-image::after { color: #5a7a62; }
