/* ====================================================================
   Dual Halo — v2 site rebuild
   Two-font system: Cormorant Garamond (display) + DM Sans (UI/body)
   Dark-mode primary; light-mode for long-form reading.
   ==================================================================== */

:root {
  --bg: #101010;
  --bg-deeper: #0a0a0a;
  --fg: #E1E1E1;
  --fg-bright: #F5F5F0;
  --fg-mute: rgba(225, 225, 225, 0.55);
  --fg-faint: rgba(225, 225, 225, 0.32);
  --rule: rgba(225, 225, 225, 0.14);
  --rule-strong: rgba(225, 225, 225, 0.28);
  --red: #B81418;
  --red-glow: rgba(184, 20, 24, 0.55);
  --orange: #FE9000;

  --display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "DM Sans", "Inter", system-ui, -apple-system, Helvetica, Arial, sans-serif;

  /* spacing scale */
  --pad-x: clamp(20px, 4.5vw, 64px);
  --pad-y-section: clamp(40px, 6vw, 90px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.theme-light {
  --bg: #F4F1EA;
  --bg-deeper: #F4F1EA;
  --fg: #000000;
  --fg-bright: #000000;
  --fg-mute: #555555;
  --fg-faint: #777777;
  --rule: rgba(0, 0, 0, 0.12);
  --rule-strong: rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 280ms var(--ease);
}

p { text-wrap: pretty; }

::selection {
  background: var(--red);
  color: #F5F5F0;
}

/* ── Type primitives ─────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.display em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.h-xl { font-size: clamp(48px, 9vw, 148px); }
.h-lg { font-size: clamp(40px, 6.4vw, 96px); }
.h-md { font-size: clamp(32px, 4.2vw, 64px); }
.h-sm { font-size: clamp(24px, 2.6vw, 38px); }

.lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.38;
  color: var(--fg);
  max-width: 30ch;
}

.body { max-width: 60ch; }
.body p { margin: 0 0 1.1em; }

.small-caps {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-mute);
}

.num {
  font-family: var(--display);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  color: var(--fg-faint);
}

/* ── Layout shells ───────────────────────────────────────────────── */

.shell {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section {
  padding-top: var(--pad-y-section);
  padding-bottom: var(--pad-y-section);
  position: relative;
}

.rule {
  height: 1px;
  background: var(--rule);
  width: 100%;
}

.rule-red {
  height: 1px;
  background: var(--red);
  width: 100%;
  box-shadow: 0 0 16px var(--red-glow);
}

/* ── Reveal on scroll ────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--rd, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.motion-off .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.motion-cinematic .reveal {
  transform: translateY(38px);
  transition-duration: 1300ms;
}

/* ── Nav ─────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: linear-gradient(to bottom, rgba(16,16,16,0.92), rgba(16,16,16,0.0));
  pointer-events: none;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 300ms var(--ease), background 300ms var(--ease);
}
.nav.solid {
  background: rgba(16,16,16,0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav > * { pointer-events: auto; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.nav-brand img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-brand .descriptor {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border-left: 1px solid var(--rule-strong);
  padding-left: 14px;
  line-height: 1.3;
  max-width: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--fg-bright);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--rule-strong);
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--fg-bright);
  transition: border-color 280ms var(--ease), color 280ms var(--ease);
}
.nav-cta:hover { border-color: var(--red); color: var(--fg-bright); }

/* hamburger — mobile only */
.nav-burger {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger-ico {
  position: relative;
  display: block;
  width: 26px;
  height: 12px;
}
.burger-ico span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--fg-bright);
  transition: transform 300ms var(--ease), top 300ms var(--ease), opacity 200ms var(--ease);
}
.burger-ico span:nth-child(1) { top: 0; }
.burger-ico span:nth-child(2) { top: 10px; }
.burger-ico.open span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.burger-ico.open span:nth-child(2) { top: 5px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links, .nav-brand .descriptor { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}

.hero h1 {
  font-size: clamp(54px, 10.5vw, 168px);
  line-height: 0.98;
}
/* mobile: shrink the hero headline so long words ("conversation.") fit */
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(34px, 11vw, 50px); line-height: 1.02; }
  .approach-hero h1,
  .work-hero-text h1,
  .article-page .index-head h1 { font-size: clamp(34px, 11vw, 50px); line-height: 1.02; }
  .cta-band h2,
  .display.h-lg { font-size: clamp(34px, 11vw, 50px) !important; line-height: 1.02; }
}

.hero .meta-strip {
  position: absolute;
  top: 110px;
  right: var(--pad-x);
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  line-height: 1.8;
}
.hero .meta-strip .num-line {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--fg-faint);
  font-style: italic;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 60px;
}
.hero-bottom .lede { max-width: 36ch; }

