/* ==========================================================================
   PHRAGMENTS — site stylesheet
   Pure monochrome UI over black. Parallax symbol in the hero only.
   ========================================================================== */

:root {
  --bg:         #000;
  --bg-2:       #050505;
  --line:       rgba(255,255,255,.10);
  --line-2:     rgba(255,255,255,.22);
  --text:       #d3d3d3;
  --text-dim:   #838383;
  --text-faint: #474747;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --serif-text: "EB Garamond", "Cormorant Garamond", Georgia, "Times New Roman", serif;   /* long-form reading (Interviews) */
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1060px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--bg); scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s, opacity .3s; }
a:hover { color: #fff; }
::selection { background: #fff; color: #000; }


/* Typography ------------------------------------------------------------ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  color: var(--text);
  letter-spacing: .005em;
}
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: clamp(17px, 1.8vw, 21px); }
p  { margin: 0 0 1.2em; }
.lede { font-family: var(--serif); font-size: clamp(19px, 1.9vw, 24px); line-height: 1.4; }
.dim { color: var(--text-dim); }
.caps {
  font-family: var(--sans);
  font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 18px; }

/* Layout ---------------------------------------------------------------- */
.wrap { width: min(var(--max), 100% - 2*var(--pad)); margin-inline: auto; }
section { position: relative; }
.pad { padding-block: clamp(56px, 7vw, 104px); }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 26px 0;
  transition: background .5s var(--ease), padding .5s var(--ease);
}
.site-header.scrolled {
  background: linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.6) 70%, transparent);
  padding: 18px 0 28px;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 18px; width: auto; opacity: .85; }
.brand:hover img { opacity: 1; }
.nav { display: flex; gap: 38px; }
.nav a {
  font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--text-dim); padding: 6px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--text);
  width: 40px; height: 40px; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 1px; background: var(--text); margin: 7px 8px; transition: transform .3s, opacity .3s; }
