:root {
  --bg: #260507;
  --bg-soft: #3d080c;
  --surface: #fff7f2;
  --surface-2: #fff1ea;
  --surface-3: #fffaf7;
  --ink: #241214;
  --muted: #75585b;
  --red: #b71628;
  --red-2: #d92a3a;
  --rose: #f05b76;
  --peach: #ffcfbf;
  --cream: #fff4ed;
  --border: rgba(113, 30, 37, 0.14);
  --border-strong: rgba(140, 30, 41, 0.28);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 0, 3, 0.24);
  --shell: min(1180px, calc(100% - 32px));
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(255, 120, 120, 0.09), transparent 16%),
    linear-gradient(180deg, #5e0c14 0%, #34070b 35%, #210305 100%);
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  width: var(--shell);
  margin: 0 auto;
  padding-top: 14px;
}

.nav-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(38, 6, 9, 0.92), rgba(59, 9, 14, 0.82));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.26);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  color: var(--white);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.brand-copy strong,
.brand-copy span { display: block; }
.brand-copy strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.brand-copy span {
  color: rgba(255,240,238,0.72);
  font-size: 0.84rem;
}

.nav-toggle {
  appearance: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  outline: none;
}

.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 14px;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }

.site-nav.is-open .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.site-nav.is-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,0,2,0.48);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nav-panel {
  position: absolute;
  top: 14px;
  right: 18px;
  width: min(360px, calc(100vw - 32px));
  min-height: calc(100vh - 28px);
  padding: 90px 22px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(95, 12, 22, 0.98), rgba(170, 24, 39, 0.96));
  box-shadow: -18px 20px 40px rgba(0,0,0,0.22);
  transform: translateX(110%);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
  display: grid;
  align-content: start;
  gap: 18px;
}

.nav-close {
  appearance: none;
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-close:hover,
.nav-close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  outline: none;
}

.nav-close span,
.nav-close span::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-close span {
  transform: rotate(45deg);
}

.nav-close span::before {
  left: 0;
  top: 0;
  transform: rotate(90deg);
}

.nav-meta {
  color: rgba(255, 241, 239, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: grid;
  gap: 10px;
}

.nav-links a {
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateX(10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255,255,255,0.12);
  outline: none;
}

.nav-links a:nth-child(1) { transition-delay: 20ms; }
.nav-links a:nth-child(2) { transition-delay: 40ms; }
.nav-links a:nth-child(3) { transition-delay: 60ms; }
.nav-links a:nth-child(4) { transition-delay: 80ms; }
.nav-links a:nth-child(5) { transition-delay: 100ms; }
.nav-links a:nth-child(6) { transition-delay: 120ms; }

.nav-drawer-note {
  margin: 6px 0 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,241,239,0.82);
  line-height: 1.65;
}

.site-nav.is-open .nav-drawer { pointer-events: auto; }
.site-nav.is-open .nav-backdrop { opacity: 1; }
.site-nav.is-open .nav-panel { transform: translateX(0); }
.site-nav.is-open .nav-links a { transform: translateX(0); opacity: 1; }

.hero-band,
.page-hero-band {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-band {
  min-height: 72vh;
  background:
    linear-gradient(90deg, rgba(26, 5, 7, 0.84) 0%, rgba(74, 10, 15, 0.66) 42%, rgba(116, 18, 26, 0.18) 100%),
    url('https://res.cloudinary.com/mkf2w5rv/image/upload/v1784125770/HLgc-k9awAAya3O_1_moxuad.jpg') center/cover;
}

.page-hero-band {
  background:
    linear-gradient(90deg, rgba(26, 5, 7, 0.86) 0%, rgba(78, 12, 18, 0.7) 45%, rgba(132, 22, 33, 0.18) 100%),
    url('/assets/G173Ky0boAAZ0dH.jpeg') center/cover;
}

.hero-band::after,
.page-hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 25%, rgba(0,0,0,0.14) 100%);
  pointer-events: none;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: var(--shell);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 30px;
  align-items: end;
  padding: 56px 0 44px;
}

.hero-band .hero-inner { min-height: 72vh; }

.hero-copy,
.page-hero-copy,
.story-copy,
.poster-copy,
.section-heading,
.footer-inner {
  display: grid;
  gap: 14px;
}

.hero-kicker,
.section-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,247,245,0.96);
  border: 1px solid rgba(255,255,255,0.16);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,h2,h3,p { margin: 0; }

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.poster-copy h2 {
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--white); }
.page-hero-copy h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); color: var(--white); }
.section-heading h2,
.poster-copy h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); }

.hero-copy .lead,
.page-hero-copy .lead {
  max-width: 62ch;
  color: rgba(255,241,239,0.86);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions,
.alias-strip,
.metrics-grid,
.identity-grid,
.games-grid,
.links-grid,
.facts-grid,
.page-grid,
.profile-grid,
.gallery-grid,
.gallery-stack {
  display: grid;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a,
.inline-link,
.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-actions a:hover,
.hero-actions a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.chip-link:hover,
.chip-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-actions .primary,
.inline-link {
  background: linear-gradient(135deg, var(--surface), var(--peach));
  color: var(--red);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.hero-actions a:not(.primary) {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.alias-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alias-strip span,
.chip-link {
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,246,244,0.94);
  font-weight: 700;
}

.hero-side { display: grid; align-content: end; }

.hero-poster {
  overflow: hidden;
  margin-left: auto;
  width: min(420px, 100%);
  border-radius: 30px;
  background: rgba(255,248,244,0.96);
  box-shadow: var(--shadow);
}

.home-credit-image {
  position: relative;
}

.hero-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.home-photo-credit {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(25, 5, 8, .78);
  color: rgba(255,247,244,.94);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(20, 2, 5, .2);
  backdrop-filter: blur(8px);
}

.home-photo-credit:hover,
.home-photo-credit:focus-visible {
  color: var(--white);
  background: rgba(183, 22, 40, .94);
}

.hero-poster-copy {
  padding: 20px 20px 22px;
  color: var(--ink);
}

.hero-poster-copy strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-poster-copy p { color: var(--muted); line-height: 1.6; }

.band-light,
.band-soft,
.band-dark,
.band-red {
  padding: 46px 0;
}
.band-light { background: var(--surface); color: var(--ink); }
.band-soft { background: var(--surface-3); color: var(--ink); }
.band-dark { background: #1f0508; color: var(--white); }
.band-red {
  background: linear-gradient(180deg, #8a111b 0%, #b51d2a 100%);
  color: var(--white);
}

.section-stack { display: grid; gap: 22px; }
.section-heading p,
.story-copy p,
.poster-copy p,
.page-panel p,
.profile-card p,
.fact-tile p,
.link-tile p,
.game-copy p,
.quote-card p,
.footer-inner p { line-height: 1.7; }
.section-heading p,
.page-panel p,
.profile-card p,
.fact-tile p,
.link-tile p,
.game-copy p { color: var(--muted); }
.band-dark .section-heading p,
.band-red .section-heading p,
.band-dark .story-copy p,
.band-red .story-copy p,
.band-dark .quote-card p,
.band-dark .poster-copy p,
.band-red .metric-copy,
.footer-inner p { color: rgba(255,241,239,0.82); }

.identity-grid,
.games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.links-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-grid,
.profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.facts-grid,
.metrics-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: 0.82fr 1.18fr; }
.gallery-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-tile,
.page-panel,
.profile-card,
.fact-tile,
.link-tile,
.quote-card,
.game-tile,
.metric-tile {
  min-height: 100%;
  border-radius: 24px;
}

.info-tile,
.page-panel,
.profile-card,
.fact-tile,
.link-tile {
  padding: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(43, 13, 17, 0.08);
}

.info-tile,
.page-panel,
.profile-card,
.fact-tile,
.link-tile,
.quote-card,
.metric-tile {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.info-tile h3,
.page-panel h2,
.profile-card h3,
.fact-tile h3,
.link-tile h3 { font-size: 1.08rem; color: var(--ink); }

.story-layout,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.story-copy {
  align-content: start;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.poster-frame {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(0deg, rgba(255, 247, 242, 0.96), rgba(255,247,242,0.82)),
    url('/assets/250407-ahof-x-update-jl-v0-t31aw70d6ete1.jpg') center/cover;
  box-shadow: var(--shadow);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.3));
}

.poster-copy {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 1;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.88);
  border: 1px solid rgba(125, 36, 42, 0.16);
  color: var(--ink);
}

.poster-copy .section-kicker {
  background: rgba(183, 22, 40, 0.08);
  color: var(--red);
  border-color: rgba(183, 22, 40, 0.12);
}

.metrics-grid { gap: 14px; }
.metric-tile {
  padding: 18px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 10px;
  justify-items: start;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.metric-value {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-copy {
  font-size: 0.94rem;
  line-height: 1.55;
}

.gallery-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(28, 4, 7, 0.12);
}

.quote-card {
  padding: 26px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(40, 10, 14, 0.08);
}

.quote-card .quote-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(183, 22, 40, 0.08);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 20px;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 2, 4, 0.08), rgba(16, 2, 4, 0.8));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--game-bg) center/cover;
  z-index: -2;
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.game-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(111, 9, 17, 0.1), rgba(18,2,5,0.82));
  z-index: -1;
}

.game-tile:hover::before,
.game-tile:focus-visible::before { transform: scale(1.08); }
.game-tile strong { font-size: 1.55rem; }
.game-tile p { color: rgba(255,241,239,0.86); }
.game-tag {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.14);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-awards {
  display: grid;
  gap: 22px;
  padding-top: 18px;
}

.home-awards-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.home-awards-header > div:first-child {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.home-awards-header h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.home-awards-header > div:first-child > p:last-child {
  color: rgba(255, 241, 239, 0.82);
  line-height: 1.7;
}

.home-awards-controls { flex: 0 0 auto; }
.home-awards-controls button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}
.home-awards-controls button:hover,
.home-awards-controls button:focus-visible {
  color: var(--red);
  border-color: var(--white);
  background: var(--white);
}
.home-awards-controls button:disabled { opacity: 0.32; }

.home-awards-viewport { overflow: hidden; }
.home-awards-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 23vw, 300px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
  padding: 2px 2px 14px;
}

.home-awards-track:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 5px;
}

.award-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 36px rgba(31, 4, 8, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.award-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #140d0f;
}

.award-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 480ms cubic-bezier(.2, .8, .2, 1);
}

.award-card-ad .award-card-image img { object-position: center top; }

.award-card figcaption {
  min-height: 150px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.award-card figcaption > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.award-card h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.award-card figcaption p {
  color: var(--muted);
  font-size: 0.84rem;
}

.award-card-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--ink);
  background: #f2d8d2;
}

.award-card-placeholder strong {
  color: var(--red);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
}

.award-card-placeholder span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(31, 4, 8, 0.3);
  }
  .award-card:hover .award-card-image img { transform: scale(1.035); }
}

@media (max-width: 720px) {
  .home-awards-header > div:first-child {
    max-width: calc(100% - 108px);
  }

  .home-awards-track {
    grid-auto-columns: min(82vw, 280px);
  }
}

@media (max-width: 520px) {
  .home-awards-header {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .home-awards-header > div:first-child {
    grid-column: 1 / -1;
    max-width: none;
  }

  .home-awards-controls {
    grid-column: 2;
    justify-self: end;
  }
}

.link-tile {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.08);
}
.band-dark .link-tile h3,
.band-dark .link-tile p { color: var(--white); }
.band-dark .link-tile p { color: rgba(255,241,239,0.78); }
.link-tile:hover,
.link-tile:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
  outline: none;
}

.page-photo {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.page-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .info-tile:hover,
  .page-panel:hover,
  .profile-card:hover,
  .fact-tile:hover,
  .quote-card:hover {
    transform: translateY(-5px);
    border-color: rgba(183, 22, 40, 0.22);
    box-shadow: 0 20px 42px rgba(43, 13, 17, 0.14);
  }

  .metric-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 18px 34px rgba(35, 4, 8, 0.16);
  }

  .link-tile:hover,
  .link-tile:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(43, 13, 17, 0.14);
  }

  .page-photo:hover img,
  .hero-poster:hover img {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-tile,
  .page-panel,
  .profile-card,
  .fact-tile,
  .link-tile,
  .quote-card,
  .metric-tile,
  .page-photo img,
  .hero-poster img {
    transition: none;
  }

  .info-tile:hover,
  .page-panel:hover,
  .profile-card:hover,
  .fact-tile:hover,
  .link-tile:hover,
  .quote-card:hover,
  .metric-tile:hover,
  .page-photo:hover img,
  .hero-poster:hover img {
    transform: none;
  }
}