@media (max-width: 880px) {
  .hero .meta-strip { display: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: var(--pad-x);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue .line {
  width: 56px;
  height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg-bright);
  transform: translateX(-100%);
  animation: cueSlide 2.4s var(--ease) infinite;
}
@keyframes cueSlide {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.motion-off .scroll-cue .line::after { animation: none; }

/* halo glow placed behind hero for atmosphere — v1.6 sized & positioned
   to fade out within the hero, so it doesn't bottom-out at the Positioning
   section boundary. */
.hero-glow {
  position: absolute;
  width: min(64vw, 760px);
  aspect-ratio: 1;
  right: -8%;
  top: -18%;
  background: radial-gradient(circle at center, rgba(184,20,24,0.22) 0%, rgba(184,20,24,0.05) 38%, transparent 62%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.75;
}
.red-whisper .hero-glow { opacity: 0.35; }
.red-signature .hero-glow { opacity: 1; }

/* ── Halos hero variant ──────────────────────────────────────────── */
.hero.halos {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
}
.hero.halos .halos-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(70vh, 720px);
  margin-top: 60px;
}
.hero.halos .halos-stage img {
  max-width: min(80vw, 800px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 0 rgba(184,20,24,0));
  animation: haloBreathe 4200ms var(--ease) 1 forwards;
}
.hero.halos .halos-stage img.loop {
  animation: haloBreatheLoop 9s var(--ease) infinite;
}
.hero.halos .halos-eyebrow {
  text-align: center;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.hero.halos .halos-lede {
  text-align: center;
  margin: 30px auto 0;
  max-width: 50ch;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.32;
  color: var(--fg);
}
.hero.halos .halos-lede em { color: var(--red); font-style: italic; }
.hero.halos .halos-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
.motion-off .hero.halos .halos-stage img { animation: none; }

/* nav logo one-shot pulse on first load */
.nav-brand img {
  animation: haloBreathe 3600ms var(--ease) 1 forwards;
}
.motion-off .nav-brand img { animation: none; }

@keyframes haloBreathe {
  0%   { filter: drop-shadow(0 0 0 rgba(184,20,24,0)); opacity: 0.6; transform: scale(0.985); }
  35%  { filter: drop-shadow(0 0 36px rgba(184,20,24,0.55)); opacity: 1; transform: scale(1.005); }
  70%  { filter: drop-shadow(0 0 18px rgba(184,20,24,0.18)); opacity: 1; transform: scale(1); }
  100% { filter: drop-shadow(0 0 0 rgba(184,20,24,0)); opacity: 1; transform: scale(1); }
}
@keyframes haloBreatheLoop {
  0%   { filter: drop-shadow(0 0 12px rgba(184,20,24,0.18)); }
  50%  { filter: drop-shadow(0 0 32px rgba(184,20,24,0.45)); }
  100% { filter: drop-shadow(0 0 12px rgba(184,20,24,0.18)); }
}

/* ── Positioning paragraph ───────────────────────────────────────── */

.positioning {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.positioning p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.22;
  margin: 0;
  max-width: 38ch;
}
.positioning p + p { margin-top: 0.7em; }
.positioning .label { padding-top: 18px; }
@media (max-width: 880px) {
  .positioning { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Proof points — index style ──────────────────────────────────── */

.proof {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.proof-row {
  display: grid;
  grid-template-columns: 80px 220px 1fr auto;
  gap: 40px;
  align-items: baseline;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding 480ms var(--ease);
}
.proof-row .num {
  font-size: 28px;
  font-style: italic;
}
.proof-row .cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.proof-row h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}
.proof-row h3 em {
  color: var(--red);
  font-style: italic;
}
.proof-row .support {
  color: var(--fg-mute);
  font-size: 14.5px;
  max-width: 40ch;
  text-align: right;
}
.proof-row::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms var(--ease);
  opacity: 0.65;
}
.proof-row:hover::after { transform: scaleX(1); }

.proof-layout-editorial .proof-row {
  grid-template-columns: 80px 1fr;
  gap: 30px;
}
.proof-layout-editorial .proof-row .cat,
.proof-layout-editorial .proof-row .support {
  grid-column: 2;
  text-align: left;
  max-width: 60ch;
  padding-top: 14px;
}

.proof-layout-twocol .proof-row {
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
.proof-layout-twocol .proof-row .num,
.proof-layout-twocol .proof-row .support {
  display: none;
}

@media (max-width: 880px) {
  .proof-row { grid-template-columns: 60px 1fr !important; gap: 18px; }
  .proof-row .cat { grid-column: 2; }
  .proof-row h3 { grid-column: 2; }
  .proof-row .support { grid-column: 2; text-align: left; margin-top: 12px; }
}
@media (max-width: 600px) {
  .proof-row { grid-template-columns: 1fr !important; }
  .proof-row .num { display: none; }
  .proof-row .cat { grid-column: 1; }
  .proof-row h3 { grid-column: 1; }
  .proof-row .support { grid-column: 1; }
  .proof-head { grid-template-columns: 1fr !important; gap: 20px !important; }
}

/* ── Approach preview block ──────────────────────────────────────── */

.approach-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-preview .label-col { padding-top: 10px; }
.approach-preview h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02;
}
.approach-preview .layers {
  margin-top: 60px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.approach-preview .layer {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.approach-preview .layer h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin: 0;
}
.approach-preview .layer p {
  margin: 6px 0 0;
  color: var(--fg-mute);
  font-size: 14.5px;
}
@media (max-width: 880px) {
  .approach-preview { grid-template-columns: 1fr; gap: 36px; }
  .approach-preview .layer { grid-template-columns: 50px 1fr; }
  .approach-preview .layer .pct { grid-column: 2; }
}

/* ── Articles list — editorial TOC ───────────────────────────────── */

.articles {
  display: flex;
  flex-direction: column;
}
.articles-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.articles-head h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02;
}
.articles-list { border-top: 1px solid var(--rule); }
.article-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.1fr 90px;
  gap: 30px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 360ms var(--ease), background 360ms var(--ease);
  position: relative;
}
.article-row:hover {
  padding-left: 14px;
}
.article-row:hover .arrow { transform: translateX(6px); color: var(--red); }
.article-row .date {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.article-row .title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.16;
  margin: 0;
  letter-spacing: -0.005em;
}
.article-row .sub {
  color: var(--fg-mute);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 48ch;
}
.article-row .arrow {
  text-align: right;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--fg-faint);
  transition: transform 360ms var(--ease), color 360ms var(--ease);
}
@media (max-width: 880px) {
  .article-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .article-row .arrow { display: none; }
}

/* ── Founder preview ─────────────────────────────────────────────── */

.founder {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.founder .portrait {
  position: relative;
  overflow: hidden;
}
.founder .portrait::before { display: none; }

/* legacy placeholder styles — removed in v2.0 */

.founder .text h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.04;
}
.founder .text p {
  margin: 28px 0 0;
  color: var(--fg);
  font-size: 17px;
  max-width: 42ch;
}
@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; gap: 30px; }
}

/* ── Contact CTA ─────────────────────────────────────────────────── */