@media (max-width: 760px) {
  .nav-toggle { display: block; position: relative; z-index: 101; }
  .nav {
    position: fixed; inset: 0; background: #000;
    flex-direction: column; align-items: center; justify-content: center; gap: 40px;
    opacity: 0; pointer-events: none; transition: opacity .35s;
  }
  .nav a { font-size: 13px; }
  body.nav-open .nav { opacity: 1; pointer-events: auto; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* Parallax layers -------------------------------------------------------- */
/* A .layers container clips; each .layer is oversized and translated by JS
   according to data-speed (0 = fixed to content, negative = slower than scroll). */
.layers { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.layer {
  position: absolute; left: 50%; top: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.layer.fill { width: 110%; height: 130%; object-fit: cover; }
.layer.dimmed { opacity: .55; }
.veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, transparent 22%, transparent 78%, #000 100%);
}
.veil.soft { background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.35) 30%, rgba(0,0,0,.35) 70%, #000 100%); }
.above { position: relative; z-index: 2; }

/* Hero ------------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: 140px var(--pad) 100px;
  isolation: isolate;
}
.hero .layer.symbol {
  width: min(120vw, 1100px); aspect-ratio: 1; height: auto;
  opacity: .22;
}
/* Phones: the symbol is a third of its desktop size, so its lines thin out and read much darker – lift it. */
@media (max-width: 760px) { .hero .layer.symbol { opacity: .38; } }
.hero-inner { display: grid; gap: 24px; justify-items: center; max-width: 820px; }
.hero-wordmark { width: min(72vw, 560px); opacity: .95; }
.hero-tag {
  margin: 0;
  color: var(--text);
  /* soft near-black halo that follows the letterforms – no visible box */
  text-shadow: 0 0 4px #000, 0 0 10px #000, 0 0 22px #000, 0 0 40px rgba(0,0,0,.9);
}
.hero-actions .btn {
  background: #000;
  border-color: rgba(211,211,211,.55);
}
.hero-actions .btn:hover { background: #000; border-color: #fff; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; z-index: 2;
  width: 1px; height: 72px; overflow: hidden;
  background: rgba(211,211,211,.14);
  opacity: 1; transition: opacity .6s var(--ease);
  padding: 0 14px; margin-left: -14px; background-clip: content-box;   /* wider hit area, thin line */
}
.scroll-cue::after {
  content: ""; position: absolute; left: 14px; top: 0; width: 1px; height: 26px;
  background: linear-gradient(to bottom, transparent, var(--text) 40%, var(--text) 70%, transparent);
  animation: cue-drop 2.6s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes cue-drop {
  0%   { transform: translateY(-100%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}
.site-header.scrolled ~ main .scroll-cue { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .scroll-cue::after { animation: none; top: auto; bottom: 0; } }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid var(--line-2); color: var(--text);
  background: rgba(0,0,0,.25);
  transition: border-color .35s, color .35s, background .35s;
}
.btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.04); }
.btn.solid { background: var(--text); color: #000; border-color: var(--text); }
.btn.solid:hover { background: #fff; border-color: #fff; color: #000; }

/* Featured release (two columns) ------------------------------------------ */
.feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.feature .cover img { width: 100%; border: 1px solid rgba(255,255,255,.06); box-shadow: 0 40px 90px -40px rgba(0,0,0,1); }
.feature .meta { display: grid; gap: 12px; }
.feature .title { margin-top: 0; }
.feature .title { font-size: clamp(30px, 3.6vw, 46px); line-height: 1; }
.feature .with { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--text-dim); margin: -6px 0 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.bc-embed { width: 100%; border: 0; height: 120px; }
.btn.ghost { border-color: var(--line); }
.btn.ghost:hover { border-color: var(--line-2); }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature .cover { max-width: 420px; } }

/* Release grid ---------------------------------------------------------- */
.grid { display: grid; margin-top: 0; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 28px 20px; }
.release { display: grid; gap: 9px; }
.release .art { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-2); }
.release .art img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.release:hover .art img { transform: scale(1.03); }
.release h3 { font-size: 17px; }
.release .yr { font-size: 10px; letter-spacing: .3em; color: var(--text-dim); text-transform: uppercase; }
.release .sub { color: var(--text-dim); font-size: 12px; }

/* Split (text + image) ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split figure { margin: 0; }
.split img { border: 1px solid rgba(255,255,255,.06); }
.split .btn { margin-top: 8px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Follow ------------------------------------------------------------------ */
.follow { text-align: center; display: grid; gap: 16px; justify-items: center; }
.follow h2 { max-width: 760px; }
.follow p { max-width: 480px; color: var(--text-dim); }
/* Running text on the landing page – same reading face as Bio / Music / Interviews */
.feature .meta p.dim, .split p.dim, .follow p { font-family: var(--serif-text); font-size: 17px; line-height: 1.6; }
.socials { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.socials a { font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--text-dim); }
.socials a:hover { color: var(--text); }

/* Footer ---------------------------------------------------------------- */
.site-footer { padding: 40px 0 32px; border-top: 1px solid var(--line); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; align-items: center; }
.site-footer .sym { height: 36px; width: 36px; opacity: .35; }
.site-footer small { color: var(--text-faint); letter-spacing: .08em; font-size: 11px; }
.site-footer nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer nav a { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-dim); }

/* Inner page header ------------------------------------------------------- */
.page-head { padding: 130px 0 16px; }
.page-head h1 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1; }
.page-head .eyebrow { margin-bottom: 12px; }
.page-head .lede { margin-top: 22px; color: var(--text-dim); max-width: 680px; }
.rule { height: 1px; background: var(--line); }

/* Release rows (Music page) ------------------------------------------------ */
.rows { display: grid; }
.rows { margin-top: 8px; }
.row {
  scroll-margin-top: 96px;
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(24px, 4vw, 56px); align-items: start;
  padding: clamp(36px, 4.5vw, 60px) 0;
  border-top: 1px solid var(--line);
}
.row:first-child { border-top: 0; }
.row .art { position: relative; aspect-ratio: 1; background: var(--bg-2); overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.row .art img { width: 100%; height: 100%; object-fit: contain; }
.row .art img.cover-fill { object-fit: cover; }
.row .left { display: grid; gap: 14px; }
.row .credits { list-style: none; margin: 0; padding: 0; font-size: 11.5px; line-height: 1.6; color: var(--text-dim); }
.row .credits li { padding: 1px 0; }
.row .meta { display: grid; gap: 10px; }
.row h2 { font-size: clamp(24px, 2.7vw, 34px); line-height: 1.04; }
.row .with { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--text-dim); margin: -4px 0 0; }
.row .facts { display: flex; gap: 6px 18px; flex-wrap: wrap; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-dim); }
.row .blurb { max-width: 62ch; color: var(--text); font-family: var(--serif-text); font-size: 17px; line-height: 1.6; }
.row .blurb p { margin: 0 0 .9em; }
.row .blurb p:last-child { margin-bottom: 0; }
.row .bc-embed { margin-top: 6px; }
@media (max-width: 760px) { .row { grid-template-columns: 1fr; } .row .left { max-width: 420px; } }