/* Community Directory */
.community-page { background: var(--surface); }

.platform-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.community-page .site-nav {
  position: fixed;
  inset: 0 0 auto;
  margin-inline: auto;
}

.community-hero {
  color: var(--white);
  background: linear-gradient(120deg, #470810, #8d1724);
}

.community-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr);
  gap: clamp(42px, 8vw, 126px);
  align-items: center;
  padding-top: clamp(148px, 12vw, 176px);
  padding-bottom: clamp(58px, 7vw, 82px);
}

.community-hero .page-kicker { margin-bottom: 22px; }

.community-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 5.6vw, 5.8rem);
  line-height: .92;
  text-wrap: balance;
}

.community-hero-layout > p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 244, 237, .84);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.6;
}

.community-signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  list-style: none;
}

.community-signal-band {
  padding: 16px 0 24px;
  color: var(--ink);
  background: #680d18;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.community-signal li {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 136px;
  padding: 20px clamp(16px, 2.4vw, 30px);
  border: 1px solid rgba(92, 18, 27, .16);
  border-radius: 6px;
  background: #f4dfd7;
  box-shadow: 0 8px 22px rgba(38, 4, 11, .12);
}

.community-signal strong {
  color: var(--red);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.community-signal span {
  color: #73585d;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.community-paths {
  padding: clamp(64px, 9vw, 112px) 0;
  background: #211013;
  color: var(--white);
}

.community-paths-layout {
  display: grid;
  grid-template-columns: minmax(230px, .66fr) minmax(0, 1.34fr);
  gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.community-paths header {
  display: grid;
  gap: 16px;
}

.community-paths .section-kicker {
  justify-self: start;
  color: #ffd6c9;
  background: rgba(255, 214, 201, .11);
  border-color: rgba(255, 214, 201, .22);
}

.community-paths h2 {
  max-width: 7ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5.6vw, 5.5rem);
  line-height: .94;
  text-wrap: balance;
}

.community-paths header > p:last-child {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 244, 237, .72);
  font-size: 1rem;
  line-height: 1.65;
}

.community-path-list { border-top: 1px solid rgba(255, 244, 237, .22); }

.community-path {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 18px;
  row-gap: 7px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 244, 237, .22);
  color: inherit;
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}

.community-path > span {
  grid-row: 1 / span 2;
  color: var(--peach);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.community-path strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.community-path small {
  color: rgba(255, 244, 237, .7);
  font-size: .9rem;
  line-height: 1.45;
}

.community-path b {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--peach);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.community-path:hover,
.community-path:focus-visible {
  padding-inline: 12px;
  color: var(--peach);
  outline: none;
}

.community-path:hover b,
.community-path:focus-visible b { transform: translateY(5px); }

.community-directory { padding: clamp(70px, 10vw, 134px) 0; }

.community-heading {
  display: grid;
  gap: 16px;
  max-width: 700px;
  margin-bottom: clamp(44px, 7vw, 82px);
}

.community-heading .section-kicker {
  color: #8f1723;
  background: rgba(183, 22, 40, .08);
  border-color: rgba(183, 22, 40, .16);
}

.community-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: .94;
  text-wrap: balance;
}

.community-heading > p:last-child {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.directory-groups { border-top: 1px solid var(--border-strong); }

.directory-group {
  scroll-margin-top: 112px;
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 100px);
  padding: clamp(30px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--border-strong);
}

.directory-group-heading { display: flex; gap: 18px; align-items: flex-start; }

.directory-index {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.directory-group-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.directory-group-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  line-height: 1;
}

.directory-empty,
.directory-entry {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-3);
}

.directory-empty { flex-direction: column; align-items: flex-start; justify-content: center; }
.directory-empty strong, .directory-entry strong { font-size: 1.15rem; }
.directory-empty span, .directory-entry small { color: var(--muted); line-height: 1.5; }

.directory-list {
  display: grid;
  gap: 10px;
}

.directory-account {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-3);
}

.directory-account > div:first-child {
  display: grid;
  gap: 5px;
}

.directory-account strong { font-size: 1.08rem; }

.directory-account small {
  color: var(--muted);
  line-height: 1.4;
}

.directory-platform-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.directory-platform-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--red);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.directory-platform-links img,
.directory-platform-links svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.directory-platform-links svg { fill: currentColor; }

.directory-platform-links .weverse-mark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: #32a99e;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.directory-platform-links a:hover,
.directory-platform-links a:focus-visible {
  transform: translateY(-2px);
  background: var(--red);
  color: var(--white);
  outline: none;
}

.directory-entry {
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.directory-entry:hover,
.directory-entry:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(183, 22, 40, .45);
  box-shadow: 8px 8px 0 rgba(183, 22, 40, .12);
  outline: none;
}

.directory-platform {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.directory-entry > span:nth-child(2) { display: grid; gap: 5px; }
.directory-arrow { margin-left: auto; color: var(--red); font-size: 1.8rem; font-weight: 700; }

/* Creator's Hub */
.creators-page {
  background: var(--surface);
}

.creator-hero {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  background:
    linear-gradient(115deg, #260507 0%, #5f1018 58%, #356f73 100%);
  color: var(--white);
}

.creator-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 48%);
}

.creator-hero-layout {
  position: relative;
  z-index: 1;
  min-height: clamp(520px, 68vh, 700px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) 0;
}

.creator-hero-copy {
  display: grid;
  gap: 22px;
}

.creator-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: .88;
  color: var(--white);
  text-wrap: balance;
}

.creator-hero-copy > p:last-child {
  max-width: 58ch;
  color: rgba(255, 244, 240, .82);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.75;
}

.creator-logo {
  width: min(100%, 380px);
  margin: 0;
  justify-self: end;
}

.creator-logo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255,255,255,.94);
  border-radius: 8px;
  box-shadow: 22px 24px 0 rgba(31, 73, 76, .52), 0 28px 70px rgba(0,0,0,.28);
}

.creator-logo figcaption {
  margin-top: 18px;
  color: rgba(255, 244, 240, .72);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.creator-messages {
  padding: clamp(70px, 10vw, 132px) 0;
  background: var(--surface);
}

.creator-messages-layout {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.creator-messages-heading {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}

.creator-messages-heading .section-kicker {
  color: #8f1723;
  background: rgba(183, 22, 40, .08);
  border-color: rgba(183, 22, 40, .16);
}

.creator-messages-heading h2 {
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  line-height: .94;
  text-wrap: balance;
}

.creator-messages-heading > p:last-child {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.7;
}

.creator-message-list {
  display: grid;
  gap: 24px;
}

.creator-message-card {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  gap: 42px;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fffaf7;
  box-shadow: 14px 14px 0 #dfeff0;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease;
}

.creator-message-card:hover {
  transform: translateY(-5px);
  box-shadow: 14px 20px 0 #dfeff0;
}

.creator-message-number {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.creator-message-card blockquote {
  margin: 0;
}

.creator-message-card blockquote p {
  max-width: 22ch;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.creator-message-card-long blockquote p {
  max-width: 32ch;
  font-size: clamp(1.5rem, 2.8vw, 2.65rem);
  line-height: 1.24;
}

.creator-message-tag {
  display: inline-block;
  margin-top: 22px;
  color: var(--red);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 900;
}

.creator-message-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
}

.creator-x-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.creator-message-author > span:last-child {
  display: grid;
  gap: 4px;
}

.creator-message-author small {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.creator-message-author a {
  color: #256d72;
  font-weight: 900;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.footer-credit {
  color: inherit;
  text-decoration: none;
}

.footer-credit:hover strong,
.footer-credit:focus-visible strong {
  color: var(--peach);
}

.footer-credit:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 8px;
}

.motion-ready .creator-hero-copy > *,
.motion-ready .creator-logo {
  animation: hero-arrive 760ms both cubic-bezier(.2, .8, .2, 1);
}

.motion-ready .community-hero-copy > *,
.motion-ready .community-hero-layout > p {
  animation: hero-arrive 760ms both cubic-bezier(.2, .8, .2, 1);
}

.motion-ready .community-hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.motion-ready .community-hero-layout > p { animation-delay: 170ms; }

.motion-ready .creator-hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.motion-ready .creator-hero-copy > *:nth-child(3) { animation-delay: 160ms; }
.motion-ready .creator-logo { animation-delay: 190ms; }

@media (max-width: 900px) {
  .community-hero-layout,
  .creator-hero-layout,
  .creator-messages-layout {
    grid-template-columns: 1fr;
  }

  .community-hero-layout {
    justify-items: center;
    text-align: center;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .community-hero-layout > p { margin-inline: auto; }

  .community-signal { width: min(620px, calc(100% - 32px)); }

  .community-paths-layout { grid-template-columns: 1fr; }

  .community-paths header {
    justify-items: center;
    text-align: center;
  }

  .community-paths .section-kicker { justify-self: center; }
  .community-paths header > p:last-child { margin-inline: auto; }

  .directory-group { grid-template-columns: 1fr; }

  .creator-hero-layout {
    min-height: 0;
  }

  .creator-logo {
    width: min(72vw, 360px);
    justify-self: center;
  }

  .creator-logo img {
    box-shadow: 0 22px 0 rgba(31, 73, 76, .52), 0 28px 70px rgba(0,0,0,.28);
  }

  .creator-logo figcaption {
    text-align: center;
  }

  .creator-messages-heading {
    position: static;
    justify-items: center;
    text-align: center;
  }

  .creator-messages-heading > p:last-child {
    margin-inline: auto;
  }

  .creator-messages-heading .section-kicker {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .community-hero-layout {
    gap: 24px;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .community-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 13vw, 4.1rem);
  }

  .community-heading { text-align: center; justify-items: center; }
  .community-heading > p:last-child { margin-inline: auto; }
  .community-signal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .community-signal li { min-height: 116px; padding: 15px; }
  .community-paths { padding: 62px 0; }
  .community-path { column-gap: 13px; }
  .community-path strong { font-size: 1.14rem; }
  .community-path small { font-size: .84rem; }
  .directory-group { gap: 22px; }
  .directory-empty, .directory-entry { min-height: 108px; padding: 22px; }

  .directory-account { align-items: flex-start; flex-direction: column; }
  .directory-platform-links { justify-content: flex-start; }

  .creator-hero-layout {
    padding: 54px 0 72px;
  }

  .creator-hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
    line-height: .94;
    overflow-wrap: anywhere;
  }

  .creator-logo {
    width: min(82vw, 320px);
  }

  .creator-message-card {
    min-height: 390px;
    gap: 32px;
    box-shadow: 8px 8px 0 #dfeff0;
  }

  .creator-message-card-long blockquote p {
    font-size: clamp(1.3rem, 5.8vw, 1.75rem);
    line-height: 1.28;
  }

  .creator-message-card:hover {
    box-shadow: 8px 12px 0 #dfeff0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creator-hero-copy > *,
  .creator-logo,
  .creator-message-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.footer-band {
  padding: 28px 0 46px;
  background: #170305;
}
.footer-inner {
  width: var(--shell);
  color: rgba(255,241,239,0.82);
}
.footer-inner strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.footer-about {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 241, 239, 0.2);
}

.footer-credit > span:last-child {
  display: grid;
  gap: 2px;
}

.footer-credit small {
  color: rgba(255, 241, 239, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-credit strong {
  font-size: 0.92rem;
  white-space: nowrap;
}

.footer-credit-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 239, 0.24);
  border-radius: 8px;
  background: #fff1ef;
}

.footer-credit-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-credit {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 241, 239, 0.2);
    border-left: 0;
  }
}

.games-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 205, 160, 0.22), transparent 16%),
    radial-gradient(circle at 84% 12%, rgba(255, 145, 172, 0.18), transparent 18%),
    linear-gradient(180deg, #fff6f1 0%, #fffaf8 50%, #fff1ec 100%);
}

.games-shell {
  width: var(--shell);
  margin: 24px auto 0;
  display: grid;
  gap: 18px;
}

.games-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,243,236,0.96));
  border: 1px solid rgba(183, 22, 40, 0.12);
  box-shadow: 0 16px 32px rgba(74, 14, 20, 0.08);
}

.games-intro-copy {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.games-intro-copy h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.96;
}

.games-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.play-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(183, 22, 40, 0.12);
  box-shadow: 0 18px 34px rgba(55, 13, 18, 0.1);
  text-decoration: none;
  display: grid;
}

