/* style.css — design tokens + components for jessmartin.online */

:root {
  /* Palette */
  --cream: #F5EFE4;
  --cream-2: #EFE7D7;
  --navy: #1B2942;
  --navy-2: #26364F;
  --navy-deep: #0E1626;
  --terracotta: #C77857;
  --terracotta-dark: #A85E40;
  --yellow: #E6C664;
  --yellow-deep: #D4AF3B;

  --bg: var(--cream);
  --surface: #FBF7EF;
  --ink: var(--navy);
  --ink-soft: #4A5468;
  --line: rgba(27, 41, 66, 0.14);
  --line-soft: rgba(27, 41, 66, 0.08);

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --text-hero: clamp(3rem, 9vw, 6.5rem);
  --text-3xl: clamp(2.4rem, 6vw, 4rem);
  --text-2xl: clamp(2rem, 4.5vw, 3rem);
  --text-xl: clamp(1.5rem, 3vw, 2.1rem);
  --text-lg: 1.25rem;
  --text-base: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --shadow-sm: 0 1px 3px rgba(27,41,66,.08), 0 6px 20px rgba(27,41,66,.06);
  --shadow-md: 0 4px 12px rgba(27,41,66,.10), 0 18px 48px rgba(27,41,66,.10);
}

html { color-scheme: light; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.eyebrow {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--terracotta); opacity: .6; }
.serif { font-family: var(--font-display); }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.01em; }
.h-section { font-size: var(--text-3xl); margin-top: var(--space-3); }
.lead { font-size: var(--text-lg); color: var(--ink-soft); max-width: 60ch; }

/* ---------- header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245, 239, 228, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.02em; }
.brand svg { width: 34px; height: 34px; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: clamp(.5rem, 2vw, 1.6rem); }
.nav-links a { font-size: var(--text-sm); color: var(--ink-soft); padding: .4rem .1rem; position: relative; transition: color .2s; }
.nav-links a::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1.5px; background: var(--terracotta); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: var(--space-4); }

.lang-toggle { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-size: var(--text-xs); font-weight: 600; }
.lang-toggle button { padding: .32rem .62rem; color: var(--ink-soft); letter-spacing: .04em; transition: background .2s, color .2s; }
.lang-toggle button[aria-pressed="true"] { background: var(--navy); color: var(--cream); }

.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; align-items: center; justify-content: center; }
.menu-btn svg { width: 20px; height: 20px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; padding: .8rem 1.4rem; border-radius: 999px; transition: transform .18s ease, box-shadow .2s ease, background .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--terracotta-dark); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--yellow); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--yellow-deep); }
.btn--ghost { border: 1px solid var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--sm { padding: .55rem 1rem; font-size: var(--text-xs); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,22,38,.15) 0%, rgba(14,22,38,.12) 40%, rgba(14,22,38,.72) 100%); }
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 5rem); padding-top: clamp(4rem,10vw,7rem); }
.hero__title { font-size: var(--text-hero); line-height: .96; letter-spacing: -.02em; }
.hero__sub { font-size: var(--text-lg); font-weight: 500; margin-top: var(--space-4); color: rgba(245,239,228,.92); }
.hero__roles { font-size: var(--text-sm); letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-top: var(--space-3); font-weight: 600; }
.hero__tag { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; color: rgba(245,239,228,.95); margin-top: var(--space-6); max-width: 30ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.hero__data { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: var(--space-8); font-size: var(--text-xs); letter-spacing: .04em; color: rgba(245,239,228,.85); }
.hero__data span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__data span::before { content: "·"; color: var(--yellow); }

/* ---------- page hero (interior) ---------- */
.pagehead { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(1.5rem,4vw,3rem); border-bottom: 1px solid var(--line-soft); }
.pagehead h1 { font-size: var(--text-3xl); margin-top: var(--space-3); }
.pagehead .lead { margin-top: var(--space-4); }

/* ---------- lane tiles ---------- */
.lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.lane { display: flex; flex-direction: column; padding: var(--space-8); background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.lane:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lane__num { font-family: var(--font-display); font-size: 2rem; color: var(--terracotta); line-height: 1; }
.lane h3 { font-size: var(--text-xl); margin-top: var(--space-3); }
.lane__by { font-size: var(--text-xs); letter-spacing: .06em; color: var(--ink-soft); margin-top: .35rem; }
.lane p { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-4); flex: 1; }
.lane__link { margin-top: var(--space-6); font-size: var(--text-sm); font-weight: 600; color: var(--terracotta); display: inline-flex; align-items: center; gap: .4rem; }
.lane__link svg { width: 16px; height: 16px; transition: transform .2s; }
.lane:hover .lane__link svg { transform: translateX(4px); }

/* ---------- spotlight ---------- */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.spotlight__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.spotlight__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.badge { display: inline-block; font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--yellow); color: var(--navy); padding: .35rem .7rem; border-radius: 999px; }

/* ---------- callout / band ---------- */
.band { background: var(--navy); color: var(--cream); }
.band .eyebrow { color: var(--yellow); }
.band .eyebrow::before { background: var(--yellow); }
.band a.link-underline { color: var(--yellow); }
.band-terra { background: var(--terracotta); color: #fff; }
.merch { background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; justify-content: space-between; }
.merch p { max-width: 46ch; color: var(--ink-soft); }
.merch strong { color: var(--navy); }

/* ---------- music list ---------- */
.tracks { display: grid; gap: var(--space-4); }
.track { display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-4) var(--space-6); align-items: start; padding: var(--space-6); background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: box-shadow .2s, border-color .2s; }
.track:hover { box-shadow: var(--shadow-sm); border-color: var(--line); }
.track__yr { font-family: var(--font-display); font-size: 1.4rem; color: var(--terracotta); min-width: 3.2rem; }
.track__body h3 { font-size: var(--text-xl); }
.track__meta { display: flex; flex-wrap: wrap; gap: .4rem .6rem; margin-top: .5rem; }
.tag { font-size: var(--text-xs); font-weight: 600; letter-spacing: .03em; padding: .25rem .6rem; border-radius: 999px; background: var(--cream-2); color: var(--ink-soft); border: 1px solid var(--line-soft); }
.tag--live { background: var(--yellow); color: var(--navy); border-color: transparent; }
.tag--role { background: transparent; border-color: var(--terracotta); color: var(--terracotta); }
.track__about { font-size: var(--text-sm); color: var(--ink-soft); margin-top: .7rem; max-width: 62ch; }
.track__about b { color: var(--navy); font-weight: 600; }
.track__cta { display: flex; align-items: center; }
.group-label { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: var(--space-6); margin-top: var(--space-16); }
.group-note { font-size: var(--text-sm); color: var(--ink-soft); margin-bottom: var(--space-6); max-width: 60ch; }

/* sync licensing */
.sync { background: var(--navy); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.5rem); }
.sync h2 { color: var(--cream); }
.sync p { color: rgba(245,239,228,.85); max-width: 56ch; }
.sync .btn--ghost { border-color: var(--yellow); color: var(--yellow); }
.sync .btn--ghost:hover { background: var(--yellow); color: var(--navy); }

