/* =========================================================
   On The Record — editorial microsite
   Design system lifted from Amsterdam Sushi Club
   ========================================================= */

:root {
  --paper:      #F4F1EA;
  --paper-2:    #EFEBE2;
  --ivory:      #EBE6DA;
  --canvas:     #E8E2D8;
  --stone:      #B8B3AA;
  --rule:       #C9C3B6;
  --ink:        #111111;
  --charcoal:   #2C2B29;
  --soot:       #1B1A18;
  --warm-white: #FAF8F3;
  --champagne:  #C7A86B;
  --mute:       #6F6C66;
  --faint:      #B5B2AB;

  --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;

  --fs-mini:   .68rem;
  --fs-cap:    .78rem;
  --fs-body:   1.02rem;
  --fs-lede:   1.18rem;
  --fs-h3:     1.65rem;
  --fs-h2:     clamp(2.4rem, 4.6vw, 4.2rem);
  --fs-hero:   clamp(3.2rem, 9vw, 8rem);

  --pad-x:    clamp(1.4rem, 4vw, 4.5rem);
  --pad-y:    clamp(4.5rem, 8vw, 9rem);
  --maxw:     1280px;

  --ease:     cubic-bezier(.22,.61,.36,1);
  --dur:      .9s;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .32;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 17% 22%, rgba(120,108,86,.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 63% 71%, rgba(120,108,86,.05) 0 1px, transparent 1.5px),
    radial-gradient(circle at 81% 13%, rgba(120,108,86,.05) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 88%, rgba(120,108,86,.05) 0 1px, transparent 1.5px);
  background-size: 140px 140px, 180px 180px, 220px 220px, 260px 260px;
}

a { color: inherit; text-decoration: none; }
figure { margin: 0; }
img { max-width: 100%; display: block; }
em { font-style: italic; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 1.4rem 0; }
::selection { background: var(--ink); color: var(--warm-white); }

/* =========================================================
   Scroll progress bar
   ========================================================= */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: transparent;
  z-index: 60;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ink), var(--champagne));
  transition: width .12s linear;
}

/* =========================================================
   Sticky nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad-x);
  background: rgba(244,241,234,.86);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .005em;
}
.nav__sub {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
}
.nav__meta {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
}
@media (max-width: 600px) {
  .nav { padding: .7rem 1rem; }
  .nav__sub { display: none; }
  .nav__meta { font-size: .55rem; letter-spacing: .22em; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  padding: clamp(3rem, 7vw, 7rem) var(--pad-x) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* Reserve room on the right for the absolute-positioned portrait */
  padding-right: calc(38vw + 1.5rem);
  max-width: calc(var(--maxw) + 0px);
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.hero__center {
  margin-top: auto;
  margin-bottom: auto;
  padding: 3rem 0;
  max-width: 50ch;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-hero);
  line-height: .95;
  letter-spacing: -.015em;
  margin: 0;
  color: var(--ink);
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; font-weight: 400; }

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--charcoal);
  margin: 1.6rem 0 0;
  max-width: 36ch;
}
.hero__sub--meta {
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--mute);
  max-width: 50ch;
}

.hero__bottom {
  margin-top: auto;
  padding-top: 1rem;
}

/* Portrait on the right of hero */
.hero__portrait {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 38vw;
  max-width: 540px;
  z-index: 1;
  overflow: hidden;
  border-left: 1px solid var(--rule);
}
.hero__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.05);
}
.hero__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 0%, transparent 60%, rgba(244,241,234,.18) 100%);
  pointer-events: none;
}

/* Video variant: keep color (gold-on-black vinyl), no grayscale */
.hero__portrait--video .hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #0a0a0a;
}
.hero__portrait--video::after {
  background:
    linear-gradient(to left, transparent 0%, transparent 55%, rgba(244,241,234,.22) 100%),
    radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(0,0,0,.35) 100%);
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
    flex-direction: column;
  }
  .hero__inner { padding-right: 0; order: 2; }
  .hero__portrait {
    position: relative;
    width: 100%;
    max-width: none;
    height: 55vh;
    margin: 1rem 0 2rem;
    border-left: 0;
    order: 1;
  }
  .hero__top { flex-direction: column; align-items: flex-start; gap: .35rem; padding-bottom: 1rem; }
  .hero__top .eyebrow--right { text-align: left; }
  .hero__center { padding: 1.5rem 0; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
}