/* Prose (Bio page) --------------------------------------------------------- */
.prose { max-width: 640px; font-family: var(--serif-text); font-size: 17.5px; line-height: 1.62; padding-top: 14px; }
.prose .actions, .prose .eyebrow { font-family: var(--sans); }
.prose p { margin: 0 0 1.4em; color: var(--text); }
.prose p.dim { color: var(--text-dim); }
.prose .lede { color: var(--text); margin-bottom: 1.4em; }
.bio-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.bio-side { display: grid; gap: 30px; position: sticky; top: 120px; }
.bio-side figure { margin: 0; }
.bio-side img { border: 1px solid rgba(255,255,255,.06); }
.bio-side figcaption { margin-top: 12px; font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint); }
.bio-side figcaption a { color: var(--text-dim); border-bottom: 1px solid var(--line); }
.bio-side figcaption a:hover { color: var(--text); border-color: var(--line-2); }
.facts-list { list-style: none; margin: 0; padding: 0; display: grid; }
.facts-list li { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 13px; }
.facts-list li:last-child { border-bottom: 1px solid var(--line); }
.facts-list li span:first-child { color: var(--text-dim); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; padding-top: 3px; white-space: nowrap; }
.facts-list li span:last-child { text-align: right; }
@media (max-width: 860px) { .bio-grid { grid-template-columns: 1fr; } .bio-side { position: static; } }