/* ---------- filmography ---------- */
.credits { display: grid; gap: var(--space-3); }
.credit { display: grid; grid-template-columns: 1fr auto; gap: var(--space-4); padding: var(--space-4) var(--space-6); border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.credit__title { font-family: var(--font-display); font-size: var(--text-lg); }
.credit__role { font-size: var(--text-sm); color: var(--ink-soft); }
.credit__meta { font-size: var(--text-xs); color: var(--ink-soft); text-align: right; white-space: nowrap; }

/* ---------- interviews / lists ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { font-size: var(--text-sm); padding: .5rem .9rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }

/* ---------- join ---------- */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--shadow-sm); }
.card h3 { font-size: var(--text-2xl); }
.card p { color: var(--ink-soft); margin-top: var(--space-3); }
.field-row { display: flex; gap: .6rem; margin-top: var(--space-6); flex-wrap: wrap; }
.field-row input { flex: 1; min-width: 200px; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.lanes-mini { display: grid; gap: .8rem; margin-top: var(--space-6); }
.lane-mini { display: flex; gap: .8rem; align-items: flex-start; padding: var(--space-4); border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--cream-2); }
.lane-mini .dot { width: 10px; height: 10px; border-radius: 999px; margin-top: .45rem; flex: none; }
.lane-mini h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-base); }
.lane-mini p { margin-top: .15rem; font-size: var(--text-sm); }
.teaser { margin-top: var(--space-8); padding: var(--space-6); border: 1px dashed var(--terracotta); border-radius: var(--radius); background: rgba(199,120,87,.06); }
.teaser .badge { background: var(--terracotta); color: #fff; }

/* ---------- contact / press forms ---------- */
.form { display: grid; gap: var(--space-4); max-width: 620px; }
.form label { font-size: var(--text-sm); font-weight: 600; display: grid; gap: .4rem; }
.form input, .form textarea, .form select { padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-weight: 400; }
.form textarea { min-height: 130px; resize: vertical; }
.intent-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-4); }
.intent { padding: var(--space-6); border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); }
.intent h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-base); }
.intent p { font-size: var(--text-sm); color: var(--ink-soft); margin-top: .4rem; }
.intent a { color: var(--terracotta); font-weight: 600; font-size: var(--text-sm); display: inline-block; margin-top: .8rem; }

/* embeds */
.embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.embed iframe { display: block; width: 100%; border: 0; }
.embed-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-4); text-align: center; padding: clamp(3rem,8vw,5rem); background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.embed-placeholder .badge { margin-bottom: var(--space-2); }

.bio-block { max-width: 68ch; }
.bio-block h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-base); color: var(--terracotta); letter-spacing: .04em; text-transform: uppercase; margin-top: var(--space-10); margin-bottom: var(--space-3); }
.bio-block p { margin-bottom: var(--space-4); }
.download-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

.link-underline { border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ---------- footer ---------- */
.footer { background: var(--navy-deep); color: rgba(245,239,228,.8); padding-block: clamp(3rem,6vw,4.5rem); }
.footer a { color: rgba(245,239,228,.8); transition: color .2s; }
.footer a:hover { color: var(--yellow); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-8); }
.footer__brand { font-family: var(--font-display); font-size: 1.8rem; color: var(--cream); display: flex; align-items: center; gap: .6rem; }
.footer__brand svg { width: 32px; height: 32px; color: var(--yellow); }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); margin-bottom: var(--space-4); }
.footer li { margin-bottom: var(--space-3); font-size: var(--text-sm); }
.footer__tag { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: rgba(245,239,228,.7); margin-top: var(--space-4); max-width: 34ch; }
.footer__bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(245,239,228,.12); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; font-size: var(--text-xs); color: rgba(245,239,228,.55); }

/* ---------- fade-in ---------- */
/* Only hide reveal elements when JS is active, so no-JS users still see everything. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* PT note */
.pt-note { display: none; background: rgba(230,198,100,.16); border: 1px solid rgba(212,175,59,.4); color: var(--navy); font-size: var(--text-sm); padding: .7rem 1rem; border-radius: var(--radius-sm); margin-top: var(--space-4); }
[data-lang="pt"] .pt-note { display: block; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .lanes { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: var(--space-4) clamp(1.25rem,5vw,3rem) var(--space-8); transform: translateY(-120%); transition: transform .3s cubic-bezier(.16,1,.3,1); box-shadow: var(--shadow-md); }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; padding: var(--space-4) 0; border-bottom: 1px solid var(--line-soft); font-size: var(--text-lg); }
  .nav-links a::after { display: none; }
  .menu-btn { display: inline-flex; }
  .track { grid-template-columns: auto 1fr; }
  .track__cta { grid-column: 1 / -1; }
  .intent-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .credit { grid-template-columns: 1fr; }
  .credit__meta { text-align: left; }
  .merch { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   EDITORIAL / MAGAZINE SYSTEM (interior pages)
   Cosmopolitan-journalistic · cinematic mystery · colorful
   ============================================================ */

/* --- Editorial page masthead (kicker + dateline + display H1) --- */
.ed-head { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(1.5rem, 4vw, 2.75rem); }
.kicker {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--terracotta); }
.kicker--yellow { color: var(--yellow-deep); }
.kicker--yellow::before { background: var(--yellow); }
.kicker--cream { color: var(--yellow); }
.kicker--cream::before { background: var(--yellow); }

.dateline {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: .4rem 1rem;
}
.dateline span { display: inline-flex; align-items: center; gap: .5rem; }
.dateline span + span::before { content: ""; }
.dateline--cream { color: rgba(245,239,228,.72); }

.ed-title { font-family: var(--font-display); font-size: var(--text-hero); line-height: .98; letter-spacing: -.02em; margin-top: var(--space-4); }
.ed-title em { font-style: italic; color: var(--terracotta); }
.ed-title--sm { font-size: var(--text-3xl); }
.ed-standfirst { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; color: var(--ink-soft); max-width: 34ch; margin-top: var(--space-5); line-height: 1.3; }

/* Rule line divider */
.ed-rule { height: 2px; background: var(--terracotta); border: 0; margin: var(--space-6) 0; opacity: .55; }
.ed-rule--full { width: 100%; }
.ed-rule--short { width: 72px; height: 3px; opacity: 1; }
.ed-rule--yellow { background: var(--yellow); }

/* --- Section marker (roman numeral margin label) --- */
.sec-marker {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  display: block; margin-bottom: var(--space-4);
}
.sec-marker b { color: var(--terracotta); font-weight: 700; }

/* --- Full-bleed cinematic image band --- */
.filmband { position: relative; width: 100%; overflow: hidden; }
.filmband__img { width: 100%; height: clamp(280px, 46vw, 560px); object-fit: cover; display: block; }
.filmband__grain { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: overlay; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.filmband__tint { position: absolute; inset: 0; pointer-events: none; }
.filmband__tint--navy { background: rgba(27,41,66,.34); }
.filmband__tint--terra { background: rgba(199,120,87,.20); }
.filmband__tint--grad { background: linear-gradient(180deg, rgba(14,22,38,.05), rgba(14,22,38,.55)); }
.filmband__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.25rem,4vw,2.5rem);
}
.filmband__cap .kicker { color: var(--yellow); }
.filmband__cap .kicker::before { background: var(--yellow); }
.filmband__caption { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: .04em; color: rgba(245,239,228,.9); margin-top: .5rem; max-width: 52ch; }
.filmband__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--cream); max-width: 20ch; line-height: 1.12; margin-top: .35rem; text-shadow: 0 2px 20px rgba(14,22,38,.5); }

/* --- Pull quote breaking into margin --- */
.pullquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.14;
  color: var(--navy); padding-left: clamp(1rem, 3vw, 1.75rem);
  border-left: 5px solid var(--yellow); max-width: 20ch;
  margin: clamp(2.5rem, 6vw, 4rem) 0;
}
.pullquote--terra { border-left-color: var(--terracotta); color: var(--terracotta); }
.pullquote--wide { max-width: 24ch; }
.pullquote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: var(--text-sm); font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); margin-top: var(--space-4); }
.pullquote--cream { color: var(--cream); }
.pullquote--cream cite { color: rgba(245,239,228,.75); }

/* --- Asymmetric two-column feature --- */
.feature { display: grid; gap: clamp(1.75rem, 5vw, 4rem); align-items: center; }
.feature--6040 { grid-template-columns: 1.5fr 1fr; }
.feature--4060 { grid-template-columns: 1fr 1.5fr; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature__media .filmband__grain { opacity: .35; }
.feature__body h2, .feature__body h3 { font-family: var(--font-display); }
.feature__lede { font-size: var(--text-lg); color: var(--ink-soft); margin-top: var(--space-4); }

/* --- Numbered index cards grid --- */
.idxgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-5); }
.idxcard {
  position: relative; padding: var(--space-6); background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex; flex-direction: column;
}
.idxcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.idxcard__num { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--terracotta); font-variant-numeric: tabular-nums; }
.idxcard--yellow .idxcard__num { color: var(--yellow-deep); }
.idxcard h3, .idxcard h4 { font-family: var(--font-display); font-size: var(--text-xl); margin-top: var(--space-3); }
.idxcard p { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-3); flex: 1; }
.idxcard .mono-meta { font-size: var(--text-xs); letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin-top: var(--space-3); }
.idxcard__cta { margin-top: var(--space-4); font-size: var(--text-sm); font-weight: 700; color: var(--terracotta); display: inline-flex; align-items: center; gap: .4rem; }
.idxcard__cta::after { content: "→"; transition: transform .2s; }
.idxcard:hover .idxcard__cta::after { transform: translateX(4px); }