.cta-band {
  text-align: left;
  padding: clamp(80px, 14vw, 200px) var(--pad-x);
  position: relative;
  border-top: 1px solid var(--rule);
}
.cta-band .eyebrow { margin-bottom: 40px; }
.cta-band h2 {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 1;
}
.cta-band .actions {
  display: flex;
  gap: 14px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--rule-strong);
  color: var(--fg-bright);
  background: transparent;
  cursor: pointer;
  transition: background 320ms var(--ease), border-color 320ms var(--ease), color 320ms var(--ease), padding-right 320ms var(--ease);
}
.btn:hover {
  border-color: var(--red);
  padding-right: 36px;
}
.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: #F5F5F0;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn.primary:hover {
  box-shadow: 0 0 28px var(--red-glow);
}
.btn .arrow {
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  transition: transform 320ms var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* signature band variant: full bleed red */
.red-signature .signature-band {
  background: var(--red);
  color: #F5F5F0;
  border-top: 0;
}
.red-signature .signature-band h2 em { color: #F5F5F0; }
.red-signature .signature-band .btn { color: #F5F5F0; border-color: rgba(255,255,255,0.4); }
.red-signature .signature-band .btn.primary { background: #101010; border-color: #101010; }
.red-signature .signature-band .eyebrow { color: rgba(245,245,240,0.78); }
.red-signature .signature-band .eyebrow .dot { background: #101010; box-shadow: none; }

/* ── Footer ──────────────────────────────────────────────────────── */

/* Force dark theme in footer regardless of parent page theme — the
   logo PNG was designed for dark; on white pages we keep this band dark. */
.footer {
  background: #101010;
  color: #E1E1E1;
  --bg: #101010;
  --fg: #E1E1E1;
  --fg-bright: #F5F5F0;
  --fg-mute: rgba(225,225,225,0.55);
  --fg-faint: rgba(225,225,225,0.32);
  --rule: rgba(225,225,225,0.14);
  --rule-strong: rgba(225,225,225,0.28);
  padding: 90px var(--pad-x) 36px;
  border-top: 1px solid rgba(225,225,225,0.14);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
.footer-logo img { height: 64px; width: auto; display: block; }
.footer-logo .descriptor {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  max-width: 24ch;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-faint);
  margin: 4px 0 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg);
}
.footer-col a:hover { color: var(--red); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.footer-wordmark {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--fg-mute);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-logo { grid-column: 1 / -1; }
  .footer-bot { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ── Article stat figures (transparent PNG graphics) ──────────────── */
.article-page .article-stat-fig {
  margin: 2.2em 0;
  padding: 0;
}
.article-page .article-stat-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ── Article closer (company descriptor at bottom) ───────────────── */
.article-page .article-closer {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid rgba(0,0,0,0.12);
  font-family: var(--display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: #555;
  max-width: 56ch;
}

/* ── Article reading page (light mode) ──────────────────────────── */

.article-page {
  background: #F4F1EA;
  color: #000000;
}
.article-page .reading {
  max-width: 720px;
  margin: 0 auto;
  padding: 180px var(--pad-x) 120px;
}
.article-page .kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 30px;
}
.article-page h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 28px;
}
.article-page h1 em { color: var(--red); font-style: italic; }
.article-page .byline {
  font-family: var(--sans);
  font-size: 13px;
  color: #555555;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.article-page .byline .sep { color: #cccccc; }
.article-page .dropcap::first-letter {
  font-family: var(--display);
  font-weight: 300;
  font-size: 5.6em;
  float: left;
  line-height: 0.88;
  margin: 0.04em 0.08em 0 -0.04em;
  color: var(--red);
}
.article-page p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  line-height: 1.55;
  color: #111;
  margin: 0 0 1.1em;
  font-weight: 400;
  text-wrap: pretty;
}
.article-page h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  margin: 2em 0 0.6em;
}
.article-page blockquote {
  margin: 2em 0;
  padding-left: 28px;
  border-left: 2px solid var(--red);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
}

/* index page for articles */
.article-page .index-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px var(--pad-x) 60px;
}
.article-page .index-head .eyebrow { color: #555555; }
.article-page .index-head .eyebrow .dot { background: var(--red); box-shadow: none; }
.article-page .index-head h1 {
  font-size: clamp(48px, 7vw, 112px);
  margin: 30px 0 24px;
}
.article-page .index-list {
  max-width: 1200px;
  margin: 0 auto 140px;
  padding: 0 var(--pad-x);
  border-top: 1px solid rgba(0,0,0,0.14);
}
.article-page .index-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.2fr 80px;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: padding 320ms var(--ease);
  align-items: baseline;
}
.article-page .index-row:hover { padding-left: 14px; }
.article-page .index-row:hover .arrow { color: var(--red); transform: translateX(6px); }
.article-page .index-row .date {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
}
.article-page .index-row .title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.16;
  margin: 0;
}
.article-page .index-row .sub {
  color: #555;
  font-size: 15px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  line-height: 1.4;
}
.article-page .index-row .arrow {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  text-align: right;
  transition: transform 320ms var(--ease), color 320ms var(--ease);
  color: #999;
}
@media (max-width: 880px) {
  .article-page .index-row { grid-template-columns: 1fr; gap: 8px; }
  .article-page .index-row .arrow { display: none; }
}

/* ── Contact light page ──────────────────────────────────────────── */
/* Retained for reference; Contact is now dark-mode (v1.3). */

/* ── Contact (dark, v1.3) ───────────────────────────────────────── */
.info-dark .info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.info-dark .info-row:last-child { border-bottom: 1px solid var(--rule); }
.info-dark .info-lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.info-dark .info-val {
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.25;
}
.info-dark .info-val a {
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease), color 240ms var(--ease);
}
.info-dark .info-val a:hover { border-color: var(--red); color: var(--red); }

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}
.contact-form label { display: block; }
.contact-form .lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  color: var(--fg-bright);
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  outline: none;
  resize: vertical;
  transition: border-color 240ms var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--fg-faint);
  font-style: italic;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--red);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .info-dark .info-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ── About page ──────────────────────────────────────────────────── */

.about-hero {
  padding: 180px var(--pad-x) 80px;
  border-bottom: 1px solid var(--rule);
}
.about-hero .eyebrow { margin-bottom: 30px; }
.about-hero h1 {
  font-size: clamp(36px, 6vw, 148px);
  line-height: 0.98;
}
.about-body {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  align-items: start;
  padding: var(--pad-y-section) var(--pad-x);
  padding-bottom: clamp(40px, 5vw, 70px);
}
.about-body .label {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.about-body .label > .reveal:last-child {
  display: flex;
  justify-content: center;
}
.about-body .copy {
  max-width: none;
}
.about-body .copy {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  padding-top: 58px;
}
.about-body .copy p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
  max-width: 62ch;
}
/* removed .reveal+.reveal stacking margin */
.about-body .copy p em { color: var(--red); font-style: italic; }
.about-body .stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.about-body .stat:last-child { border-bottom: 1px solid var(--rule); }
.about-body .stat .big {
  font-family: var(--display);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.about-body .stat .lbl {
  font-size: 13.5px;
  color: var(--fg-mute);
  max-width: 32ch;
}
.about-body .stats { margin-top: 60px; }
@media (max-width: 880px) {
  .about-body { grid-template-columns: 1fr; gap: 30px; }
}

/* ── Approach page ───────────────────────────────────────────────── */

.approach-hero {
  padding: 180px var(--pad-x) 80px;
}
.approach-hero h1 {
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.98;
}
.approach-hero .lede { margin-top: 40px; max-width: 38ch; }

.approach-layers {
  padding: 60px var(--pad-x) var(--pad-y-section);
}
.approach-layers .layer-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.4fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.approach-layers .layer-row:last-child { border-bottom: 1px solid var(--rule); }
.approach-layers .layer-row .pct {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  color: var(--fg-faint);
}
.approach-layers .layer-row h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  margin: 0;
}
.approach-layers .layer-row p {
  margin: 0;
  color: var(--fg-mute);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 48ch;
}
@media (max-width: 880px) {
  .approach-layers .layer-row { grid-template-columns: 60px 1fr; }
  .approach-layers .layer-row p { grid-column: 2; }
}

