:root {
  --black: #0a0a0a;
  --black-2: #101010;
  --white: #ffffff;
  --off-white: #f4f4f1;
  --red: #e10600;
  --grey: #a6a6a6;
  --line: rgba(255,255,255,.15);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--red); color: #fff; }
.skip-link { position:absolute; left:-9999px; top:0; background:#fff; color:#000; padding:.75rem 1rem; z-index:1000; }
.skip-link:focus { left:1rem; top:1rem; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { color: var(--red); font: 800 .78rem/1.25 var(--body); letter-spacing: .17em; text-transform: uppercase; }
.display { font-family: var(--display); text-transform: uppercase; letter-spacing: -.035em; line-height: .92; }
.red { color: var(--red); }
.muted { color: var(--grey); }
.kicker-line { width: 44px; height: 3px; flex:0 0 44px; background: var(--red); display:inline-block; vertical-align:middle; margin-right:.75rem; }
.hero .eyebrow { display:flex; align-items:center; }

.site-header { position: sticky; top:0; z-index:50; background: rgba(10,10,10,.88); backdrop-filter: blur(12px); border-bottom:1px solid var(--line); }
.nav-wrap { height: 78px; display:flex; align-items:center; justify-content:space-between; gap:2rem; }
.brand img { width: 182px; height:auto; }
.main-nav { display:flex; align-items:center; gap:1.65rem; font-size:.86rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.main-nav a { color:#ddd; position:relative; padding:.25rem 0; }
.main-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-7px; height:2px; background:var(--red); transition:.2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right:0; }
.nav-cta { border:1px solid var(--red); padding:.72rem 1rem !important; color:#fff !important; }
.nav-cta::after { display:none; }
.menu-toggle { display:none; border:0; background:none; color:white; padding:.5rem; }
.menu-toggle span { display:block; width:24px; height:2px; background:#fff; margin:5px 0; }

.hero { position:relative; min-height: calc(100vh - 78px); display:grid; align-items:center; overflow:hidden; border-bottom:1px solid var(--line); }
.hero::before { content:""; position:absolute; inset:0; opacity:.34; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size:72px 72px; mask-image:linear-gradient(to bottom, black, transparent 90%); }
.hero::after { content:""; position:absolute; width:520px; height:520px; border:1px solid rgba(225,6,0,.45); border-radius:50%; right:-145px; top:15%; box-shadow:0 0 100px rgba(225,6,0,.08); }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns: 1.15fr .85fr; gap:3.25rem; align-items:center; padding:4rem 0 3.75rem; }
.hero h1 { margin:.8rem 0 1.1rem; font-size:clamp(3.8rem,7.2vw,7.4rem); max-width:790px; }
.hero h1 .line { display:block; }
.hero-copy { max-width:640px; font-size:clamp(1.02rem,1.45vw,1.18rem); color:#d0d0d0; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.7rem; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.6rem; min-height:50px; padding:.75rem 1.1rem; font-weight:900; text-transform:uppercase; letter-spacing:.07em; font-size:.8rem; border:1px solid transparent; transition:.2s ease; }
.btn-primary { background:var(--red); color:white; }
.btn-primary:hover { background:#ff0a03; transform:translateY(-2px); }
.btn-secondary { border-color:rgba(255,255,255,.35); }
.btn-secondary:hover { border-color:white; background:white; color:black; }
.hero-portrait { position:relative; justify-self:end; width:min(350px,100%); aspect-ratio:1/1; border:1px solid rgba(255,255,255,.22); background:#151515; padding:12px; transform:rotate(1.5deg); }
.hero-portrait::before { content:"HOST / EDITORIAL LEAD"; position:absolute; left:-42px; bottom:62px; background:var(--red); color:#fff; padding:.45rem .7rem; font-weight:900; font-size:.62rem; letter-spacing:.12em; z-index:2; transform:rotate(-90deg); }
.hero-portrait img { width:100%; height:100%; object-fit:cover; object-position:center 32%; filter:grayscale(1) contrast(1.06); }
.hero-stamp { position:absolute; right:-16px; bottom:-18px; width:92px; aspect-ratio:1; border:2px solid var(--red); border-radius:50%; display:grid; place-items:center; text-align:center; font:900 .63rem/1.2 var(--body); letter-spacing:.08em; background:#090909; transform:rotate(-8deg); }

.section { padding:5.5rem 0; border-bottom:1px solid var(--line); }
.section-light { background:var(--off-white); color:var(--black); }
.section-head { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr); align-items:end; gap:2.5rem; margin-bottom:2rem; }
.section-title { margin:.4rem 0 0; font-size:clamp(2.65rem,5.2vw,5.05rem); }
.section-intro { max-width:480px; margin:0; justify-self:end; color:var(--grey); }
.section-light .section-intro { color:#555; }

.episode-grid { width:min(100%,1000px); margin-inline:auto; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.5rem; }
.episode-card { position:relative; display:flex; flex-direction:column; border:1px solid var(--line); background:#111; overflow:hidden; }
.episode-card .thumb { aspect-ratio:16/9; overflow:hidden; }
.episode-card .thumb img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease, filter .45s ease; }
.episode-card:hover .thumb img { transform:scale(1.03); filter:contrast(1.08); }
.episode-meta { display:flex; flex-direction:column; flex:1; padding:1.1rem 1.15rem 1.3rem; }
.episode-number { color:var(--red); font-weight:900; letter-spacing:.12em; font-size:.68rem; }
.episode-card h3 { font-family:var(--display); text-transform:uppercase; font-size:clamp(1.18rem,1.45vw,1.55rem); line-height:1.08; letter-spacing:-.015em; margin:.48rem 0 .65rem; }
.episode-cta { margin-top:auto; padding-top:.45rem; color:#fff; font-size:.74rem; font-weight:900; letter-spacing:.07em; text-transform:uppercase; }
.episode-card:hover .episode-cta { color:var(--red); }

.manifesto-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.manifesto-lines { font:900 clamp(2.1rem,4vw,4.1rem)/1.02 var(--display); text-transform:uppercase; letter-spacing:-.035em; }
.manifesto-lines span { display:block; }
.manifesto-copy { font-size:1.08rem; color:#333; }
.manifesto-copy p:first-child { font-size:1.4rem; color:#111; font-weight:700; }
.values { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid #ccc; margin-top:3rem; }
.value { padding:1.6rem 1.25rem 0 0; border-right:1px solid #ccc; }
.value:last-child { border-right:0; padding-left:1.25rem; }
.value:nth-child(2) { padding-left:1.25rem; }
.value strong { display:block; font-family:var(--display); text-transform:uppercase; font-size:1.3rem; margin-bottom:.35rem; }
.value p { margin:0; color:#555; font-size:.9rem; }

.coverage-grid { display:grid; grid-template-columns:repeat(5,1fr); border:1px solid var(--line); }
.coverage-item { min-height:260px; padding:1.25rem; border-right:1px solid var(--line); display:flex; flex-direction:column; justify-content:space-between; background:linear-gradient(180deg,#0d0d0d,#131313); transition:.25s ease; }
.coverage-item:last-child { border-right:0; }
.coverage-item:hover { background:var(--red); }
.coverage-item .num { color:var(--red); font-weight:900; font-size:.75rem; }
.coverage-item:hover .num { color:#fff; }
.coverage-item h3 { font-family:var(--display); text-transform:uppercase; font-size:1.45rem; line-height:1.05; margin:0; }
.coverage-item p { color:#aaa; font-size:.85rem; margin:.55rem 0 0; }
.coverage-item:hover p { color:#fff; }

.team-preview { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; }
.person-card { border:1px solid var(--line); background:#111; }
.person-photo { aspect-ratio:4/5; overflow:hidden; background:#1a1a1a; }
.person-photo img { width:100%; height:100%; object-fit:cover; object-position:center top; filter:grayscale(1); transition:.35s ease; }
.person-card:hover img { filter:grayscale(0); transform:scale(1.02); }
.person-info { padding:1rem; }
.person-info h3 { font-family:var(--display); text-transform:uppercase; margin:0 0 .35rem; font-size:1.2rem; line-height:1.05; }
.person-info p { color:#aaa; font-size:.78rem; margin:0; }

.cta-band { background:var(--red); color:#fff; padding:4rem 0; }
.cta-row { display:flex; align-items:center; justify-content:space-between; gap:3rem; }
.cta-row h2 { margin:0; font-size:clamp(2.55rem,4.5vw,4.75rem); max-width:800px; }
.cta-band .btn { background:#fff; color:#000; white-space:nowrap; }

.page-hero { padding:5.1rem 0 3.4rem; border-bottom:1px solid var(--line); background:radial-gradient(circle at 85% 20%, rgba(225,6,0,.13), transparent 30%); }
.page-hero h1 { font-size:clamp(3.65rem,6.8vw,6.8rem); margin:.68rem 0 .9rem; }
.page-hero p { max-width:720px; color:#bbb; font-size:1.08rem; }
.content-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:5rem; }
.prose { color:#ccc; font-size:1.05rem; }
.prose h2 { color:#fff; font:900 2rem/1 var(--display); text-transform:uppercase; margin:2.7rem 0 .8rem; }
.prose p { margin:0 0 1.2rem; }
.quote-block { border-left:5px solid var(--red); padding:1rem 0 1rem 1.5rem; font:900 clamp(2rem,3.8vw,3.7rem)/1.03 var(--display); text-transform:uppercase; }

.team-list { display:grid; gap:2rem; }
.team-row { display:grid; grid-template-columns:260px minmax(0,1fr); gap:2.2rem; border-top:1px solid var(--line); padding-top:2rem; }
.team-row > div { min-width:0; }
.team-row:first-child { border-top:0; padding-top:0; }
.team-row img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center top; filter:grayscale(1); }
.team-row h2 { font:900 clamp(1.8rem,3vw,3.2rem)/1 var(--display); text-transform:uppercase; margin:0 0 .35rem; }
.role { color:var(--red); font-weight:900; text-transform:uppercase; letter-spacing:.08em; font-size:.76rem; }
.team-row p { color:#bbb; max-width:760px; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:5rem; }
.contact-block { border-top:1px solid var(--line); padding:1.1rem 0; }
.contact-block strong { display:block; color:#777; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:.3rem; }
.contact-block a { font-size:1.15rem; font-weight:800; }
.form { display:grid; gap:1rem; }
.field { display:grid; gap:.45rem; }
.field label { font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.field input, .field textarea, .field select { width:100%; background:#111; color:#fff; border:1px solid #333; padding:.95rem 1rem; outline:none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(225,6,0,.12); }
.field textarea { min-height:170px; resize:vertical; }

.editorial-roll { background:#0d0d0d; }
.editorial-grid { width:min(100%,1120px); margin-inline:auto; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.2rem; align-items:stretch; }
.editorial-card { min-width:0; display:flex; flex-direction:column; border:1px solid var(--line); background:#111; overflow:hidden; transition:transform .25s ease, border-color .25s ease; }
.editorial-card:hover { transform:translateY(-4px); border-color:rgba(255,255,255,.34); }
.editorial-image { aspect-ratio:16/9; overflow:hidden; background:#181818; }
.editorial-image img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease, filter .4s ease; }
.editorial-card:hover .editorial-image img { transform:scale(1.025); filter:contrast(1.06); }
.editorial-body { display:flex; flex-direction:column; flex:1; padding:1.1rem; }
.editorial-type { color:var(--red); font-size:.68rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.editorial-card h3 { margin:.5rem 0 .7rem; font:900 clamp(1.16rem,1.35vw,1.5rem)/1.08 var(--display); text-transform:uppercase; letter-spacing:-.02em; }
.editorial-card p { margin:0 0 1.25rem; color:#aaa; font-size:.92rem; }
.text-link { margin-top:auto; color:#fff; font-weight:900; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; }
.editorial-link-card:hover .text-link { color:var(--red); }
.editorial-more { width:min(100%,1120px); margin:1.35rem auto 0; display:flex; justify-content:flex-end; }
.editorial-page-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.editorial-launch-note { margin-top:2rem; padding:1.25rem 1.4rem; border-left:4px solid var(--red); background:#111; display:grid; grid-template-columns:auto 1fr auto; gap:1.25rem; align-items:center; }
.editorial-launch-note strong { font-family:var(--display); text-transform:uppercase; }
.editorial-launch-note span { color:#999; font-size:.88rem; }
.editorial-launch-note a { font-weight:900; font-size:.75rem; text-transform:uppercase; letter-spacing:.06em; }
.editorial-launch-note a:hover { color:var(--red); }


/* V1.4 — published-only archives and restrained card systems */
.episode-library { width:min(100%,1000px); margin-inline:auto; }
.episode-more { width:min(100%,1000px); margin:1.35rem auto 0; display:flex; justify-content:flex-end; }
.archive-empty {
  border:1px solid var(--line);
  background:linear-gradient(135deg,#111,#0c0c0c);
  padding:clamp(1.8rem,4vw,3.25rem);
  min-height:230px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.archive-empty-kicker { color:var(--red); font-size:.68rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.archive-empty h2,
.archive-empty h3 { max-width:760px; margin:.55rem 0 .75rem; font:900 clamp(1.7rem,3vw,2.75rem)/1.03 var(--display); text-transform:uppercase; letter-spacing:-.025em; }
.archive-empty p { max-width:690px; margin:0; color:#aaa; }
.archive-empty .btn { margin-top:1.55rem; }

.editorial-library { width:min(100%,1120px); margin-inline:auto; }
.editorial-empty {
  border:1px solid var(--line);
  background:#111;
  min-height:210px;
  padding:clamp(1.7rem,3.5vw,2.75rem);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:2rem;
}
.editorial-empty h3 { margin:.5rem 0 .7rem; font:900 clamp(1.65rem,2.8vw,2.6rem)/1.03 var(--display); text-transform:uppercase; letter-spacing:-.025em; }
.editorial-empty p { max-width:720px; margin:0; color:#aaa; }
.editorial-empty .text-link { white-space:nowrap; }
.editorial-empty-actions { display:flex; flex-direction:column; align-items:flex-end; gap:.8rem; }

.site-footer { background:#070707; padding:4rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:1.4fr .6fr .6fr; gap:3rem; }
.footer-brand img { width:190px; }
.footer-brand p { color:#888; max-width:420px; }
.footer-col strong { display:block; color:#666; text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; margin-bottom:1rem; }
.footer-col a { display:block; color:#bbb; margin:.5rem 0; font-size:.9rem; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid var(--line); margin-top:3rem; padding-top:1.5rem; display:flex; justify-content:space-between; gap:1rem; color:#666; font-size:.75rem; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity:1; transform:none; }


@media (min-width: 981px) and (max-height: 820px) {
  .hero-grid { padding:2.8rem 0 2.6rem; }
  .hero h1 { font-size:clamp(3.7rem,6.4vw,6.35rem); margin:.65rem 0 .85rem; }
  .hero-copy { font-size:1rem; }
  .hero-actions { margin-top:1.35rem; }
  .hero-portrait { width:min(315px,100%); }
}
@media (min-width: 981px) and (max-height: 700px) {
  .hero h1 { font-size:clamp(3.4rem,5.5vw,5.5rem); }
  .hero-portrait { width:min(280px,100%); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-portrait { justify-self:start; width:340px; }
  .coverage-grid { grid-template-columns:repeat(2,1fr); }
  .coverage-item { border-bottom:1px solid var(--line); }
  .team-preview { grid-template-columns:repeat(2,1fr); }
  .editorial-grid, .editorial-page-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .editorial-launch-note { grid-template-columns:1fr; gap:.4rem; }
  .content-grid, .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width: 760px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .nav-wrap { height:68px; }
  .brand img { width:150px; }
  .menu-toggle { display:block; }
  .main-nav { position:absolute; top:68px; left:0; right:0; background:#090909; border-bottom:1px solid var(--line); padding:1.1rem 1.4rem 1.4rem; display:none; flex-direction:column; align-items:stretch; gap:0; }
  .main-nav.is-open { display:flex; }
  .main-nav a { padding:.8rem 0; }
  .nav-cta { margin-top:.5rem; text-align:center; }
  .hero { min-height:auto; }
  .hero-grid { padding:3.5rem 0; gap:2.35rem; }
  .hero .eyebrow { align-items:flex-start; }
  .hero .kicker-line { width:36px; flex-basis:36px; margin-top:.48em; margin-right:.6rem; }
  .hero h1 { font-size:clamp(3.45rem,16vw,5.4rem); }
  .hero-portrait { width:min(320px,90%); }
  .section { padding:4rem 0; }
  .section-head { display:block; }
  .section-intro { margin-top:.85rem; }
  .section-title { font-size:clamp(2.45rem,12vw,4rem); }
  .episode-grid, .manifesto-grid, .editorial-grid, .editorial-page-grid { grid-template-columns:1fr; }
  .episode-more, .editorial-more { justify-content:flex-start; }
  .editorial-empty { grid-template-columns:1fr; align-items:start; }
  .editorial-empty-actions { align-items:flex-start; }
  .manifesto-grid { gap:2.5rem; }
  .values { grid-template-columns:1fr; }
  .value, .value:nth-child(2), .value:last-child { border-right:0; border-bottom:1px solid #ccc; padding:1.2rem 0; }
  .coverage-grid { grid-template-columns:1fr; }
  .coverage-item { min-height:190px; border-right:0; }
  .team-preview { grid-template-columns:1fr 1fr; gap:.8rem; }
  .person-info { padding:.75rem; }
  .cta-row { display:block; }
  .cta-row .btn { margin-top:1.5rem; }
  .team-row { grid-template-columns:110px minmax(0,1fr); gap:1rem; }
  .team-row h2 { font-size:clamp(1.5rem,6.4vw,1.65rem); }
  .team-row p { grid-column:1/-1; margin-top:0; }
  .page-hero { padding:3.7rem 0 2.8rem; }
  .page-hero h1 { font-size:clamp(3.25rem,14vw,5.1rem); }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { display:block; }
}
@media (max-width: 460px) {
  .team-preview { grid-template-columns:1fr; }
  .hero-actions .btn { width:100%; }
}
@media (max-width: 360px) {
  .section-title { font-size:2.2rem; }
  .team-row { grid-template-columns:90px minmax(0,1fr); }
  .team-row h2 { font-size:1.35rem; }
  .role { font-size:.7rem; letter-spacing:.06em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
  .reveal { opacity:1; transform:none; }
}

/* V1.3 — branded Netlify form confirmation */
.confirmation-page {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 18%, rgba(225,6,0,.16), transparent 34rem),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}
.confirmation-page::after {
  content: "";
  position: absolute;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  right: -13vw;
  top: 7%;
  border: 1px solid rgba(225,6,0,.42);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(225,6,0,.08);
  pointer-events: none;
}
.confirmation-inner { position: relative; z-index: 1; max-width: 930px; }
.confirmation-page h1 {
  margin: .8rem 0 1.35rem;
  max-width: 850px;
  font-size: clamp(3.8rem, 8.2vw, 7.6rem);
}
.confirmation-copy {
  max-width: 690px;
  margin: 0;
  color: #cfcfcf;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}
.confirmation-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

@media (max-width: 760px) {
  .confirmation-page { min-height: calc(100vh - 68px); padding: 4.5rem 0; }
  .confirmation-page h1 { font-size: clamp(3.35rem, 16vw, 5.4rem); }
}
@media (max-width: 460px) {
  .confirmation-actions { display: grid; grid-template-columns: 1fr; }
  .confirmation-actions .btn { width: 100%; }
}

/* V1.5 — Editorial Soul Pass */
.page-hero h1 .line { display:block; }
.manifesto-lead {
  margin-top:1.05rem;
  color:#111;
  font-size:clamp(1.28rem,2vw,1.55rem);
  font-weight:750;
  line-height:1.4;
}

.stance-section { scroll-margin-top:78px; }
.stance-grid {
  display:grid;
  grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);
  gap:clamp(3rem,7vw,6.5rem);
  align-items:start;
}
.stance-aside {
  position:sticky;
  top:120px;
}
.stance-aside blockquote {
  margin:1.05rem 0 0;
  padding:1.15rem 0 1.15rem 1.4rem;
  border-left:5px solid var(--red);
  font:900 clamp(2rem,3.5vw,3.65rem)/1.02 var(--display);
  letter-spacing:-.035em;
  text-transform:uppercase;
}
.stance-copy {
  max-width:760px;
  color:#343434;
  font-size:clamp(1rem,1.25vw,1.1rem);
  line-height:1.72;
}
.stance-copy p { margin:0 0 1.35rem; }
.stance-copy strong { color:#111; }
.stance-opening {
  font-size:clamp(1.35rem,2vw,1.7rem);
  line-height:1.35;
}
.stance-closers {
  display:grid;
  gap:.42rem;
  margin-top:2.4rem;
  padding-top:1.7rem;
  border-top:1px solid #c9c9c5;
  color:#111;
  font:900 clamp(1.12rem,1.8vw,1.45rem)/1.18 var(--display);
  letter-spacing:-.015em;
  text-transform:uppercase;
}

@media (max-width: 980px) {
  .stance-grid { grid-template-columns:1fr; gap:2.75rem; }
  .stance-aside { position:static; }
  .stance-aside blockquote { max-width:760px; }
}
@media (max-width: 760px) {
  .stance-section { scroll-margin-top:68px; }
  .stance-aside blockquote { font-size:clamp(2rem,10vw,3.2rem); }
  .stance-copy { font-size:1rem; line-height:1.68; }
}


/* V1.6 — Press credential verification */
.credential-page {
  min-height:calc(100vh - 78px);
  padding:clamp(4.5rem,9vw,7.5rem) 0;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(225,6,0,.16), transparent 32rem),
    #0a0a0a;
}
.credential-shell { max-width:920px; }
.credential-page h1 {
  margin:.72rem 0 1rem;
  font-size:clamp(3.2rem,7vw,6.4rem);
}
.credential-intro {
  max-width:690px;
  margin:0 0 2.2rem;
  color:#bdbdbd;
  font-size:clamp(1rem,1.6vw,1.16rem);
}
.credential-card {
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:clamp(1.5rem,4vw,3rem);
  padding:clamp(1.25rem,3vw,2rem);
  border:1px solid rgba(255,255,255,.2);
  background:linear-gradient(145deg,#111,#0d0d0d);
}
.credential-photo {
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center top;
  filter:grayscale(1);
  border:1px solid rgba(255,255,255,.16);
}
.credential-status {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  width:max-content;
  margin-bottom:1rem;
  padding:.45rem .7rem;
  background:var(--red);
  color:#fff;
  font-weight:900;
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.credential-name {
  margin:0 0 .25rem;
  font:900 clamp(2rem,4vw,3.5rem)/1 var(--display);
  letter-spacing:-.03em;
  text-transform:uppercase;
}
.credential-role { margin:0 0 1.55rem; color:#c9c9c9; font-weight:800; }
.credential-details {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  margin:0;
  border-top:1px solid var(--line);
}
.credential-details div { padding:1rem 1rem 1rem 0; border-bottom:1px solid var(--line); }
.credential-details dt { color:#777; font-size:.68rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.credential-details dd { margin:.25rem 0 0; color:#fff; font-weight:800; }
.credential-note { margin:1.5rem 0 0; color:#aaa; font-size:.9rem; max-width:620px; }
.credential-contact { margin-top:1.25rem; font-size:.86rem; }
.credential-contact a { font-weight:900; border-bottom:1px solid rgba(255,255,255,.35); }
.credential-contact a:hover { border-color:var(--red); color:var(--red); }

@media (max-width:760px) {
  .credential-page { min-height:calc(100vh - 68px); padding:3.8rem 0; }
  .credential-card { grid-template-columns:96px minmax(0,1fr); gap:1rem; }
  .credential-photo { grid-row:1 / span 2; }
  .credential-status { margin-bottom:.7rem; }
  .credential-name { font-size:clamp(1.65rem,8vw,2.45rem); }
  .credential-role { margin-bottom:1.1rem; }
  .credential-details, .credential-note, .credential-contact { grid-column:1/-1; }
}
@media (max-width:460px) {
  .credential-card { grid-template-columns:82px minmax(0,1fr); padding:1rem; }
  .credential-details { grid-template-columns:1fr; }
}

@media (max-width:360px) {
  .credential-page h1 { font-size:3rem; }
}


/* V1.7 — global social panel + temporary team privacy update */
.social-links {
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:.15rem 0 1rem;
}
.footer-col .social-link {
  display:inline-flex;
  width:38px;
  height:38px;
  margin:0;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:#0d0d0d;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.footer-col .social-link img {
  width:17px;
  height:17px;
  filter:invert(1);
  opacity:.88;
}
.footer-col .social-link:hover,
.footer-col .social-link:focus-visible {
  background:var(--red);
  border-color:var(--red);
  transform:translateY(-1px);
}
.footer-col .social-link:hover img,
.footer-col .social-link:focus-visible img { opacity:1; }
.footer-col .social-link:focus-visible { outline:2px solid #fff; outline-offset:2px; }

@media (max-width:460px) {
  .social-links { gap:.5rem; }
  .footer-col .social-link { width:40px; height:40px; }
}


/* V1.8 — Our DNA + team-intent UX */
.dna-section {
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(225,6,0,.12), transparent 28rem),
    linear-gradient(180deg,#0b0b0b,#0e0e0e);
}
.dna-head { align-items:end; }
.dna-intro { color:#b5b5b5; }
.dna-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border:1px solid var(--line);
}
.dna-rule {
  min-width:0;
  min-height:300px;
  padding:clamp(1.35rem,2.6vw,2rem);
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg,rgba(255,255,255,.015),rgba(255,255,255,.035));
}
.dna-rule:last-child { border-right:0; }
.dna-rule-number {
  color:var(--red);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.dna-rule h3 {
  margin:clamp(2.2rem,5vw,4.5rem) 0 1rem;
  font:900 clamp(1.55rem,2.5vw,2.55rem)/1.03 var(--display);
  letter-spacing:-.025em;
  text-transform:uppercase;
}
.dna-rule p {
  margin:auto 0 0;
  max-width:31ch;
  color:#aaa;
  font-size:.92rem;
}
.team-section,
.team-row { scroll-margin-top:98px; }

.person-card {
  position:relative;
  overflow:hidden;
  transition:border-color .25s ease, transform .25s ease;
}
.person-card:hover,
.person-card:focus-within { border-color:rgba(255,255,255,.34); }
.person-photo { position:relative; }
.person-reveal {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:1.15rem;
  background:linear-gradient(180deg,rgba(10,10,10,.05),rgba(10,10,10,.96) 26%,#0a0a0a 100%);
  transform:translateY(102%);
  opacity:0;
  transition:transform .32s ease, opacity .25s ease;
}
.person-reveal p {
  margin:0 0 .85rem;
  color:#e5e5e5;
  font-size:.86rem;
  line-height:1.5;
}
.person-profile-link {
  display:inline-block;
  color:#fff;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.person-profile-link:hover,
.person-profile-link:focus-visible { color:var(--red); }
.person-profile-link:focus-visible { outline:2px solid #fff; outline-offset:3px; }
.person-card:hover .person-reveal,
.person-card:focus-within .person-reveal,
.person-card.is-open .person-reveal {
  transform:translateY(0);
  opacity:1;
}
.person-card:hover img,
.person-card:focus-within img,
.person-card.is-open img { filter:grayscale(0); transform:scale(1.02); }
.person-more-toggle {
  display:none;
  margin-top:.8rem;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.person-more-toggle span { color:var(--red); margin-left:.25rem; }
.person-more-toggle:focus-visible { outline:2px solid #fff; outline-offset:4px; }

@media (max-width:980px) {
  .dna-grid { grid-template-columns:1fr; }
  .dna-rule { min-height:0; border-right:0; border-bottom:1px solid var(--line); }
  .dna-rule:last-child { border-bottom:0; }
  .dna-rule h3 { margin:1.7rem 0 .8rem; max-width:760px; }
  .dna-rule p { margin:0; }
}
@media (hover:none), (pointer:coarse) {
  .person-more-toggle { display:inline-block; }
  .person-card:hover .person-reveal { transform:translateY(102%); opacity:0; }
  .person-card:hover img { filter:grayscale(1); transform:none; }
  .person-card.is-open .person-reveal { transform:translateY(0); opacity:1; }
  .person-card.is-open img { filter:grayscale(0); transform:scale(1.02); }
}
@media (max-width:760px) {
  .team-section,
  .team-row { scroll-margin-top:86px; }
  .dna-head .section-intro { margin-top:.9rem; }
  .dna-rule { padding:1.4rem; }
  .dna-rule h3 { font-size:clamp(1.55rem,7vw,2.25rem); }
  .person-reveal { padding:1rem; }
  .person-reveal p { font-size:.82rem; }
}
@media (prefers-reduced-motion:reduce) {
  .person-reveal { transition:none; }
}


/* V1.9 — public launch SEO/privacy pass */
.form-note { margin:.15rem 0 0; color:#888; font-size:.76rem; line-height:1.5; }
.form-note a { color:#fff; text-decoration:underline; text-underline-offset:2px; }

/* V2.0 — Episode 01 + first Editorial publication */
.editorial-card-meta { margin-top:.45rem; color:#777; font-size:.72rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.person-more-toggle { touch-action:manipulation; -webkit-tap-highlight-color:transparent; }
.article-page { background:#0a0a0a; }
.article-hero { padding:clamp(4.5rem,8vw,7.2rem) 0 clamp(2.6rem,5vw,4.2rem); border-bottom:1px solid var(--line); background:radial-gradient(circle at 86% 15%, rgba(225,6,0,.13), transparent 30rem),linear-gradient(180deg,#0b0b0b,#0a0a0a); }
.article-hero-inner { width:min(calc(100% - 40px),960px); }
.article-hero h1 { max-width:930px; margin:.65rem 0 .8rem; font-size:clamp(3.35rem,7vw,7.1rem); line-height:.92; letter-spacing:-.045em; }
.article-dek { margin:0; max-width:700px; color:#d0d0d0; font-size:clamp(1.15rem,2vw,1.5rem); line-height:1.45; }
.article-byline { display:flex; flex-wrap:wrap; gap:.45rem 1.2rem; margin-top:1.8rem; color:#777; font-size:.76rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.article-byline span + span::before { content:"·"; margin-right:1.2rem; color:var(--red); }
.article-layout { width:min(calc(100% - 40px),1020px); padding:clamp(3rem,6vw,5.5rem) 0 5.5rem; }
.article-prose { width:min(100%,760px); margin-inline:auto; color:#d3d3d3; font-size:clamp(1.03rem,1.3vw,1.13rem); line-height:1.78; }
.article-prose p { margin:0 0 1.42rem; }
.article-prose h2 { margin:clamp(3.6rem,7vw,5.6rem) 0 1.3rem; color:#fff; font:900 clamp(2rem,4.1vw,3.45rem)/1 var(--display); letter-spacing:-.03em; text-transform:uppercase; }
.article-pull { margin:2rem 0 !important; padding-left:1.25rem; border-left:4px solid var(--red); color:#fff; font-size:clamp(1.35rem,2.5vw,2rem); font-weight:800; line-height:1.35; }
.article-figure { margin:clamp(3rem,6vw,5rem) auto; }
.article-figure-wide { width:min(100%,560px); }
.article-figure img { display:block; width:100%; height:auto; border:1px solid var(--line); background:#111; }
.article-figure figcaption { width:min(100%,760px); margin:.85rem auto 0; color:#888; font-size:.8rem; line-height:1.55; }
.article-case { width:min(100%,960px); margin:clamp(3.5rem,7vw,5.5rem) auto; display:grid; grid-template-columns:minmax(210px,.38fr) minmax(0,.62fr); gap:2rem; padding:1.4rem; border:1px solid var(--line); background:#0f0f0f; }
.article-case-art { overflow:hidden; border:1px solid #252525; background:#050505; }
.article-case-art img { display:block; width:100%; height:100%; min-height:430px; object-fit:cover; object-position:center 35%; }
.article-case-content { min-width:0; display:flex; flex-direction:column; justify-content:center; }
.article-case-content h2 { margin:.4rem 0 .7rem; font:900 clamp(2rem,4vw,3.4rem)/.98 var(--display); text-transform:uppercase; letter-spacing:-.03em; }
.article-case-content > p { margin:0 0 1.25rem; color:#aaa; }
.article-video { width:100%; aspect-ratio:16/9; margin:.25rem 0 1rem; background:#000; border:1px solid #222; }
.article-video iframe { width:100%; height:100%; border:0; }
.substitution-test { width:min(100%,920px); margin:2rem auto clamp(3.8rem,7vw,5.5rem); display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); border:1px solid var(--line); }
.substitution-test > div { padding:clamp(1.35rem,2.8vw,2rem); border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:#0f0f0f; }
.substitution-test > div:nth-child(2n) { border-right:0; }
.substitution-test > div:nth-last-child(-n+2) { border-bottom:0; }
.substitution-test span { color:var(--red); font-size:.72rem; font-weight:900; letter-spacing:.13em; }
.substitution-test h3 { margin:.8rem 0 .7rem; color:#fff; font:900 clamp(1.35rem,2.5vw,2.05rem)/1.05 var(--display); text-transform:uppercase; }
.substitution-test p { margin:.7rem 0 0; color:#aaa; font-size:.94rem; line-height:1.62; }
.article-conclusion { margin-top:clamp(3.3rem,6vw,5rem); }
.article-footer-note { width:min(100%,760px); margin:4rem auto 0; padding:1.7rem 0 0; border-top:1px solid var(--line); color:#999; }
.article-footer-note strong { color:#fff; font-family:var(--display); font-size:1.35rem; text-transform:uppercase; }
.article-footer-note p { margin:.4rem 0 .8rem; line-height:1.55; }
.article-footer-note span { color:var(--red); font-size:.78rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }

/* V2.0.1 — editorial reading/share polish */
.article-share-actions { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:1.35rem; align-items:center; }
.article-share-actions .btn { min-height:42px; padding:.62rem .85rem; cursor:pointer; background:transparent; color:#fff; }
.article-share-actions .btn-primary { background:var(--red); }
.article-share-actions .btn-primary:hover { background:#ff0a03; color:#fff; }
.article-share-status { min-height:1.2em; color:#888; font-size:.76rem; font-weight:700; letter-spacing:.03em; }
@media (max-width:760px) {
  .article-share-actions { align-items:stretch; }
  .article-share-actions .btn { flex:1 1 auto; }
  .article-share-status { flex-basis:100%; }
}

@media (max-width:760px) {
  .article-hero-inner,.article-layout { width:min(calc(100% - 28px),1020px); }
  .article-hero { padding-top:3.8rem; }
  .article-hero h1 { font-size:clamp(3rem,14vw,4.8rem); }
  .article-byline { display:block; line-height:1.8; }
  .article-byline span { display:block; }
  .article-byline span + span::before { content:none; }
  .article-prose { font-size:1.02rem; line-height:1.72; }
  .article-prose h2 { margin-top:3.8rem; font-size:clamp(2rem,10vw,3rem); }
  .article-case { grid-template-columns:1fr; padding:1rem; }
  .article-case-art { max-height:390px; }
  .article-case-art img { min-height:0; height:390px; object-position:center 27%; }
  .substitution-test { grid-template-columns:1fr; }
  .substitution-test > div,.substitution-test > div:nth-child(2n),.substitution-test > div:nth-last-child(-n+2) { border-right:0; border-bottom:1px solid var(--line); }
  .substitution-test > div:last-child { border-bottom:0; }
}


/* V2.2.1 TEST — OhTBK Editorial art-direction system pilot
   Test article: /editorial/how-brands-become-interchangeable/
   Scope: composition only. Article copy, images and Episode 01 video destination unchanged. */
.article-page--artdirected {
  --editorial-paper:#f1eee7;
  --editorial-ink:#171717;
  --editorial-muted:#64615b;
  --editorial-hairline:rgba(23,23,23,.18);
  background:var(--editorial-paper);
  color:var(--editorial-ink);
}
.article-page--artdirected .article-hero {
  padding:clamp(4.7rem,7.5vw,7.5rem) 0 clamp(3.4rem,5vw,5rem);
  border-bottom:0;
  background:
    radial-gradient(circle at 84% 18%, rgba(225,6,0,.17), transparent 28rem),
    linear-gradient(180deg,#0b0b0b 0%,#090909 100%);
}
.article-page--artdirected .article-hero-inner {
  width:min(calc(100% - 48px),1180px);
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.62fr);
  gap:clamp(2.5rem,6vw,6rem);
  align-items:end;
}
.article-page--artdirected .article-hero-copy { min-width:0; }
.article-page--artdirected .article-hero h1 {
  max-width:820px;
  margin:.7rem 0 0;
  font-size:clamp(3.6rem,6.8vw,7rem);
  line-height:.9;
  letter-spacing:-.052em;
}
.article-page--artdirected .article-hero-meta {
  align-self:end;
  padding:1.15rem 0 .1rem clamp(1rem,2.2vw,1.8rem);
  border-left:1px solid rgba(255,255,255,.22);
}
.article-page--artdirected .article-dek {
  max-width:390px;
  color:#f2f2ee;
  font-size:clamp(1.18rem,1.7vw,1.5rem);
  line-height:1.38;
}
.article-page--artdirected .article-byline {
  display:grid;
  gap:.22rem;
  margin-top:1.5rem;
  color:#898989;
  line-height:1.55;
}
.article-page--artdirected .article-byline span + span::before { content:none; }
.article-page--artdirected .article-share-actions { margin-top:1.25rem; }
.article-page--artdirected .article-share-actions .btn {
  min-height:38px;
  padding:.55rem .75rem;
  font-size:.7rem;
}
.article-page--artdirected .article-share-actions .btn-secondary { border-color:rgba(255,255,255,.28); }

.article-page--artdirected .article-layout {
  width:min(calc(100% - 48px),1180px);
  padding:clamp(4.2rem,7vw,7rem) 0 clamp(5rem,8vw,8rem);
}
.article-page--artdirected .article-prose {
  width:min(100%,710px);
  color:#282622;
  font-size:clamp(1.04rem,1.16vw,1.13rem);
  line-height:1.82;
  letter-spacing:-.005em;
}
.article-page--artdirected .article-prose p { margin:0 0 1.5rem; }
.article-page--artdirected .article-prose > p:first-child { font-size:1.15em; color:#111; }
.article-page--artdirected .article-prose h2 {
  max-width:760px;
  margin:clamp(4.4rem,7vw,6.7rem) 0 1.45rem;
  color:#111;
  font-size:clamp(2.25rem,4vw,4rem);
  line-height:.96;
  letter-spacing:-.04em;
}
.article-page--artdirected .article-prose h2::before {
  content:"";
  display:block;
  width:44px;
  height:4px;
  margin:0 0 1.05rem;
  background:var(--red);
}
.article-page--artdirected .article-pull {
  margin:2.4rem 0 2.8rem !important;
  padding:1.3rem 0 1.3rem clamp(1.2rem,3vw,2rem);
  border-left:5px solid var(--red);
  color:#111;
  font-size:clamp(1.55rem,2.6vw,2.35rem);
  font-weight:900;
  line-height:1.24;
  letter-spacing:-.025em;
}

/* Portraits are editorial insets, never full-column posters. */
.article-page--artdirected .article-figure {
  width:min(100%,390px);
  margin-top:clamp(3.4rem,6vw,5.5rem);
  margin-bottom:clamp(4rem,7vw,6.2rem);
}
.article-page--artdirected .article-figure--left {
  margin-left:clamp(0px,7vw,92px);
  margin-right:auto;
}
.article-page--artdirected .article-figure--right {
  margin-left:auto;
  margin-right:clamp(0px,7vw,92px);
}
.article-page--artdirected .article-figure img {
  width:auto;
  max-width:100%;
  max-height:72vh;
  margin-inline:auto;
  border:0;
  background:transparent;
  box-shadow:0 22px 50px rgba(0,0,0,.14);
}
.article-page--artdirected .article-figure figcaption {
  width:100%;
  margin:.85rem 0 0;
  padding-top:.75rem;
  border-top:1px solid var(--editorial-hairline);
  color:var(--editorial-muted);
  font-size:.76rem;
  line-height:1.5;
}
.article-page--artdirected .article-figure--right figcaption { text-align:right; }
.article-page--artdirected .article-figure--final { margin-bottom:clamp(4.4rem,7vw,6.5rem); }

/* Episode module becomes an intentional black chapter spread. */
.article-page--artdirected .article-case {
  width:min(100%,1060px);
  margin:clamp(4.6rem,7vw,7rem) auto clamp(5rem,8vw,7.4rem);
  grid-template-columns:minmax(180px,.29fr) minmax(0,.71fr);
  gap:clamp(1.6rem,4vw,3.3rem);
  padding:clamp(1.35rem,2.8vw,2.35rem);
  border:0;
  background:#0c0c0c;
  color:#fff;
  box-shadow:0 26px 70px rgba(0,0,0,.18);
}
.article-page--artdirected .article-case-art {
  align-self:stretch;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#050505;
}
.article-page--artdirected .article-case-art img {
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  object-position:center 35%;
}
.article-page--artdirected .article-case-content { justify-content:center; }
.article-page--artdirected .article-case-content h2 {
  margin:.45rem 0 .7rem;
  color:#fff;
  font-size:clamp(2rem,3.7vw,3.6rem);
}
.article-page--artdirected .article-case-content > p { color:#c3c3c3; }
.article-page--artdirected .article-video {
  margin:.5rem 0 .9rem;
  border:1px solid rgba(255,255,255,.14);
}
.article-page--artdirected .article-case .text-link { color:#fff; }
.article-page--artdirected .article-case .text-link:hover { color:var(--red); }

/* The four-question test reads like a magazine framework, not dashboard cards. */
.article-page--artdirected .substitution-test {
  width:min(100%,980px);
  margin:2.6rem auto clamp(5rem,8vw,7rem);
  gap:0 clamp(2rem,5vw,4.2rem);
  border:0;
  background:transparent;
}
.article-page--artdirected .substitution-test > div,
.article-page--artdirected .substitution-test > div:nth-child(2n),
.article-page--artdirected .substitution-test > div:nth-last-child(-n+2) {
  position:relative;
  padding:1.7rem 0 2.15rem;
  border-right:0;
  border-bottom:1px solid var(--editorial-hairline);
  border-top:2px solid #1a1a1a;
  background:transparent;
}
.article-page--artdirected .substitution-test > div:nth-last-child(-n+2) { border-bottom:0; }
.article-page--artdirected .substitution-test span {
  display:block;
  margin-bottom:.7rem;
  color:var(--red);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.18em;
}
.article-page--artdirected .substitution-test h3 {
  margin:0 0 .8rem;
  color:#111;
  font-size:clamp(1.45rem,2.2vw,2.15rem);
  line-height:1.03;
}
.article-page--artdirected .substitution-test p {
  margin:.55rem 0 0;
  color:#4c4943;
  font-size:.94rem;
  line-height:1.64;
}

/* Let the close go quiet again. */
.article-page--artdirected .article-conclusion {
  margin-top:clamp(4.4rem,7vw,6.5rem);
  padding-top:clamp(2rem,3vw,2.8rem);
  border-top:1px solid var(--editorial-hairline);
}
.article-page--artdirected .article-footer-note {
  width:min(100%,710px);
  margin:clamp(4rem,7vw,6rem) auto 0;
  padding:1.6rem 0 0;
  border-top:4px solid #111;
  color:#5f5b55;
}
.article-page--artdirected .article-footer-note strong { color:#111; }
.article-page--artdirected .article-footer-note span { color:var(--red); }

@media (max-width:900px) {
  .article-page--artdirected .article-hero-inner {
    grid-template-columns:1fr;
    gap:2.3rem;
  }
  .article-page--artdirected .article-hero-meta {
    width:min(100%,650px);
    padding:1.2rem 0 0;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.22);
  }
  .article-page--artdirected .article-byline { grid-template-columns:repeat(3,max-content); gap:.5rem 1.2rem; }
  .article-page--artdirected .article-case { grid-template-columns:minmax(145px,.26fr) minmax(0,.74fr); }
}

@media (max-width:760px) {
  .article-page--artdirected .article-hero {
    padding:3.6rem 0 3rem;
  }
  .article-page--artdirected .article-hero-inner,
  .article-page--artdirected .article-layout {
    width:min(calc(100% - 30px),1180px);
  }
  .article-page--artdirected .article-hero h1 {
    font-size:clamp(3rem,14vw,4.85rem);
    line-height:.91;
  }
  .article-page--artdirected .article-byline {
    display:block;
    line-height:1.75;
  }
  .article-page--artdirected .article-layout { padding-top:3.4rem; }
  .article-page--artdirected .article-prose {
    width:min(100%,680px);
    font-size:1.01rem;
    line-height:1.72;
  }
  .article-page--artdirected .article-prose h2 {
    margin-top:4rem;
    font-size:clamp(2rem,10vw,3.05rem);
  }
  .article-page--artdirected .article-figure,
  .article-page--artdirected .article-figure--left,
  .article-page--artdirected .article-figure--right {
    width:min(82vw,320px);
    margin-left:auto;
    margin-right:auto;
    margin-top:2.9rem;
    margin-bottom:3.5rem;
  }
  .article-page--artdirected .article-figure img { max-height:66vh; }
  .article-page--artdirected .article-figure figcaption,
  .article-page--artdirected .article-figure--right figcaption { text-align:left; }
  .article-page--artdirected .article-case {
    width:100%;
    grid-template-columns:1fr;
    gap:1.2rem;
    padding:1rem;
    margin-top:3.7rem;
    margin-bottom:4.2rem;
  }
  .article-page--artdirected .article-case-art {
    width:min(68vw,235px);
    margin:0 auto;
    max-height:none;
  }
  .article-page--artdirected .article-case-art img {
    height:auto;
    object-fit:contain;
  }
  .article-page--artdirected .article-case-content h2 { font-size:clamp(2rem,9vw,3rem); }
  .article-page--artdirected .substitution-test {
    grid-template-columns:1fr;
    gap:0;
    margin-bottom:4.5rem;
  }
  .article-page--artdirected .substitution-test > div,
  .article-page--artdirected .substitution-test > div:nth-child(2n),
  .article-page--artdirected .substitution-test > div:nth-last-child(-n+2) {
    padding:1.5rem 0 1.8rem;
    border-top:1px solid var(--editorial-hairline);
    border-bottom:0;
  }
  .article-page--artdirected .substitution-test > div:first-child { border-top:2px solid #1a1a1a; }
  .article-page--artdirected .article-share-actions { align-items:stretch; }
  .article-page--artdirected .article-share-actions .btn { flex:1 1 auto; }
}


/* V2.2.2 editorial design refinement: garnish-scale wrap + masthead collision fix */
.article-page--artdirected .article-hero-inner {
  grid-template-columns:minmax(0,1.72fr) minmax(250px,.54fr);
  gap:clamp(2rem,4.2vw,4.4rem);
}
.article-page--artdirected .article-hero h1 {
  max-width:100%;
  font-size:clamp(3.25rem,4.6vw,5rem);
  line-height:.92;
  letter-spacing:-.045em;
}
.article-page--artdirected .article-hero h1 .red {
  display:block;
  font-size:.96em;
  white-space:nowrap;
}

/* Portrait art is a side-note garnish: prose flows around it on reading-width screens. */
.article-page--artdirected .article-prose::after {
  content:"";
  display:block;
  clear:both;
}
.article-page--artdirected .article-figure--wrap {
  width:clamp(190px,31%,230px);
  margin-top:.35rem;
  margin-bottom:1rem;
  clear:none;
}
.article-page--artdirected .article-figure--wrap.article-figure--left {
  float:left;
  margin-left:0;
  margin-right:clamp(1.15rem,2.5vw,1.7rem);
}
.article-page--artdirected .article-figure--wrap.article-figure--right {
  float:right;
  margin-right:0;
  margin-left:clamp(1.15rem,2.5vw,1.7rem);
}
.article-page--artdirected .article-figure--wrap img {
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  max-height:none;
  margin:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
.article-page--artdirected .article-figure--wrap figcaption {
  margin:.5rem 0 0;
  padding:0;
  border-top:0;
  color:#77726a;
  font-size:.69rem;
  line-height:1.42;
  text-align:left;
}
.article-page--artdirected .article-figure--wrap.article-figure--right figcaption { text-align:left; }
.article-page--artdirected .article-figure--final { margin-bottom:1rem; }

@media (max-width:900px) {
  .article-page--artdirected .article-hero h1 {
    font-size:clamp(3.15rem,8.5vw,5.15rem);
  }
  .article-page--artdirected .article-hero h1 .red { white-space:normal; }
}

@media (max-width:760px) {
  .article-page--artdirected .article-hero h1 {
    font-size:clamp(2.85rem,13vw,4.55rem);
    line-height:.92;
  }
  .article-page--artdirected .article-figure--wrap,
  .article-page--artdirected .article-figure--wrap.article-figure--left,
  .article-page--artdirected .article-figure--wrap.article-figure--right {
    float:none;
    width:min(62vw,220px);
    margin:1.2rem auto 1.65rem;
  }
  .article-page--artdirected .article-figure--wrap figcaption { font-size:.68rem; }
}


/* V2.3 — Episode 02 Editorial: source links + restrained video chapter */
.article-page--artdirected .article-prose a.source-link {
  color:#8f0b07;
  text-decoration-line:underline;
  text-decoration-thickness:1px;
  text-decoration-color:rgba(143,11,7,.45);
  text-underline-offset:.18em;
  font-weight:700;
}
.article-page--artdirected .article-prose a.source-link:hover {
  color:var(--red);
  text-decoration-color:var(--red);
}
.article-flow-clear { clear:both; height:0; }
.article-video-chapter {
  width:min(100%,600px);
  margin:clamp(3.4rem,6vw,5rem) auto clamp(4rem,7vw,5.6rem);
  padding:clamp(1.2rem,2.5vw,1.65rem);
  background:#0c0c0c;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
}
.article-video-chapter .eyebrow { margin-bottom:.8rem; }
.article-video-chapter > p {
  margin:0 0 1.2rem !important;
  color:#c8c8c5;
  font-size:.94rem;
  line-height:1.62;
}
.article-video-chapter .article-video--compact {
  width:100%;
  margin:.2rem 0 .75rem;
  aspect-ratio:16/9;
  border:1px solid rgba(255,255,255,.13);
  background:#000;
}
.article-video-chapter .article-video--compact iframe { width:100%; height:100%; border:0; }
.article-video-chapter .text-link { color:#fff; font-size:.76rem; }
.article-video-chapter .text-link:hover { color:var(--red); }
.article-page--ep2 .article-hero h1 { font-size:clamp(3.15rem,4.35vw,4.75rem); }
.article-page--ep2 .article-hero-meta { align-self:end; }
@media (max-width:900px) {
  .article-page--ep2 .article-hero h1 { font-size:clamp(3rem,8vw,4.8rem); }
}
@media (max-width:760px) {
  .article-video-chapter {
    width:min(100%,560px);
    margin:3rem auto 3.8rem;
    padding:1rem;
  }
  .article-video-chapter > p { font-size:.91rem; }
  .article-page--ep2 .article-hero h1 { font-size:clamp(2.75rem,12.2vw,4.25rem); }
}

/* V2.3.1 — Editorial masthead contrast fix
   Non-red headline copy must remain clearly legible on the dark editorial masthead.
   Keep TBK red as the focal emphasis while lifting the supporting title to smoke grey. */
.article-page--artdirected .article-hero h1 {
  color:#d6d6d2;
}
.article-page--artdirected .article-hero h1 .red {
  color:var(--red);
}

/* V2.3.2 — Editorial mobile masthead structural fix
   Force all art-directed Editorial mastheads into true normal-flow stacking
   below the desktop breakpoint. This prevents title/dek/meta collisions on
   mobile Safari and Chrome. */
@media (max-width:900px) {
  .article-page--artdirected .article-hero-inner {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    grid-template-columns:none;
    gap:clamp(1.8rem,5vw,2.4rem);
  }
  .article-page--artdirected .article-hero-copy,
  .article-page--artdirected .article-hero-meta {
    position:static;
    width:100%;
    max-width:none;
    min-width:0;
    margin:0;
    transform:none;
  }
  .article-page--artdirected .article-hero-copy {
    order:1;
  }
  .article-page--artdirected .article-hero-meta {
    order:2;
    align-self:stretch;
    padding:clamp(1.25rem,3vw,1.6rem) 0 0;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.22);
  }
  .article-page--artdirected .article-dek {
    width:100%;
    max-width:680px;
  }
}

@media (max-width:760px) {
  .article-page--artdirected .article-hero {
    padding:clamp(2.9rem,8vw,3.5rem) 0 clamp(2.8rem,8vw,3.4rem);
  }
  .article-page--artdirected .article-hero-inner {
    gap:1.65rem;
  }
  .article-page--artdirected .article-hero-copy .eyebrow {
    margin-bottom:.75rem;
  }
  .article-page--artdirected .article-hero h1,
  .article-page--ep2 .article-hero h1 {
    width:100%;
    max-width:100%;
    margin:.45rem 0 0;
    font-size:clamp(2.55rem,12.4vw,3.8rem);
    line-height:.94;
    letter-spacing:-.04em;
    overflow-wrap:normal;
    word-break:normal;
  }
  .article-page--artdirected .article-hero h1 .red {
    display:block;
    white-space:normal;
  }
  .article-page--artdirected .article-hero-meta {
    padding-top:1.35rem;
  }
  .article-page--artdirected .article-dek {
    max-width:none;
    font-size:clamp(1.08rem,5.2vw,1.28rem);
    line-height:1.46;
  }
  .article-page--artdirected .article-byline {
    margin-top:1.25rem;
    display:grid;
    grid-template-columns:1fr;
    gap:.18rem;
    line-height:1.6;
  }
  .article-page--artdirected .article-byline span {
    display:block;
  }
  .article-page--artdirected .article-share-actions {
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.65rem;
    margin-top:1.15rem;
  }
  .article-page--artdirected .article-share-actions .btn {
    width:100%;
    min-width:0;
    margin:0;
  }
  .article-page--artdirected .article-share-status {
    grid-column:1 / -1;
  }
}

@media (max-width:380px) {
  .article-page--artdirected .article-hero h1,
  .article-page--ep2 .article-hero h1 {
    font-size:clamp(2.35rem,12vw,3.15rem);
  }
  .article-page--artdirected .article-share-actions {
    grid-template-columns:1fr;
  }
}
