/* ==========================================================================
   Left_ofcentre — site stylesheet
   Palette from the brand swatch. Playfair Display (display) + Inter (text).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Inter:wght@300;400;500;600&family=Albert+Sans:wght@500;700&display=swap');

:root {
  --black: #0E0E0E;
  --ink: #161616;
  --ink-2: #1E1E1E;
  --white: #FFFFFF;
  --gold: #FFD700;
  --gold-deep: #C8980A;
  --lilac: #C48DD4;
  --lilac-soft: #E4CBEC;
  --raspberry: #E85C7A;
  --watermelon: #E84A5F;
  --lemon: #F5D14A;
  --lime: #A6CE39;
  --mint: #7CC68A;
  --grey: #3A3A3A;
  --cream: #FDF6F0;
  --cream-mid: #F5EDE4;
  --cream-deep: #EEE2D6;
  --text: #2A1A1A;
  --body: #5A4A4A;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --measure: 62ch;
  --wrap: 1180px;
  --wrap-narrow: 1040px;
  --gutter: clamp(20px, 5vw, 56px);

  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
  --dur: .7s;

  --radius: 6px;
  --radius-lg: 14px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 500; }
::selection { background: var(--lilac); color: var(--black); }

:focus-visible { outline: 2px solid var(--lilac); outline-offset: 4px; border-radius: 2px; }
.band-black :focus-visible, .site-nav :focus-visible, .site-footer :focus-visible { outline-color: var(--gold); }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--gold); color: var(--black);
  padding: 10px 16px; border-radius: 4px; font-size: 13px; font-weight: 600;
  transition: top .2s;
}
.skip:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- type ---------- */
.eyebrow, .section-label {
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lilac);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before, .section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .8;
}
.band-black .section-label, .hero .eyebrow { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--text);
  max-width: 16ch;
  margin-bottom: 28px;
  text-wrap: balance;
}
.section-title em { color: var(--lilac); font-style: italic; }
.band-black .section-title { color: var(--white); }

.lede {
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--body);
  max-width: var(--measure);
  margin-bottom: 20px;
}
.lede + .lede { margin-top: -4px; }
.band-black .lede { color: rgba(255,255,255,.72); }
.lede a, .prose a {
  color: var(--raspberry);
  border-bottom: 1px solid rgba(232,92,122,.45);
  transition: border-color .2s;
}
.lede a:hover, .prose a:hover { border-bottom-color: var(--raspberry); }

.prose p { font-size: 15.5px; color: var(--body); max-width: var(--measure); margin-bottom: 16px; }
.band-black .prose p { color: rgba(255,255,255,.7); }


/* ---------- layout ---------- */
.page {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) var(--gutter);
}
.page.wide { max-width: var(--wrap); }
.band-black { background: var(--black); color: var(--white); }
.band-ink { background: var(--ink); color: var(--white); }
.band-cream-mid { background: var(--cream-mid); }
.band-white { background: var(--white); }
.band-black + .band-black, .band-ink + .band-black, .band-black + .band-ink { border-top: 1px solid rgba(255,255,255,.07); }

.gold-rule {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, #FFF5B0 0%, #FFD700 30%, #C8980A 60%, #FFD700 80%, #FFF0A0 100%);
}

/* ---------- nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
/* blur lives on a pseudo-element: a backdrop-filter on .site-nav itself would
   become the containing block for the fixed-position mobile menu */
.site-nav::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(14,14,14,.86);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.nav-inner {
  position: relative; z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
  position: relative; z-index: 3;
}
.nav-mark span { color: var(--lilac); font-family: var(--sans); font-style: normal; font-weight: 500; font-size: .85em; }

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 30px); }
.nav-links a {
  position: relative;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--lilac);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--white); }