/* ── Tweak helper classes for red intensity ──────────────────────── */
.red-whisper .rule-red { box-shadow: none; opacity: 0.7; }
.red-signature .rule-red { box-shadow: 0 0 30px var(--red-glow); }

/* ── Display weight tweak ────────────────────────────────────────── */
.display-weight-regular .display,
.display-weight-regular .approach-hero h1,
.display-weight-regular .about-hero h1,
.display-weight-regular .article-page h1,
.display-weight-regular .contact-page h1,
.display-weight-regular .proof-row h3,
.display-weight-regular .article-row .title,
.display-weight-regular .approach-layers .layer-row h3 {
  font-weight: 400;
}

/* ── Section break style tweak ───────────────────────────────────── */
/* default: red-rule — already styled with .rule-red */
/* whitespace: no rules, more padding */
.section-break-whitespace .rule-red {
  background: transparent;
  box-shadow: none;
}
.section-break-whitespace section { padding-top: clamp(120px, 16vw, 240px); }
/* fullbleed: rules become a 24px red band; signature-band stays full red */
.section-break-fullbleed .rule-red {
  height: 32px;
  background: var(--red);
  box-shadow: 0 0 60px var(--red-glow);
}

/* ── Nav variants ────────────────────────────────────────────────── */
/* default: standard horizontal */

/* minimal: hide links + cta, show menu button that toggles overlay */
.nav-style-minimal .nav-links { display: none; }
.nav-style-minimal .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 0;
}
.nav-style-minimal .nav-cta::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.nav-style-minimal .nav-brand .descriptor { display: none; }

/* inline editorial: no pill CTA */
.nav-style-inline .nav-cta { display: none; }
.nav-style-inline .nav-links a {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--fg);
}
.nav-style-inline .nav-links a.active { color: var(--red); }
.nav-style-inline .nav-links a.active::after { display: none; }
.nav-style-inline .nav-links { gap: 28px; }

/* menu overlay (used by minimal) */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(28px) saturate(140%);
  display: flex;
  flex-direction: column;
  padding: 100px var(--pad-x) 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease);
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay .close {
  position: absolute;
  top: 28px;
  right: var(--pad-x);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-overlay .close:hover { color: var(--red); }
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  margin-bottom: auto;
}
.menu-overlay nav a {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 1.04;
  color: var(--fg);
  letter-spacing: -0.012em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  transition: color 280ms var(--ease), padding-left 360ms var(--ease);
}
.menu-overlay nav a .idx {
  font-size: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.menu-overlay nav a:hover {
  color: var(--red);
  font-style: italic;
}
.menu-overlay .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}

/* ── Page transitions ────────────────────────────────────────────── */
.page-enter {
  animation: pageEnter 520ms var(--ease);
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.motion-off .page-enter { animation: none; }

/* ── Page hero marker — subtle entrance animation (v1.3) ────────── */
.hero-marker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 0;
}
.hero-marker .line {
  width: 140px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: hmDraw 1400ms 350ms var(--ease) forwards;
  box-shadow: 0 0 10px var(--red-glow);
  display: block;
}
.hero-marker .idx {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: hmFade 900ms 900ms var(--ease) forwards;
}
.hero-marker .tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  opacity: 0;
  animation: hmFade 900ms 1100ms var(--ease) forwards;
}
@keyframes hmDraw {
  to { transform: scaleX(1); }
}
@keyframes hmFade {
  to { opacity: 1; }
}
.motion-off .hero-marker .line { animation: none; transform: scaleX(1); }
.motion-off .hero-marker .idx,
.motion-off .hero-marker .tag { animation: none; opacity: 1; }

/* Light-mode adjustment for hero marker on Articles index */
.article-page .hero-marker .line { box-shadow: none; }

/* ── Work frame wrapper (red corner brackets + accent rules) ─────── */
.work-frame-wrap {
  position: relative;
}
.work-frame-wrap .wf-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}
.work-frame-wrap .wf-tl {
  top: -6px; left: -6px;
  border-top: 3px solid #B81418;
  border-left: 3px solid #B81418;
}
.work-frame-wrap .wf-tr {
  top: -6px; right: -6px;
  border-top: 3px solid #B81418;
  border-right: 3px solid #B81418;
}
.work-frame-wrap .wf-bl {
  bottom: -6px; left: -6px;
  border-bottom: 3px solid #B81418;
  border-left: 3px solid #B81418;
}
.work-frame-wrap .wf-br {
  bottom: -6px; right: -6px;
  border-bottom: 3px solid #B81418;
  border-right: 3px solid #B81418;
}
.work-frame-wrap .wf-rule {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: rgba(225,225,225,0.22);
  z-index: 3;
  pointer-events: none;
}
.work-frame-wrap .wf-rule-top { top: -6px; }
.work-frame-wrap .wf-rule-bot { bottom: -6px; }

/* ── The Work page ───────────────────────────────────────────────── */

/* hero: title/lede left, animated line-art camera right */
.work-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: 180px var(--pad-x) 70px;
}
.work-hero-text h1 { font-size: clamp(56px, 9vw, 150px); line-height: 0.98; }
.work-hero-anim {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cam-draw {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 0 20px rgba(184,20,24,0.16));
}
.cam-draw .cam-line,
.cam-draw .cam-body,
.cam-draw .cam-barrel,
.cam-draw .cam-lens,
.cam-draw .cam-lens2,
.cam-draw .cam-reel,
.cam-draw .cam-reelbar {
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  animation: camDraw 2.4s var(--ease) forwards;
}
.cam-draw .cam-line   { animation-delay: 0ms; }
.cam-draw .cam-body,
.cam-draw .cam-barrel { animation-delay: 450ms; }
.cam-draw .cam-reel,
.cam-draw .cam-reelbar { animation-delay: 1000ms; }
.cam-draw .cam-lens,
.cam-draw .cam-lens2  { animation-delay: 1500ms; }
.cam-draw .cam-rec {
  opacity: 0;
  animation: camRec 2.4s var(--ease) 2100ms infinite;
}
@keyframes camDraw { to { stroke-dashoffset: 0; } }
@keyframes camRec {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 1; }
}
.motion-off .cam-draw .cam-line,
.motion-off .cam-draw .cam-body,
.motion-off .cam-draw .cam-barrel,
.motion-off .cam-draw .cam-lens,
.motion-off .cam-draw .cam-lens2,
.motion-off .cam-draw .cam-reel,
.motion-off .cam-draw .cam-reelbar { stroke-dashoffset: 0; animation: none; }
.motion-off .cam-draw .cam-rec { opacity: 1; animation: none; }
@media (max-width: 880px) {
  .work-hero { grid-template-columns: 1fr; padding-top: 150px; gap: 40px; }
  .work-hero-anim { justify-content: flex-start; }
  .cam-draw { max-width: 320px; }
}

