/* ═══════════════════════════════════════════════════════════════
   IGNITEGTM - sub-page components (loads after style.css)
   events.html · studio.html · advisory.html · team.html
   ═══════════════════════════════════════════════════════════════ */

/* nav: current-page marker */
.nav__links a.is-here { color: var(--white); }
.nav__links a.is-here::after { transform: scaleX(1); transform-origin: 0 50%; }

/* ───────────────────────── page hero ───────────────────────── */

/* entrance: CSS-only so it runs even when rAF is throttled (bg tabs) */
@media (prefers-reduced-motion: no-preference) {
  .page-hero > *:not(.page-hero__ghost):not(.page-hero__bolt):not(.page-hero__media) {
    animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .page-hero > *:nth-child(2) { animation-delay: 0.12s; }
  .page-hero > *:nth-child(3) { animation-delay: 0.22s; }
  .page-hero > *:nth-child(4) { animation-delay: 0.32s; }
  .page-hero > *:nth-child(5) { animation-delay: 0.42s; }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(34px); }
}

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(4.5rem, 9vw, 8rem)) var(--pad) clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__crumb {
  display: flex; align-items: center; gap: 0.8em;
  font-size: 0.68rem;
  color: var(--grey-dim);
  margin-bottom: 2rem;
}
.page-hero__crumb a { color: var(--grey-dim); transition: color 0.2s; }
.page-hero__crumb a:hover { color: var(--yellow); }
.page-hero__crumb .sep { color: var(--red); }
.page-hero__crumb .here { color: var(--yellow); }

.page-hero__title {
  font-weight: 900;
  font-stretch: 90%;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  max-width: 14em;
}
/* denser variant for long-word titles (e.g. INFRASTRUCTURE) */
.page-hero__title--dense { font-size: clamp(2.7rem, 6.9vw, 6.1rem); }

.page-hero__intro {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 350;
  color: var(--grey);
  max-width: 36em;
}
.page-hero__meta {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem;
  margin-top: 2.4rem;
  font-size: 0.68rem;
  color: var(--grey);
}
.page-hero__meta b { color: var(--yellow); font-weight: 600; margin-right: 0.7em; }
.page-hero__bolt {
  position: absolute;
  right: -4%; top: 8%;
  width: min(420px, 34vw);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero__ghost {
  position: absolute;
  right: -0.06em; bottom: -0.18em;
  font-weight: 900; font-stretch: 88%;
  font-size: clamp(7rem, 20vw, 19rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* media hero variant (studio) */
.page-hero--media { min-height: 72svh; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero__media { position: absolute; inset: 0; z-index: -1; background: var(--black); }
.page-hero__media video, .page-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5, 5, 6, 0.95) 0%, rgba(5, 5, 6, 0.35) 40%, transparent 70%),
    linear-gradient(to right, rgba(5, 5, 6, 0.85) 0%, transparent 55%);
}

/* ───────────────────────── shared page patterns ───────────────────────── */

/* section header with rule */
.sec-head {
  display: flex; align-items: baseline; gap: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 2.8rem;
}
.sec-head h2 {
  font-weight: 900; font-stretch: 92%;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  text-transform: uppercase; line-height: 1;
}
.sec-head .mono { margin-left: auto; font-size: 0.64rem; color: var(--grey-dim); }

/* timeline (event editions) */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: "";
  position: absolute; left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--ember), var(--amber), var(--yellow));
}
.timeline__item { position: relative; padding: 0 0 2.6rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute; left: calc(-2.2rem - 5px); top: 0.42rem;
  width: 12px; height: 12px;
  background: var(--black);
  border: 2px solid var(--yellow);
  transform: rotate(45deg);
}
.timeline__item--now::before { background: var(--yellow); }
.timeline__date { font-size: 0.64rem; color: var(--yellow); margin-bottom: 0.4rem; }
.timeline__title {
  font-weight: 900; font-stretch: 92%;
  font-size: 1.25rem; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline__desc { font-weight: 350; color: var(--grey); font-size: 0.95rem; max-width: 52ch; }

/* poster / portfolio grid */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.poster {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
.poster img { width: 45%; opacity: 0.75; transition: transform 0.4s ease; }
.poster:hover img { transform: scale(1.08); }
.poster__label {
  position: absolute; bottom: 0.7rem; left: 0.9rem;
  font-size: 0.56rem; letter-spacing: 0.16em;
  color: var(--grey-dim);
}
.poster__tag { position: absolute; top: 0.7rem; right: 0.9rem; }

/* live tiles: real footage + click-to-play in the lightbox */
button.poster { cursor: pointer; font: inherit; text-align: left; padding: 0; }
.poster--live img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.poster--live::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.85), transparent 45%);
}
.poster--live .poster__label {
  z-index: 2;
  right: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}