.nav-toggle {
  display: none;
  position: relative; z-index: 3;
  width: 44px; height: 44px;
  margin-right: -10px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.menu-open .nav-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-open .nav-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    z-index: 2;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 96px var(--gutter) 48px;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .35s var(--ease-soft), transform .35s var(--ease-soft), visibility 0s .35s;
  }
  .menu-open .nav-links { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav-links a {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(30px, 7.5vw, 44px);
    letter-spacing: -.01em;
    text-transform: none;
    color: rgba(255,255,255,.55);
    padding: 6px 0;
    opacity: 0; transform: translateY(14px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .2s;
  }
  .menu-open .nav-links a { opacity: 1; transform: none; }
  .menu-open .nav-links a:nth-child(1) { transition-delay: .06s; }
  .menu-open .nav-links a:nth-child(2) { transition-delay: .10s; }
  .menu-open .nav-links a:nth-child(3) { transition-delay: .14s; }
  .menu-open .nav-links a:nth-child(4) { transition-delay: .18s; }
  .menu-open .nav-links a:nth-child(5) { transition-delay: .22s; }
  .menu-open .nav-links a:nth-child(6) { transition-delay: .26s; }
  .menu-open .nav-links a:nth-child(7) { transition-delay: .30s; }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--lilac); }
  .nav-links a[aria-current="page"]::before { content: '— '; color: var(--gold); font-style: normal; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero.short { min-height: clamp(440px, 64vh, 640px); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
  transform: scale(1.06);
  animation: hero-zoom 8s var(--ease-out) forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,.35) 0%, rgba(14,14,14,.2) 40%, rgba(14,14,14,.85) 82%, var(--black) 100%),
    radial-gradient(120% 80% at 10% 100%, rgba(196,141,212,.16), transparent 60%);
}
.hero-grain {
  position: absolute; inset: -50%; z-index: 2;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: screen;
}
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 120px var(--gutter) clamp(56px, 8vw, 96px);
}
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 104px);
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 14ch;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero h1 em { color: var(--lilac); font-style: italic; }
.hero p {
  color: rgba(255,255,255,.74);
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 52ch;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 34px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-meta b { color: var(--white); font-weight: 500; }

.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 32px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-hint 2.2s var(--ease-soft) infinite;
}
@keyframes scroll-hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* staggered entrance for hero children */
.hero-content > * { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease-out) forwards; }
.hero-content > :nth-child(1) { animation-delay: .15s; }
.hero-content > :nth-child(2) { animation-delay: .28s; }
.hero-content > :nth-child(3) { animation-delay: .42s; }
.hero-content > :nth-child(4) { animation-delay: .56s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- ticker ---------- */
.ticker {
  background: var(--gold);
  color: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 14px 0;
}
.ticker-track li {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
  padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
}
.ticker-track li::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--black); opacity: .6; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- media slots ---------- */
.media-slot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 30px 60px -30px rgba(42,26,26,.35);
}
.media-slot img { width: 100%; height: 100%; object-fit: cover; }
.media-slot.ratio-16-9 { aspect-ratio: 16/9; }
.media-slot.ratio-4-5 { aspect-ratio: 4/5; }
.media-slot.ratio-3-4 { aspect-ratio: 3/4; }
.media-slot.ratio-1-1 { aspect-ratio: 1/1; }
.media-slot.ratio-21-9 { aspect-ratio: 21/9; }
.media-slot.ratio-9-16 { aspect-ratio: 9/16; }
.media-slot .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: linear-gradient(180deg, transparent, rgba(14,14,14,.75));
}
/* filename tag so it's obvious which file replaces which slot */
.media-slot.placeholder[data-file]::after {
  content: attr(data-file);
  position: absolute; left: 12px; top: 12px; z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px; letter-spacing: .04em;
  color: var(--lilac-soft);
  background: rgba(14,14,14,.55);
  border: 1px dashed rgba(196,141,212,.55);
  padding: 4px 8px; border-radius: 3px;
  pointer-events: none;
}
.media-slot.frame { border: 1px solid rgba(255,255,255,.08); }
.band-cream-mid .media-slot, .band-white .media-slot { box-shadow: 0 30px 60px -30px rgba(42,26,26,.4); }