.work-list {
  display: flex;
  flex-direction: column;
}
.work-row-wrap {
  border-bottom: 1px solid var(--rule);
}
.work-row-wrap:last-child { border-bottom: 0; }
.work-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.work-row.flip .work-text { order: 2; }
.work-row.flip .work-media-col { order: 1; }

.work-text { min-width: 0; }
.work-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--fg-faint);
  margin-bottom: 18px;
}
.work-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.work-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0 0 26px;
  color: var(--fg-bright);
}
.work-title em { color: var(--red); font-style: italic; }
.work-lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.4;
  color: var(--fg);
  margin: 0 0 22px;
  max-width: 46ch;
}
.work-body {
  color: var(--fg-mute);
  font-size: 16px;
  line-height: 1.62;
  margin: 0 0 18px;
  max-width: 52ch;
}
.work-body .wstat {
  color: var(--orange);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18em;
  letter-spacing: 0.01em;
}
.display-weight-regular .work-title { font-weight: 400; }

/* results sub-block (Indian Creek) */
.work-results {
  margin: 30px 0 8px;
  border-top: 1px solid var(--rule);
  padding-top: 26px;
}
.work-results .wr-head {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--fg-bright);
  margin-bottom: 22px;
}
.work-results .wr-grid {
  display: grid;
  gap: 18px;
}
.work-results .wr-stat {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.work-results .wr-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.work-results .wr-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-mute);
}
.work-results .wr-close {
  margin: 24px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.42;
  color: var(--fg);
  max-width: 48ch;
}

/* takeaway callout */
.work-takeaway {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 2px solid var(--red);
}
.work-takeaway .wt-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.work-takeaway .wt-text {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--fg);
  max-width: 50ch;
}

/* media placeholder (16:9), vertically centered against the text */
.work-media-col { position: relative; display: flex; align-items: center; height: 100%; }
.work-media {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(184,20,24,0.12) 0%, transparent 58%),
    #0c0c0c;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.work-media .corners span {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--fg-faint);
}
.work-media .corners .tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.work-media .corners .tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.work-media .corners .bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.work-media .corners .br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.work-media .wm-tag {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}
.work-media .wm-index {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  color: rgba(225,225,225,0.10);
  line-height: 1;
}
.work-media .wm-label {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
/* work-media with real images — elegant frame treatment */
.work-media-real {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: visible;
  border: none;
  background: transparent;
  position: relative;
  display: block;
}
.work-media-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(225,225,225,0.12);
}
/* corner accent brackets — tech-elegant, brand red */
.work-media-real::before,
.work-media-real::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
/* top-left bracket */
.work-media-real::before {
  top: -8px;
  left: -8px;
  width: 48px;
  height: 48px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  box-shadow: -2px -2px 12px rgba(184,20,24,0.25);
}
/* bottom-right bracket */
.work-media-real::after {
  bottom: -8px;
  right: -8px;
  width: 48px;
  height: 48px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  box-shadow: 2px 2px 12px rgba(184,20,24,0.25);
}
/* subtle outer shadow for depth */
.work-media-real img {
  box-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
/* fine grey rule along the bottom edge — film-strip register mark feel */
.work-frame-rule {
  position: absolute;
  z-index: 1;
  bottom: -18px;
  right: 56px;
  width: 64px;
  height: 1px;
  background: var(--fg-faint);
}
.work-frame-rule-tl {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: 56px;
  width: 64px;
  height: 1px;
  background: var(--fg-faint);
}

@media (max-width: 900px) {
  .work-row { grid-template-columns: 1fr; gap: 30px; }
  .work-row.flip .work-text { order: 1; }
  .work-row.flip .work-media-col { order: 2; }
  .work-media { position: relative; top: 0; }
}

/* ── Leak Report form (hidden page) ──────────────────────────────── */
.lr-form {
  margin-top: 0;
}
.lr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.lr-form-grid .lr-full {
  grid-column: 1 / -1;
}
.lr-form .req {
  color: var(--red);
  font-weight: 500;
}
.lr-form .opt {
  color: var(--fg-faint);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .lr-form-grid { grid-template-columns: 1fr; }
}

.cluster { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.stack-sm > * + * { margin-top: 12px; }
.stack > * + * { margin-top: 28px; }
.stack-lg > * + * { margin-top: 60px; }

.ticker {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 84px);
  color: var(--fg-faint);
  padding: 30px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  flex-shrink: 0;
  animation: tickerScroll 60s linear infinite;
}
.motion-off .ticker-track { animation: none; }
.ticker-dot { color: var(--red); font-style: normal; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Diagnostic visual (Home · magnifying glass) — v1.6 ─────────── */
.diagnostic-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.diagnostic-visual .dv-eyebrow .eyebrow { color: var(--fg-faint); }
.diagnostic-visual .dv-stage {
  width: 100%;
  max-width: 720px;
}
.diagnostic-visual .dv-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.diagnostic-visual .dv-glass {
  transform: translate(180px, 80px);
  animation: dvScan 16s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 16px rgba(184,20,24,0.25));
}
.motion-off .diagnostic-visual .dv-glass { animation: none; }
@keyframes dvScan {
  0%   { transform: translate(180px, 80px); }
  25%  { transform: translate(440px, 148px); }
  50%  { transform: translate(560px, 100px); }
  75%  { transform: translate(280px, 200px); }
  100% { transform: translate(180px, 80px); }
}
.diagnostic-visual .dv-caption {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--fg);
  max-width: 36ch;
  margin: 0;
}
.diagnostic-visual .dv-caption em {
  color: var(--red);
  font-style: italic;
}
/* ── Diagnostic visual — inline mode (inside Positioning column) ── */
.diagnostic-visual--inline {
  margin-top: 40px;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
}
.diagnostic-visual--inline .dv-stage { max-width: 100%; }
.diagnostic-visual--inline .dv-caption {
  font-size: clamp(16px, 1.4vw, 20px);
}

/* ── Halo cards (Approach page) ─────────────────────────────────── */
.halo-pair {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}
.halo-pair::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  background: var(--rule);
  align-self: stretch;
}
.halo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 56px);
}