/* --- Color band sections --- */
.cband { padding-block: clamp(3rem, 8vw, 6rem); }
.cband--navy { background: var(--navy); color: var(--cream); }
.cband--navy .h-section, .cband--navy > .wrap > h2, .cband--navy > .wrap > h3, .cband--navy .h-section h3 { color: var(--cream); }
.cband--navy .magcard--cream h3 { color: var(--ink) !important; }
.cband--navy .magcard--yellow h3 { color: var(--navy) !important; }
.cband--navy .magcard--terra h3 { color: #fff !important; }
.cband--terra .magcard--cream h3 { color: var(--ink) !important; }
.cband--yellow .magcard--cream h3 { color: var(--ink) !important; }
.cband--navy .lead { color: rgba(245,239,228,.85); }
.cband--navy .sec-marker { color: rgba(245,239,228,.6); }
.cband--navy .sec-marker b { color: var(--yellow); }
.cband--yellow { background: var(--yellow); color: var(--navy); }
.cband--yellow .h-section, .cband--yellow h2, .cband--yellow h3 { color: var(--navy); }
.cband--yellow .lead { color: rgba(27,41,66,.82); }
.cband--yellow .sec-marker { color: rgba(27,41,66,.6); }
.cband--yellow .sec-marker b { color: var(--terracotta-dark); }
.cband--yellow .kicker { color: var(--terracotta-dark); }
.cband--yellow .kicker::before { background: var(--terracotta-dark); }
.cband--terra { background: var(--terracotta); color: #fff; }
.cband--terra .h-section, .cband--terra h2, .cband--terra h3 { color: #fff; }
.cband--terra .lead { color: rgba(255,255,255,.9); }
.cband--terra .kicker { color: rgba(255,255,255,.9); }
.cband--terra .kicker::before { background: rgba(255,255,255,.9); }

/* --- Postmark / seal element --- */
.seal {
  width: 108px; height: 108px; border-radius: 999px;
  border: 2px solid var(--terracotta); color: var(--terracotta);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .1rem; flex: none;
  transform: rotate(-8deg); position: relative;
  background: transparent;
}
.seal::after { content: ""; position: absolute; inset: 7px; border: 1px solid var(--terracotta); border-radius: 999px; opacity: .55; }
.seal__mono { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.seal__ring { font-family: var(--font-body); font-size: .5rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.seal--cream { border-color: var(--yellow); color: var(--yellow); }
.seal--cream::after { border-color: var(--yellow); }
.seal--navy { border-color: var(--navy); color: var(--navy); }
.seal--navy::after { border-color: var(--navy); }

.seal-row { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }

/* --- Editorial body prose (bio, program copy) --- */
.prose { max-width: 62ch; }
.prose p { margin-bottom: var(--space-5); font-size: var(--text-base); }
.prose .dropcap::first-letter,
.prose > p.dropcap::first-letter {
  font-family: var(--font-display); float: left; font-size: 4.2rem; line-height: .78;
  padding-right: .5rem; padding-top: .35rem; color: var(--terracotta);
}
.byline { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

/* Two-up stat / meta strip */
.metastrip { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-8); margin-top: var(--space-6); }
.metastrip div { }
.metastrip dt { font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; }
.metastrip dd { font-family: var(--font-display); font-size: var(--text-lg); margin-top: .2rem; }
.cband--navy .metastrip dt { color: var(--yellow); }

/* Chip refinement for editorial */
.chip--big { font-family: var(--font-display); font-size: var(--text-lg); padding: .7rem 1.2rem; background: transparent; border: 1px solid var(--line); }
.cband--navy .chip { background: rgba(245,239,228,.08); border-color: rgba(245,239,228,.2); color: var(--cream); }

/* mailto card grid (licensing) */
.lanegrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-4); }

/* Interior page hero image treatment inside color band */
.band-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.band-media img { width: 100%; object-fit: cover; aspect-ratio: 16/10; }

/* Responsive editorial */
@media (max-width: 860px) {
  .feature--6040, .feature--4060 { grid-template-columns: 1fr; }
  .feature--4060 .feature__media { order: -1; }
  .pullquote { max-width: none; }
}
@media (max-width: 520px) {
  .seal { width: 88px; height: 88px; }
  .seal__mono { font-size: 1.5rem; }
}

/* ============================================================
   V3 — CINEMATIC AMPLIFICATION
   Aperture / Le Monde M / Pan Am / Wes Anderson register.
   Push color-block architecture, oversized type, full-bleed imagery.
   ============================================================ */

/* --- Bigger type ceiling --- */
:root {
  --text-mega: clamp(3.5rem, 10vw, 8rem);
  --text-giant: clamp(4rem, 10vw, 7rem);
  --text-quote: clamp(2.5rem, 6vw, 4.5rem);
}

/* =========================================================
   FULL-BLEED CINEMATIC HERO with overlaid masthead type
   (replaces the timid mid-page filmband on interior pages)
   ========================================================= */
.edhero {
  position: relative;
  width: 100%;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy-deep);
}
.edhero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Duotone-ish cinematic treatment: navy base + terracotta warm mix */
.edhero__duo {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,22,38,.35) 0%, rgba(14,22,38,.15) 30%, rgba(14,22,38,.55) 72%, rgba(14,22,38,.9) 100%),
    linear-gradient(115deg, rgba(27,41,66,.55), rgba(199,120,87,.30) 70%, rgba(230,198,100,.14));
  mix-blend-mode: normal;
}
.edhero__duo--navy {
  background:
    linear-gradient(180deg, rgba(14,22,38,.45), rgba(14,22,38,.35) 40%, rgba(14,22,38,.88)),
    rgba(27,41,66,.42);
}
.edhero__duo--terra {
  background:
    linear-gradient(180deg, rgba(14,22,38,.30), rgba(14,22,38,.15) 35%, rgba(14,22,38,.82)),
    linear-gradient(120deg, rgba(199,120,87,.42), rgba(27,41,66,.42));
}
.edhero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.edhero__inner {
  position: relative; z-index: 3;
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  width: 100%;
}
.edhero .kicker { color: var(--yellow); }
.edhero .kicker::before { background: var(--yellow); }
.edhero__dateline {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(245,239,228,.85);
  margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: .35rem 1.1rem;
}
.edhero__dateline span { display: inline-flex; align-items: center; gap: .6rem; }
.edhero__dateline span + span::before { content: "·"; color: var(--yellow); margin-right: .5rem; }
.edhero__title {
  font-family: var(--font-display); font-size: var(--text-mega);
  line-height: .92; letter-spacing: -.02em; margin-top: var(--space-5);
  text-shadow: 0 4px 40px rgba(14,22,38,.55);
  max-width: 16ch;
}
.edhero__title em { font-style: italic; color: var(--yellow); display: block; }
.edhero__standfirst {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-xl); color: rgba(245,239,228,.95);
  max-width: 36ch; margin-top: var(--space-6); line-height: 1.28;
  text-shadow: 0 2px 20px rgba(14,22,38,.5);
}
.edhero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.edhero__cta .btn--ghost { border-color: var(--cream); color: var(--cream); }
.edhero__cta .btn--ghost:hover { background: var(--cream); color: var(--navy); }
.edhero .pt-note { color: var(--navy); }
/* seal floated in a hero corner */
.edhero__seal { position: absolute; z-index: 4; }
.edhero__seal--tr { top: clamp(5.5rem, 12vw, 9rem); right: clamp(1.25rem, 5vw, 3rem); }
.edhero__seal--br { bottom: clamp(2rem, 5vw, 3.5rem); right: clamp(1.25rem, 5vw, 3rem); }
.fig-hero {
  position: absolute; z-index: 4; bottom: clamp(1.2rem,3vw,2rem); right: clamp(1.25rem,5vw,3rem);
  font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,239,228,.75); font-weight: 600;
}
@media (max-width: 640px) {
  .edhero { min-height: 62vh; }
  .edhero__seal--tr, .edhero__seal--br { display: none; }
}