/* ---------- YouTube facade ---------- */
.yt {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  cursor: pointer;
  isolation: isolate;
}
.yt img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .8s var(--ease-out), opacity .3s; }
.yt:hover img { transform: scale(1.03); opacity: 1; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: rgba(14,14,14,.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  transition: transform .35s var(--ease-out), background .25s, border-color .25s;
}
.yt .play::after {
  content: ''; margin-left: 4px;
  border: 10px solid transparent;
  border-left: 16px solid var(--white);
  border-right: 0;
}
.yt:hover .play { transform: translate(-50%, -50%) scale(1.08); background: var(--lilac); border-color: var(--lilac); }
.yt:hover .play::after { border-left-color: var(--black); }
.yt.pending { cursor: default; }
.yt.pending .play { display: none; }
.yt .pending-pill {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 16px; border-radius: 40px;
  background: rgba(14,14,14,.45);
  white-space: nowrap;
}
.yt-featured { box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); border: 1px solid rgba(255,255,255,.08); }

/* ---------- grids ---------- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.two-col.even { grid-template-columns: 1fr 1fr; }
.two-col.reverse .col-media { order: 2; }
@media (max-width: 820px) {
  .two-col, .two-col.even { grid-template-columns: 1fr; }
  .two-col.reverse .col-media { order: 0; }
}

.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .card-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; } }

/* ---------- cards ---------- */
.card {
  position: relative;
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 30px 32px;
  border: 1px solid rgba(42,26,26,.08);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--lilac), var(--raspberry));
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease-out);
}
a.card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -28px rgba(42,26,26,.35); border-color: rgba(42,26,26,.14); }
a.card:hover::before { transform: scaleY(1); }
.band-black .card, .band-ink .card { background: var(--ink-2); border-color: rgba(255,255,255,.08); }
.band-black a.card:hover { border-color: rgba(255,255,255,.18); box-shadow: 0 30px 50px -28px rgba(0,0,0,.9); }
.card .tag {
  display: inline-block;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600;
  color: var(--raspberry);
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--serif);
  font-style: italic; font-weight: 500;
  font-size: 21px; line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}
.band-black .card h3 { color: var(--white); }
.card p { font-size: 14px; color: var(--body); line-height: 1.7; }
.band-black .card p { color: rgba(255,255,255,.62); }
.card .arrow {
  position: absolute; right: 24px; top: 26px;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(42,26,26,.15);
  display: grid; place-items: center;
  font-size: 14px; color: var(--text);
  transition: transform .35s var(--ease-out), background .25s, color .25s, border-color .25s;
}
a.card:hover .arrow { background: var(--lilac); border-color: var(--lilac); color: var(--black); transform: rotate(-45deg); }
.band-black .card .arrow { border-color: rgba(255,255,255,.2); color: var(--white); }
.card.num { padding-top: 26px; }
.card .n {
  font-family: var(--serif); font-style: italic;
  font-size: 40px; line-height: 1; color: var(--lilac);
  margin-bottom: 14px;
}

/* ---------- stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(42,26,26,.1);
}
.band-black .stat-row { border-top-color: rgba(255,255,255,.1); }
@media (max-width: 820px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(34px, 3.6vw, 46px); line-height: 1;
  color: var(--lilac);
  font-variant-numeric: tabular-nums;
}
.band-black .stat .num { color: var(--gold); }
.stat .label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--body); margin-top: 8px; font-weight: 500;
}
.band-black .stat .label { color: rgba(255,255,255,.5); }

/* ---------- timeline (appeal / setbacks) ---------- */
.timeline { display: flex; flex-direction: column; }
.timeline-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(42,26,26,.1);
}
.band-black .timeline-step { border-bottom-color: rgba(255,255,255,.08); }
.timeline-step:last-child { border-bottom: 0; }
.timeline-num { font-family: var(--serif); font-style: italic; font-size: 30px; line-height: 1; color: var(--lilac); padding-top: 4px; }
.timeline-step h4 { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 21px; margin-bottom: 8px; }
.band-black .timeline-step h4 { color: var(--white); }
.timeline-step p { font-size: 14.5px; color: var(--body); max-width: 60ch; }
.band-black .timeline-step p { color: rgba(255,255,255,.62); }