/* ring graphic — centered, large */
.halo-card .halo-bg {
  position: relative;
  width: clamp(140px, 16vw, 200px);
  height: clamp(140px, 16vw, 200px);
  margin: clamp(24px, 3vw, 40px) auto;
  pointer-events: none;
}
.halo-card .ghost-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,20,24,0.55);
  border-radius: 50%;
  box-shadow:
    0 0 32px rgba(184,20,24,0.18) inset,
    0 0 18px rgba(184,20,24,0.18);
  z-index: 0;
  animation: ghostRingBreathe 7s var(--ease) infinite;
}
.halo-card .ghost-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(184,20,24,0.42) 0%, rgba(184,20,24,0.08) 55%, transparent 78%);
  animation: ghostInnerPulse 6s var(--ease) infinite;
}
.halo-card .ghost-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.2vw, 38px);
  letter-spacing: -0.01em;
  color: rgba(225,225,225,0.62);
  line-height: 1;
  z-index: 2;
  user-select: none;
  text-shadow: 0 1px 6px rgba(16,16,16,0.8);
}

@keyframes ghostRingBreathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.025); }
}
@keyframes ghostInnerPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50%      { opacity: 1;    transform: scale(1.04); }
}
.motion-off .halo-card .ghost-ring,
.motion-off .halo-card .ghost-ring::after { animation: none; }

/* label */
.halo-card .halo-label {
  margin-bottom: 0;
}
.halo-card .lbl-red {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* tagline text below ring */
.halo-card .halo-tagline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--fg-bright);
}
.halo-card .halo-tagline em {
  color: var(--red);
  font-style: italic;
}

@media (max-width: 880px) {
  .halo-pair { grid-template-columns: 1fr; gap: 0; }
  .halo-pair::before { display: none; }
  .halo-card { border-bottom: 1px solid var(--rule); padding: clamp(24px, 5vw, 40px) 0; }
  .halo-card:last-child { border-bottom: 0; }
  .halo-card .halo-bg { width: 120px; height: 120px; }
  .halo-card .halo-tagline { font-size: clamp(20px, 4.5vw, 28px); }
  .halo-card .ghost-word { font-size: clamp(18px, 4vw, 24px); }
}

/* ── Services list (editorial, no cards) ─────────────────────────── */
.svc-list {
  border-top: 1px solid var(--rule);
}
.svc-row {
  display: grid;
  grid-template-columns: 56px 60px 1.4fr 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: padding 360ms var(--ease);
  position: relative;
}
.svc-row:hover { padding-left: 14px; }

.svc-row .svc-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--fg-faint);
  padding-top: 8px;
}

.svc-text { min-width: 0; }
.svc-text .svc-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 16px;
}
.svc-text .svc-tagline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
  margin: 0 0 22px;
  letter-spacing: -0.012em;
  max-width: 18ch;
}
.svc-text .svc-tagline em { color: var(--red); font-style: italic; }
.svc-text .svc-body {
  color: var(--fg-mute);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

.svc-stat {
  position: relative;
  padding: 8px 12px 8px 0;
  text-align: right;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.svc-stat-glow {
  position: absolute;
  inset: -10% -10% -10% 10%;
  background: radial-gradient(ellipse at 60% 50%, rgba(254,144,0,0.16) 0%, rgba(254,144,0,0.04) 40%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.svc-stat-num {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.svc-stat-lbl {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 14px;
  max-width: 26ch;
  line-height: 1.6;
}
.svc-stat-src {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--fg-faint);
  margin-top: 12px;
  letter-spacing: 0.01em;
  max-width: 26ch;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .svc-row { grid-template-columns: 48px 48px 1fr; gap: 24px; padding: 44px 0; }
  .svc-stat { grid-column: 1 / -1; align-items: flex-start; text-align: left; padding-left: 96px; min-height: 0; margin-top: 12px; }
  .svc-stat-lbl { max-width: 32ch; }
}
@media (max-width: 700px) {
  .svc-row { grid-template-columns: 40px 1fr; }
  .svc-row .svc-num { display: none; }
  .svc-stat { padding-left: 56px; }
}

/* ── How It Starts steps ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.step {
  padding: 50px clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
}
.step:last-child { border-right: 0; }
.step .step-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--red);
  display: block;
  margin-bottom: 24px;
}
.step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
  margin: 0 0 16px;
  max-width: 22ch;
}
.step p {
  color: var(--fg-mute);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}
.step p em { color: var(--fg); font-style: italic; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: 0; }
}

/* ── Chamber badge (About page only) ─────────────────────────────── */
.chamber {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(225,225,225,0.02);
}
.chamber .seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(254,144,0,0.18) 0%, transparent 70%),
    repeating-conic-gradient(from 0deg, rgba(225,225,225,0.18) 0deg 12deg, transparent 12deg 24deg);
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chamber .seal::before {
  content: "HSV";
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.chamber .lbl-top {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.chamber .lbl-main {
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  margin-top: 4px;
}

/* ── Trust stat (Home) — already used inline; named here for v1.1 ── */
.trust-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.trust-stat .figure {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}
.trust-stat .figure .big {
  font-size: clamp(120px, 18vw, 260px);
  color: var(--orange);
  letter-spacing: -0.02em;
}
.trust-stat .figure .of {
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  color: var(--fg-mute);
}
.trust-stat .figure .denom {
  font-size: clamp(56px, 7vw, 96px);
  color: var(--fg-mute);
}
.trust-stat .copy .lede {
  max-width: 30ch;
  margin-bottom: 28px;
}
.trust-stat .copy p {
  color: var(--fg-mute);
  margin: 0;
  max-width: 42ch;
  font-size: 16px;
}
@media (max-width: 880px) {
  .trust-stat { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Service icons (Approach) ────────────────────────────────────── */
.svc-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--fg-mute);
  transition: color 320ms var(--ease), transform 480ms var(--ease);
}
.svc-icon svg { width: 40px; height: 40px; display: block; }
.svc-row:hover .svc-icon { color: var(--red); transform: translateY(-2px); }

/* update svc-row grid to include the icon column */
.svc-list .svc-row {
  grid-template-columns: 56px 60px 1.4fr 1fr;
}
@media (max-width: 1100px) {
  .svc-list .svc-row { grid-template-columns: 48px 48px 1fr; }
}
@media (max-width: 700px) {
  .svc-list .svc-row { grid-template-columns: 40px 1fr; }
}

/* ── Animated section dividers (scroll-cue style) ────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(40px, 6vw, 80px) 0;
  color: var(--fg-faint);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.divider .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: none;
}
.divider .line {
  flex: 1;
  height: 1px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.divider .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  animation: dividerSweep 5.4s var(--ease) infinite;
}
.motion-off .divider .line::after { animation: none; }
@keyframes dividerSweep {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.divider .tag-right {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--fg-mute);
}

/* ── Ladder steps (Approach) — name the offer ladder ─────────────── */
.step .step-name {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 10px;
}
.step .step-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-faint);
  margin-top: 18px;
  display: block;
  letter-spacing: 0.01em;
}
.step .step-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 14px 22px;
  font-size: 11px;
}
.step h4 + p { margin-bottom: 0; }
/* keep the body block from collapsing so all three CTAs align on one row */
.step p { margin-bottom: 32px; }

/* ── Halos diagram (About · The Practice) ───────────────────────── */
.halos-diagram {
  margin-top: 30px;
  max-width: 480px;
}
.halos-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.halos-diagram .hd-ring {
  transform-origin: center;
  animation: hdBreathe 6s var(--ease) infinite;
}
.halos-diagram .hd-ring-2 { animation-delay: 1.4s; }
.halos-diagram .hd-glow {
  transform-origin: center;
  opacity: 0.85;
  animation: hdGlow 6s var(--ease) infinite;
}
.halos-diagram .hd-glow-2 { animation-delay: 1.4s; }
.halos-diagram .hd-caption {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  text-align: center;
}
.motion-off .halos-diagram .hd-ring,
.motion-off .halos-diagram .hd-glow { animation: none; }
@keyframes hdBreathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.025); opacity: 1; }
}
@keyframes hdGlow {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.95; }
}