.play-card-art {
  position: relative;
  min-height: 230px;
  background: var(--game-bg) center/cover;
}

.play-card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(53, 11, 16, 0.18));
}

.play-card-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.play-card-copy {
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}

.play-card-copy h2 { font-size: 1.45rem; line-height: 1; }
.play-card-copy p { color: var(--muted); }
.play-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.play-card-meta span {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(183, 22, 40, 0.08);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-inner,
  .story-layout,
  .page-hero,
  .gallery-grid,
  .page-grid,
  .profile-grid,
  .games-card-grid {
    grid-template-columns: 1fr;
  }

  .identity-grid,
  .games-grid,
  .links-grid,
  .facts-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-poster { margin: 0 auto; }
}

@media (max-width: 720px) {
  .site-nav { width: calc(100% - 20px); padding-top: 10px; }
  .nav-frame { min-height: 68px; padding: 12px 14px; border-radius: 20px; }
  .nav-panel { top: 10px; right: 10px; width: calc(100vw - 20px); min-height: calc(100vh - 20px); padding-top: 82px; border-radius: 28px; }
  .hero-band,
  .page-hero-band { border-radius: 28px; }
  .hero-inner { padding: 42px 0 34px; }
  .hero-band .hero-inner { min-height: auto; }
  .hero-copy h1,
  .page-hero-copy h1,
  .section-heading h2,
  .poster-copy h2,
  .games-intro-copy h1 { max-width: none; }
  .identity-grid,
  .games-grid,
  .links-grid,
  .facts-grid,
  .metrics-grid,
  .gallery-stack,
  .page-grid,
  .profile-grid,
  .games-card-grid { grid-template-columns: 1fr; }
  .brand-copy span { font-size: 0.78rem; }
}


/* design cleanup pass 2026-07-10 */
a,
.link-tile,
.play-card,
.game-tile {
  text-decoration: none;
}

.link-tile h3,
.link-tile p,
.play-card h2,
.play-card p,
.game-tile strong,
.game-tile p {
  text-decoration: none;
}

.nav-panel {
  width: min(420px, calc(100vw - 32px));
}

.alias-strip {
  gap: 8px;
  align-items: center;
}

.alias-strip span {
  padding: 12px;
  font-size: 0.92rem;
}

.inline-link {
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

.story-copy .inline-link {
  margin-top: 4px;
}

.page-hero-band {
  min-height: auto;
  background-position: center;
}

.page-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
  min-height: min(520px, calc(100vh - 140px));
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(42px, 7vw, 78px);
}

.page-hero .page-photo {
  display: block;
}

.page-kicker,
.hero-kicker,
.section-kicker {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
}

.page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.25rem, 7vw, 4.4rem);
  line-height: 1;
}

.page-hero-copy .lead {
  max-width: 46rem;
}

.poster-frame {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.28), rgba(255, 247, 242, 0.5)),
    url('/assets/250407-ahof-x-update-jl-v0-t31aw70d6ete1.jpg') center/cover;
}

.poster-frame::before {
  background: linear-gradient(180deg, rgba(70, 10, 16, 0.08), rgba(70, 10, 16, 0.2));
}

.poster-copy {
  inset: auto 18px 18px 18px;
  max-width: 720px;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(255, 250, 246, 0.94);
  border-color: rgba(125, 36, 42, 0.22);
}

.poster-copy p {
  color: var(--muted);
}

.poster-copy .section-kicker {
  color: var(--red);
  background: rgba(183, 22, 40, 0.1);
}

.band-dark .game-tile {
  background: linear-gradient(180deg, rgba(85, 18, 26, 0.96), rgba(39, 6, 10, 0.98));
  border-color: rgba(255, 231, 226, 0.18);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.band-dark .game-tile::before {
  opacity: 0.2;
}

.band-dark .game-tile::after {
  background: linear-gradient(180deg, rgba(105, 16, 26, 0.18), rgba(17, 2, 4, 0.92));
}

.games-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 145, 172, 0.22), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(255, 213, 120, 0.24), transparent 20%),
    linear-gradient(180deg, #fff7fb 0%, #fffaf5 46%, #fff1f0 100%);
}

.games-shell {
  gap: 28px;
  padding-bottom: 54px;
}

.games-intro {
  padding: 18px 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.games-page .section-kicker {
  color: var(--red);
  background: rgba(183, 22, 40, 0.08);
  border-color: rgba(183, 22, 40, 0.12);
}

.games-intro-copy {
  width: 100%;
  max-width: none;
}

.games-intro-copy h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 0.98;
}

.games-card-grid {
  gap: 20px;
}

.play-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 2px solid rgba(183, 22, 40, 0.12);
  box-shadow: 0 18px 36px rgba(74, 14, 20, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.play-card:hover,
.play-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(183, 22, 40, 0.24);
  box-shadow: 0 24px 46px rgba(74, 14, 20, 0.18);
  outline: none;
}

.play-card-art {
  min-height: 190px;
  display: grid;
  place-items: center;
  background: var(--card-art-bg);
  isolation: isolate;
}

.play-card-art::before {
  content: var(--card-symbol);
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.34);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(55, 13, 18, 0.16);
  z-index: 1;
}

.play-card-art::after {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.5) 0 7%, transparent 8%),
    radial-gradient(circle at 82% 72%, rgba(255,255,255,0.42) 0 8%, transparent 9%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 10px, transparent 10px 20px);
}

.play-card-memory {
  --card-symbol: 'JL';
  --card-art-bg: linear-gradient(135deg, #ff7fa3, #ffbd7d);
}

.play-card-puzzle {
  --card-symbol: '3x3';
  --card-art-bg: linear-gradient(135deg, #ffcf5c, #ff6f7f);
}

.play-card-whack {
  --card-symbol: 'GO';
  --card-art-bg: linear-gradient(135deg, #ff5670, #b71628);
}

.play-card-badge {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 18px rgba(74, 14, 20, 0.12);
}

.play-card-copy {
  gap: 12px;
  padding: 20px;
}

.play-card-copy::after {
  content: 'Play';
  justify-self: start;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  margin-top: 2px;
}

.play-card-meta {
  gap: 7px;
}

.games-page .footer-band {
  margin-top: 34px;
  padding-top: 38px;
}

@media (max-width: 900px) {
  .nav-panel {
    left: 10px;
    right: 10px;
    width: auto;
    min-height: calc(100vh - 20px);
    padding: 82px 18px 22px;
  }

  .page-hero-band {
    border-radius: 26px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .page-hero .page-photo {
    display: none;
  }

  .page-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }
}

@media (max-width: 720px) {
  .alias-strip {
    gap: 7px;
  }

  .alias-strip span {
    font-size: 0.86rem;
    padding: 10px;
  }

  .games-intro {
    align-items: flex-start;
  }

  .play-card-art {
    min-height: 160px;
  }

  .poster-frame {
    min-height: 360px;
  }

  .poster-copy {
    position: relative;
    inset: auto;
    margin: 18px;
  }
}


/* navigation drawer visibility fix */
.nav-drawer {
  visibility: hidden;
  overflow: hidden;
}

.site-nav.is-open .nav-drawer {
  visibility: visible;
}

.nav-panel {
  transform: translateX(calc(100% + 40px));
}

.site-nav.is-open .nav-panel {
  transform: translateX(0);
}

@media (max-width: 900px) {
  .nav-backdrop {
    background: rgba(10, 0, 2, 0.68);
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    height: 100dvh;
    padding: 92px 22px 28px;
    border-radius: 0;
    transform: translateX(100vw);
    overflow-y: auto;
  }

  .site-nav.is-open .nav-panel {
    transform: translateX(0);
  }
}

/* career poster readability fix */
.poster-frame {
  min-height: 390px;
  border: 1px solid rgba(255, 238, 232, 0.16);
  background:
    linear-gradient(90deg, rgba(38, 5, 8, 0.72), rgba(95, 15, 22, 0.42)),
    url('/assets/250407-ahof-x-update-jl-v0-t31aw70d6ete1.jpg') center/cover;
}

.poster-frame::before {
  background: linear-gradient(180deg, rgba(23, 3, 5, 0.08), rgba(23, 3, 5, 0.18));
}

.poster-copy {
  max-width: min(620px, calc(100% - 32px));
  padding: clamp(18px, 3vw, 24px);
  border-radius: 24px;
  background: rgba(255, 248, 244, 0.9);
  box-shadow: 0 18px 42px rgba(20, 4, 7, 0.22);
}

.poster-copy h2 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1.03;
}

.poster-copy p {
  color: #5f4247;
}

.poster-copy .section-kicker {
  color: #9f1423;
  background: rgba(183, 22, 40, 0.1);
  border-color: rgba(183, 22, 40, 0.2);
}

/* force readable text inside career poster card */
.band-dark .poster-copy p,
.poster-copy p {
  color: #5f4247;
}

.band-dark .poster-copy .section-kicker,
.poster-copy .section-kicker {
  color: #9f1423;
  background: rgba(183, 22, 40, 0.1);
  border-color: rgba(183, 22, 40, 0.2);
}

/* game card asset icons */
.games-card-grid {
  gap: clamp(28px, 3vw, 42px);
}

.play-card-art::before {
  content: "";
  width: min(144px, 44%);
  height: auto;
  aspect-ratio: 1;
  background: var(--card-icon) center / calc(100% - 18px) calc(100% - 18px) no-repeat;
}

.play-card-memory {
  --card-icon: url('/assets/brain.png');
}

.play-card-quiz {
  --card-icon: url('https://res.cloudinary.com/mkf2w5rv/image/upload/v1784125685/G4MfFxHXUAMIMEn_bhhcsh.jpg');
  --card-art-bg: linear-gradient(135deg, #b7162c, #ef9b72);
}

.play-card-quiz .play-card-art::before {
  background-size: cover;
  background-position: center 22%;
}

.play-card-puzzle {
  --card-icon: url('/assets/puzzle.png');
}

.play-card-whack {
  --card-icon: url('/assets/whack.png');
}

.play-card-spotlight {
  --card-art-bg: linear-gradient(135deg, #2f9998, #e4a315 48%, #b7162c);
}

.play-card-whack .play-card-art::before {
  /* content: "\2605"; */
  /* color: #d79a08; */
  /* background: #fff; */
  /* font-size: clamp(4rem, 8vw, 6.6rem); */
  line-height: 1;
}

.play-card-spotlight {
  --card-icon: url('/assets/spotlight-flashlight.png');
}

.play-card-spotlight .play-card-art::before {
  background-size: calc(100% - 18px) auto;
}

.play-card-jeguri {
  --card-icon: url('/assets/hidden-jeguri/jeguri-outline.png');
  --card-art-bg: linear-gradient(135deg, #ffd166, #ff8a72 54%, #b71628);
}

@media (min-width: 981px) {
  .games-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .games-card-grid > .play-card:last-child:nth-child(odd) {
    width: calc(50% - clamp(14px, 1.5vw, 21px));
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.play-card-art {
  height: 210px;
  min-height: 0;
}

@media (max-width: 720px) {
  .games-card-grid {
    gap: 24px;
  }

  .play-card-art {
    height: 180px;
  }
}

/* keep laptop navigation compact while avoiding the awkward right-side gap */
@media (min-width: 901px) and (max-width: 1800px) {
  .nav-backdrop {
    background: rgba(10, 0, 2, 0.68);
  }

  .nav-panel {
    position: fixed;
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: min(560px, calc(100vw - 36px));
    min-height: 0;
    height: auto;
    padding: 92px 24px 28px;
    border-radius: 30px;
    transform: translateX(calc(100% + 36px));
    overflow-y: auto;
  }

  .site-nav.is-open .nav-panel {
    transform: translateX(0);
  }
}

/* Page identities: shared type and color, deliberately different reading rhythms. */
.home-start { padding: clamp(64px, 9vw, 116px) 0; }
.home-intro-film {
  padding: clamp(64px, 8vw, 108px) 0;
  color: var(--white);
  background: #211013;
}
.home-intro-film-layout {
  display: grid;
  grid-template-columns: minmax(240px, .68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 8vw, 124px);
  align-items: center;
}
.home-intro-film-copy { display: grid; gap: 18px; }
.home-intro-film-copy .section-kicker {
  justify-self: start;
  color: #ffd6c9;
  background: rgba(255, 214, 201, .11);
  border-color: rgba(255, 214, 201, .22);
}
.home-intro-film-copy h2 {
  max-width: 7ch;
  color: var(--white);
  font-size: clamp(2.7rem, 5.7vw, 5.7rem);
  line-height: .92;
  text-wrap: balance;
}
.home-intro-film-copy > p:last-child {
  max-width: 33ch;
  color: rgba(255, 241, 239, .76);
  font-size: 1.05rem;
  line-height: 1.75;
}
.home-intro-film-player {
  width: min(100%, 560px);
  justify-self: center;
  margin: 0;
}
.home-intro-film-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 239, .2);
  border-radius: 8px;
  background: #0d0607;
  box-shadow: 12px 12px 0 rgba(183, 22, 40, .4);
}
.home-intro-film-embed.is-loading {
  min-height: 0;
  aspect-ratio: 560 / 421;
}
.home-intro-film-embed.is-ready {
  min-height: 0;
  aspect-ratio: auto;
}
.home-intro-film-embed .twitter-tweet {
  width: 100% !important;
  margin: 0 auto !important;
  visibility: hidden;
}
.home-intro-film-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  opacity: 0;
  transition: opacity 220ms ease;
}
.home-intro-film-embed.is-ready iframe { opacity: 1; }
.home-intro-film-loader {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  color: rgba(255, 241, 239, .78);
  text-align: center;
  background: #0d0607;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.home-intro-film-loader > span {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 214, 201, .2);
  border-top-color: #ffd6c9;
  border-radius: 50%;
  animation: gallery-spin 760ms linear infinite;
}
.home-intro-film-loader strong {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-intro-film-loader a {
  display: none;
  color: var(--peach);
  font-weight: 900;
  text-underline-offset: 4px;
}
.home-intro-film-embed.is-slow .home-intro-film-loader > span { display: none; }
.home-intro-film-embed.is-slow .home-intro-film-loader strong::after { content: " is taking longer than expected"; }
.home-intro-film-embed.is-slow .home-intro-film-loader a { display: inline; }
.home-intro-film-embed.is-ready .home-intro-film-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-intro-film-player figcaption {
  margin-top: 14px;
  color: rgba(255, 241, 239, .66);
  font-size: .84rem;
  line-height: 1.5;
}
.home-intro-film-player figcaption a { color: var(--peach); font-weight: 900; text-underline-offset: 4px; }
.home-start-heading {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 38px;
}
.home-start-heading h2,
.home-story-copy h2,
.home-moments-copy h2,
.home-arcade-layout h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  text-wrap: balance;
}
.home-start-heading > p:last-child,
.home-moments-copy > p,
.home-arcade-copy > p:last-child { color: var(--muted); line-height: 1.7; }
.home-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-top: 1px solid var(--border-strong);
  border-left: 1px solid var(--border-strong);
}
.home-route {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  text-decoration: none;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: var(--surface);
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}
.home-route span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .08em;
}
.home-route strong { font-size: 1.6rem; line-height: 1; }
.home-route p { color: var(--muted); line-height: 1.65; }
.home-route:hover,
.home-route:focus-visible {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: var(--red);
  transform: translateY(-7px);
  outline: none;
}
.home-route:hover span,
.home-route:focus-visible span,
.home-route:hover p,
.home-route:focus-visible p { color: inherit; }

.home-story { padding: clamp(62px, 9vw, 112px) 0; }
.home-story-layout {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 94px);
  align-items: center;
}
.home-story-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 4px 42px 4px 42px;
}
.home-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(22, 2, 5, .56));
}
.home-story-image img { width: 100%; height: 100%; object-fit: cover; }
.home-story-copy { display: grid; gap: 20px; max-width: 670px; }
.home-story-copy > p { color: rgba(255, 241, 239, .76); line-height: 1.8; font-size: 1.08rem; }
.home-story-points { display: flex; flex-wrap: wrap; gap: 9px; }
.home-story-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.17);
  color: rgba(255,241,239,.92);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.home-story-copy .inline-link { justify-self: start; margin-top: 4px; }

