/* =========================================================================
   YouTube FYC — shared stylesheet
   -------------------------------------------------------------------------
   Authoring notes for the team:

   GESTALT MAPPING (where each principle does work in the layout):
     • Figure/ground    → near-black surfaces push landscape key art forward
     • Similarity       → every brand card and every episode card share an
                          identical template; voters scan, never decode
     • Proximity        → 4–8px inside a unit, 24–48px between units, 64–96px
                          between sections. The spacing scale is the design.
     • Common region    → cards = 1px hairline border + radius; sections =
                          full-bleed strips with consistent vertical rhythm
     • Continuation     → a 12-col grid; hero copy aligns to the first card
                          column; episode grid sits on the same baseline
     • Closure          → press-kit and credits cards rely on implied edges
     • Common fate      → on hover, art scales + title shifts + accent rule
                          appears as ONE motion → the card reads as one object
     • Prägnanz         → strict 8pt rhythm, three type sizes per page max

   COLOR: YouTube Red is the only chromatic accent. Everything else is
   a neutral so the shows' key art carries the hue. Red is reserved for
   active/CTA + a 2px focus ring offset. Hover on art uses brightness, not
   color — preserves brand fidelity of the underlying image.

   FONT: brand uses YouTube Sans (not on Google Fonts). The stack falls
   through Roboto → system-ui so the page is usable before the team
   self-hosts the licensed face.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand
     Three reds, used deliberately:
       --yt-red       FYC accent at small sizes (eyebrow dot, episode #).
                      At ~12px on dark, this saturated value reads cleanest.
       --yt-red-cta   Filled CTA backgrounds. Darker so WHITE text on the
                      button hits WCAG AA (#CC0000 is a YT brand variant).
       --yt-red-mark  The wordmark only — pure brand red. */
  --yt-red:        #FF0033;
  --yt-red-cta:    #CC0000;
  --yt-red-mark:   #FF0000;
  --almost-black:  #212121;
  --white:         #FFFFFF;

  /* Surfaces */
  --bg:            #0F0F0F;
  --surface:       #181818;
  --surface-2:     #212121;
  --surface-hi:    #2A2A2A;

  /* Lines */
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Text */
  --text:          #F1F1F1;
  --text-dim:      #AAAAAA;
  --text-faint:    #999999;     /* bumped from #717171 so 12px text on surfaces hits AA (4.5:1+) */

  /* Focus — YouTube's accessible blue, contrasts both red and dark surface */
  --focus:         #3EA6FF;

  /* Spacing (8pt) */
  --s-1:  4px;
  --s-2:  8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;

  /* Radii */
  --r-sm:  6px;
  --r:    12px;
  --r-lg: 20px;

  /* Type scale (fluid) */
  --t-display: clamp(2.5rem, 5.5vw, 5rem);
  --t-h1:      clamp(2rem,   3.6vw, 3rem);
  --t-h2:      clamp(1.5rem, 2.4vw, 2.25rem);
  --t-h3:      1.25rem;
  --t-body:    1rem;
  --t-sm:      0.875rem;
  --t-xs:      0.75rem;
  --leading-tight: 1.1;
  --leading-snug:  1.25;
  --leading-body:  1.55;

  /* Layout */
  --measure: 64ch;             /* readable max line length for prose */
  --content: min(1280px, 100% - 2 * var(--s-4));

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur:  180ms;
}

/* Honor reduced motion — kill non-essential transitions */
@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0ms; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- 2. Reset / base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 var(--t-body)/var(--leading-body)
        "YouTube Sans", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11"; /* if YT Sans is loaded; harmless otherwise */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Skip link — first interactive element on every page */
.skip {
  position: absolute; left: var(--s-3); top: var(--s-3);
  padding: var(--s-2) var(--s-3); background: var(--white); color: #000;
  border-radius: var(--r-sm); transform: translateY(-200%);
  transition: transform var(--dur) var(--ease);
  z-index: 100;
}
.skip:focus { transform: translateY(0); }

/* ---------- 3. Layout primitives ---------------------------------------- */
.container { width: var(--content); margin-inline: auto; }

/* Vertical rhythm — every <section> exhales the same amount */
.section { padding-block: var(--s-7); }
@media (min-width: 900px) { .section { padding-block: var(--s-8); } }
.section--compact { padding-block-start: var(--s-4); padding-block-end: 0; }
@media (min-width: 900px) { .section--compact { padding-block-start: var(--s-4); } }
.section.section--tight-top { padding-block-start: var(--s-4); }