.poster__play {
  position: absolute; top: 50%; left: 50%;
  translate: -50% -50%;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--yellow);
  transform: skewX(-8deg) scale(0.85);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
.poster__play::before {
  content: "";
  border-left: 15px solid #050506;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: skewX(8deg);
}
.poster--live:hover .poster__play,
.poster--live:focus-visible .poster__play {
  opacity: 1;
  transform: skewX(-8deg) scale(1);
}

/* numbered detail rows (services / method) */
.detail-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 5fr) minmax(0, 6fr);
  column-gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
}
.detail-row:last-of-type { border-bottom: 1px solid var(--line); }
.detail-row__num {
  font-weight: 200; font-size: 2.2rem; line-height: 1;
  color: rgba(255, 255, 255, 0.35);
}
.detail-row__title {
  font-weight: 900; font-stretch: 92%;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-transform: uppercase; line-height: 1.02;
}
.detail-row__title .h-grad { display: inline; }
.detail-row__body { color: var(--grey); font-weight: 350; }
.detail-row__body p + p { margin-top: 0.8rem; }
.detail-row__points { list-style: none; margin-top: 1.2rem; }
.detail-row__points li {
  display: flex; gap: 0.9rem; align-items: baseline;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.detail-row__points li::before {
  content: "";
  width: 9px; height: 13px; flex: none;
  background: var(--grad-bolt);
  clip-path: polygon(60% 0, 15% 58%, 45% 58%, 40% 100%, 85% 40%, 55% 40%);
  transform: translateY(1px);
}

/* process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.process__step {
  padding: 1.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #050506;
  background: var(--yellow);
  padding: 0.3em 0.7em;
  transform: skewX(-8deg);
  margin-bottom: 1.2rem;
}
.process__step h3 {
  font-weight: 900; font-stretch: 92%;
  font-size: 1.1rem; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.process__step p { font-weight: 350; font-size: 0.9rem; color: var(--grey); }

/* stat tiles (reused pattern, tighter) */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-row--three { grid-template-columns: repeat(3, 1fr); margin-bottom: 4.5rem; }

/* CTA band */
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad);
  background:
    radial-gradient(70% 130% at 50% 135%, rgba(255, 61, 0, 0.22), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta-band__title {
  font-weight: 900; font-stretch: 90%;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.95; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.cta-band__sub { color: var(--grey); font-weight: 350; max-width: 42em; margin: 0 auto 2.6rem; }
.cta-band__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* full-bleed photographic section - content floats over a graded image */
.section-media { position: relative; overflow: hidden; }
.section-media__bg {
  position: absolute;
  inset: -8% 0;              /* vertical bleed so parallax never exposes edges */
  z-index: 0;
}
.section-media__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.92);
}
.section-media__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5, 5, 6, 0.9) 0%, rgba(5, 5, 6, 0.62) 40%, rgba(5, 5, 6, 0.3) 72%, rgba(5, 5, 6, 0.55) 100%),
    linear-gradient(to top, rgba(5, 5, 6, 0.92) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(5, 5, 6, 0.88) 0%, transparent 24%);
}
.section-media > *:not(.section-media__bg) { position: relative; z-index: 1; }
.section-media .body-lg { color: rgba(255, 255, 255, 0.88); }
.section-media .stat__label { color: rgba(255, 255, 255, 0.72); }

/* uniform-veil variant - for centered/gridded content (stats, CTA bands)
   that needs even legibility across the full image */