/* ── Orange pull-stat band (About · v1.4) ───────────────────────── */
.orange-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(60px, 9vw, 120px) 0;
}
.orange-stat .figure {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  color: var(--orange);
}
.orange-stat .figure .big {
  font-size: clamp(140px, 20vw, 280px);
  letter-spacing: -0.02em;
}
.orange-stat .figure .plus {
  font-size: clamp(60px, 8vw, 110px);
  font-style: italic;
}
.orange-stat .copy .lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  color: var(--fg);
  max-width: 32ch;
  margin: 0 0 22px;
}
.orange-stat .copy p {
  color: var(--fg-mute);
  margin: 0;
  max-width: 42ch;
  font-size: 16px;
}
@media (max-width: 880px) {
  .orange-stat { grid-template-columns: 1fr; gap: 24px; padding: 60px 0; }
}

/* ── Experience logos (About) — real artwork v1.9 ─────────────── */
.exp-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 60px;
}
.exp-cell {
  padding: 28px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: transparent;
  transition: background 320ms var(--ease);
}
.exp-cell:hover { background: rgba(225,225,225,0.025); }
.exp-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 360ms var(--ease);
  -webkit-user-drag: none;
  user-select: none;
}
.exp-cell:hover img {
  opacity: 0.8;
}
@media (max-width: 1100px) {
  .exp-logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .exp-logos { grid-template-columns: repeat(3, 1fr); }
}

/* ── Founder portrait (real photo) ──────────────────────────────── */
.portrait-photo {
  background: #0c0c0c;
}
.portrait-photo img {
  /* slightly desaturate + bring up shadows so it sits inside the dark palette */
  filter: grayscale(0.15) contrast(1.02) brightness(0.96);
}

/* ── Chamber badge (real artwork) ────────────────────────────────── */
.chamber-real {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px 14px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: rgba(225,225,225,0.02);
  transition: border-color 280ms var(--ease), background 280ms var(--ease);
  max-width: 460px;
}
.chamber-real:hover { border-color: var(--red); background: rgba(225,225,225,0.04); }
.chamber-real img {
  height: 78px;
  width: auto;
  display: block;
  border-radius: 3px;
  /* the original is a colorful badge — let it keep its character but tone down */
  filter: saturate(0.7) contrast(0.95);
  opacity: 0.92;
}
.chamber-real .chamber-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chamber-real .lbl-top {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.chamber-real .lbl-main {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--fg);
}

/* ── Testimonials carousel ───────────────────────────────────────── */
.testimonials {
  max-width: 1180px;
  margin: 0 auto;
  outline: none;
}
.testimonials:focus-visible {
  box-shadow: 0 0 0 2px rgba(184,20,24,0.25);
  border-radius: 4px;
}
.tm-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}
.tm-counter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--fg-faint);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.tm-counter .tm-now { color: var(--red); }
.tm-counter .tm-slash { color: var(--fg-faint); }

.tm-stage {
  position: relative;
  padding: 30px 0 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tm-quote-mark {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 160px;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
  user-select: none;
  pointer-events: none;
}
.tm-quote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.45;
  color: var(--fg-bright);
  max-width: 52ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
  animation: tmFade 700ms var(--ease) both;
}
.tm-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: tmFade 700ms 140ms var(--ease) both;
}
.tm-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.tm-title {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-mute);
}
.tm-org {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-faint);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

@keyframes tmFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.motion-off .tm-quote,
.motion-off .tm-attribution { animation: none; }