.home-moments { padding: clamp(64px, 9vw, 104px) 0; }
.home-moments-layout {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}
.home-moments-copy { display: grid; gap: 18px; }
.home-moments-copy .inline-link { justify-self: start; }
.home-moments-strip {
  display: grid;
  grid-template-columns: 1.15fr .7fr .85fr;
  gap: 12px;
  min-height: 340px;
}
.home-moment-photo {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(42, 10, 14, .14);
}
.home-moment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-moment-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 8px;
}
.home-moment-photo figcaption a {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(25, 5, 8, .78);
  color: rgba(255,247,244,.94);
  font-size: .64rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.home-moment-photo:nth-child(2) { margin-top: 42px; height: calc(100% - 42px); }
.home-moment-photo:nth-child(3) { margin-bottom: 36px; height: calc(100% - 36px); }
.home-awards-credit {
  margin-top: 14px;
  color: rgba(255,241,239,.72);
  font-size: .78rem;
  line-height: 1.5;
}
.home-arcade-band { background: #f4b6a6; padding: 34px 0; }
.home-arcade-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
}
.home-arcade-copy { display: grid; gap: 14px; }
.home-arcade-copy > p:last-child { max-width: 560px; }
.home-arcade-layout .section-kicker {
  color: var(--red);
  background: rgba(255,255,255,.35);
  border-color: rgba(111, 20, 31, .14);
}
.home-arcade-layout h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.home-arcade-layout .inline-link { color: var(--white); background: var(--red); box-shadow: none; }

.profile-page { background: #4c0b12; }
.profile-page .page-hero-band {
  background-image: linear-gradient(90deg, rgba(26, 5, 7, .84) 0%, rgba(74, 10, 15, .66) 42%, rgba(116, 18, 26, .18) 100%), url('https://res.cloudinary.com/mkf2w5rv/image/upload/v1784125768/HLqwFESaEAAsbDe_1_jobidf.jpg');
  background-position: 0 10%;
}
.profile-dossier-section { padding: clamp(66px, 9vw, 110px) 0; }
.profile-dossier {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(250px, .8fr) minmax(320px, 1.15fr);
  gap: 32px;
  align-items: end;
}
.profile-dossier header { display: grid; gap: 16px; align-self: start; }
.profile-dossier header h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: .94; text-wrap: balance; }
.profile-dossier header > p:last-child { color: var(--muted); line-height: 1.7; }
.profile-nameplate { padding: 26px; background: var(--red); color: var(--white); }
.profile-nameplate span { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.profile-nameplate strong { display: block; margin: 26px 0 8px; font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: .9; }
.profile-nameplate i { font-style: normal; font-size: .55em; }
.profile-nameplate p { color: rgba(255,241,239,.8); }
.profile-facts-list { margin: 0; border-top: 1px solid var(--border-strong); }
.profile-facts-list div { display: grid; grid-template-columns: 135px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-strong); }
.profile-facts-list dt { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-facts-list dd { margin: 0; font-weight: 750; }
.profile-facts-list a { color: var(--red); font-weight: 900; text-underline-offset: 4px; }
.profile-biography-band { padding: clamp(68px, 9vw, 112px) 0; }
.profile-biography-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}
.profile-biography-heading { min-width: 0; display: grid; gap: 18px; position: sticky; top: 118px; }
.profile-biography-heading h2 { font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: .94; text-wrap: balance; }
.profile-biography-copy { display: grid; gap: 20px; }
.profile-biography-copy > p:not(.profile-citation-line) { color: #4f3538; font-size: 1.07rem; line-height: 1.85; }
.profile-citation-line { padding-top: 18px; border-top: 1px solid var(--border-strong); color: var(--muted); font-size: .82rem; line-height: 1.65; }
.profile-citation-line a { color: var(--red); font-weight: 800; text-underline-offset: 3px; }
.profile-chapter-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border-strong); }
.profile-chapter-list li { display: grid; grid-template-columns: 58px 1fr; gap: 14px; padding: 17px 16px 17px 0; border-right: 1px solid var(--border-strong); border-bottom: 1px solid var(--border-strong); }
.profile-chapter-list li:not(:first-child) { padding-left: 16px; }
.profile-chapter-list li:last-child { border-right: 0; }
.profile-chapter-list span { color: var(--red); font-size: .82rem; font-weight: 900; }
.profile-chapter-list p { color: var(--muted); font-size: .88rem; font-weight: 700; line-height: 1.45; }
.profile-notes-band { padding: clamp(64px, 8vw, 100px) 0; background: #261014; color: var(--white); }
.profile-notes-layout { display: grid; grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(0, .8fr)); gap: 0; }
.profile-notes-heading { padding: 22px 30px 22px 0; display: grid; align-content: end; gap: 18px; }
.profile-notes-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: .98; }
.profile-notes-layout > article { padding: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.profile-notes-layout > article span { display: block; color: var(--rose); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.profile-notes-layout > article h3 { margin: 50px 0 12px; font-size: 1.5rem; }
.profile-notes-layout > article p { color: rgba(255,241,239,.75); line-height: 1.7; }
.profile-personal-band { padding: clamp(68px, 9vw, 108px) 0; }
.profile-personal-layout { display: grid; gap: 38px; }
.profile-personal-layout > header { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(300px, 1fr); gap: 14px 46px; align-items: end; }
.profile-personal-layout > header .section-kicker { grid-column: 1 / -1; justify-self: start; }
.profile-personal-layout > header h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: .94; text-wrap: balance; }
.profile-personal-layout > header > p:last-child { max-width: 520px; color: var(--muted); line-height: 1.7; }
.profile-personal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--border-strong); }
.profile-personal-grid article { min-height: 250px; padding: 24px; border-right: 1px solid var(--border-strong); transition: background 180ms ease, transform 180ms ease; }
.profile-personal-grid article:last-child { border-right: 0; }
.profile-personal-grid article:hover { background: var(--surface-2); transform: translateY(-4px); }
.profile-personal-grid span { color: var(--red); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.profile-personal-grid h3 { margin: 48px 0 12px; font-size: 1.35rem; line-height: 1.1; }
.profile-personal-grid p { color: var(--muted); line-height: 1.65; }
.profile-context-note { max-width: 870px; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.profile-context-note a { color: var(--red); font-weight: 800; text-underline-offset: 3px; }
.profile-solo-band { padding: clamp(62px, 8vw, 96px) 0; background: #b71628; color: var(--white); }
.profile-solo-layout { display: grid; grid-template-columns: minmax(300px, .84fr) minmax(360px, 1.16fr); gap: clamp(36px, 8vw, 112px); align-items: center; }
.profile-solo-art { position: relative; margin: 0; }
.profile-solo-art img { width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 22px 22px 0 #71101b; }
.profile-solo-art figcaption { position: absolute; left: -14px; bottom: 22px; padding: 10px 14px; background: var(--surface); color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.profile-solo-copy { display: grid; gap: 18px; }
.profile-solo-copy .section-kicker { justify-self: start; background: rgba(255,255,255,.13); }
.profile-solo-copy h2 { font-size: clamp(5.4rem, 13vw, 10rem); line-height: .72; letter-spacing: 0; }
.profile-solo-lead { max-width: 580px; font-size: clamp(1.35rem, 2.7vw, 2.05rem); font-weight: 800; line-height: 1.15; }
.profile-solo-copy > p:not(.section-kicker):not(.profile-solo-lead) { max-width: 660px; color: rgba(255,241,239,.82); line-height: 1.8; }
.profile-solo-credits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 8px 0 0; border-top: 1px solid rgba(255,255,255,.25); }
.profile-solo-credits div { display: grid; grid-template-columns: 95px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.profile-solo-credits div:nth-child(odd) { padding-right: 20px; }
.profile-solo-credits div:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.2); }
.profile-solo-credits dt { color: rgba(255,241,239,.66); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-solo-credits dd { margin: 0; font-weight: 800; }
.profile-solo-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.profile-solo-links .inline-link { background: var(--surface); color: var(--red); box-shadow: none; }
.profile-solo-links .profile-link-secondary { border: 1px solid rgba(255,255,255,.28); background: transparent; color: var(--white); }
.profile-works-band { padding: clamp(68px, 9vw, 108px) 0; }
.profile-works-layout { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(38px, 8vw, 110px); align-items: start; }
.profile-works-layout > header { display: grid; gap: 18px; position: sticky; top: 118px; }
.profile-works-layout > header h2 { font-size: clamp(2.25rem, 4.7vw, 4.15rem); line-height: .95; text-wrap: balance; }
.profile-works-layout > header > p:last-of-type { color: var(--muted); line-height: 1.75; }
.profile-works-layout > header .inline-link { justify-self: start; }
.profile-works-list { border-top: 1px solid var(--border-strong); }
.profile-works-list article { display: grid; grid-template-columns: 105px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border-strong); transition: padding 180ms ease, background 180ms ease; }
.profile-works-list article:hover { padding-left: 16px; padding-right: 16px; background: var(--surface-2); }
.profile-works-list time { color: var(--red); font-size: 1.1rem; font-weight: 900; }
.profile-works-list article div { display: grid; grid-template-columns: 112px minmax(130px, .75fr) minmax(170px, 1fr); gap: 18px; align-items: baseline; }
.profile-works-list span { color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.profile-works-list h3 { font-size: 1.3rem; }
.profile-works-list p { color: var(--muted); line-height: 1.5; }
.profile-sources-section { padding: 60px 0; }
.profile-source-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.profile-source-list .link-tile { border-radius: 4px; box-shadow: none; text-decoration: none; }
.profile-source-tag { display: inline-block; margin-bottom: 30px; color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.career-page { background: #401017; }
.career-page .page-hero-band { background-image: linear-gradient(90deg, rgba(24, 4, 7, .88), rgba(80, 14, 24, .67) 54%, rgba(151, 24, 35, .12)), url('/assets/251120-AHOF-SNS-Update-JL-documents-1.jpeg'); }
.career-timeline-section { padding: clamp(68px, 9vw, 120px) 0; }
.career-timeline-heading { display: grid; gap: 16px; max-width: 630px; margin-bottom: 44px; }
.career-timeline-heading h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: .94; text-wrap: balance; }
.career-timeline { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.career-timeline::before { content: ""; position: absolute; top: 12px; bottom: 12px; left: 25%; width: 1px; background: var(--border-strong); }
.career-timeline li { position: relative; display: grid; grid-template-columns: 25% 1fr; gap: 42px; padding: 0 0 42px; }
.career-timeline li:last-child { padding-bottom: 0; }
.career-timeline time { position: relative; padding-right: 42px; color: var(--red); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 900; line-height: 1; text-align: right; }
.career-timeline time::after { content: ""; position: absolute; z-index: 1; top: .15em; right: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px var(--surface); }
.career-timeline li div { max-width: 630px; padding: 2px 0 26px; border-bottom: 1px solid var(--border); }
.career-timeline h3 { margin-bottom: 9px; font-size: 1.45rem; }
.career-timeline p { color: var(--muted); line-height: 1.75; }
.career-highlight-band { padding: clamp(62px, 8vw, 100px) 0; background: #bd1e2d; color: var(--white); }
.career-highlight-layout { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(34px, 8vw, 110px); align-items: center; }
.career-highlight-number { display: grid; justify-items: start; gap: 5px; }
.career-highlight-number span { font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.career-highlight-number strong { font-size: clamp(5.8rem, 15vw, 11rem); line-height: .72; letter-spacing: 0; }
.career-highlight-layout > div:last-child { display: grid; gap: 18px; max-width: 700px; }
.career-highlight-layout h2 { font-size: clamp(2.2rem, 5vw, 4.25rem); line-height: .98; text-wrap: balance; }
.career-highlight-layout p:last-child { color: rgba(255,241,239,.82); line-height: 1.8; }
.career-highlight-band .section-kicker { background: rgba(255,255,255,.12); }
.career-sources-section { padding: 60px 0; }
.career-source-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.career-source-row .link-tile { min-height: 0; border-radius: 3px; box-shadow: none; }

.media-page { background: #32070c; }
.media-hero { position: relative; min-height: min(720px, calc(100vh - 110px)); margin-top: 18px; overflow: hidden; background: linear-gradient(90deg, rgba(30, 4, 8, .84), rgba(71, 10, 18, .48) 53%, rgba(67, 9, 13, .16)), url('https://res.cloudinary.com/mkf2w5rv/image/upload/v1784125767/HLqwFETaIAAm78D_bmxx5s.jpg') center/cover; }
.media-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 45%, rgba(9,1,3,.32)); pointer-events: none; }
.media-hero-inner { position: relative; z-index: 1; display: grid; align-content: end; gap: 18px; min-height: min(720px, calc(100vh - 110px)); padding-top: 70px; padding-bottom: 70px; color: var(--white); }
.media-hero h1 { max-width: 8ch; font-size: clamp(4rem, 11vw, 9.5rem); line-height: .82; letter-spacing: 0; text-wrap: balance; }
.media-hero p:not(.page-kicker) { max-width: 590px; color: rgba(255,241,239,.86); font-size: 1.08rem; line-height: 1.8; }
.media-hero .inline-link { justify-self: start; }
.media-mosaic-section { padding: clamp(58px, 8vw, 100px) 0; }
.media-mosaic { display: grid; grid-template-columns: 1.05fr .75fr 1fr; grid-template-rows: 230px 260px; gap: 14px; }
.media-mosaic-copy { grid-row: 1 / span 2; display: grid; align-content: end; gap: 18px; padding: clamp(24px, 4vw, 52px); background: #f6d9d0; }
.media-mosaic-copy h2 { font-size: clamp(2.25rem, 5vw, 4.4rem); line-height: .94; text-wrap: balance; }
.media-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.media-shot-one { grid-column: 2 / span 2; }
.media-shot-two { grid-column: 2; grid-row: 2; }
.media-shot-three { grid-column: 3; grid-row: 2; }
.media-mosaic-note { align-self: end; margin: 0; padding: 18px; color: var(--white); background: var(--red); line-height: 1.6; }
.media-gallery-section { padding: clamp(58px, 8vw, 100px) 0; }
.media-gallery-feature {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 14px;
}
.media-gallery-copy {
  min-height: 514px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(26px, 4vw, 52px);
  background: #f6d9d0;
}
.media-gallery-copy .section-kicker {
  color: #8f1723;
  background: rgba(255, 250, 246, .68);
  border-color: rgba(143, 23, 35, .24);
}
.media-gallery-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: .94;
  text-wrap: balance;
}
.media-gallery-copy > p:not(.section-kicker) { color: var(--muted); line-height: 1.7; }
.gallery-toggle,
.gallery-load-more {
  appearance: none;
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.gallery-toggle:hover,
.gallery-toggle:focus-visible,
.gallery-load-more:hover,
.gallery-load-more:focus-visible {
  color: var(--red);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(74, 14, 20, .12);
  outline: none;
}
.gallery-toggle:disabled { opacity: .55; cursor: wait; }
.gallery-preview {
  min-height: 514px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: 250px 250px;
  gap: 14px;
}
.gallery-preview-photo,
.gallery-photo {
  appearance: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #ead4ce;
  cursor: zoom-in;
}
.gallery-preview-photo:nth-child(1) { grid-column: 1 / 5; }
.gallery-preview-photo:nth-child(2) { grid-column: 5 / 7; }
.gallery-preview-photo:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
.gallery-preview-photo:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
.gallery-preview-photo:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }
.gallery-preview-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 320ms cubic-bezier(.2, .8, .2, 1), filter 320ms ease;
}
.gallery-preview-photo:nth-child(2) img { object-position: center 12%; }
.gallery-preview-photo:nth-child(3) img { object-position: center 14%; }
.gallery-preview-photo:nth-child(4) img { object-position: center 22%; }
.gallery-preview-photo:nth-child(5) img { object-position: center 42%; }
.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 320ms cubic-bezier(.2, .8, .2, 1), filter 320ms ease;
}
.gallery-preview-photo::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease, background 180ms ease;
}
.gallery-photo:hover img,
.gallery-photo:focus-visible img { transform: scale(1.035); filter: saturate(1.06); }
.gallery-preview-photo:hover img,
.gallery-preview-photo:focus-visible img { transform: scale(1.035); filter: saturate(1.06); }
.gallery-preview-photo:focus-visible,
.gallery-photo:focus-visible { outline: none; }
.gallery-preview-photo:focus-visible::after,
.gallery-photo:focus-visible::after { border-color: var(--red); }
.gallery-loading {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 100%;
  color: var(--muted);
}
.gallery-expanded {
  display: grid;
  gap: 24px;
  padding-top: clamp(48px, 7vw, 78px);
}
.gallery-expanded[hidden],
.gallery-load-more[hidden] { display: none !important; }
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-strong);
}
.gallery-toolbar > p { color: var(--muted); font-size: .84rem; white-space: nowrap; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.gallery-filters button {
  appearance: none;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.gallery-filters button:hover,
.gallery-filters button:focus-visible,
.gallery-filters button[aria-pressed="true"] {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  outline: none;
}
.gallery-grid { columns: 4 220px; column-gap: 12px; }
.gallery-photo {
  display: block;
  break-inside: avoid;
  margin: 0 0 12px;
}
.gallery-photo img { height: auto; aspect-ratio: auto; }
.gallery-photo > .gallery-photo-label {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(26, 3, 6, .72);
  font-size: .68rem;
  font-weight: 800;
}
.gallery-photo-label small {
  display: block;
  margin-top: 2px;
  color: rgba(255,241,239,.74);
  font-size: .58rem;
  font-weight: 650;
}
.gallery-load-more { justify-self: center; }

.gallery-lightbox {
  width: min(1180px, calc(100vw - 28px));
  max-width: none;
  height: min(900px, calc(100dvh - 28px));
  max-height: none;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: var(--white);
  background: #130205;
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
}
.gallery-lightbox::backdrop { background: rgba(8, 0, 2, .84); backdrop-filter: blur(8px); }
.gallery-lightbox-shell {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 14px;
  align-items: center;
  padding: 54px 20px 22px;
}
.gallery-lightbox figure {
  min-width: 0;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.gallery-lightbox-media {
  position: relative;
  width: 100%;
  height: min(720px, calc(100dvh - 150px));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gallery-lightbox figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(720px, calc(100dvh - 150px));
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  opacity: 1;
  transition: opacity 160ms ease;
}
.gallery-lightbox-media.is-loading img,
.gallery-lightbox-media.has-error img { opacity: 0; }
.gallery-lightbox-loader {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  color: rgba(255,241,239,.82);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}
.gallery-lightbox-loader[hidden] { display: none; }
.gallery-lightbox-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: gallery-lightbox-spin 700ms linear infinite;
}
.gallery-lightbox-media.has-error .gallery-lightbox-spinner { display: none; }
@keyframes gallery-lightbox-spin {
  to { transform: rotate(360deg); }
}
.gallery-lightbox figcaption {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,241,239,.78);
  font-size: .84rem;
}
.gallery-lightbox figcaption small { font: inherit; white-space: nowrap; }
.gallery-lightbox-caption-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.gallery-lightbox-caption-copy a {
  width: fit-content;
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-lightbox-caption-copy a:hover,
.gallery-lightbox-caption-copy a:focus-visible { color: #ffc5bc; }
.gallery-lightbox-caption-copy a[hidden] { display: none; }
.gallery-lightbox-close,
.gallery-lightbox-arrow {
  appearance: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible {
  color: var(--red);
  background: var(--white);
  transform: scale(1.06);
  outline: none;
}
.gallery-lightbox-close { position: absolute; z-index: 2; top: 14px; right: 14px; }
.media-index-section { padding: clamp(66px, 9vw, 112px) 0; color: var(--white); background: #260508; }
.media-index-heading { display: grid; gap: 16px; max-width: 620px; margin-bottom: 38px; }
.media-index-heading h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: .94; text-wrap: balance; }
.media-index-list { border-top: 1px solid rgba(255,255,255,.22); }
.media-index-list article { display: grid; grid-template-columns: 70px minmax(0, 1fr) 80px; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.media-index-list article > span { color: var(--rose); font-size: .78rem; font-weight: 900; }
.media-index-list h3 { margin-bottom: 5px; font-size: clamp(1.35rem, 3vw, 2rem); }
.media-index-list p { color: rgba(255,241,239,.76); line-height: 1.65; }
.media-index-list small { color: rgba(255,241,239,.64); font-weight: 800; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.media-sources-section { padding: 58px 0; }
.media-source-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.media-source-grid .link-tile { min-height: 0; border-radius: 4px; box-shadow: none; }

.tiktok-corner-section {
  padding: clamp(72px, 9vw, 120px) 0;
  scroll-margin-top: 108px;
  overflow: hidden;
  color: var(--ink);
  background: #fff5f1;
}
.tiktok-corner-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 82px);
  margin-bottom: clamp(42px, 6vw, 72px);
}
.tiktok-corner-heading > div { display: grid; gap: 16px; max-width: 760px; }
.tiktok-corner-heading .section-kicker {
  width: fit-content;
  color: #9d1524;
  background: rgba(183, 22, 40, .08);
  border-color: rgba(183, 22, 40, .16);
}
.tiktok-corner-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: .9;
  text-wrap: balance;
}
.tiktok-corner-heading p:last-child { max-width: 58ch; color: #775e63; line-height: 1.7; }
.tiktok-profile-link {
  flex: 0 0 auto;
  padding-bottom: 7px;
  color: #9d1524;
  border-bottom: 2px solid rgba(157, 21, 36, .32);
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.tiktok-profile-link:hover,
.tiktok-profile-link:focus-visible { color: var(--ink); border-color: var(--ink); transform: translateY(-2px); outline: none; }
.tiktok-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.tiktok-carousel-header > p {
  color: #8a6d72;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tiktok-carousel-header strong { margin-right: 8px; color: #9d1524; font-size: 1.6rem; letter-spacing: 0; }
.tiktok-corner-section .album-carousel-controls button {
  color: #9d1524;
  background: rgba(183, 22, 40, .06);
  border-color: rgba(157, 21, 36, .2);
}
.tiktok-corner-section .album-carousel-controls button:hover,
.tiktok-corner-section .album-carousel-controls button:focus-visible { color: var(--white); background: #9d1524; border-color: #9d1524; }
.tiktok-corner-section .album-carousel-controls button:disabled { opacity: .28; }
.video-carousel-track.tiktok-carousel-track {
  grid-auto-columns: clamp(245px, 26vw, 320px);
  scrollbar-color: rgba(157, 21, 36, .35) transparent;
}
.tiktok-card {
  align-self: start;
  border-color: rgba(94, 35, 43, .14);
  background: #fff;
  box-shadow: 0 22px 48px rgba(81, 24, 33, .12);
}
.tiktok-embed,
.tiktok-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #14060a;
  border: 0;
}
.tiktok-embed { position: relative; overflow: hidden; aspect-ratio: 9 / 16 !important; }
.tiktok-embed.is-playing iframe {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
}
.tiktok-embed > a { width: 100%; height: 100%; display: grid; place-items: center; color: var(--white); }
.tiktok-embed-trigger {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 24px;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 14%, rgba(37, 244, 238, .28), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(254, 44, 85, .32), transparent 32%),
    linear-gradient(155deg, #21090f, #090609 65%);
  cursor: pointer;
}
.tiktok-embed-trigger::before,
.tiktok-embed-trigger::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.tiktok-embed-trigger::before { top: 17%; left: -78px; }
.tiktok-embed-trigger::after { right: -88px; bottom: 13%; }
.tiktok-platform {
  position: relative;
  z-index: 1;
  justify-self: start;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tiktok-pick-number {
  position: relative;
  z-index: 1;
  align-self: center;
  color: transparent;
  font-size: clamp(6rem, 12vw, 9rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.26);
}
.tiktok-play-icon {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  color: #14060a;
  background: var(--white);
  box-shadow: -5px 0 #25f4ee, 5px 0 #fe2c55, 0 18px 36px rgba(0,0,0,.3);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}
.tiktok-play-prompt {
  position: relative;
  z-index: 1;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tiktok-embed-trigger:hover .tiktok-play-icon,
.tiktok-embed-trigger:focus-visible .tiktok-play-icon { transform: translate(-50%, -50%) scale(1.1); }
.tiktok-embed-trigger:focus-visible { outline: 3px solid #25f4ee; outline-offset: -3px; }
.tiktok-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #775e63;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tiktok-card-footer a { color: #9d1524; text-decoration: none; }
.tiktok-card-footer a:hover,
.tiktok-card-footer a:focus-visible { color: var(--ink); outline: none; }
.tiktok-core-carousel {
  margin-top: clamp(72px, 9vw, 118px);
  padding-top: clamp(60px, 8vw, 96px);
  scroll-margin-top: 108px;
  border-top: 1px solid rgba(94, 35, 43, .16);
}
.tiktok-core-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.tiktok-core-heading > div:first-child { display: grid; gap: 13px; max-width: 720px; }
.tiktok-core-heading .section-kicker {
  width: fit-content;
  color: #9d1524;
  background: rgba(183, 22, 40, .08);
  border-color: rgba(183, 22, 40, .16);
}
.tiktok-core-heading h3 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.7vw, 4.5rem);
  line-height: .94;
  text-wrap: balance;
}
.tiktok-core-heading p:last-child { max-width: 58ch; color: #775e63; line-height: 1.7; }

.cover-library-section {
  padding: clamp(76px, 9vw, 124px) 0;
  scroll-margin-top: 108px;
  overflow: hidden;
  color: var(--white);
  background: #74101c;
}
.cover-library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 84px);
  margin-bottom: clamp(48px, 7vw, 84px);
}
.cover-library-heading > div { display: grid; gap: 16px; max-width: 780px; }
.cover-library-heading .section-kicker {
  width: fit-content;
  color: #74101c;
  background: #ffd8cb;
  border-color: #ffd8cb;
}
.cover-library-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  line-height: .92;
  text-wrap: balance;
}
.cover-library-heading p:not(.section-kicker) { max-width: 58ch; color: rgba(255,241,239,.78); line-height: 1.7; }
.cover-library-note {
  flex: 0 0 auto;
  max-width: 26ch;
  padding-left: 18px;
  border-left: 2px solid rgba(255,216,203,.44);
  font-size: .8rem;
  font-weight: 800;
}
.cover-shelf + .cover-shelf {
  margin-top: clamp(70px, 9vw, 112px);
  padding-top: clamp(60px, 8vw, 94px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.cover-shelf-header strong { color: #ffd8cb; }
.cover-carousel-track {
  grid-auto-columns: clamp(270px, 29vw, 340px);
  scrollbar-color: rgba(255,216,203,.5) transparent;
}
.cover-carousel-track.weverse-cover-track { grid-auto-columns: clamp(360px, 46vw, 560px); }
.video-card.cover-card {
  align-self: start;
  color: var(--ink);
  background: #fff5f1;
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 48px rgba(28,0,4,.24);
}
.social-cover-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #150609;
}
.social-cover-embed > a { width: 100%; height: 100%; display: grid; place-items: center; color: var(--white); }
.social-cover-embed iframe,
.cover-card .social-cover-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  background: #150609;
}
.social-cover-embed[data-social-provider="cloudinary"] { aspect-ratio: 16 / 9; }
.social-cover-embed[data-video-src] { aspect-ratio: 16 / 9; }
.social-cover-embed[data-social-provider="instagram"] {
  aspect-ratio: var(--instagram-media-aspect, 9 / 16);
}
.social-cover-embed[data-social-provider="instagram"] .instagram-reel-frame,
.cover-card .social-cover-embed[data-social-provider="instagram"] .instagram-reel-frame {
  top: -54px;
  bottom: auto;
  height: calc(100% + 54px);
  background: #150609;
}
.social-cover-embed .twitter-tweet {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}
.cover-native-player,
.cover-native-video {
  width: 100%;
  height: 100%;
}
.cover-native-player { position: relative; background: #080405; }
.cover-native-video { display: block; object-fit: contain; background: #080405; }
.cover-video-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 28px;
  color: #fff;
  text-align: center;
  background: #150609;
}
.cover-video-fallback strong { font-size: 1.05rem; }
.cover-video-fallback span { color: #ffd8cb; font-weight: 800; }
.social-cover-trigger {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 24px;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(255,216,203,.12), transparent 48%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.035) 22px 44px),
    #150609;
  cursor: pointer;
}
.social-cover-trigger.has-poster {
  isolation: isolate;
  background: #150609;
}
.social-cover-trigger.has-poster::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,2,3,.34), transparent 34%, rgba(9,2,3,.5));
  pointer-events: none;
}
.social-cover-poster {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080405;
}
.social-cover-platform,
.social-cover-prompt {
  position: relative;
  z-index: 2;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.social-cover-platform { justify-self: start; }
.social-cover-play {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  color: #74101c;
  background: #ffd8cb;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}
.social-cover-trigger:hover .social-cover-play,
.social-cover-trigger:focus-visible .social-cover-play { color: #ffd8cb; background: #9d1524; transform: scale(1.08); }
.social-cover-trigger:focus-visible { outline: 3px solid #ffd8cb; outline-offset: -3px; }
.social-cover-embed.is-loading::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,.24);
  border-top-color: #ffd8cb;
  border-radius: 50%;
  animation: gallery-spin 760ms linear infinite;
  transform: translate(-50%, -50%);
}
.cover-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 14px;
  min-height: 142px;
  padding: 18px;
}
.cover-card-copy > span { grid-column: 1 / -1; color: #9d1524; font-size: .66rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cover-card-copy strong { font-size: 1.15rem; line-height: 1.25; }
.cover-card-copy small { grid-column: 1; color: #775e63; font-size: .82rem; }
.cover-card-copy a {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  color: #9d1524;
  font-size: .7rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
.cover-card-copy a:hover,
.cover-card-copy a:focus-visible { color: var(--ink); outline: none; }

.jl-playlist-section {
  padding: clamp(76px, 9vw, 128px) 0;
  color: #f8f3f1;
  background: #171415;
}
.playlist-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(32px, 7vw, 96px);
  margin-bottom: clamp(42px, 6vw, 72px);
}
.playlist-heading > div:first-child { display: grid; gap: 16px; max-width: 760px; }
.playlist-heading .section-kicker {
  width: fit-content;
  color: #171415;
  background: #a9df74;
  border-color: #a9df74;
}
.playlist-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  line-height: .92;
  text-wrap: balance;
}
.playlist-heading p:last-child { max-width: 58ch; color: #c9bec1; line-height: 1.7; }
.playlist-count {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  color: #a9df74;
  text-transform: uppercase;
}
.playlist-count strong { font-size: clamp(3.4rem, 7vw, 6.8rem); line-height: .8; }
.playlist-count span { margin-top: 12px; font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.playlist-preview-player {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(320px, 1.3fr);
  align-items: center;
  gap: clamp(20px, 4vw, 54px);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(20px, 3vw, 32px);
  background: #252123;
  border: 1px solid rgba(255,255,255,.14);
}
.playlist-preview-copy { display: grid; gap: 5px; }
.playlist-preview-copy span {
  color: #a9df74;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.playlist-preview-copy strong { color: #fff; font-size: clamp(1.35rem, 2.8vw, 2.2rem); line-height: 1.05; }
.playlist-preview-copy small { color: #c9bec1; font-size: .92rem; }
.playlist-preview-player .spotify-embed-host,
.playlist-preview-player .spotify-embed-host iframe {
  width: 100%;
  min-height: 152px;
  border: 0;
  border-radius: 8px;
  background: #171415;
}
.spotify-embed-host { position: relative; }
.spotify-embed-api { display: none; }
.spotify-embed-host.is-api-ready .spotify-embed-fallback { display: none; }
.spotify-embed-host.is-api-ready .spotify-embed-api { display: block; }
.playlist-table { border-top: 1px solid rgba(255,255,255,.16); }
.playlist-columns,
.playlist-track {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}
.playlist-columns {
  min-height: 50px;
  padding: 0 14px;
  color: #8e8285;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.playlist-columns span:nth-child(2) { padding-left: 62px; }
.playlist-track {
  grid-template-columns: 42px 48px minmax(0, 1fr) auto;
  min-height: 74px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background 180ms ease, transform 180ms ease;
}
.playlist-track:hover,
.playlist-track:focus-within,
.playlist-track.is-previewing { background: #252123; transform: translateX(4px); }
.track-number { color: #8e8285; font-variant-numeric: tabular-nums; }
.track-cover {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #171415;
  background: #a9df74;
  font-size: .68rem;
  font-weight: 950;
}
.playlist-track:nth-child(4n + 2) .track-cover { background: #f3b5aa; }
.playlist-track:nth-child(4n + 3) .track-cover { background: #94bdd6; }
.playlist-track:nth-child(4n + 4) .track-cover { background: #ebce70; }
.track-copy { min-width: 0; display: grid; gap: 4px; }
.track-copy strong,
.track-copy span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-copy strong { color: #fff; font-size: 1rem; }
.track-copy span { color: #a99da0; font-size: .86rem; }
.track-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.track-links a,
.track-preview,
.playlist-toggle {
  color: #f8f3f1;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  font: inherit;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.track-links a,
.track-preview { padding: 8px 10px; }
.track-preview { color: #171415; background: #a9df74; border-color: #a9df74; cursor: pointer; }
.track-links a:hover,
.track-links a:focus-visible,
.track-preview:hover,
.track-preview:focus-visible,
.playlist-toggle:hover,
.playlist-toggle:focus-visible { color: #171415; background: #f8f3f1; border-color: #f8f3f1; outline: none; }
.playlist-ready:not(.is-expanded) .playlist-track:nth-child(n + 13) { display: none; }
.playlist-toggle {
  min-height: 48px;
  margin: 30px auto 0;
  padding: 12px 20px;
  display: block;
  cursor: pointer;
}
.playlist-toggle[hidden] { display: none; }

.fancam-library-section {
  padding: clamp(72px, 9vw, 120px) 0;
  color: var(--white);
  background: #260508;
  overflow: hidden;
}
.fancam-library-heading {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: clamp(54px, 7vw, 88px);
}
.fancam-library-heading h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: .94;
  text-wrap: balance;
}
.fancam-library-heading > p:last-child {
  max-width: 58ch;
  color: rgba(255, 241, 239, .76);
  line-height: 1.75;
}
.album-carousel + .album-carousel {
  margin-top: clamp(70px, 9vw, 112px);
  padding-top: clamp(60px, 8vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.album-carousel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.album-carousel-header > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: end;
}
.album-number {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-width: 50px;
  color: var(--peach);
  border-right: 1px solid rgba(255,255,255,.2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.album-carousel-header h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}
.album-carousel-header p {
  color: rgba(255, 241, 239, .62);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.album-carousel-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.album-carousel-controls button {
  appearance: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}
.album-carousel-controls button:hover,
.album-carousel-controls button:focus-visible {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  outline: none;
}
.album-carousel-controls button:disabled {
  opacity: .32;
  cursor: default;
  transform: none;
}
.video-carousel-viewport { overflow: visible; }
.video-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 42vw, 500px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.35) transparent;
  padding: 0 0 18px;
}
.video-carousel-track:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 8px;
}
.video-card {
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
}
.video-embed,
.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #120003;
}
.video-card iframe { border: 0; }
.video-embed { position: relative; overflow: hidden; }
.video-embed > a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
}
.video-embed-trigger {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: var(--white);
  background: #120003;
  cursor: pointer;
}
.video-embed-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,0,3,.04), rgba(18,0,3,.36));
  transition: background 180ms ease;
}
.video-embed-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}
.video-play-icon {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}
.video-embed-trigger:hover img,
.video-embed-trigger:focus-visible img { transform: scale(1.035); filter: saturate(1.08); }
.video-embed-trigger:hover .video-play-icon,
.video-embed-trigger:focus-visible .video-play-icon { background: #d92a3a; transform: translate(-50%, -50%) scale(1.08); }
.video-embed-trigger:focus-visible { outline: 3px solid var(--peach); outline-offset: -3px; }
.video-card > span {
  display: block;
  padding: 14px 16px;
  color: rgba(255,241,239,.78);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects-page { background: #531018; }
.support-hero { margin-top: 18px; overflow: hidden; background: #f8e7df; }
.support-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: clamp(32px, 7vw, 100px); align-items: stretch; color: var(--ink); }
.support-hero-inner > div { display: grid; align-content: center; gap: 18px; padding: clamp(62px, 9vw, 112px) 0; }
.support-hero .page-kicker { color: var(--red); background: rgba(183,22,40,.08); border-color: rgba(183,22,40,.15); }
.support-hero h1 { max-width: 8ch; font-size: clamp(3.4rem, 8vw, 7rem); line-height: .87; letter-spacing: 0; text-wrap: balance; }
.support-hero-inner > div > p:last-child { max-width: 610px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.support-hero img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: 80% 30%; }
.support-lanes-section { padding: clamp(66px, 9vw, 110px) 0; }
.support-lanes-heading { display: grid; gap: 15px; max-width: 650px; margin-bottom: 40px; }
.support-lanes-heading h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: .94; text-wrap: balance; }
.support-lanes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--border-strong); }
.support-lanes article { min-height: 270px; display: grid; align-content: start; gap: 16px; padding: 24px; border-right: 1px solid var(--border-strong); }
.support-lanes article:last-child { border-right: 0; }
.support-lanes article > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--red); font-weight: 900; }
.support-lanes h3 { margin-top: 20px; font-size: 1.55rem; }
.support-lanes p { color: var(--muted); line-height: 1.7; }
.support-board-section { padding: clamp(64px, 8vw, 102px) 0; background: #76121e; color: var(--white); }
.support-board-layout { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 8vw, 120px); align-items: start; }
.support-board-layout header { display: grid; gap: 18px; }
.support-board-layout h2 { font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: .95; text-wrap: balance; }
.support-board-layout header > p:last-child { color: rgba(255,241,239,.8); line-height: 1.75; }
.support-board-section .section-kicker { background: rgba(255,255,255,.12); }
.support-checklist { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.24); }
.support-checklist li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.support-checklist span { color: var(--peach); font-weight: 900; }
.support-checklist h3 { margin-bottom: 7px; font-size: 1.25rem; }
.support-checklist p { color: rgba(255,241,239,.8); line-height: 1.68; }
.support-guidelines-section { padding: 70px 0; }
.support-guidelines { display: grid; gap: 16px; max-width: 760px; }
.support-guidelines h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: .98; text-wrap: balance; }
.support-guidelines > p:last-of-type { color: var(--muted); line-height: 1.8; }
.support-guidelines .inline-link { justify-self: start; margin-top: 6px; }

.support-coming-section {
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0;
  background: #76121e;
  color: var(--white);
}

.support-coming-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}

.support-coming-word {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(4.75rem, 7vw, 8rem);
  font-weight: 900;
  line-height: .8;
  justify-self: start;
  max-width: 100%;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 241, 239, .48);
}

.support-coming-copy {
  display: grid;
  gap: 20px;
  max-width: 700px;
}

.support-coming-copy .section-kicker {
  background: rgba(255, 255, 255, .12);
}

.support-coming-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  line-height: .92;
  text-wrap: balance;
}

.support-coming-copy > p:last-of-type {
  max-width: 620px;
  color: rgba(255, 241, 239, .82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.support-coming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.support-coming-links .inline-link {
  background: var(--peach);
  color: var(--red);
}

.support-coming-links .text-link {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: 5px;
}

.birthday-overview {
  padding: clamp(72px, 9vw, 116px) 0;
  color: var(--white);
  background: #76121e;
}

.birthday-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: end;
}

.birthday-overview-copy {
  display: grid;
  gap: 18px;
}

.birthday-overview-copy .section-kicker {
  justify-self: start;
  background: rgba(255, 255, 255, .12);
}

.birthday-overview-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  line-height: .92;
  text-wrap: balance;
}

.birthday-overview-copy > p:last-child {
  max-width: 610px;
  color: rgba(255, 241, 239, .82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.birthday-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-left: 1px solid rgba(255, 255, 255, .28);
  list-style: none;
}

.birthday-stats li {
  display: grid;
  gap: 7px;
  min-height: 160px;
  align-content: end;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.birthday-stats strong {
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.3vw, 4.7rem);
  line-height: .85;
}

.birthday-stats span {
  color: rgba(255, 241, 239, .72);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.birthday-archive {
  padding: clamp(76px, 10vw, 132px) 0;
  background: #fff9f6;
}

.birthday-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .56fr);
  gap: clamp(36px, 8vw, 124px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.birthday-archive-heading > div {
  display: grid;
  gap: 18px;
}

.birthday-archive-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: .92;
  text-wrap: balance;
}

.birthday-archive-heading > p {
  color: var(--muted);
  line-height: 1.75;
}

.birthday-archive-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 32px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-strong);
}

.birthday-archive-tools label {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.birthday-archive-tools label > span {
  color: var(--red);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.birthday-archive-tools input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .7);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.birthday-archive-tools input::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

.birthday-archive-tools input:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(183, 22, 40, .1);
}

.birthday-search-status {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.birthday-search-empty {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  text-align: center;
}

.birthday-project-groups {
  display: grid;
  gap: 18px;
}

.birthday-project-group {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.birthday-project-group + .birthday-project-group {
  margin-top: 10px;
}

.birthday-project-group summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, padding 180ms ease;
}

.birthday-project-group summary:hover {
  color: var(--red);
  padding-inline: 10px;
}

.birthday-project-group summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}

.birthday-project-group summary::-webkit-details-marker {
  display: none;
}

.birthday-project-group summary > span:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  min-width: 0;
}

.birthday-project-group summary strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  overflow-wrap: anywhere;
}

.birthday-project-group summary small {
  color: var(--muted);
  font-weight: 700;
}

.birthday-project-group summary > span:last-child {
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.birthday-project-group[open] summary > span:last-child {
  transform: rotate(45deg);
}

.birthday-project-list {
  border-top: 1px solid var(--border-strong);
}

.motion-ready .birthday-project-group[open] .birthday-project-list {
  animation: birthday-list-open 360ms both cubic-bezier(.2, .8, .2, 1);
}

.birthday-project-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 132px;
  gap: clamp(20px, 4vw, 62px);
  align-items: center;
  min-height: 132px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 180ms ease, padding 180ms ease;
}

.birthday-project-list article:hover {
  padding-inline: 14px;
  background: rgba(255, 232, 227, .34);
}

.birthday-project-list article[hidden],
.birthday-project-group[hidden] {
  display: none;
}

.birthday-project-list article:last-child {
  border-bottom: 0;
}

.birthday-project-list article > div {
  display: grid;
  gap: 6px;
}

.birthday-project-list small {
  color: var(--red);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.birthday-project-list h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.birthday-project-list p,
.birthday-project-list time {
  color: var(--muted);
  line-height: 1.55;
}

.birthday-project-list time {
  font-size: .9rem;
  font-weight: 700;
}

.birthday-project-list a,
.birthday-source-pending {
  justify-self: start;
  color: var(--red);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.birthday-project-list a {
  text-decoration: underline;
  text-decoration-color: rgba(183, 22, 40, .34);
  text-underline-offset: 5px;
}

.birthday-source-pending {
  color: var(--muted);
}

.motion-ready .support-coming-word {
  animation: hero-arrive 820ms 180ms both cubic-bezier(.2, .8, .2, 1);
}

@media (max-width: 900px) {
  .support-lanes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-story-layout,
  .home-intro-film-layout,
  .home-moments-layout,
  .profile-dossier,
  .profile-biography-layout,
  .profile-solo-layout,
  .profile-works-layout,
  .career-highlight-layout,
  .support-board-layout { grid-template-columns: 1fr; }
  .support-coming-layout { grid-template-columns: 1fr; }
  .support-coming-word { font-size: clamp(5rem, 20vw, 9rem); }
  .birthday-overview-layout,
  .birthday-archive-heading { grid-template-columns: 1fr; }
  .birthday-overview-copy h2 { max-width: 12ch; }
  .home-story-image { min-height: 360px; max-width: 580px; }
  .home-moments-strip { max-width: 690px; }
  .home-arcade-layout { grid-template-columns: 1fr auto; }
  .profile-dossier { align-items: start; }
  .profile-biography-heading,
  .profile-works-layout > header { position: static; }
  .profile-chapter-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .profile-chapter-list li { grid-template-columns: 1fr; padding-right: 16px; border-right: 1px solid var(--border-strong); }
  .profile-chapter-list li:last-child { border-right: 0; }
  .profile-notes-layout { grid-template-columns: 1fr 1fr; }
  .profile-notes-heading { grid-column: 1 / -1; padding: 0 0 28px; }
  .profile-notes-layout > article:nth-of-type(2) { border-left: 0; }
  .profile-personal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-personal-grid article:nth-child(2) { border-right: 0; }
  .profile-personal-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--border-strong); }
  .profile-solo-art { max-width: 560px; }
  .profile-works-list article div { grid-template-columns: 110px minmax(140px, .7fr) minmax(170px, 1fr); }
  .profile-source-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-timeline::before { left: 100px; }
  .career-timeline li { grid-template-columns: 100px 1fr; gap: 30px; }
  .career-timeline time { padding-right: 30px; }
  .media-hero,
  .media-hero-inner { min-height: 600px; }
  .media-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px 240px; }
  .media-mosaic-copy { grid-column: 1 / -1; grid-row: 1; }
  .media-shot-one { grid-column: 1; grid-row: 2; }
  .media-shot-two { grid-column: 2; grid-row: 2; }
  .media-shot-three { grid-column: 1; grid-row: 3; }
  .media-mosaic-note { grid-column: 2; grid-row: 3; }
  .media-gallery-feature { grid-template-columns: 1fr; }
  .media-gallery-copy { min-height: 320px; }
  .gallery-preview { min-height: 470px; grid-template-rows: 228px 228px; }
  .gallery-grid { columns: 3 190px; }
  .support-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .support-hero-inner > div { padding-bottom: 56px; }
  .support-hero img { min-height: 360px; max-height: 480px; }
}

@media (max-width: 640px) {
  .home-start,
  .home-intro-film,
  .home-story,
  .home-moments,
  .profile-dossier-section,
  .career-timeline-section,
  .support-lanes-section { padding: 54px 0; }
  .home-route-grid,
  .support-lanes,
  .profile-source-list,
  .career-source-row,
  .media-source-grid { grid-template-columns: 1fr; }
  .home-route { min-height: 0; }
  .home-story-image { min-height: 300px; }
  .home-intro-film-layout { text-align: center; }
  .home-intro-film-copy { justify-items: center; }
  .home-intro-film-copy .section-kicker,
  .home-intro-film-copy > p:last-child { margin-inline: auto; }
  .home-intro-film-player { width: 100%; }
  .home-moments-strip { min-height: 240px; gap: 8px; }
  .home-moment-photo:nth-child(2) { margin-top: 24px; height: calc(100% - 24px); }
  .home-moment-photo:nth-child(3) { margin-bottom: 20px; height: calc(100% - 20px); }
  .home-arcade-layout { grid-template-columns: 1fr; }
  .home-arcade-layout .inline-link { justify-self: start; }
  .profile-facts-list div { grid-template-columns: 1fr; gap: 5px; }
  .profile-personal-layout > header { grid-template-columns: 1fr; }
  .profile-personal-layout > header .section-kicker { grid-column: auto; }
  .profile-chapter-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-chapter-list li:nth-child(odd) { padding-left: 0; }
  .profile-chapter-list li:nth-child(2) { border-right: 0; }
  .profile-personal-grid,
  .profile-source-list { grid-template-columns: 1fr; }
  .profile-personal-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border-strong); }
  .profile-personal-grid article:last-child { border-bottom: 0; }
  .profile-personal-grid h3 { margin-top: 24px; }
  .profile-solo-layout { gap: 52px; }
  .profile-solo-art img { box-shadow: 12px 12px 0 #71101b; }
  .profile-solo-copy h2 { font-size: clamp(5rem, 27vw, 8rem); }
  .profile-solo-credits { grid-template-columns: 1fr; }
  .profile-solo-credits div:nth-child(odd),
  .profile-solo-credits div:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .profile-solo-links { align-items: stretch; }
  .profile-solo-links .inline-link { width: 100%; justify-content: center; text-align: center; }
  .profile-works-list article { grid-template-columns: 1fr; gap: 10px; }
  .profile-works-list article div { grid-template-columns: 1fr; gap: 6px; }
  .profile-notes-layout { grid-template-columns: 1fr; }
  .profile-notes-layout > article { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .profile-notes-layout > article h3 { margin-top: 18px; }
  .career-timeline::before { left: 0; }
  .career-timeline li { grid-template-columns: 1fr; gap: 10px; padding-left: 24px; }
  .career-timeline time { padding: 0; text-align: left; }
  .career-timeline time::after { top: .28em; right: auto; left: -30px; }
  .career-highlight-number strong { font-size: 6.2rem; }
  .media-hero,
  .media-hero-inner { min-height: 540px; }
  .media-hero h1 { font-size: clamp(3.8rem, 20vw, 6.8rem); }
  .media-mosaic { grid-template-columns: 1fr; grid-template-rows: auto 260px 210px 210px auto; }
  .media-mosaic-copy,
  .media-shot-one,
  .media-shot-two,
  .media-shot-three,
  .media-mosaic-note { grid-column: 1; }
  .media-mosaic-copy { grid-row: 1; min-height: 260px; }
  .media-shot-one { grid-row: 2; }
  .media-shot-two { grid-row: 3; }
  .media-shot-three { grid-row: 4; }
  .media-mosaic-note { grid-row: 5; }
  .media-gallery-copy { min-height: 310px; }
  .gallery-preview {
    min-height: 610px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 170px 170px;
    gap: 8px;
  }
  .gallery-preview-photo:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .gallery-preview-photo:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-preview-photo:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-preview-photo:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-preview-photo:nth-child(5) { grid-column: 2; grid-row: 3; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-grid { columns: 2 140px; column-gap: 8px; }
  .gallery-photo { margin-bottom: 8px; }
  .gallery-lightbox-shell { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 6px; padding: 54px 8px 16px; }
  .gallery-lightbox-close,
  .gallery-lightbox-arrow { width: 40px; height: 40px; }
  .gallery-lightbox figcaption { font-size: .76rem; }
  .media-index-list article { grid-template-columns: 42px 1fr; gap: 14px; }
  .media-index-list small { grid-column: 2; text-align: left; }
  .support-hero h1 { font-size: clamp(3.1rem, 16vw, 5.8rem); }
  .support-lanes article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border-strong); }
  .support-lanes article:last-child { border-bottom: 0; }
  .support-coming-section { padding: 66px 0 74px; }
  .support-coming-links { align-items: flex-start; flex-direction: column; }
  .birthday-overview-copy { justify-items: center; text-align: center; }
  .birthday-overview-copy .section-kicker { justify-self: center; }
  .birthday-stats li { min-height: 122px; padding: 18px; }
  .birthday-archive-heading { text-align: center; }
  .birthday-archive-heading > div { justify-items: center; }
  .birthday-archive-heading h2 { max-width: 10ch; }
  .birthday-archive-tools { grid-template-columns: 1fr; align-items: start; }
  .birthday-search-status { margin: 0; white-space: normal; }
  .birthday-project-group summary { padding: 20px 2px; }
  .birthday-project-group summary > span:first-child { display: grid; gap: 5px; }
  .birthday-project-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 24px 2px;
  }
  .album-carousel-header { align-items: center; }
  .album-carousel-controls button { width: 42px; height: 42px; }
  .video-carousel-track { grid-auto-columns: min(86vw, 390px); }
  .tiktok-corner-heading { align-items: center; flex-direction: column; text-align: center; }
  .tiktok-corner-heading > div { justify-items: center; }
  .tiktok-corner-heading .section-kicker { margin-inline: auto; }
  .tiktok-corner-heading h2 { max-width: 9ch; }
  .tiktok-corner-heading p:last-child { margin-inline: auto; }
  .tiktok-profile-link { align-self: center; }
  .tiktok-core-heading { align-items: stretch; flex-direction: column; text-align: center; }
  .tiktok-core-heading > div:first-child { width: 100%; justify-items: center; }
  .tiktok-core-heading .section-kicker,
  .tiktok-core-heading p:last-child { margin-inline: auto; }
  .tiktok-core-heading .album-carousel-controls { align-self: flex-end; }
  .tiktok-core-heading h3 { max-width: 10ch; margin-inline: auto; }
  .cover-library-heading { align-items: center; flex-direction: column; text-align: center; }
  .cover-library-heading > div { justify-items: center; }
  .cover-library-heading .section-kicker,
  .cover-library-heading p:not(.section-kicker) { margin-inline: auto; }
  .cover-library-note { padding: 0; border: 0; }
  .cover-shelf-header { align-items: center; }
  .cover-carousel-track { grid-auto-columns: min(78vw, 300px); }
  .cover-carousel-track.weverse-cover-track { grid-auto-columns: min(88vw, 470px); }
  .playlist-heading { align-items: center; flex-direction: column; text-align: center; }
  .playlist-heading > div:first-child { justify-items: center; }
  .playlist-heading .section-kicker,
  .playlist-heading p:last-child { margin-inline: auto; }
  .playlist-count { justify-items: center; }
  .playlist-preview-player { grid-template-columns: 1fr; text-align: center; }
  .playlist-preview-copy { justify-items: center; }
  .playlist-columns { display: none; }
  .playlist-track {
    grid-template-columns: 30px 46px minmax(0, 1fr);
    gap: 12px;
    min-height: 92px;
    padding: 12px 4px;
  }
  .track-cover { width: 46px; height: 46px; }
  .track-links { grid-column: 3; justify-content: flex-start; }
  .track-links a,
  .track-preview { padding: 7px 9px; font-size: .64rem; }
  .video-carousel-track.tiktok-carousel-track { grid-auto-columns: min(78vw, 300px); }
}

/* Motion keeps the site active without moving content users are trying to read. */
.motion-ready .hero-copy > *,
.motion-ready .page-hero-copy > *,
.motion-ready .media-hero-inner > * {
  animation: hero-arrive 720ms both cubic-bezier(.2, .8, .2, 1);
}
.motion-ready .hero-copy > *:nth-child(2),
.motion-ready .page-hero-copy > *:nth-child(2),
.motion-ready .media-hero-inner > *:nth-child(2) { animation-delay: 90ms; }
.motion-ready .hero-copy > *:nth-child(3),
.motion-ready .page-hero-copy > *:nth-child(3),
.motion-ready .media-hero-inner > *:nth-child(3) { animation-delay: 160ms; }
.motion-ready .hero-copy > *:nth-child(4),
.motion-ready .page-hero-copy > *:nth-child(4),
.motion-ready .media-hero-inner > *:nth-child(4) { animation-delay: 230ms; }
.motion-ready .hero-copy > *:nth-child(n + 5) { animation-delay: 300ms; }

.motion-ready .support-hero-inner > * { animation: hero-arrive 760ms both cubic-bezier(.2, .8, .2, 1); }
.motion-ready .support-hero-inner > img { animation-delay: 150ms; }

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}
.motion-ready .home-intro-film-player.reveal-on-scroll { transform: translateX(28px); }
.motion-ready .reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .home-intro-film-player.reveal-on-scroll.is-visible { transform: translateX(0); }

.motion-ready .career-timeline::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 12px;
  bottom: 12px;
  left: 25%;
  width: 2px;
  background: var(--red);
  transform: translateX(-.5px) scaleY(0);
  transform-origin: top;
  transition: transform 1500ms cubic-bezier(.2, .8, .2, 1);
}
.motion-ready .career-timeline.is-visible::after { transform: translateX(-.5px) scaleY(1); }
.motion-ready .career-timeline.is-visible time::after {
  animation: timeline-pulse 560ms both ease-out;
  animation-delay: var(--reveal-delay, 0ms);
}

.metric-value { font-variant-numeric: tabular-nums; }
.motion-ready .metric-tile.is-visible .metric-icon { animation: metric-pop 520ms both cubic-bezier(.2, .8, .2, 1); }
.motion-ready .metric-tile.is-visible:nth-child(2) .metric-icon { animation-delay: 90ms; }
.motion-ready .metric-tile.is-visible:nth-child(3) .metric-icon { animation-delay: 180ms; }
.motion-ready .metric-tile.is-visible:nth-child(4) .metric-icon { animation-delay: 270ms; }

.home-story-image img,
.home-moments-strip img,
.media-mosaic img,
.support-hero img {
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1), filter 520ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .home-story-image:hover img,
  .home-moments-strip img:hover,
  .media-mosaic img:hover,
  .support-hero img:hover { transform: scale(1.035); filter: saturate(1.08); }
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes timeline-pulse {
  0% { box-shadow: 0 0 0 6px var(--surface), 0 0 0 6px rgba(183, 22, 40, .3); }
  65% { box-shadow: 0 0 0 6px var(--surface), 0 0 0 15px rgba(183, 22, 40, 0); }
  100% { box-shadow: 0 0 0 6px var(--surface); }
}
@keyframes metric-pop {
  0% { transform: scale(.65) rotate(-10deg); opacity: 0; }
  70% { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes birthday-list-open {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .motion-ready .career-timeline::after { left: 100px; }
}

@media (max-width: 640px) {
  .motion-ready .career-timeline::after { left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .page-hero-copy > *,
  .media-hero-inner > *,
  .support-hero-inner > *,
  .community-hero-copy > *,
  .community-hero-layout > p,
  .support-coming-word,
  .birthday-project-list,
  .reveal-on-scroll,
  .career-timeline::after,
  .metric-icon,
  .home-story-image img,
  .home-moments-strip img,
  .media-mosaic img,
  .award-card,
  .award-card-image img,
  .gallery-preview-photo img,
  .gallery-photo img,
  .support-hero img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