/* =========================================================
   COLOR BANDS — enforced architectural scale
   ========================================================= */
.cband { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.cband--tall { min-height: 500px; display: flex; align-items: center; }
.cband--terra.cband--tall, .cband--yellow.cband--tall { min-height: 440px; }
.cband > .wrap { width: 100%; }
.cband--navy { background: var(--navy); }
.cband--navy-deep { background: var(--navy-deep); color: var(--cream); }
.cband--navy-deep .h-section, .cband--navy-deep h2, .cband--navy-deep h3 { color: var(--cream); }

/* Big roman-numeral section marker */
.sec-marker--big {
  font-family: var(--font-display); font-size: var(--text-giant);
  line-height: .9; letter-spacing: -.01em; margin-bottom: var(--space-4);
  display: block; color: var(--terracotta); text-transform: none;
}
.sec-marker--big small {
  display: block; font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: var(--space-3);
}
.cband--navy .sec-marker--big, .cband--navy-deep .sec-marker--big { color: var(--yellow); }
.cband--navy .sec-marker--big small, .cband--navy-deep .sec-marker--big small { color: rgba(245,239,228,.65); }
.cband--terra .sec-marker--big { color: var(--cream); }
.cband--terra .sec-marker--big small { color: rgba(255,255,255,.8); }
.cband--yellow .sec-marker--big { color: var(--terracotta-dark); }
.cband--yellow .sec-marker--big small { color: rgba(27,41,66,.7); }

/* =========================================================
   BOLD ROMAN DIVIDER — full-bleed thick rule w/ numeral
   ========================================================= */
.divider-roman {
  position: relative; text-align: center; margin: 0;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.divider-roman::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 4px;
  background: var(--terracotta); opacity: .9;
}
.divider-roman span {
  position: relative; display: inline-block; background: var(--bg);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-3xl); color: var(--terracotta); line-height: 1;
}
.divider-roman--yellow::before { background: var(--yellow-deep); }
.divider-roman--yellow span { color: var(--yellow-deep); }

/* =========================================================
   OVERSIZED FEATURE PULL QUOTE — breaks out of grid
   ========================================================= */
.pullquote--feature {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-quote); line-height: 1.08;
  color: var(--navy); border: 0; padding: 0;
  max-width: 22ch; margin: clamp(3rem, 7vw, 5rem) 0;
  text-indent: -.4em;
}
.pullquote--feature::before { content: "\201C"; color: var(--terracotta); }
.pullquote--feature.q-terra { color: var(--terracotta); }
.pullquote--feature.q-terra::before { color: var(--navy); }
.pullquote--feature .cite {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: var(--text-sm); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: var(--space-5); text-indent: 0;
}
.cband--navy .pullquote--feature, .cband--navy-deep .pullquote--feature { color: var(--cream); }
.cband--navy .pullquote--feature::before { color: var(--yellow); }
.cband--terra .pullquote--feature { color: #fff; }
.cband--terra .pullquote--feature::before { color: var(--navy); }
.cband--yellow .pullquote--feature { color: var(--navy); }
.cband--yellow .pullquote--feature::before { color: var(--terracotta-dark); }
/* pull quote that hangs into the left margin on wide screens */
.pullquote--hang { }
@media (min-width: 1000px) {
  .pullquote--hang { margin-left: clamp(-2rem, -4vw, -5rem); }
}

/* =========================================================
   MAGAZINE FEATURE CARDS — color-blocked rhythm grid
   (replaces spreadsheet track list & credit list)
   ========================================================= */
.cardgrid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6); margin-top: var(--space-8);
}
.cardgrid--3 { grid-template-columns: repeat(3, 1fr); }
.magcard {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.2rem); border-radius: var(--radius-lg);
  min-height: 260px; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  border: 1px solid transparent;
}
.magcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.magcard__num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: .85; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.magcard__yr {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-top: var(--space-3);
}
.magcard h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-2xl); line-height: 1.02; margin-top: var(--space-3);
}
.magcard__tags { display: flex; flex-wrap: wrap; gap: .35rem .5rem; margin-top: var(--space-4); }
.magcard .tag { font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; }
.magcard__about { font-size: var(--text-sm); line-height: 1.5; margin-top: var(--space-4); flex: 1; }
.magcard__cta { margin-top: var(--space-5); }
.magcard__role { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-top: var(--space-4); }
/* color variants for the rhythm */
.magcard--cream, .cband--navy .magcard--cream, .cband--terra .magcard--cream, .cband--yellow .magcard--cream { background: var(--surface); border-color: var(--line-soft); color: var(--ink); }
.magcard--cream .magcard__num, .cband .magcard--cream .magcard__num { color: var(--terracotta); }
.magcard--cream .magcard__yr, .magcard--cream .magcard__role, .cband .magcard--cream .magcard__yr, .cband .magcard--cream .magcard__role { color: var(--terracotta); }
.magcard--cream .magcard__about, .cband .magcard--cream .magcard__about { color: var(--ink-soft); }
.magcard--cream h3, .cband .magcard--cream h3 { color: var(--ink); }
.magcard--navy { background: var(--navy); color: var(--cream); }
.magcard--navy .magcard__num { color: var(--yellow); }
.magcard--navy .magcard__yr, .magcard--navy .magcard__role { color: var(--yellow); }
.magcard--navy .magcard__about { color: rgba(245,239,228,.85); }
.magcard--navy .tag { background: rgba(245,239,228,.1); border-color: rgba(245,239,228,.24); color: var(--cream); }
.magcard--terra, .cband .magcard--terra { background: var(--terracotta); color: #fff; }
.magcard--terra .magcard__num, .cband .magcard--terra .magcard__num { color: var(--navy); }
.magcard--terra .magcard__yr, .magcard--terra .magcard__role, .cband .magcard--terra .magcard__yr, .cband .magcard--terra .magcard__role { color: rgba(255,255,255,.92); }
.magcard--terra .magcard__about, .cband .magcard--terra .magcard__about { color: rgba(255,255,255,.92); }
.magcard--terra h3, .cband .magcard--terra h3 { color: #fff; }
.magcard--terra .tag { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.magcard--yellow, .cband .magcard--yellow { background: var(--yellow); color: var(--navy); }
.magcard--yellow .magcard__num, .cband .magcard--yellow .magcard__num { color: var(--terracotta-dark); }
.magcard--yellow .magcard__yr, .magcard--yellow .magcard__role, .cband .magcard--yellow .magcard__yr, .cband .magcard--yellow .magcard__role { color: var(--terracotta-dark); }
.magcard--yellow .magcard__about, .cband .magcard--yellow .magcard__about { color: rgba(27,41,66,.82); }
.magcard--yellow h3, .cband .magcard--yellow h3 { color: var(--navy); }
.magcard--yellow .tag { background: rgba(27,41,66,.1); border-color: rgba(27,41,66,.24); color: var(--navy); }
.magcard--yellow .tag--live { background: var(--navy); color: var(--yellow); }
/* live tag override for cream cards keeps yellow */
.magcard--cream .tag--live { background: var(--yellow); color: var(--navy); }
.magcard__cta .btn--ghost { }
.magcard--navy .btn--ghost { border-color: var(--yellow); color: var(--yellow); }
.magcard--navy .btn--ghost:hover { background: var(--yellow); color: var(--navy); }

@media (max-width: 760px) {
  .cardgrid, .cardgrid--3 { grid-template-columns: 1fr; }
}

/* =========================================================
   TWO-PANEL SPREAD — left/right split with mirrored type
   ========================================================= */
.spread {
  display: grid; grid-template-columns: 1fr 1fr; width: 100%;
  min-height: 520px;
}
.spread__panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}
.spread__panel--navy { background: var(--navy); color: var(--cream); }
.spread__panel--yellow { background: var(--yellow); color: var(--navy); text-align: right; align-items: flex-end; }
.spread__panel--terra { background: var(--terracotta); color: #fff; text-align: right; align-items: flex-end; }
.spread__kicker { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.spread__panel--navy .spread__kicker { color: var(--yellow); }
.spread__panel--yellow .spread__kicker { color: var(--terracotta-dark); }
.spread__panel--terra .spread__kicker { color: var(--navy); }
.spread__title { font-family: var(--font-display); font-size: var(--text-giant); line-height: .92; margin-top: var(--space-4); }
.spread__title em { font-style: italic; }
.spread__panel--navy .spread__title em { color: var(--yellow); }
.spread__panel--yellow .spread__title em { color: var(--terracotta-dark); }
.spread__body { font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); line-height: 1.3; margin-top: var(--space-6); max-width: 30ch; }
.spread__panel--yellow .spread__body, .spread__panel--terra .spread__body { max-width: 30ch; }
@media (max-width: 760px) {
  .spread { grid-template-columns: 1fr; min-height: 0; }
  .spread__panel--yellow, .spread__panel--terra { text-align: left; align-items: flex-start; }
  .spread__panel { min-height: 340px; }
}

/* =========================================================
   FIGURE REFERENCE label (art-history plate texture)
   ========================================================= */
.fig {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .5rem;
}
.fig::before { content: ""; width: 18px; height: 1.5px; background: var(--terracotta); }
.cband--navy .fig, .cband--navy-deep .fig { color: rgba(245,239,228,.7); }
.cband--navy .fig::before { background: var(--yellow); }

/* Recurring city dateline texture strip */
.cities {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: center;
  padding-block: var(--space-6);
}
.cities span { display: inline-flex; align-items: center; gap: 1rem; }
.cities span::after { content: "✦"; color: var(--terracotta); font-size: .7em; }
.cities span:last-child::after { display: none; }

/* =========================================================
   HOMEPAGE — manifesto strip + release reveal band
   ========================================================= */
.manifesto { background: var(--terracotta); color: #fff; padding-block: clamp(3.5rem, 8vw, 6rem); }
.manifesto__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.manifesto__col { border-top: 3px solid rgba(255,255,255,.5); padding-top: var(--space-6); }
.manifesto__idx { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); }
.manifesto__phrase { font-family: var(--font-display); font-style: italic; font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1; margin-top: var(--space-4); color: #fff; }
@media (max-width: 760px) { .manifesto__grid { grid-template-columns: 1fr; } }

.releaseband { background: var(--navy); color: var(--cream); padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; overflow: hidden; }
.releaseband__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.releaseband__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.45); transform: rotate(-2deg); }
.releaseband__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.releaseband .kicker { color: var(--yellow); }
.releaseband .kicker::before { background: var(--yellow); }
.releaseband__title { font-family: var(--font-display); font-size: var(--text-mega); line-height: .9; margin-top: var(--space-4); color: var(--cream); }
.releaseband__title em { font-style: italic; color: var(--yellow); }
.releaseband__meta { font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); color: rgba(245,239,228,.85); margin-top: var(--space-4); }
.releaseband p.lead { color: rgba(245,239,228,.85); }
.releaseband__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.releaseband__cta .btn--ghost { border-color: var(--yellow); color: var(--yellow); }
.releaseband__cta .btn--ghost:hover { background: var(--yellow); color: var(--navy); }
@media (max-width: 820px) {
  .releaseband__grid { grid-template-columns: 1fr; }
  .releaseband__media { max-width: 340px; }
}

/* =========================================================
   Editorial masthead (text-only, when used) bumped up
   ========================================================= */
.ed-head { padding-top: clamp(3.5rem, 7vw, 6rem); }
.dropcap-terra::first-letter { color: var(--terracotta); }

/* Bigger standfirst on cream feature intros */
.feature__lede { font-size: var(--text-xl); }

/* section spacing a touch tighter between color bands so cream doesn't dominate */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }

/* =========================================================
   HOMEPAGE MAGAZINE-COVER SYSTEM
   ========================================================= */

/* --- MAGAZINE COVER HERO --- */
.cover { position: relative; min-height: 100vh; color: var(--cream); overflow: hidden; display: flex; flex-direction: column; }
.cover__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,22,38,.4) 0%, rgba(14,22,38,.2) 22%, rgba(14,22,38,.1) 50%, rgba(14,22,38,.88) 100%),
    radial-gradient(80% 70% at 22% 55%, rgba(14,22,38,.55) 0%, rgba(14,22,38,.15) 55%, rgba(14,22,38,0) 80%);
}
.cover__masthead {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.25rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(245,239,228,.28);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: rgba(245,239,228,.9);
}
.cover__issue { color: var(--yellow); }
.cover__body {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(4rem, 10vw, 8rem);
}
.cover__roles {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--yellow);
}
.cover__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(4rem, 14vw, 11rem); line-height: .88; letter-spacing: -.03em;
  margin-top: clamp(1rem, 2vw, 1.6rem);
  text-shadow: 0 2px 24px rgba(14,22,38,.5), 0 1px 4px rgba(14,22,38,.4);
}
.cover__title em { font-style: italic; color: var(--yellow); }
.cover__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1;
  margin-top: clamp(1.2rem, 2.5vw, 2rem); color: rgba(245,239,228,.96);
}
.cover__tag {
  font-family: var(--font-body); font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500; letter-spacing: .01em; margin-top: var(--space-6);
  max-width: 40ch; color: rgba(245,239,228,.85);
}
.cover__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.cover__ghost { border-color: var(--cream); color: var(--cream); }
.cover__ghost:hover { background: var(--cream); color: var(--navy); }
.cover__coverlines {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid rgba(245,239,228,.28);
  background: linear-gradient(180deg, rgba(14,22,38,0) 0%, rgba(14,22,38,.45) 100%);
}
.cover__line {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(245,239,228,.85); line-height: 1.4;
}
.cover__line b {
  color: var(--yellow); font-weight: 700; letter-spacing: .1em;
  font-size: 0.7rem; display: block; margin-bottom: .3rem;
}
@media (max-width: 900px) {
  .cover { min-height: 92vh; }
  .cover__coverlines { grid-template-columns: repeat(2, 1fr); }
  .cover__masthead { flex-direction: column; gap: .3rem; align-items: flex-start; font-size: 0.66rem; }
}
@media (max-width: 520px) {
  .cover__coverlines { grid-template-columns: 1fr 1fr; padding-block: 1.2rem; gap: .8rem 1rem; }
  .cover__line { font-size: 0.7rem; }
}

/* --- ISSUE BAR (yellow strip) --- */
.issuebar { background: var(--yellow); color: var(--navy); border-block: 1px solid rgba(27,41,66,.15); }
.issuebar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: clamp(.8rem, 1.6vw, 1.1rem); gap: 2rem; flex-wrap: wrap;
}
.issuebar__mark {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.04em;
  color: var(--navy); font-weight: 400;
}
.issuebar__meta {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--navy);
}
.issuebar__meta--right { color: rgba(27,41,66,.75); }
@media (max-width: 900px) {
  .issuebar__inner { flex-direction: column; align-items: flex-start; gap: .4rem; padding-block: 1rem; }
  .issuebar__meta { font-size: 0.68rem; letter-spacing: .12em; }
}