/* Reveal ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .layer { transform: translate3d(-50%,-50%,0) !important; }
}

/* Music – single-release view (music-single.html) ------------------------- */
.thumbs { display: flex; flex-wrap: nowrap; gap: 10px; margin-top: 24px; }
.thumb { position: relative; flex: 1 1 0; min-width: 0; max-width: 86px; aspect-ratio: 1; height: auto; display: block; border: 1px solid transparent; opacity: .45; transition: opacity .3s, border-color .3s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb:hover { opacity: .85; }
.thumb.on { opacity: 1; border-color: var(--text); }
.thumb span {
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
  white-space: nowrap; background: #000; border: 1px solid var(--line-2); padding: 4px 8px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.thumb:hover span { opacity: 1; }
.single .row { display: none; }
.single .row.active { display: grid; border-top: 0; padding-top: clamp(24px, 3vw, 40px); }
.single .single-stage.fade .row.active { animation: rowfade .5s var(--ease); }
@keyframes rowfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.single .page-head { padding-bottom: 8px; }
@media (max-width: 600px) { .thumbs { flex-wrap: wrap; } .thumb { flex: 0 0 auto; width: 56px; max-width: none; } }
/* No hover on touch screens – and the nowrap labels of the rightmost thumbs would overflow the viewport and widen the page (hid the mobile menu button). */
@media (max-width: 760px) { .thumb span { display: none; } }

/* Lightbox ------------------------------------------------------------------ */
.lb { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.96); display: none; place-items: center; padding: 4vh 4vw; cursor: zoom-out; }
.lb.on { display: grid; animation: lbfade .25s var(--ease); }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb figure { margin: 0; display: grid; gap: 14px; justify-items: center; max-width: 100%; max-height: 100%; }
.lb img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; box-shadow: 0 40px 120px rgba(0,0,0,1); }
.lb figcaption { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-dim); cursor: default; }
.lb figcaption a { color: var(--text); border-bottom: 1px solid var(--line-2); cursor: pointer; }
.lb figcaption a:hover { color: #fff; border-color: #fff; }
.lb-close { position: absolute; top: 18px; right: 22px; background: none; border: 0; color: var(--text-dim); font: 28px/1 var(--serif); cursor: pointer; padding: 6px 10px; }
.lb-close:hover { color: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 0; color: var(--text-dim); font: 44px/1 var(--serif); cursor: pointer; padding: 18px 16px; opacity: .7; transition: color .3s, opacity .3s; }
.lb-nav:hover { color: #fff; opacity: 1; }
.lb-prev { left: 6px; } .lb-next { right: 6px; }
.lb.single .lb-nav { display: none; }
.lb { touch-action: none; }
body.lb-open { position: fixed; inset: 0; width: 100%; overflow: hidden; }   /* locks iOS Safari too; top is set by the script to keep the scroll position */
@media (max-width: 760px) { .lb { padding: 6vh 0; background: #000; } .lb img { max-width: 100vw; } .lb-nav { padding: 24px 10px; font-size: 40px; } }
.row .art, .zoom { cursor: zoom-in; display: block; }

/* Live page ------------------------------------------------------------------ */
.live-block { padding: 8px 0 clamp(40px, 5vw, 64px); }
.live-block .eyebrow { margin-bottom: 14px; }
.live-block .year { font-size: 15px; letter-spacing: .06em; color: var(--text-dim); margin: 30px 0 6px; font-family: var(--sans); }
.live-block .year:first-of-type { margin-top: 8px; }
.shows { list-style: none; margin: 0; padding: 0; }
/* Upcoming show teaser – poster large on black, details beside it */
.teaser { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; padding: 4px 0 8px; }
.teaser .poster { display: block; cursor: zoom-in; }
.teaser .poster img { width: 100%; height: auto; display: block; border: 1px solid rgba(255,255,255,.06); box-shadow: 0 40px 90px -40px rgba(0,0,0,1); }
.teaser .meta { display: grid; gap: 10px; padding-top: 6px; }
.teaser .date { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--text); margin: 0; }
.teaser .ev { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.08; color: var(--text); margin: 0; }
.teaser .where { font-size: 13px; color: var(--text-dim); margin: 0; }
.teaser .note { font-size: 11px; letter-spacing: .1em; color: var(--text-faint); margin: 6px 0 0; }
@media (max-width: 760px) {
  .teaser { grid-template-columns: 1fr; gap: 22px; }
  .teaser .poster { max-width: 300px; }
}
.show {
  display: grid; grid-template-columns: 92px minmax(0,1fr) max-content; gap: 8px 22px; align-items: start;
  padding: 12px 0; border-top: 1px solid var(--line);
}
.shows.upcoming .show { border-top: 0; padding-top: 4px; }
.show .date { font-size: 11px; letter-spacing: .12em; color: var(--text-dim); padding-top: 3px; white-space: nowrap; }
.shows.upcoming .date { color: var(--text); }
.show .what { display: grid; gap: 1px; }
.show .ev { font-family: var(--serif); font-size: 18px; line-height: 1.25; color: var(--text); }
.shows.upcoming .ev { font-size: clamp(22px, 2.4vw, 28px); }
.show .where { font-size: 12.5px; color: var(--text-dim); }
.show .note { font-size: 11px; letter-spacing: .1em; color: var(--text-faint); margin-top: 2px; }
.show .shots { display: flex; gap: 6px; align-items: center; min-height: 1px; flex-wrap: nowrap; }
.show .shots a[hidden] { display: none; }
.show .shots a { width: 56px; height: 56px; display: block; cursor: zoom-in; opacity: .8; transition: opacity .3s; }
.show .shots a:hover { opacity: 1; }
.show .shots img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.show .shots .more { font-size: 10.5px; letter-spacing: .2em; color: var(--text-dim); padding: 0 4px; background: none; border: 0; font-family: var(--sans); cursor: pointer; }
.show .shots .more:hover { color: var(--text); }
@media (max-width: 600px) {
  .show { grid-template-columns: 1fr; gap: 4px; }
  .show .shots { margin-top: 6px; }
}

/* Interviews ---------------------------------------------------------------- */
.iv-video-block, .iv-index-block { padding: 8px 0 clamp(40px, 5vw, 64px); }
.iv-video-block .eyebrow, .iv-index-block .eyebrow { margin-bottom: 14px; }
.video-teaser { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; }
.video { position: relative; display: block; aspect-ratio: 16 / 9; background: var(--bg-2); border: 1px solid rgba(255,255,255,.06); overflow: hidden; cursor: pointer; box-shadow: 0 40px 90px -40px rgba(0,0,0,1); }
.video img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1); opacity: .75; transition: opacity .5s, filter .8s, transform 1.4s var(--ease); }
.video:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.02); }
.video .play { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; }
.video .play::before { content: ""; grid-area: 1 / 1; width: 66px; height: 66px; border-radius: 50%; border: 1px solid rgba(255,255,255,.75); background: rgba(0,0,0,.35); transition: background .3s, transform .4s var(--ease); }
.video .play svg { grid-area: 1 / 1; margin-left: 3px; }
.video:hover .play::before { background: rgba(0,0,0,.6); transform: scale(1.06); }
.video-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; background: #000; }
.video-teaser .note a { color: var(--text-dim); border-bottom: 1px solid var(--line); }
.video-teaser .note a:hover { color: var(--text); border-color: var(--line-2); }