/* ---------- journey chapters ---------- */
.chapters { position: relative; }
.chapters::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196,141,212,.5) 8%, rgba(196,141,212,.5) 92%, transparent);
  transform: translateX(-50%);
}
.chapter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.chapter:nth-child(even) .chapter-media { order: 2; }
.chapter-year {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600;
  color: var(--black);
  background: var(--gold);
  padding: 7px 12px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 0 0 8px var(--cream-mid);
}
.band-white .chapter-year { box-shadow: 0 0 0 8px var(--white); }
.chapter-num {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; letter-spacing: .1em;
  color: var(--raspberry);
  margin-bottom: 12px;
}
.chapter h3 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.chapter p { font-size: 15.5px; color: var(--body); max-width: 48ch; margin-bottom: 14px; }
.chapter-media { display: grid; gap: 14px; }
.chapter-media.duo { grid-template-columns: 1fr 1fr; align-items: end; }
.chapter-media.duo .media-slot:nth-child(2) { margin-bottom: 36px; }
@media (max-width: 820px) {
  .chapters::before { left: 14px; }
  .chapter { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 32px 44px; }
  .chapter:nth-child(even) .chapter-media { order: 0; }
  .chapter-year { left: 14px; top: 0; transform: translate(-50%, 0); }
}

/* ---------- gallery + lightbox ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery.g3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .gallery, .gallery.g3 { grid-template-columns: repeat(2, 1fr); } }
.gallery a {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.gallery a.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery a.tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 900px) { .gallery a.tall { grid-row: auto; aspect-ratio: 1/1; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out), opacity .3s; }
.gallery a:hover img { transform: scale(1.05); }
.gallery a::after {
  content: attr(data-cap);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px 14px 12px;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: linear-gradient(180deg, transparent, rgba(14,14,14,.8));
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.gallery a:hover::after { opacity: 1; transform: none; }
.gallery a[data-file]::before {
  content: attr(data-file);
  position: absolute; left: 10px; top: 10px; z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px; color: var(--lilac-soft);
  background: rgba(14,14,14,.55); border: 1px dashed rgba(196,141,212,.55);
  padding: 3px 7px; border-radius: 3px;
  pointer-events: none;
}

.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(14,14,14,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
}
.lightbox.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 84vh; object-fit: contain; border-radius: 4px; box-shadow: 0 40px 80px rgba(0,0,0,.6); }
.lightbox .lb-cap {
  position: absolute; left: 0; right: 0; bottom: 28px;
  text-align: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.lightbox button {
  position: absolute;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 20px;
  transition: background .2s, border-color .2s, color .2s;
}
.lightbox button:hover { background: var(--lilac); border-color: var(--lilac); color: var(--black); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) { .lightbox .lb-prev, .lightbox .lb-next { top: auto; bottom: 60px; transform: none; } }

/* ---------- competition cards ---------- */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
@media (max-width: 900px) { .comp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .comp-grid { grid-template-columns: 1fr; } }
.comp-card { display: flex; flex-direction: column; gap: 14px; }
.comp-card .comp-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.comp-card h4 { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 19px; color: var(--white); line-height: 1.25; }
.comp-card .year { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); white-space: nowrap; }
.comp-card .meta { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.comp-card .desc { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.7; }
.comp-card .ext {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: var(--lilac);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 2px;
}
.comp-card .ext:hover { color: var(--white); }

/* ---------- pull quote ---------- */
.pull-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 3.2vw, 36px); line-height: 1.35;
  max-width: 30ch;
  color: var(--text);
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--lilac);
  text-wrap: balance;
}
.pull-quote cite { display: block; margin-top: 18px; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--body); }
.band-black .pull-quote { color: var(--white); }
.band-black .pull-quote cite { color: rgba(255,255,255,.5); }