/* Eyebrow: tiny uppercase label that establishes hierarchy without competing */
.eyebrow {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.eyebrow .accent { color: var(--yt-red); }

.lede { color: var(--text-dim); max-width: var(--measure); font-size: 1.125rem; }

/* ---------- 4. Top nav -------------------------------------------------- */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.topnav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-2);
}
.topnav__logo--icon { height: 28px; width: auto; display: block; }
.topnav__logo--full { display: none; max-width: 160px; }
@media (min-width: 720px) {
  .topnav__logo--icon { display: none; }
  .topnav__logo--full { display: block; }
}
.lockup {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 700; letter-spacing: 0.04em;
}
.lockup__yt {
  /* Wordmark uses pure red per brand; small caps so it reads as a logo not text */
  color: var(--yt-red-mark);
  font-weight: 800;
}
.lockup__bar {
  width: 1px; height: 18px; background: var(--border-strong);
}
.lockup__fyc { color: var(--text); letter-spacing: 0.22em; font-size: var(--t-xs); }

.topnav__links {
  display: none;
  gap: var(--s-5); list-style: none; margin: 0; padding: 0;
}
.topnav__links a {
  color: var(--text-dim);
  font-size: var(--t-sm);
  font-weight: 500;
}
.topnav__links a:hover, .topnav__links a:focus-visible { color: var(--text); text-decoration: none; }
@media (min-width: 720px) {
  .topnav__links { display: flex; }
}

.topnav__cta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: var(--yt-red-cta); color: var(--white);
  border-radius: 999px; font-size: var(--t-sm); font-weight: 700;
  border: 0; cursor: pointer;
  transition: filter var(--dur) var(--ease);
}
.topnav__cta:hover { filter: brightness(1.1); text-decoration: none; }

/* ---------- 5. Hero banner (hub) ----------------------------------------
   Three-row layout: top marquee scrolling right, center branding, bottom
   marquee scrolling left. Deep red radial gradient unifies all three rows.

   Both marquee tracks are aria-hidden — they are decorative; the show grid
   below is the accessible navigation path for voters.

   Reduced-motion: animations are killed globally via the token above, so
   the tracks just render statically.
*/
.hero-banner {
  overflow: hidden;
  background: linear-gradient(
    to right,
    #5a0000 0%,
    #1c0000 22%,
    #060606 42%,
    #060606 58%,
    #1c0000 78%,
    #5a0000 100%
  );
  padding-block: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Marquee row — fade edges with mask so cards dissolve in/out cleanly.
   padding-block gives the card drop-shadows room before overflow clips them. */
.hero-marquee {
  overflow: hidden;
  padding-block: 10px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.hero-marquee__track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

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

.hero-marquee--right .hero-marquee__track { animation: marquee-right 480s linear infinite; }
.hero-marquee--left  .hero-marquee__track { animation: marquee-left  480s linear infinite; }
/* Stagger offset rows so paired rows don't mirror each other exactly */
.hero-marquee--offset .hero-marquee__track { animation-delay: -25s; }

.hero-marquee:hover .hero-marquee__track { animation-play-state: paused; }

/* Retro-TV card
   Wrapper carries the drop-shadow so the filter never touches the image pixels
   inside. The card itself just handles shape (clip-path) and overflow. */
.hero-tv-card-wrap {
  display: block;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 1px var(--yt-red-cta))
    drop-shadow(0 0 4px rgba(204,0,0,0.25));
}

.hero-tv-card {
  position: relative;
  width: 320px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
  display: block;
  clip-path: path('M 26,0 Q 160,-2 294,0 Q 320,0 320,26 Q 330,100 320,174 Q 320,200 294,200 Q 160,202 26,200 Q 0,200 0,174 Q -10,100 0,26 Q 0,0 26,0 Z');
}

.hero-tv-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Convex CRT surface illusion: dark vignette at edges + faint top highlight */
.hero-tv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-tv-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s-5) var(--s-3) var(--s-3);
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}

/* Center branding row */
.hero-banner__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
}

.hero-banner__yt-logo {
  height: 52px;
  width: auto;
  display: block;
}