/* =========================================================
   Lockup (presented by)
   ========================================================= */
.lockup {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}
.lockup--dark { border-top-color: rgba(255,255,255,.18); }
.lockup__label {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--mute);
}
.lockup__label--dark { color: var(--faint); }
.lockup__logo img {
  height: 44px;
  width: auto;
}
.lockup__date {
  margin-left: auto;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--faint);
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--rule);
  z-index: 2;
}
.section--ivory {
  background: var(--ivory);
}
.section--dark {
  background: #141210;
  color: var(--warm-white);
  border-top-color: rgba(255,255,255,.1);
}

.section__head {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
}
.section__head--dark { color: var(--warm-white); }

.folio {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1rem;
}
.folio::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}
.folio--dark { color: var(--faint); }

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1.0;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--ink);
}
.section__title--dark { color: var(--warm-white); }
.section__title em { font-style: italic; font-weight: 400; }

.section__deck {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.45;
  margin: 1rem 0 0;
  color: var(--charcoal);
  max-width: 60ch;
}
.section--dark .section__deck { color: var(--warm-white); }

/* =========================================================
   Typography helpers
   ========================================================= */
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.32rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.lede--dark { color: var(--warm-white); font-style: normal; }

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 .45rem;
}
.kicker--dark { color: var(--faint); }

.caption {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--mute);
  margin-top: 1rem;
}

p {
  margin: 0 0 .8rem;
  color: var(--charcoal);
}
.section--dark p { color: var(--warm-white); }

/* =========================================================
   01 — Introducing
   ========================================================= */
.grid {
  max-width: var(--maxw);
  margin: 0 auto;
}
.grid--intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.copycol p { font-size: 1.05rem; }

.thesis {
  border-left: 1px solid var(--rule);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}
.thesis__label {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.4rem;
}
.thesis__list > div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.thesis__list > div:last-child { border-bottom: 0; }
.thesis__list dt {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
}
.thesis__list dd {
  margin: .35rem 0 0;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--mute);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .grid--intro { grid-template-columns: 1fr; }
  .thesis { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 2rem; }
}

/* =========================================================
   02 — Host
   ========================================================= */
.grid--host {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.host__portrait {
  position: relative;
  overflow: hidden;
}
.host__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.04);
}
.host__portrait figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
}
.host__copy { display: flex; flex-direction: column; gap: .35rem; }
.host__copy .lede { margin-bottom: .5rem; }

.cred {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
  margin: 1rem 0;
}
.cred > div {
  padding: 0 1rem;
  border-right: 1px solid var(--rule);
}
.cred > div:first-child { padding-left: 0; }
.cred > div:last-child { padding-right: 0; border-right: 0; }
.cred dt {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: .25rem;
}
.cred dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  border-left: 2px solid var(--ink);
  padding-left: 1rem;
  margin: 1rem 0 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .grid--host { grid-template-columns: 1fr; }
  .cred { grid-template-columns: repeat(2, 1fr); }
  .cred > div { padding: .5rem 1rem !important; border-right: 0; border-bottom: 1px solid var(--rule); }
  .cred > div:nth-child(odd) { padding-left: 0 !important; border-right: 1px solid var(--rule) !important; }
  .cred > div:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =========================================================
   03 — Discography
   ========================================================= */