.tm-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.tm-arrow {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--fg);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 240ms var(--ease), color 240ms var(--ease), background 240ms var(--ease);
}
.tm-arrow:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(184,20,24,0.05);
}
.tm-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tm-dot {
  appearance: none;
  background: rgba(225,225,225,0.18);
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.tm-dot:hover { background: rgba(225,225,225,0.4); }
.tm-dot.active {
  background: var(--red);
  transform: scale(1.4);
  box-shadow: 0 0 8px var(--red-glow);
}

@media (max-width: 700px) {
  .tm-quote-mark { font-size: 100px; top: -36px; }
  .tm-quote { font-size: 19px; }
  .tm-controls { gap: 18px; }
}

/* ── Portfolio reel (About) — reuses .video-frame, larger ────────── */
.reel-frame {
  aspect-ratio: 16/9;
  margin-top: 60px;
}
.reel-frame .platform-tag {
  position: absolute;
  top: 18px; left: 20px;
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--fg-faint);
  letter-spacing: 0.18em;
}
.walkthrough {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.walkthrough .label-col h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
  margin: 20px 0 0;
  letter-spacing: -0.012em;
}
.walkthrough .label-col h3 em { color: var(--red); font-style: italic; }
.walkthrough .label-col p {
  margin-top: 22px;
  color: var(--fg-mute);
  max-width: 30ch;
}
.video-frame {
  aspect-ratio: 16/9;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184,20,24,0.14) 0%, transparent 55%),
    #0c0c0c;
  border: 1px solid var(--rule);
  position: relative;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color 320ms var(--ease);
}
.video-frame:hover { border-color: var(--red); }
.video-frame .corners span {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--fg-faint);
}
.video-frame .corners .tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.video-frame .corners .tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.video-frame .corners .bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.video-frame .corners .br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.video-frame .tag {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--fg-faint);
  letter-spacing: 0.18em;
}
.video-frame .timecode {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--fg-faint);
  letter-spacing: 0.18em;
}
.video-frame .poster-line {
  position: absolute;
  bottom: 50px;
  left: 40px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-mute);
  max-width: 24ch;
  line-height: 1.35;
}
.video-frame .play {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid var(--fg-bright);
  background: rgba(16,16,16,0.4);
  backdrop-filter: blur(4px);
  position: relative;
  transition: background 320ms var(--ease), border-color 320ms var(--ease), transform 320ms var(--ease);
}
.video-frame:hover .play {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.06);
  box-shadow: 0 0 40px var(--red-glow);
}
.video-frame .play::after {
  content: "";
  position: absolute;
  top: 50%; left: 56%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 22px solid var(--fg-bright);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
@media (max-width: 880px) {
  .walkthrough { grid-template-columns: 1fr; gap: 28px; }
  .video-frame .poster-line { display: none; }
}


/* ── 97/100 trust-leak stat block ────────────────────────────────── */
.trust-stat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.trust-stat .figure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.trust-stat .figure .big {
  font-size: clamp(120px, 22vw, 320px);
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.trust-stat .figure .of {
  font-size: clamp(28px, 4vw, 60px);
  color: var(--fg-mute);
  font-style: italic;
}
.trust-stat .figure .denom {
  font-size: clamp(48px, 9vw, 130px);
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.trust-stat .copy {
  padding-bottom: 30px;
}
.trust-stat .copy .lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.36;
  max-width: 34ch;
  margin: 0 0 18px;
}
.trust-stat .copy p {
  color: var(--fg-mute);
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 880px) {
  .trust-stat { grid-template-columns: 1fr; gap: 20px; }
  .trust-stat .figure .big { font-size: 22vw; }
}

/* ── Wistia embed wrapper ────────────────────────────────────────── */
.wistia-wrap {
  aspect-ratio: 16/9;
  background: #0c0c0c;
  border: 1px solid var(--rule);
  overflow: hidden;
  display: block;
  cursor: default;
}
.wistia-wrap wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Hero walkthrough click-to-play ──────────────────────────────── */
.walkthrough {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 30px;
}
.walkthrough .label-col { padding-bottom: 30px; }
.walkthrough .label-col h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 16px 0 0;
}
.walkthrough .label-col h3 em { color: var(--red); font-style: italic; }
.walkthrough .label-col p {
  color: var(--fg-mute);
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: 15.5px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg, rgba(225,225,225,0.04) 0 8px, rgba(225,225,225,0.07) 8px 16px),
    #161616;
  border: 1px solid var(--rule);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 360ms var(--ease);
}
.video-frame:hover { border-color: var(--red); }
.video-frame .corners span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--fg-faint);
  pointer-events: none;
}
.video-frame .corners span.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.video-frame .corners span.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.video-frame .corners span.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.video-frame .corners span.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.video-frame .tag {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
}
.video-frame .timecode {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: var(--fg-faint);
}
.video-frame .poster-line {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--fg-bright);
  max-width: 32ch;
  line-height: 1.2;
}
.video-frame .play {
  width: clamp(72px, 9vw, 120px);
  height: clamp(72px, 9vw, 120px);
  border-radius: 50%;
  border: 1px solid rgba(245,245,240,0.4);
  background: rgba(184,20,24,0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 360ms var(--ease), border-color 360ms var(--ease), transform 360ms var(--ease);
  z-index: 2;
}
.video-frame:hover .play {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
  box-shadow: 0 0 36px var(--red-glow);
}
.video-frame .play::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #F5F5F0;
  margin-left: 4px;
}
@media (max-width: 880px) {
  .walkthrough { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Experience logos block (About) ──────────────────────────────── */
.experience {
  padding: var(--pad-y-section) var(--pad-x);
  border-top: 1px solid var(--rule);
}
.experience .head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 70px;
}
.experience .head h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02;
}
.experience .head p {
  color: var(--fg-mute);
  margin: 0;
  max-width: 52ch;
}
.experience .logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.experience .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5/3;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  color: var(--fg-mute);
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  transition: color 280ms var(--ease), background 280ms var(--ease);
  text-align: center;
  padding: 0 14px;
}
.experience .logo:hover { color: var(--fg-bright); background: rgba(225,225,225,0.03); }
.experience .logo::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  border-left: 1px solid var(--fg-faint);
  border-top: 1px solid var(--fg-faint);
}
.experience .logo .tag {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
  font-style: normal;
}


/* ── Mobile stacking fixes (v2.1) ──────────────────────────────── */
@media (max-width: 880px) {
  /* Insights / articles-head: stack to single column */
  .articles-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
  
  /* Two halos intro on Approach: stack */
  .halo-pair + section .approach-preview,
  section > div[style*="grid-template-columns: 1fr 1.4fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  /* Services section header: stack */
  section > div[style*="grid-template-columns: 1fr 1.4fr"] > div:first-child {
    max-width: 100%;
  }
  
  /* How It Starts section header: stack */
  
  /* Proof points header on home: stack */
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
}

/* ── Manifesto block ─────────────────────────────────────────────── */
.manifesto {
  padding: var(--pad-y-section) var(--pad-x);
  border-top: 1px solid var(--rule);
}
.manifesto .grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.manifesto h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02;
}
.manifesto p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  margin: 0 0 0.8em;
  max-width: 32ch;
}
.manifesto p em { color: var(--red); font-style: italic; }
@media (max-width: 880px) {
  .manifesto .grid, .experience .head { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Stat compositions (97/100, 79/52) — flowing typographic treatment ── */
.stat-composition {
  padding: clamp(12px, 1.5vw, 24px) 0 clamp(24px, 3vw, 45px) 0;
}
.stat-nums {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 18px;
  padding-bottom: clamp(20px, 3vw, 48px);
}
.stat-num {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(110px, 17vw, 250px);
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 0.88;
}
.stat-join {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 48px);
  color: var(--fg-faint);
}
.stat-denom {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 130px);
  color: var(--fg);
  letter-spacing: 0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}
.stat-lead {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 40px);
  color: var(--fg);
  line-height: 1.28;
  margin: 0;
}
.stat-body {
  color: rgba(225, 225, 225, 0.55);
  max-width: 52ch;
  line-height: 1.65;
  margin: clamp(24px, 3vw, 42px) 0 0;
  margin-left: clamp(0px, 18vw, 280px);
  font-size: clamp(14px, 1.15vw, 17px);
}
.stat-source {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--fg-faint);
  margin: clamp(20px, 2.5vw, 36px) 0 0;
  margin-left: clamp(0px, 18vw, 280px);
}
@media (max-width: 880px) {
  .stat-nums { column-gap: 10px; }
  .stat-num { font-size: clamp(80px, 22vw, 160px); }
  .stat-denom { font-size: clamp(44px, 14vw, 90px); }
  .stat-body, .stat-source { margin-left: 0; }
}