.iv-list .iv-row a { display: grid; grid-template-columns: 92px minmax(0,1fr) max-content; gap: 6px 22px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); color: inherit; }
.iv-list .iv-row:last-child a { border-bottom: 1px solid var(--line); }
.iv-row .date { font-size: 11px; letter-spacing: .12em; color: var(--text-dim); padding-top: 5px; }
.iv-row .what { display: grid; gap: 3px; }
.iv-row .ev { font-family: var(--serif); font-size: 19px; line-height: 1.25; color: var(--text); transition: color .3s; }
.iv-row .where { font-size: 12.5px; color: var(--text-dim); }
.iv-row .go { color: var(--text-faint); font-size: 15px; padding-top: 3px; transition: color .3s, transform .4s var(--ease); }
.iv-row a:hover .ev { color: #fff; }
.iv-row a:hover .go { color: var(--text); transform: translateX(5px); }

.iv-stage { padding-bottom: clamp(56px, 7vw, 104px); }
.iv { scroll-margin-top: 120px; }
.iv + .iv { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--line); }
.iv-js .iv { display: none; }
.iv-js .iv.active { display: block; }
.iv-js .iv + .iv { margin-top: 0; padding-top: 0; border-top: 0; }
.iv-js.iv-open .iv-video-block, .iv-js.iv-open .iv-index-block { display: none; }
.iv-head .eyebrow { margin-bottom: 12px; }
.iv-head h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.06; margin: 0 0 14px; }
.iv-head .dek { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.45; color: var(--text-dim); max-width: 640px; margin: 0; }
.iv-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 90px); align-items: start; margin-top: 34px; }
.iv-side { position: sticky; top: 120px; }
.iv-side .sub { display: block; color: var(--text-dim); font-size: 11.5px; margin-top: 2px; }
.iv-body { padding-top: 0; }
.iv-body p { color: var(--text); }
.iv-body a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.iv-body a:hover { color: #fff; border-color: #fff; }
.qa { margin: 0 0 2.1em; }
.qa .q { font-style: italic; color: var(--text-dim); margin: 0 0 .55em; }
.qa .q em { font-style: normal; }
.qa p { margin: 0 0 .95em; }
.iv-intro { padding-bottom: 28px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.iv-intro .eyebrow { margin-bottom: 16px; }
.iv-intro p, .iv-intro ul { color: var(--text-dim); }
.iv-intro .eyebrow { font-family: var(--sans); }
.iv-intro ul { margin: 0 0 1.4em; padding-left: 1.1em; }
.iv-intro li { margin: .3em 0; }
.iv-intro blockquote { margin: 1.6em 0; padding-left: 18px; border-left: 1px solid var(--line-2); font-family: var(--serif); font-size: 21px; line-height: 1.4; color: var(--text); }
.iv-intro blockquote footer { font-family: var(--sans); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; }
.outro { font-style: italic; color: var(--text-dim); }
.outro span { display: inline-block; margin-top: 8px; font-family: var(--sans); font-style: normal; font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint); }
.iv-foot { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.iv-foot .iv-prev, .iv-foot .iv-next { font-family: var(--serif); font-size: 17px; line-height: 1.3; color: var(--text-dim); display: grid; gap: 4px; }
.iv-foot .iv-next { text-align: right; justify-items: end; }
.iv-foot .iv-prev:hover, .iv-foot .iv-next:hover { color: var(--text); }
.iv-foot .eyebrow { margin: 0; }
@media (max-width: 860px) {
  .video-teaser, .iv-grid { grid-template-columns: 1fr; }
  .iv-side { position: static; }
  .iv-foot { grid-template-columns: 1fr; gap: 14px; }
  .iv-foot .iv-next { text-align: left; justify-items: start; }
  .iv-foot .iv-all { justify-self: start; }
}
@media (max-width: 600px) {
  .iv-list .iv-row a { grid-template-columns: minmax(0,1fr) max-content; }
  .iv-row .date { grid-column: 1 / -1; padding-top: 0; }
}

/* Contact ------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.contact-form { display: grid; gap: 28px; max-width: 560px; padding-top: 14px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-2); border-radius: 0;
  color: var(--text); font: 15px/1.5 var(--sans); padding: 8px 0; outline: none; transition: border-color .3s;
}
.field textarea { font-family: var(--serif-text); font-size: 17.5px; line-height: 1.55; resize: vertical; min-height: 160px; }
.field input:focus, .field textarea:focus { border-color: #fff; }
.field .is-invalid { border-color: rgba(255,255,255,.55); }
.field input:-webkit-autofill, .field textarea:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #000 inset; -webkit-text-fill-color: var(--text); caret-color: var(--text); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 4px; }
.contact-form .btn[disabled] { opacity: .5; cursor: default; }
.form-status { margin: 0; font-family: var(--serif-text); font-size: 17px; color: var(--text-dim); }
.form-status a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.contact-side { position: sticky; top: 120px; padding-top: 14px; }
.contact-side .facts-list li span:last-child { text-align: right; overflow-wrap: anywhere; }
.contact-side .facts-list a { color: var(--text); border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.contact-side .facts-list a:hover { color: #fff; border-color: #fff; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .contact-side { position: static; padding-top: 0; } }

/* Merch ---------------------------------------------------------------------- */
.merch-block { padding: 8px 0 clamp(40px, 5vw, 64px); }
.merch-block .eyebrow { margin-bottom: 18px; }
.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px); }
.product .pic { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--bg-2); border: 1px solid rgba(255,255,255,.06); cursor: zoom-in; }
.product .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .5s var(--ease), transform 1.2s var(--ease); }
.product .pic img.alt { opacity: 0; }
.product .pic:hover img.alt { opacity: 1; }
.product .pic:hover img { transform: scale(1.025); }
.product .info { display: grid; gap: 5px; padding-top: 14px; }
.product .line { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.product h3 { font-size: 18px; line-height: 1.2; margin: 0; }
.product .price { font-size: 13px; letter-spacing: .06em; color: var(--text); white-space: nowrap; }
.product .sub { font-size: 12.5px; color: var(--text-dim); margin: 0; }
.product .stock { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint); margin: 4px 0 0; min-height: 14px; }
.product .stock.low { color: var(--text-dim); }
.product .stock.soldout { color: var(--text-dim); }
.product .info .btn { justify-self: start; margin-top: 10px; }
.product .btn.is-off { border-color: var(--line); color: var(--text-faint); cursor: default; }
.product.soldout .pic img { filter: grayscale(1); opacity: .55; }
.merch-note { padding: 0 0 clamp(56px, 7vw, 104px); }
.merch-note p { max-width: 560px; font-family: var(--serif-text); font-size: 16px; line-height: 1.6; color: var(--text-dim); margin: 0; }
@media (max-width: 860px) { .products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .products { grid-template-columns: 1fr; } .product .pic { max-width: 420px; } }