.disco {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.6rem;
}
.disco__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.disco__item h3 {
  margin: .8rem 0 .15rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.disco__item p {
  margin: 0 0 .25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.disco__item span {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.4;
  display: block;
}
@media (max-width: 1024px) {
  .disco { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .disco { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* =========================================================
   Banner — cinematic full-bleed strip between sections
   ========================================================= */
.banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 540px);
  overflow: hidden;
  background: #0a0a0a;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banner__cap {
  position: absolute;
  left: var(--pad-x);
  bottom: 1.5rem;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* Portrait-oriented banner (taller, face-focused crop) */
.banner--portrait {
  height: clamp(420px, 60vw, 720px);
}
.banner--portrait img {
  object-position: center 25%;
  filter: grayscale(1) contrast(1.05);
}
.banner--portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 70%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}

/* =========================================================
   In the studio with — collaborator strip
   ========================================================= */
.inroom {
  padding: var(--pad-y) var(--pad-x);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.inroom__head {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
}
.inroom__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.inroom__title em { font-style: italic; }
.inroom__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.inroom__grid figure {
  position: relative;
  overflow: hidden;
}
.inroom__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.02);
  transition: filter .4s var(--ease);
}
.inroom__grid figure:hover img { filter: grayscale(0) contrast(1.05); }
.inroom__grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1rem;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent);
}
@media (max-width: 900px) {
  .inroom__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   04 — Platforms & Media
   ========================================================= */
.grid--platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.platforms__hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.2) contrast(1.02);
}
.platforms__hero figcaption { padding: 1rem 0 0; }
.platforms__hero figcaption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--charcoal);
  margin: .35rem 0 0;
  line-height: 1.45;
}

.platforms__cards { display: flex; flex-direction: column; }
.pcard {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.pcard:last-child { border-bottom: 1px solid var(--rule); }
.pcard img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  filter: grayscale(.15);
}
.pcard h4 {
  margin: 0 0 .35rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.2;
}
.pcard p {
  font-size: .9rem;
  color: var(--mute);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .grid--platforms { grid-template-columns: 1fr; }
}

/* =========================================================
   05 — Why Now
   ========================================================= */
.whynow {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
}
.whynow li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.whynow li:last-child { border-bottom: 0; }
.whynow__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--charcoal);
  line-height: 1;
  font-weight: 400;
}
.whynow h3 {
  margin: .2rem 0 .45rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1.15;
}
.whynow p {
  font-size: 1rem;
  color: var(--mute);
  max-width: 80ch;
  margin: 0;
}

/* =========================================================
   06 — Format
   ========================================================= */
.format {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}
.format__item {
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.format__item h3 {
  margin: .4rem 0 .4rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--ink);
  line-height: 1.1;
}
.format__item p {
  font-size: .95rem;
  color: var(--mute);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .format { grid-template-columns: 1fr; }
}

/* =========================================================
   07 — Episode Arc
   ========================================================= */