.hero-banner__sep {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.hero-banner__fyc {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

/* ---------- 6. Category pills ------------------------------------------ */
.pills {
  display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center;
  list-style: none; padding: 0; margin: 0;
}
.pill {
  display: inline-flex; align-items: center;
  padding: var(--s-2) var(--s-3);
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--t-sm); font-weight: 500;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
button.pill { cursor: pointer; }
.pill:hover, .pill:focus-visible {
  background: var(--surface-hi); border-color: var(--border-strong); text-decoration: none;
}
.pill[aria-current="true"] {
  background: var(--yt-red-cta); border-color: var(--yt-red-cta); color: var(--white);
  font-weight: 700;
}

/* ---------- 7. Show grid (hub) ------------------------------------------
   Similarity: every card is dimensionally identical.
   Common fate: the .show-card animates as one unit on hover.
   Continuation: 1 → 2 → 3 columns; first card aligns with hero text.
*/
.show-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .show-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } }
@media (min-width: 1024px) { .show-grid { grid-template-columns: repeat(3, 1fr); } }

.show-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.show-card:hover, .show-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--surface-2);
  text-decoration: none;
}
.show-card__art {
  aspect-ratio: 16 / 9;
  background: var(--surface-2) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.show-card__art::after {
  /* Bottom gradient guarantees title legibility if art is bright */
  content: "";
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
}
.show-card__body { padding: var(--s-4); display: grid; gap: var(--s-2); }
.show-card__title { font-size: var(--t-h3); font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.show-card__logline { color: var(--text-dim); font-size: var(--t-sm); margin: 0; }
.show-card__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-top: var(--s-2); font-size: var(--t-xs); color: var(--text-faint);
}
.show-card__meta span + span::before { content: "·"; margin-right: var(--s-2); color: var(--text-faint); }
.show-card__cta {
  margin-top: var(--s-3);
  display: inline-flex; align-items: center; gap: var(--s-2);
  color: var(--text);
  font-size: var(--t-sm); font-weight: 600;
}
.show-card__cta::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}
.show-card:hover .show-card__cta::after { transform: translateX(4px); }