/* --- ROOMS (3 stacked cinematic feature tiles) --- */
.rooms { background: var(--cream); padding-block: 0; }
.rooms__intro { padding-block: clamp(4rem, 8vw, 7rem) clamp(2rem, 4vw, 3.5rem); }
.rooms__h {
  font-family: var(--font-display); font-size: var(--text-3xl); line-height: 1.02;
  margin-top: var(--space-4); color: var(--navy);
}
.rooms__h em { font-style: italic; color: var(--terracotta); }
.rooms__lead {
  font-family: var(--font-body); font-size: var(--text-lg); color: var(--ink-soft);
  max-width: 60ch; margin-top: var(--space-4);
}
.rooms__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.room {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(2rem, 3.5vw, 3rem);
  min-height: min(88vh, 780px);
  transition: transform .35s ease;
  overflow: hidden;
}
.room--terra { background: var(--terracotta); color: #fff; }
.room--navy { background: var(--navy); color: var(--cream); }
.room--yellow { background: var(--yellow); color: var(--navy); }
.room__num {
  font-family: var(--font-display); font-size: clamp(4rem, 8vw, 7rem);
  line-height: .8; font-weight: 400; opacity: .95;
}
.room--terra .room__num { color: var(--yellow); }
.room--navy .room__num { color: var(--yellow); }
.room--yellow .room__num { color: var(--terracotta-dark); }
.room__img {
  margin-top: var(--space-6);
  aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
  box-shadow: 0 12px 40px rgba(14,22,38,.28);
}
.room__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.room:hover .room__img img { transform: scale(1.04); }
.room__body { margin-top: auto; padding-top: var(--space-6); }
.room__kick {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; opacity: .8;
}
.room__title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1; margin-top: var(--space-3); font-weight: 400;
}
.room__phrase {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-top: var(--space-3); line-height: 1.2;
}
.room__phrase em { font-style: italic; }
.room--terra .room__phrase em { color: var(--yellow); }
.room--navy .room__phrase em { color: var(--yellow); }
.room--yellow .room__phrase em { color: var(--terracotta-dark); }
.room__meta {
  font-family: var(--font-body); font-size: var(--text-sm); margin-top: var(--space-4);
  opacity: .82;
}
.room__link {
  display: inline-block; margin-top: var(--space-6);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700;
  letter-spacing: .04em; padding-bottom: .3rem;
  border-bottom: 1.5px solid currentColor;
  transition: gap .2s ease, opacity .2s ease;
}
.room:hover .room__link { opacity: .85; }
@media (max-width: 900px) {
  .rooms__grid { grid-template-columns: 1fr; }
  .room { min-height: auto; padding-block: clamp(3rem, 8vw, 4rem); }
  .room__img { aspect-ratio: 16/10; }
}

/* --- FEATURE (single-column magazine spread with big media) --- */
.feature { position: relative; overflow: hidden; }
.feature--navy { background: var(--navy); color: var(--cream); }
.feature__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 0; align-items: stretch; min-height: 88vh;
}
.feature__media {
  position: relative; overflow: hidden;
  min-height: min(88vh, 720px);
}
.feature__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
}
.feature__fig {
  position: absolute; left: clamp(1rem, 2vw, 1.5rem); bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); padding: .3rem .6rem;
  background: rgba(14,22,38,.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,239,228,.24);
}
.feature__body {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.feature__dateline {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow); margin-top: var(--space-6);
}
.feature__title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: .9; font-weight: 400; margin-top: var(--space-3);
}
.feature__title em { font-style: italic; color: var(--yellow); }
.feature__deck {
  font-family: var(--font-body); font-size: var(--text-lg); line-height: 1.55;
  margin-top: var(--space-6); max-width: 50ch; color: rgba(245,239,228,.9);
}
.feature__quote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.3; padding-left: var(--space-4); border-left: 3px solid var(--terracotta);
  margin-top: var(--space-8); color: var(--cream); max-width: 44ch;
}
.feature__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.feature__ghost { border-color: var(--cream); color: var(--cream); }
.feature__ghost:hover { background: var(--cream); color: var(--navy); }
@media (max-width: 900px) {
  .feature__grid { grid-template-columns: 1fr; min-height: 0; }
  .feature__media { min-height: 56vh; }
  .feature__body { padding-block: clamp(2.5rem, 6vw, 4rem); }
}

/* --- SPREAD: three-panel color band (extend existing .spread) --- */
.spread { grid-template-columns: 1fr 1fr 1fr; min-height: 480px; }
.spread .spread__panel--terra .spread__title em { color: var(--yellow); font-style: italic; }
.spread .spread__panel--navy .spread__title em { color: var(--yellow); font-style: italic; }
.spread__panel--terra .spread__kicker { color: rgba(255,255,255,.85); }
.spread__panel--terra { text-align: left; align-items: flex-start; }
@media (max-width: 900px) { .spread { grid-template-columns: 1fr; min-height: 0; } }

/* --- CITY DESK (poster + newsletter split) --- */
.citydesk { background: var(--cream); }
.citydesk__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 88vh;
}
.citydesk__poster {
  position: relative; overflow: hidden; min-height: min(88vh, 720px);
}
.citydesk__poster img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.citydesk__body {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.citydesk__title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: .9; font-weight: 400; margin-top: var(--space-3);
  color: var(--navy);
}
.citydesk__title em { font-style: italic; color: var(--terracotta); }
.citydesk__deck {
  font-family: var(--font-body); font-size: var(--text-lg); line-height: 1.55;
  margin-top: var(--space-6); max-width: 52ch; color: var(--ink-soft);
}
.citydesk__list {
  list-style: none; padding: 0; margin-top: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-3);
  border-top: 1px solid var(--line-soft); padding-top: var(--space-6);
}
.citydesk__list li {
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--ink); padding-left: 1.6rem; position: relative; line-height: 1.5;
}
.citydesk__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; background: var(--terracotta); border-radius: 50%;
}
.citydesk__list b { font-weight: 700; color: var(--navy); }
.citydesk__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
@media (max-width: 900px) {
  .citydesk__grid { grid-template-columns: 1fr; min-height: 0; }
  .citydesk__poster { min-height: 56vh; }
  .citydesk__body { padding-block: clamp(2.5rem, 6vw, 4rem); }
}

/* --- POSTMARK BAND (footer preface) --- */
.postmark {
  background: var(--terracotta); color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.postmark__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.postmark__text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.3;
  color: #fff; max-width: 40ch; margin: 0;
}
.postmark__mail {
  font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.9); text-align: right; margin: 0;
}
.postmark__mail a { color: var(--yellow); border-bottom: 1px solid rgba(230,198,100,.5); }
.postmark__mail a:hover { border-bottom-color: var(--yellow); }
.postmark .seal--cream { color: #fff; border-color: rgba(255,255,255,.5); }
.postmark .seal__ring { color: rgba(255,255,255,.9); }
.postmark .seal__mono { color: var(--yellow); }
@media (max-width: 900px) {
  .postmark__inner { grid-template-columns: 1fr; text-align: left; gap: 1.4rem; }
  .postmark__mail { text-align: left; }
  .postmark__text { max-width: none; }
}


/* =========================================================
   INTERVIEWS PAGE — real-photo grid + public service cards
   ========================================================= */
.ivgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.4rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.ivcard {
  display: flex; flex-direction: column;
  color: var(--cream);
  position: relative;
}
.ivcard__imgwrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(245,239,228,.05);
  border: 1px solid rgba(245,239,228,.12);
}
.ivcard__imgwrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.ivcard:hover .ivcard__imgwrap img { transform: scale(1.03); }
.ivcard__num {
  position: absolute; top: -.4rem; left: -.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-style: italic;
  color: var(--yellow);
  line-height: 1;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(14,22,38,.6);
}
.ivcard__kicker {
  display: block;
  margin-top: clamp(1rem, 1.6vw, 1.4rem);
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
}
.ivcard__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
  margin-top: clamp(.4rem, .8vw, .6rem);
  color: var(--cream);
}
.ivcard__desc {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(245,239,228,.82);
  margin-top: clamp(.6rem, 1vw, .9rem);
  max-width: 34ch;
}
@media (max-width: 900px) {
  .ivgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ivgrid { grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 2.5rem); }
  .ivcard__imgwrap { aspect-ratio: 4 / 3; }
}

/* --- PUBLIC SERVICE CARDS (cream section) --- */
.ps-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(40,37,29,.1);
}
.ps-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.ps-card__body {
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
}
.ps-card__body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-top: var(--space-3);
}

/* =========================================================
   V2 ADDITIONS — cover art on magcards (the one improvement
   over v1), credentials sidebar, collab chips, payment cards
   ========================================================= */