/* ---------- lists ---------- */
.icon-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 700px) { .icon-list { grid-template-columns: 1fr; } }
.icon-list li {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px 22px 26px;
  border: 1px solid rgba(42,26,26,.08);
  position: relative;
}
.icon-list li::before { content: ''; position: absolute; left: 0; top: 18px; bottom: 18px; width: 2px; background: var(--lilac); border-radius: 2px; }
.icon-list li strong { display: block; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 17px; color: var(--text); margin-bottom: 4px; }
.icon-list li span { font-size: 13.5px; color: var(--body); line-height: 1.6; }

.week {
  list-style: none;
  display: grid; gap: 0;
  border-top: 1px solid rgba(42,26,26,.1);
  margin-top: 8px;
}
.week li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(42,26,26,.1);
  font-size: 14px; color: var(--body);
}
.week li b { font-weight: 500; color: var(--text); font-family: var(--serif); font-style: italic; font-size: 16px; }
.week li em { font-style: normal; color: var(--raspberry); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 40px;
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--lilac);
  color: var(--white);
  transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease-out);
}
.btn:hover { background: var(--lilac); color: var(--black); transform: translateY(-1px); }
.btn.solid { background: var(--lilac); color: var(--black); }
.btn.solid:hover { background: var(--white); border-color: var(--white); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn.gold:hover { background: var(--white); border-color: var(--white); }
.band-cream-mid .btn, .band-white .btn { color: var(--text); border-color: var(--text); }
.band-cream-mid .btn:hover, .band-white .btn:hover { background: var(--text); color: var(--white); }
.band-cream-mid .btn.solid, .band-white .btn.solid { background: var(--text); color: var(--white); border-color: var(--text); }
.band-cream-mid .btn.solid:hover, .band-white .btn.solid:hover { background: var(--lilac); border-color: var(--lilac); color: var(--black); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- next-page strip ---------- */
.next-strip {
  display: block;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.next-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 100%, rgba(196,141,212,.18), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.next-strip:hover::before { opacity: 1; }
.next-strip .section-label { justify-content: center; color: var(--gold); }
.next-strip .section-label::before { display: none; }
.next-strip .next-title {
  position: relative;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(30px, 5vw, 56px); line-height: 1.1;
  display: inline-flex; align-items: center; gap: 18px;
  transition: color .25s;
}
.next-strip .next-title span { display: inline-block; transition: transform .35s var(--ease-out); }
.next-strip:hover .next-title { color: var(--lilac); }
.next-strip:hover .next-title span { transform: translateX(8px); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: clamp(48px, 7vw, 80px) var(--gutter) 32px;
}
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-mark { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 26px; color: var(--white); margin-bottom: 10px; }
.footer-mark span { color: var(--lilac); font-family: var(--sans); font-style: normal; font-weight: 500; font-size: .85em; }
.footer-tag { font-size: 13px; max-width: 34ch; line-height: 1.7; }
.footer-col h5 { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.62); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px;
  font-size: 11px; letter-spacing: .06em;
  color: rgba(255,255,255,.32);
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.in { opacity: 1; transform: none; }
.reveal-group > * { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-group.in > * { opacity: 1; transform: none; }
.reveal-group.in > :nth-child(2) { transition-delay: .08s; }
.reveal-group.in > :nth-child(3) { transition-delay: .16s; }
.reveal-group.in > :nth-child(4) { transition-delay: .24s; }
.reveal-group.in > :nth-child(5) { transition-delay: .32s; }
.reveal-group.in > :nth-child(6) { transition-delay: .40s; }

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .reveal-group > *, .hero-content > * { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
/* no-JS: everything visible */
.no-js .reveal, .no-js .reveal-group > * { opacity: 1; transform: none; }

/* ---------- the talk (my-impossible.html) ---------- */
.talk-part { background: var(--cream); border-top: 1px solid rgba(42,26,26,.08); }
.talk-part:nth-of-type(even) { background: var(--white); }
.talk-part .page { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.talk-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.talk-media { position: sticky; top: 100px; }
.talk-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; }
.talk-duo .media-slot:first-child { margin-bottom: 36px; }
@media (max-width: 820px) {
  .talk-grid { grid-template-columns: 1fr; }
  .talk-media { position: static; order: -1; }
}
.talk-text .section-label { margin-bottom: 26px; }
.talk-text p { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.8; color: var(--body); max-width: 58ch; margin-bottom: 20px; }
.talk-text p em { color: var(--text); font-style: italic; }
.talk-text .talk-lede { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; color: var(--text); max-width: 26ch; margin-bottom: 28px; text-wrap: balance; }
.talk-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px); line-height: 1.3;
  color: var(--text); max-width: 26ch;
  margin: clamp(48px, 6vw, 80px) auto 0;
  text-align: center; text-wrap: balance;
  position: relative; padding-top: 28px;
}
.talk-quote::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 2px; background: var(--gold); }
.talk-quote cite { display: block; margin-top: 18px; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--body); }
.band-black .talk-quote { color: var(--white); margin-left: 0; text-align: left; }
.band-black .talk-quote::before { left: 0; transform: none; }
.band-black .talk-quote cite { color: rgba(255,255,255,.5); }
.talk-close .lede { max-width: 58ch; }

/* ---------- partners ---------- */
.partners { display: flex; flex-direction: column; }
.partner {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(42,26,26,.1);
}
.partner:last-child { border-bottom: 0; }
@media (max-width: 720px) { .partner { grid-template-columns: 1fr; gap: 24px; } }
.partner-mark {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 28px;
  position: relative; overflow: hidden;
}
.partner-mark::after { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 60% at 100% 100%, rgba(196,141,212,.25), transparent 70%); }
.partner-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); }
.partner-name { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(34px, 5vw, 56px); line-height: 1; letter-spacing: -.02em; position: relative; z-index: 1; }
.partner-what { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.partner-body .section-label { margin-bottom: 12px; }
.partner-body .lede { margin-bottom: 12px; }
.partner-body .ext { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--lilac); padding-bottom: 3px; }
.partner-body .ext:hover { color: var(--lilac); }