.arc {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.arc li {
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}
.arc__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: .5rem;
}
.arc h4 {
  margin: 0 0 .35rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
}
.arc__time {
  display: block;
  font-family: var(--sans);
  font-size: .7rem;
  color: var(--mute);
  letter-spacing: .12em;
  margin-bottom: .8rem;
}
.arc p {
  font-size: .92rem;
  margin: 0;
  color: var(--charcoal);
  line-height: 1.5;
}
.arc__total {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--charcoal);
  line-height: 1.45;
}
.arc__total em { color: var(--ink); font-weight: 500; }
@media (max-width: 800px) {
  .arc { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .arc { grid-template-columns: 1fr; }
}

/* =========================================================
   08 / 09 — Guests
   ========================================================= */
.guests {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 1.2rem;
}
.guests figure { display: flex; flex-direction: column; }
.guests img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.02);
  border: 1px solid var(--rule);
}
.guests figcaption { padding: .6rem 0 0; }
.guests figcaption b {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}
.guests figcaption span {
  display: block;
  margin-top: .2rem;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 1024px) {
  .guests { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .guests { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   10 — Distribution
   ========================================================= */
.dist {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.dist__card {
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.dist__card h3 {
  margin: .4rem 0 .8rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1.05;
}
.dist__card .lede { font-size: 1.15rem; margin-bottom: 1rem; }
.platforms {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem 1rem;
}
.platforms li {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}
.platforms li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--mute);
}
@media (max-width: 800px) {
  .dist { grid-template-columns: 1fr; }
}

/* =========================================================
   Case studies / benchmarks
   ========================================================= */
.benchmarks {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.benchmark {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.4rem;
  padding: 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--rule);
  align-items: start;
}
.benchmark figure { margin: 0; }
.benchmark img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  display: block;
}
.benchmark h3 {
  margin: .35rem 0 .65rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
}
.benchmark__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 .8rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.benchmark__stats li {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: baseline;
  font-size: .85rem;
  color: var(--charcoal);
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--rule);
}
.benchmark__stats li:last-child { border-bottom: 0; }
.benchmark__stats b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}
.benchmark__stats span {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--mute);
  letter-spacing: .04em;
}
.benchmark p {
  font-size: .85rem;
  color: var(--mute);
  line-height: 1.5;
  margin: 0;
}
.benchmark__note {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.benchmark__note em { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) {
  .benchmarks { grid-template-columns: 1fr; }
  .benchmark { grid-template-columns: 80px 1fr; gap: 1rem; padding: 1.1rem; }
  .benchmark img { width: 80px; height: 80px; }
}

/* =========================================================
   Short-form strategy section
   ========================================================= */
.grid--short {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.short__copy .kicker { margin-bottom: 1.4rem; }
.short__list {
  margin: 0;
  padding: 0;
}
.short__list > div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.short__list > div:first-child { border-top: 1px solid var(--rule); }
.short__list dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: .35rem;
  line-height: 1.25;
}
.short__list dd {
  margin: 0;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--mute);
  line-height: 1.55;
}