.section-media--veil .section-media__bg::after {
  background:
    linear-gradient(rgba(5, 5, 6, 0.8), rgba(5, 5, 6, 0.8)),
    linear-gradient(to top, rgba(5, 5, 6, 0.92) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(5, 5, 6, 0.92) 0%, transparent 30%);
}
.section-media__caption {
  position: absolute; right: var(--pad); bottom: 1.2rem;
  z-index: 1;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

/* photo-frame with a real photograph: natural aspect, caption on a chip */
.photo-frame--live { aspect-ratio: auto; display: block; }
.photo-frame--live img { width: 100%; height: auto; opacity: 1; display: block; }
.photo-frame--live figcaption {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(5, 5, 6, 0.72);
  padding: 0.5em 0.95em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* stacked ICP cards (advisory: who it's for) */
.icp-stack { display: flex; flex-direction: column; gap: 1.4rem; }
.icp-stack .icard { gap: 0.8rem; }
.icp-stack .icard p { flex: none; }

/* ─────────────── stackmap - interactive AI-infrastructure stack ───────────────
   Isometric SVG topology: pills + plates select a layer; the active plate
   lifts and ignites with the bolt gradient. JS-off: all detail panels show. */

.stackmap { display: flex; flex-direction: column; gap: 1.8rem; }

.stackmap__pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.stackmap__pill {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7em 1.3em 0.7em 1.1em;
  display: inline-flex; align-items: center; gap: 0.7em;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.stackmap__pill::before {
  content: "";
  width: 3px; height: 12px;
  background: var(--grey-dim);
  border-radius: 2px;
  transition: background 0.25s, box-shadow 0.25s;
}
.stackmap__pill:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.stackmap__pill.is-active {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(255, 197, 1, 0.06);
}
.stackmap__pill.is-active::before {
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 197, 1, 0.8);
}

.stackmap__viz { position: relative; }
.stackmap__viz svg { width: 100%; height: auto; display: block; }

.plate { cursor: pointer; pointer-events: bounding-box; }
.plate polygon { transition: fill 0.35s, stroke 0.35s, opacity 0.35s; }
.plate__top {
  fill: var(--panel);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.25;
}
.plate__side { fill: #0a0a0d; stroke: rgba(255, 255, 255, 0.08); stroke-width: 1; }
.plate__side--r { fill: #08080b; }
.plate__label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  fill: var(--grey-dim);
  transition: fill 0.3s;
}

/* JS adds .js-on: plates become selectable states + idle float */
.stackmap.js-on .plate {
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.35s;
}
.stackmap.js-on .plate:not(.is-active) { opacity: 0.55; }
.stackmap.js-on .plate:not(.is-active):hover { opacity: 0.85; }
.stackmap.js-on .plate.is-active { transform: translateY(-12px); }
.stackmap.js-on .plate.is-active .plate__top {
  stroke: url(#smGrad);
  stroke-width: 2.5;
  fill: #17171c;
  filter: url(#smGlow);
}
.stackmap.js-on .plate.is-active .plate__label { fill: var(--yellow); }

.stackmap__pulse { animation: smPulse 2.6s linear infinite; }
@keyframes smPulse { to { stroke-dashoffset: -48; } }

@media (prefers-reduced-motion: no-preference) {
  .stackmap.js-on .plate { animation: smFloat 7s ease-in-out infinite; }
  .stackmap.js-on .plate[data-layer="neocloud"] { animation-delay: -1.8s; }
  .stackmap.js-on .plate[data-layer="silicon"] { animation-delay: -3.6s; }
  .stackmap.js-on .plate[data-layer="datacenter"] { animation-delay: -5.4s; }
  .stackmap.js-on .plate.is-active { animation: none; }
}
@keyframes smFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
  .stackmap__pulse { animation: none; }
}

.stackmap__details { border-top: 1px solid var(--line); padding-top: 1.4rem; min-height: 7.5em; }
.stackmap__panel { display: block; }
.stackmap.js-on .stackmap__panel { display: none; }
.stackmap.js-on .stackmap__panel.is-active { display: block; }
.stackmap__kicker { font-size: 0.66rem; color: var(--yellow); margin-bottom: 0.6rem; }
.stackmap__body { font-weight: 350; color: rgba(255, 255, 255, 0.88); max-width: 46ch; margin-bottom: 0.8rem; }
.stackmap__adv { font-size: 0.6rem; color: var(--grey-dim); letter-spacing: 0.14em; }
.stackmap__adv span { color: var(--red); margin-right: 0.4em; }
/* JS-off: panels stack with breathing room */
.stackmap:not(.js-on) .stackmap__panel + .stackmap__panel { margin-top: 1.4rem; }

@media (max-width: 768px) {
  .stackmap__pill { font-size: 0.56rem; padding: 0.65em 1em; }
  .plate__label { font-size: 15px; }
}

/* two-col split with sticky left (reuse ecosystem pattern) */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.split__sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }

/* big quote / manifesto line */
.manifesto {
  font-weight: 900; font-stretch: 90%;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  max-width: 18em;
}
.manifesto em {
  font-style: italic; font-weight: 250; text-transform: none;
  letter-spacing: 0;
}

/* team page: expanded badge presentation */
.team-hall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
}
.member {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: stretch;
  transition: border-color 0.3s, transform 0.3s;
}
.member:hover { border-color: rgba(255, 197, 1, 0.5); transform: translateY(-5px); }
.member .badge { aspect-ratio: 2 / 3; }
.member__info { display: flex; flex-direction: column; gap: 0.9rem; padding-top: 0.4rem; }
.member__role { font-size: 0.64rem; color: var(--yellow); }
.member__blurb { font-weight: 350; color: var(--grey); font-size: 0.95rem; flex: 1; }
.member__links { display: flex; gap: 1.4rem; }
.member__links a { font-size: 0.66rem; color: var(--grey-dim); letter-spacing: 0.14em; }
.member__links a:hover { color: var(--yellow); }

/* full-cell-width photo bleeding to an appendix cell's inner edges (top) */
.appendix__media {
  position: relative;
  margin: calc(var(--cellpad, 2rem) * -1) calc(var(--cellpad, 2rem) * -1) 1.6rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.appendix__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.appendix__media figcaption {
  position: absolute; bottom: 0.7rem; left: 0.9rem;
  font-family: var(--font-mono); font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(5, 5, 6, 0.6);
  padding: 0.4em 0.8em;
}

/* ─────────────── editorial spreads (events - "The Issue") ───────────────
   Photography runs unveiled at full intensity; the only scrim is a narrow
   gutter on the copy side. Type composes AGAINST the photo, not on top. */

.issue-masthead {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.8rem var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.toc-strip {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem;
  margin-top: 2.4rem;
  font-size: 0.62rem;
}
.toc-strip .toc-label { color: var(--grey-dim); }
.toc-strip a { color: var(--grey); transition: color 0.2s; }
.toc-strip a b { color: var(--yellow); font-weight: 600; margin-right: 0.5em; }
.toc-strip a:hover { color: var(--white); }

.spread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 1.75rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}
.spread__media {
  grid-column: 5 / 13; grid-row: 1;
  margin-right: calc(var(--pad) * -1);   /* bleed to the viewport edge */
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panel);
}
.spread__media img {
  width: 100%; height: 112%;             /* overscan feeds the parallax drift */
  position: relative; top: -6%;
  object-fit: cover; display: block;
}
/* whisper of a gutter scrim at the copy edge - text no longer overlaps,
   so the photo runs essentially clean */
.spread__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to right, rgba(5, 5, 6, 0.35) 0%, transparent 18%);
}
.spread--flip .spread__media { grid-column: 1 / 9; margin-right: 0; margin-left: calc(var(--pad) * -1); }
.spread--flip .spread__media::before {
  background: linear-gradient(to left, rgba(5, 5, 6, 0.35) 0%, transparent 18%);
}
.spread--xl .spread__media { grid-column: 5 / 13; aspect-ratio: 16 / 9; min-height: min(62vh, 640px); }
.spread--med .spread__media { grid-column: 6 / 13; aspect-ratio: 3 / 2; min-height: 0; }

/* copy sits flush against the photo's edge - no text over the image */
.spread__copy { grid-column: 1 / 5; grid-row: 1; position: relative; z-index: 2; }
.spread--flip .spread__copy { grid-column: 9 / 13; }
.spread--med .spread__copy { grid-column: 1 / 6; }

.spread__kicker {
  font-size: 0.64rem; color: var(--yellow);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.spread__name {
  font-weight: 900; font-stretch: 92%;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: 1.4rem;
  /* drop-shadow (not text-shadow) so .h-grad keeps a clean fill */
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.6));
}
.spread__deck {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem); font-weight: 700;
  max-width: 26em;
  padding-top: 1rem; margin-bottom: 0.9rem;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
}
.spread__desc {
  font-size: 0.95rem; font-weight: 350; color: var(--grey);
  max-width: 34em; margin-bottom: 1.8rem;
}
.spread .facts { margin: 0 0 2rem; max-width: 34em; }
.spread--flush { border-top: 0; }
.spread__copy .eyebrow { margin-bottom: 1rem; }
.spread__copy .body-lg { margin-bottom: 2rem; }
.spread__copy .timeline { max-width: 34em; }