/* partner brand treatments */
.partner-mark.lskd { background: #000; color: #fff; }
.partner-mark.lskd .partner-name { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.partner-mark.lskd::after { background: linear-gradient(135deg, transparent 55%, rgba(255,255,255,.08)); }
.partner-mark.revitalise { background: #EF466C; color: #FCFCF7; }
.partner-mark.revitalise .partner-name { font-family: 'Albert Sans', var(--sans); font-style: normal; font-weight: 700; letter-spacing: -.02em; text-transform: uppercase; }
.partner-mark.revitalise .partner-sub { display: block; font-family: 'Albert Sans', var(--sans); font-weight: 500; font-size: .42em; letter-spacing: .3em; text-transform: uppercase; margin-top: 8px; opacity: .9; }
.partner-mark.revitalise .partner-num { color: #FCFCF7; }
.partner-mark.revitalise .partner-what { color: rgba(252,252,247,.8); }
.partner-mark.revitalise::after { background: radial-gradient(80% 60% at 100% 100%, rgba(163,224,132,.35), transparent 70%); }
.partner-mark.whoop { background: #000; color: #fff; }
.partner-mark.whoop .partner-name { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.partner-mark.whoop::after { background: radial-gradient(70% 50% at 100% 100%, rgba(91,91,255,.45), transparent 70%); }
.partner-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.3; color: var(--text); margin-bottom: 12px; }
.partner-tagline.lskd { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(18px, 2vw, 22px); }
.partner-tagline.revitalise { font-family: 'Albert Sans', var(--sans); font-style: normal; font-weight: 700; color: #EF466C; }
.partner-tagline.whoop { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 700; letter-spacing: -.01em; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 8px; }
.chips li { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--text); border: 1px solid rgba(42,26,26,.18); border-radius: 30px; padding: 6px 12px; }