.short__phones {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.phone {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 30px 60px -25px rgba(0,0,0,.45),
    0 12px 24px -12px rgba(0,0,0,.25);
  transform: translateY(0);
  transition: transform .4s var(--ease);
}
.phone:nth-child(1) { transform: translateY(20px) rotate(-2.5deg); }
.phone:nth-child(2) { transform: translateY(0) rotate(0); z-index: 2; }
.phone:nth-child(3) { transform: translateY(20px) rotate(2.5deg); }
.phone:hover { transform: translateY(-6px) rotate(0); }
.phone img {
  width: 100%;
  display: block;
}

.short__channels {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.short__channels .kicker { margin-bottom: .8rem; }
.short__channels ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.short__channels li {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
}
@media (max-width: 900px) {
  .grid--short { grid-template-columns: 1fr; gap: 2.5rem; }
  .short__phones { gap: .6rem; }
  .phone:nth-child(1), .phone:nth-child(3) { transform: rotate(0); }
  .short__channels li { font-size: 1.1rem; }
}

/* =========================================================
   11 — Timeline
   ========================================================= */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.timeline li {
  position: relative;
  padding-top: 1.1rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: var(--ink);
}
.timeline li::after {
  content: "";
  position: absolute;
  top: -4px; left: 0;
  width: 9px; height: 9px;
  background: var(--ink);
  border-radius: 50%;
}
.t__date {
  display: block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: .45rem;
}
.timeline h4 {
  margin: 0 0 .5rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1.15;
}
.timeline p {
  margin: 0;
  font-size: .9rem;
  color: var(--mute);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr; }
}

.ask {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.ask .kicker { display: inline-block; margin-right: .8rem; }
.ask em { font-weight: 500; color: var(--ink); }

/* =========================================================
   12 — The Ask (dark)
   ========================================================= */
.section--dark .section__title {
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 1.04;
}

.ask__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.ask__copy .lede {
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--warm-white);
  font-style: normal;
  font-family: var(--sans);
}
.ask__contact {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}
.ask__name {
  margin: .5rem 0 .25rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--warm-white);
}
.ask__co {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--warm-white);
  margin: 0;
}
.ask__email {
  display: inline-block;
  margin-top: .6rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--warm-white);
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease);
}
.ask__email:hover { border-bottom-color: var(--warm-white); }
@media (max-width: 800px) {
  .ask__grid { grid-template-columns: 1fr; }
  .ask__contact { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 1.5rem; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  max-width: var(--maxw);
  margin: 4rem auto 0;
}
.footer .lockup { border-top: 1px solid rgba(255,255,255,.18); padding-top: 1.5rem; }

/* =========================================================
   Vinyl mark — collectible label collateral scattered through
   ========================================================= */
.vinyl-mark {
  margin: 4rem calc(var(--pad-x) * -1) -2rem;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.vinyl-mark img {
  width: 100%;
  height: clamp(220px, 36vw, 460px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: contrast(1.04) saturate(1.02);
}
.vinyl-mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.vinyl-mark figcaption {
  position: absolute;
  z-index: 1;
  left: var(--pad-x);
  bottom: 1.25rem;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.vinyl-mark figcaption span {
  color: rgba(255,255,255,.45);
  margin-right: .6rem;
  padding-right: .6rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.vinyl-mark--right img {
  object-position: 70% 40%;
}

/* Slightly subtler treatment on ivory sections so it doesn't look like a banner */
.section--ivory .vinyl-mark img {
  height: clamp(200px, 32vw, 420px);
}

@media (max-width: 800px) {
  .vinyl-mark { margin: 3rem calc(var(--pad-x) * -1) -1.5rem; }
  .vinyl-mark img { height: 220px; }
}

/* =========================================================
   Inline history notes — small photo + caption
   ========================================================= */
.note {
  margin: 2rem 0;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: rgba(17,17,17,0.03);
  border-left: 2px solid var(--rule);
}
.note__img {
  flex: 0 0 130px;
  height: 130px;
  overflow: hidden;
  background: #0a0a0a;
}
.note__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(1) contrast(1.05);
}
.note__cap {
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
}
.note__cap b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .25rem;
}
.note__kick {
  display: block;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: .5rem;
}

@media (max-width: 720px) {
  .note { flex-direction: column; }
  .note__img { flex: 0 0 auto; width: 100%; height: 200px; }
}

/* Format cell with embedded photo (Location/Orphanage) */
.format__photo {
  margin-top: 1.1rem;
  overflow: hidden;
  height: 180px;
}
.format__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: grayscale(1) contrast(1.05);
  display: block;
}

/* =========================================================
   Platforms — featured Apple image at top, text cards below
   ========================================================= */
.platforms__feature {
  margin: 2rem 0 2.5rem;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.platforms__feature img {
  width: 100%;
  height: auto;            /* show full image, no crop */
  display: block;
  max-width: 100%;
  object-fit: contain;
}
.platforms__feature figcaption {
  padding: 1.4rem var(--pad-x) 1.8rem;
  background: var(--ivory);
  border-top: 1px solid var(--rule);
}
.platforms__feature .kicker { display: block; margin-bottom: .5rem; color: var(--mute); }
.platforms__feature p { font-family: var(--serif); font-size: 1.1rem; line-height: 1.55; color: var(--ink); margin: 0; }

.platforms__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1.5rem;
}
.pcard--text {
  display: block;          /* override .pcard's grid columns */
  grid-template-columns: none;
  background: rgba(17,17,17,0.025);
  padding: 1.5rem 1.4rem 1.6rem;
  border-left: 2px solid var(--rule);
  border-top: none;
  border-bottom: none;
}
.pcard--text:last-child { border-bottom: none; }
.pcard--text .kicker { display: block; margin-bottom: .6rem; color: var(--mute); }
.pcard--text h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 .7rem;
  color: var(--ink);
}
.pcard--text p {
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}

@media (max-width: 900px) {
  .platforms__row { grid-template-columns: 1fr; }
}

/* Guests preamble note */
.guests__preamble {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--mute);
  line-height: 1.6;
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: rgba(17,17,17,0.025);
  border-left: 2px solid var(--rule);
  max-width: 60ch;
}
.guests__preamble em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1rem;
  margin-right: .35rem;
}

/* TED talk inline links */
.tedlink {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color .2s ease, color .2s ease;
}
.tedlink:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