/* Cover art at the top of each catalogue magcard.
   Cards keep their color block below the image. */
.magcard--cover { padding: 0; overflow: hidden; }
.magcard--cover .magcard__cover {
  position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--navy-deep);
}
.magcard--cover .magcard__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.magcard--cover:hover .magcard__cover img { transform: scale(1.05); }
.magcard--cover .magcard__fig {
  position: absolute; left: .7rem; bottom: .7rem; z-index: 2;
  font-family: var(--font-body); font-size: .64rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--yellow);
  padding: .28rem .55rem; background: rgba(14,22,38,.62);
  border: 1px solid rgba(245,239,228,.22); backdrop-filter: blur(6px);
}
.magcard--cover .magcard__block {
  display: flex; flex-direction: column; flex: 1;
  padding: clamp(1.3rem, 2.6vw, 1.8rem);
}
.magcard--cover .magcard__topline {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.magcard--cover .magcard__num { font-size: clamp(2rem, 4vw, 3rem); }
.magcard--cover h3 { margin-top: var(--space-2); }
.magcard--cover .magcard__cta { margin-top: var(--space-4); }
.magcard--cover .magcard__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1.5px solid currentColor; padding-bottom: .2rem;
}
.magcard--navy .magcard__link { color: var(--yellow); }
.magcard--yellow .magcard__link { color: var(--terracotta-dark); }
.magcard--terra .magcard__link { color: #fff; }
.magcard--cream .magcard__link { color: var(--terracotta); }

/* Catalogue grid: allow up to 4 across on wide screens */
/* Catalog grid — smaller tiles with generous breathing room */
.cardgrid--catalog {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 3vw, 3rem);
  margin-top: var(--space-10);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.cardgrid--catalog .magcard { min-height: 0; }
.cardgrid--catalog .magcard__block { padding: 1.15rem 1.25rem 1.35rem; }
.cardgrid--catalog .magcard__num { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }
.cardgrid--catalog .magcard h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); margin-top: .35rem; }
.cardgrid--catalog .magcard__about { font-size: .88rem; line-height: 1.5; margin-top: .55rem; }
.cardgrid--catalog .song-tiles { margin-top: .85rem; gap: .4rem; }
.cardgrid--catalog .song-tile { width: 30px; height: 30px; }
.cardgrid--catalog .song-tiles__label { font-size: .68rem; letter-spacing: .12em; }
@media (max-width: 1080px) { .cardgrid--catalog { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1.75rem; } }
@media (max-width: 620px)  { .cardgrid--catalog { grid-template-columns: 1fr; gap: 1.75rem; } }

/* Credentials sidebar (magazine masthead box) */
.credbox {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.credbox__head {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta);
  padding-bottom: var(--space-4); border-bottom: 1px solid var(--line);
}
.credbox dl { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-4); }
.credbox dt {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.credbox dd {
  font-family: var(--font-display); font-size: var(--text-lg);
  color: var(--navy); margin-top: .1rem; line-height: 1.2;
}

/* Collab — inline serif prose chips (not bullets) */
.collab-line {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.25; color: var(--navy); max-width: 22ch;
}
.collab-line .amp { color: var(--terracotta-dark); font-style: italic; }
.cband--yellow .collab-line { color: var(--navy); }
.collab-chips { display: flex; flex-wrap: wrap; gap: .6rem .7rem; margin-top: var(--space-8); }
.collab-chip {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .02em; padding: .5rem 1.05rem; border-radius: 999px;
  border: 1.5px solid var(--navy); color: var(--navy); background: transparent;
}
.note-italic {
  font-family: var(--font-display); font-style: italic; font-size: var(--text-base);
  color: var(--ink-soft); margin-top: var(--space-4);
}
.cband--yellow .note-italic { color: rgba(27,41,66,.72); }

/* Newsletter form (cream text on navy band) */
.signup { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); max-width: 620px; }
.signup input {
  flex: 1 1 200px; min-width: 0; padding: .85rem 1.1rem;
  border-radius: 999px; border: 1px solid rgba(245,239,228,.3);
  background: rgba(245,239,228,.06); color: var(--cream);
  font-size: var(--text-base);
}
.signup input::placeholder { color: rgba(245,239,228,.55); }
.signup input:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.form-note { font-size: var(--text-sm); color: rgba(245,239,228,.7); margin-top: var(--space-4); }

/* Support the Work — payment cards */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.pay-card {
  display: flex; flex-direction: column; padding: clamp(1.6rem, 3vw, 2.1rem);
  border-radius: var(--radius-lg); border: 1px solid transparent; min-height: 220px;
}
.pay-card--terra { background: var(--terracotta); color: #fff; }
.pay-card--navy { background: var(--navy); color: var(--cream); }
.pay-card--cream { background: var(--surface); border-color: var(--line); color: var(--ink); }
.pay-card__label {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.pay-card--terra .pay-card__label { color: var(--yellow); }
.pay-card--navy .pay-card__label { color: var(--yellow); }
.pay-card--cream .pay-card__label { color: var(--terracotta); }
.pay-card h3 { font-family: var(--font-display); font-style: italic; font-size: var(--text-2xl); margin-top: var(--space-2); }
.pay-card--terra h3 { color: #fff; }
.pay-card--navy h3 { color: var(--cream); }
.pay-card--cream h3 { color: var(--navy); }
.pay-card p { font-size: var(--text-sm); line-height: 1.5; margin-top: var(--space-3); flex: 1; }
.pay-card--terra p { color: rgba(255,255,255,.9); }
.pay-card--navy p { color: rgba(245,239,228,.85); }
.pay-card--cream p { color: var(--ink-soft); }
.pay-card__action { margin-top: var(--space-5); }
.pay-card--navy .btn--ghost { border-color: var(--yellow); color: var(--yellow); }
.pay-card--navy .btn--ghost:hover { background: var(--yellow); color: var(--navy); }
.pay-card--terra .btn--ghost { border-color: #fff; color: #fff; }
.pay-card--terra .btn--ghost:hover { background: #fff; color: var(--terracotta-dark); }
.zelle-copy {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  padding: .6rem 1.05rem; border-radius: 999px;
  border: 1.5px solid var(--terracotta); color: var(--terracotta); background: transparent;
  transition: background .2s, color .2s;
}
.zelle-copy:hover { background: var(--terracotta); color: #fff; }
.zelle-copy.copied { background: var(--terracotta); color: #fff; }
.pay-note {
  font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-6);
  max-width: 70ch; font-style: italic; font-family: var(--font-display);
}
@media (max-width: 820px) { .pay-grid { grid-template-columns: 1fr; } }

/* Two-column feature for supervisors (pitch | credbox) */
.feature--pitch { grid-template-columns: 1.4fr 1fr; align-items: start; }
@media (max-width: 820px) { .feature--pitch { grid-template-columns: 1fr; } }

/* Ensure legacy 'reveal' works even with lightweight inline observer */

/* Filmography rows (actor page) */
.filmo { margin-top: var(--space-8); border-top: 1px solid var(--line); }
.filmo__row {
  display: grid; grid-template-columns: 4.5rem 1.4fr 1fr 1fr; gap: var(--space-4) var(--space-6);
  align-items: baseline; padding: var(--space-6) 0; border-bottom: 1px solid var(--line-soft);
}
.filmo__yr { font-family: var(--font-display); font-size: 1.4rem; color: var(--terracotta); }
.filmo__title { font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); color: var(--navy); }
.filmo__role { font-size: var(--text-sm); color: var(--ink); font-weight: 600; }
.filmo__meta { font-size: var(--text-sm); color: var(--ink-soft); }
.cband--navy-deep .filmo, .cband--navy .filmo { border-top-color: rgba(245,239,228,.2); }
.cband--navy-deep .filmo__row, .cband--navy .filmo__row { border-bottom-color: rgba(245,239,228,.12); }
.cband--navy-deep .filmo__yr, .cband--navy .filmo__yr { color: var(--yellow); }
.cband--navy-deep .filmo__title, .cband--navy .filmo__title { color: var(--cream); }
.cband--navy-deep .filmo__role, .cband--navy .filmo__role { color: rgba(245,239,228,.9); }
.cband--navy-deep .filmo__meta, .cband--navy .filmo__meta { color: rgba(245,239,228,.7); }
@media (max-width: 720px) {
  .filmo__row { grid-template-columns: 3.5rem 1fr; }
  .filmo__role, .filmo__meta { grid-column: 2; }
}

/* ============================================================
   CINEMATIC HERO (jessblitzberg.com)
   Adapted from the Reportér na Rua rotating-plate pattern —
   dark filmic backdrop, music covers cycling, gold accents.
   ============================================================ */
.cine-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100vh; padding: 6.5rem clamp(1.25rem,5vw,3.5rem) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #0A0A0A; color: var(--cream);
}
/* Rotating backdrop — 4 layered plates w/ staggered opacity + Ken-Burns */
.cine-bg { position: absolute; inset: 0; z-index: 0; }
.cine-bg .plate {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; animation: plateCycle 24s cubic-bezier(.6,.05,.4,1) infinite;
  transform-origin: center; will-change: opacity, transform;
}
.cine-bg .plate.p1 { background-image: url('assets/hero-portrait-biplane.png'); animation-delay: 0s; }
.cine-bg .plate.p2 { background-image: url('assets/hero-portrait-biplane.png'); background-position: 30% center; animation-delay: 6s; }
.cine-bg .plate.p3 { background-image: url('assets/hero-portrait-biplane.png'); background-position: 70% center; animation-delay: 12s; }
.cine-bg .plate.p4 { background-image: url('assets/hero-portrait-biplane.png'); background-position: center; animation-delay: 18s; }
@keyframes plateCycle {
  0%   { opacity: 0; transform: scale(1.08); }
  4%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.14); }
}
/* Cinematic grade overlay */
.cine-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.40) 42%, rgba(10,10,10,.90) 100%),
    radial-gradient(ellipse at top right, rgba(199,120,87,0.20), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0,0,0,0.45), transparent 50%);
}
/* Film grain */
.cine-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Top slug */
.cine-slug {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  color: rgba(245,239,228,.92); text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.cine-slug .right { color: var(--yellow); }
/* Center content block */
.cine-body { position: relative; z-index: 3; margin: auto 0; padding: 2.5rem 0; }
.cine-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3.6rem, 13vw, 11rem); line-height: .9; letter-spacing: -.01em;
  color: var(--cream); text-shadow: 0 4px 34px rgba(0,0,0,.55);
  animation: cineIn 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.cine-title .em { color: var(--yellow); }