/* ---------- 8. Show page hero ------------------------------------------ */
.show-hero {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.show-hero__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.show-hero__intro {
  padding-block: var(--s-5) var(--s-4);
  display: grid; gap: var(--s-3);
}
.show-hero__title {
  font-size: var(--t-display); line-height: var(--leading-tight);
  letter-spacing: -0.02em; margin: 0; font-weight: 700;
  max-width: 22ch;
}
.show-hero__logline {
  color: var(--text-dim); font-size: 1.125rem; max-width: var(--measure); margin: 0;
}

/* ---------- 9. Two-column layout (synopsis / facts) -------------------- */
.cols {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .cols { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: var(--s-7); }
}
.prose { max-width: var(--measure); }
.prose p { margin: 0 0 var(--s-3); color: var(--text); }
.prose p:last-child { margin-bottom: 0; }

.facts {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s-4);
  display: grid; gap: var(--s-3);
  align-self: start;
}
.facts dt { font-size: var(--t-xs); color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.facts dd { margin: 0; font-size: var(--t-sm); color: var(--text); font-weight: 500; }
.facts__row { display: grid; gap: 2px; }

/* ---------- 10. Section header --------------------------------------- */
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-3); margin-bottom: var(--s-5);
  border-top: 1px solid var(--border);
  padding-top: var(--s-5);
}
.sec-head__title { font-size: var(--t-h2); font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.sec-head__hint  { color: var(--text-faint); font-size: var(--t-sm); }

/* ---------- 11. Native video player ----------------------------------- */
/* Self-hosted <video>, click-to-load. Without JS the <a> fallback links
   straight to the file. No YouTube / third-party embeds. */
lite-video {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000 center/cover no-repeat;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
}
lite-video::before {
  /* Soft top-down vignette so the play button reads on bright posters */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
lite-video:has(video)::before { content: none; } /* drop the vignette once playing */
lite-video .lite-video__btn {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.7);
  border: 0; border-radius: 999px; color: #fff;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
lite-video:hover .lite-video__btn { background: var(--yt-red); transform: scale(1.05); }
lite-video .lite-video__btn svg { width: 28px; height: 28px; transform: translateX(2px); }
lite-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  background: #000;
}
lite-video .lite-video__caption {
  position: absolute; left: var(--s-3); bottom: var(--s-3);
  font-size: var(--t-sm); color: var(--white);
  background: rgba(0,0,0,0.55); padding: 4px 8px; border-radius: var(--r-sm);
}
.fallback-link { display: none; }
:not(:defined) .fallback-link { display: inline; } /* if the custom element never upgrades */

/* Full-screen modal player (episode cards) */
.video-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(2px);
}
.video-modal__frame {
  position: relative;
  width: min(1100px, 92vw);
  aspect-ratio: 16 / 9;
  max-height: 88vh;
}
.video-modal__video {
  width: 100%; height: 100%;
  border-radius: var(--r);
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.video-modal__close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-size: 26px; line-height: 1;
  color: #fff; background: rgba(255,255,255,0.12);
  border: 0; border-radius: 999px; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.video-modal__close:hover { background: rgba(255,255,255,0.25); }

/* ---------- 12. Episode grid ------------------------------------------ */
.eps {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .eps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eps { grid-template-columns: repeat(3, 1fr); } }

.ep {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
}
.ep:hover, .ep:focus-within { border-color: var(--border-strong); transform: translateY(-2px); }
.ep__link {
  position: absolute; inset: 0; display: block; z-index: 2;
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0; padding: 0; margin: 0;
  border-radius: var(--r); cursor: pointer;
}
.ep__thumb {
  aspect-ratio: 16 / 9;
  background: var(--surface-2) center/cover no-repeat;
}
/* Play affordance over the thumb for episodes with a self-hosted video. */
.ep__play {
  position: absolute; top: 0; left: 0; right: 0;
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  pointer-events: none; z-index: 1;
}
.ep__play svg { width: 26px; height: 26px; transform: translateX(2px); }
.ep__play::before {
  content: "";
  position: absolute; width: 56px; height: 56px;
  background: rgba(0,0,0,0.65); border-radius: 999px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ep__play svg { position: relative; color: #fff; }
.ep--playable:hover .ep__play::before,
.ep--playable:focus-within .ep__play::before {
  background: var(--yt-red); transform: scale(1.06);
}
.ep__body { padding: var(--s-3) var(--s-4) var(--s-4); display: grid; gap: var(--s-2); }
.ep__num  {
  font-size: var(--t-xs); color: var(--text);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.ep__num::before {
  /* Red dot decoration — escapes the contrast rules that text would face,
     and gives episodes a consistent visual anchor. */
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yt-red);
  flex-shrink: 0;
}
.ep__title{ font-size: var(--t-h3); font-weight: 700; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep__meta { color: var(--text-faint); font-size: var(--t-xs); margin: 0; }
.ep__desc { color: var(--text-dim); font-size: var(--t-sm); margin: 0; }

/* ---------- 13. Extras carousel (sizzles/bonus clips on show pages) -- */
.extras {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--s-3);
  margin-top: var(--s-5);
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.extras__item {
  flex: 0 0 min(420px, 78vw);
  scroll-snap-align: start;
}
.eps--below-embed { margin-top: var(--s-5); }

/* ---------- 14. Headshots / talent rail ------------------------------- */
.talent {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .talent { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .talent { grid-template-columns: repeat(6, 1fr); } }

.head {
  display: grid; gap: var(--s-2); justify-items: center; text-align: center;
}
.head__photo {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface-2) center/cover no-repeat;
  border: 1px solid var(--border);
}
.head__name { font-size: var(--t-sm); font-weight: 600; margin: 0; }
.head__role { font-size: var(--t-xs); color: var(--text-faint); margin: 0; }

/* ---------- 15. Credits ----------------------------------------------- */
.credits {
  display: grid; gap: var(--s-2);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .credits { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-6); } }
.credit {
  display: grid; grid-template-columns: 1fr auto; gap: var(--s-3);
  padding-block: var(--s-2);
  border-bottom: 1px solid var(--border);
  font-size: var(--t-sm);
}
.credit__role { color: var(--text-faint); }
.credit__name { color: var(--text); font-weight: 500; text-align: right; }

/* ---------- 16. Press kit --------------------------------------------- */
.press {
  display: grid; gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .press { grid-template-columns: repeat(2, 1fr); } }
.press a {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s-3) var(--s-4);
  font-weight: 500;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.press a:hover, .press a:focus-visible {
  background: var(--surface-2); border-color: var(--border-strong); text-decoration: none;
}
.press a::after { content: "↗"; color: var(--text-faint); }

/* ---------- 17. Footer ------------------------------------------------ */
.foot {
  border-top: 1px solid var(--border);
  padding-block: var(--s-6);
  color: var(--text-faint); font-size: var(--t-xs);
}
.foot__inner {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between;
}
.foot a { color: var(--text-dim); }

/* ---------- 18. Utility ----------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.stack > * + * { margin-top: var(--s-3); }
.stack-lg > * + * { margin-top: var(--s-5); }