.spread__folio {
  position: absolute; top: clamp(1rem, 3vw, 2.5rem); z-index: 3;
  font-weight: 200;
  font-size: clamp(5.5rem, 11vw, 10.5rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none; user-select: none;
}
.spread .spread__folio { right: calc(clamp(5.5rem, 11vw, 10.5rem) * 0.55); }
.spread--flip .spread__folio { right: auto; left: calc(var(--pad) * -0.4); }

.spread__credit {
  position: absolute; top: calc(100% + 0.7rem); left: 0;
  font-family: var(--font-mono); font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-dim);
  white-space: nowrap;
}
.spread__credit::before {
  content: ""; display: inline-block;
  width: 1.2em; height: 2px;
  background: var(--yellow);
  margin-right: 0.7em; vertical-align: middle;
}
.spread--flip .spread__credit { left: auto; right: var(--pad); }

@media (pointer: fine) {
  .spread__media img { transition: transform 1.2s ease; }
  .spread:hover .spread__media img { transform: scale(1.02); }
}

/* wordless full-width breath between chapters */
.intermission {
  position: relative;
  aspect-ratio: 2.39 / 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.intermission img {
  width: 100%; height: 112%;
  position: relative; top: -6%;
  object-fit: cover; display: block;
}
.intermission--tall { aspect-ratio: 1.96 / 1; }
.intermission .spread__credit {
  top: auto; bottom: 1rem; left: auto; right: var(--pad);
  color: rgba(255, 255, 255, 0.6);
}

/* magazine pull-figure scale for the stats band */
.proof--pull .stat__num { font-size: clamp(3rem, 6.5vw, 6rem); }

/* ───────────────────────── responsive ───────────────────────── */

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split__sticky { position: static; }
  .detail-row { grid-template-columns: 56px 1fr; }
  .detail-row__body { grid-column: 2; margin-top: 1rem; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .team-hall { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  /* mid-width: spreads keep the side-by-side but relax the bleed */
  .spread--xl .spread__media { grid-column: 5 / 13; min-height: 0; }
  .spread__folio { font-size: clamp(4rem, 8vw, 7rem); }
}

@media (max-width: 768px) {
  /* spreads: photo leads, full-bleed; name overlaps the photo's bottom edge */
  .spread { display: block; padding-block: 3rem; }
  .spread__media,
  .spread--flip .spread__media,
  .spread--xl .spread__media,
  .spread--med .spread__media {
    margin: 0 calc(var(--pad) * -1);
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .spread__media::before,
  .spread--flip .spread__media::before {
    background: linear-gradient(to top, rgba(5, 5, 6, 0.82) 0%, transparent 38%);
  }
  .spread__copy, .spread--flip .spread__copy, .spread--med .spread__copy { margin-top: -1.4em; }
  .spread__name { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  .spread__folio, .spread--flip .spread__folio {
    top: auto; bottom: 0.4rem; left: auto; right: 0.4rem;
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.22);
  }
  .spread__credit, .spread--flip .spread__credit {
    top: auto; bottom: 0.6rem; left: 0.7rem; right: auto;
    background: rgba(5, 5, 6, 0.65);
    padding: 0.4em 0.8em;
    white-space: normal;
  }
  .spread .btn { width: 100%; text-align: center; }
  .intermission { aspect-ratio: 16 / 9; }
  .issue-masthead { display: none; }
  .toc-strip { gap: 0.6rem 1.4rem; }
  .page-hero__bolt { display: none; }
  .poster-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; }
  .detail-row__body { grid-column: 1; }
  .member { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .sec-head { flex-wrap: wrap; }
  .sec-head .mono { margin-left: 0; }
}