@keyframes cineIn { from { opacity: 0; transform: translateY(28px);} to { opacity: 1; transform: translateY(0);} }
.cine-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.7vw, 2.1rem); color: rgba(245,239,228,.96);
  line-height: 1.32; margin-top: 1.1rem; max-width: 30ch;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
  animation: cineIn 1.3s cubic-bezier(.2,.7,.2,1) .15s both;
}
.cine-lede {
  font-family: var(--font-body); font-size: clamp(.98rem, 1.3vw, 1.12rem);
  color: rgba(245,239,228,.92); max-width: 54ch; line-height: 1.55;
  margin-top: 1.8rem; padding-left: 1rem; border-left: 3px solid var(--terracotta);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.cine-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.cine-cta .btn--ghost { border-color: rgba(245,239,228,.7); color: var(--cream); }
.cine-cta .btn--ghost:hover { background: var(--cream); color: var(--navy); }
.cine-meta {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem; margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(245,239,228,.22); max-width: 900px;
}
.cine-meta .cell dt {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700; margin-bottom: .35rem;
}
.cine-meta .cell dd {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: .84rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cream); font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
/* Bottom-right pulse indicator */
.cine-pulse {
  position: relative; z-index: 3; align-self: flex-end;
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 2rem;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700;
}
.cine-pulse .dot {
  width: 7px; height: 7px; background: var(--terracotta); border-radius: 50%;
  animation: cinePulse 2s ease-in-out infinite;
}
@keyframes cinePulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(199,120,87,.6);} 50% { opacity: .35; box-shadow: 0 0 0 6px rgba(199,120,87,0);} }
@media (max-width: 640px) {
  .cine-slug { font-size: .58rem; letter-spacing: .14em; }
  .cine-pulse { align-self: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .cine-bg .plate { animation: none; opacity: 0; }
  .cine-bg .plate.p1 { opacity: 1; }
  .cine-title, .cine-sub { animation: none; }
  .cine-pulse .dot { animation: none; }
}

/* ============================================================
   PLATFORM PILL BUTTONS (top of Listen section)
   ============================================================ */
.platform-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--space-8); }
.platform-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  padding: .6rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--navy); color: var(--navy); background: transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.platform-pill svg { width: 17px; height: 17px; display: block; }
.platform-pill:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.platform-pill--primary { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.platform-pill--primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); color: #fff; }
.platform-pill--soon { border-style: dashed; opacity: .8; }

/* ============================================================
   PLAYLISTS SUBSECTION (horizontal cards)
   ============================================================ */
.playlist-intro {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.35;
  color: var(--navy); max-width: 44ch; margin-top: var(--space-6);
}
.playlist-stack {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin-top: var(--space-8); max-width: 900px;
}
.playlist-card {
  display: grid; grid-template-columns: 120px 1fr; gap: clamp(0.9rem, 1.8vw, 1.2rem);
  align-items: start; padding: clamp(0.9rem, 1.8vw, 1.2rem);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.playlist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.playlist-card__cover {
  width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius);
  overflow: hidden; background: var(--navy-deep); box-shadow: var(--shadow-sm);
}
.playlist-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.playlist-card__body { display: flex; flex-direction: column; }
.playlist-card__label {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: .5rem;
}
.playlist-card__label svg { width: 16px; height: 16px; }
.playlist-card h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.55rem); line-height: 1.05; color: var(--navy);
  margin-top: var(--space-2);
}
.playlist-card p {
  font-size: var(--text-xs); line-height: 1.5; color: var(--ink-soft);
  margin-top: var(--space-2); max-width: 46ch;
}
.playlist-card__cta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: var(--space-3); }
.playlist-card__cta .btn { padding: .5rem .85rem; font-size: var(--text-xs); }
.catalog-note {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-lg); color: var(--ink-soft);
  margin-top: var(--space-16); margin-bottom: var(--space-2);
}
@media (max-width: 820px) {
  .playlist-stack { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 560px) {
  .playlist-card { grid-template-columns: 100px 1fr; gap: .85rem; align-items: start; }
}

/* ============================================================
   PER-SONG PLATFORM TILES (inside each magcard)
   ============================================================ */
.song-tiles { display: flex; gap: .4rem; margin-top: var(--space-4); flex-wrap: wrap; align-items: center; }
.song-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px; flex: 0 0 auto;
  border: 1.5px solid currentColor; opacity: .78;
  transition: opacity .2s, transform .15s, background .2s, color .2s;
}
.song-tile svg { width: 15px; height: 15px; display: block; }
.song-tile:hover { opacity: 1; transform: translateY(-2px); }
/* per-card-color legibility */
.magcard--cream .song-tile { color: var(--navy); }
.magcard--cream .song-tile:hover { background: var(--navy); color: var(--cream); }
.magcard--navy .song-tile { color: var(--cream); }
.magcard--navy .song-tile:hover { background: var(--cream); color: var(--navy); }
.magcard--terra .song-tile { color: #fff; }
.magcard--terra .song-tile:hover { background: #fff; color: var(--terracotta-dark); }
.magcard--yellow .song-tile { color: var(--navy); }
.magcard--yellow .song-tile:hover { background: var(--navy); color: var(--yellow); }
.song-tiles__label {
  font-family: var(--font-body); font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; opacity: .6;
  flex: 1 0 100%; margin-bottom: .1rem;
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 10px;
  margin-left: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: var(--terracotta, #C24A2A);
  border-color: var(--terracotta, #C24A2A);
  color: #fff;
  outline: none;
}
@media (max-width: 640px) {
  .lang-toggle { margin-left: 8px; padding: 0 8px; font-size: 10px; }
}
