/* ==========================================================================
   Trisha Marie: official site styles (hand-coded, no framework)
   Mobile-first. Palette: sepia / black / lipstick red, matching the "Bad Looks Good On Me" single cover.
   ========================================================================== */
:root {
  --night: #17110C;
  --ink: #0E0A07;
  --sepia: #3B2B1E;
  --sepia-2: #2A1F16;
  --parchment: #EFE3CC;
  --cream: #F7EEDD;
  --gold: #C9A36A;
  --red: #D3202F;
  --red-dark: #A3151F;
  --muted: #CDBB9C;            /* body text on dark: 9.9:1 on --night */

  --marker: "Permanent Marker", "Marker Felt", "Comic Sans MS", cursive;
  --hand: "Caveat", "Bradley Hand", cursive;
  --serif: "Cormorant SC", "Cormorant Garamond", Georgia, serif;
  --cond: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Barlow Semi Condensed", "Helvetica Neue", Arial, sans-serif;

  --wobble: 255px 14px 225px 16px / 16px 225px 14px 255px;  /* hand-drawn box */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 64px;
  --shadow: 0 18px 40px rgba(0, 0, 0, .55);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); background: var(--ink); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  min-height: 100vh; background: var(--night); color: var(--parchment);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--gold); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--cream); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
ul[role="list"], .list-reset { list-style: none; padding: 0; }
.icon { width: 1.25em; height: 1.25em; fill: currentColor; flex: 0 0 auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 100; background: var(--cream); color: var(--ink); padding: .6rem 1rem; font-weight: 600; border-radius: 4px; }
.skip-link:focus { top: 1rem; }

/* Release state switch (set by assets/js/site-config.js) */
html:not([data-release="out"]) .when-out { display: none !important; }
html[data-release="out"] .when-presave { display: none !important; }

/* Film grain over everything (static, cheap) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .09;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 .92  0 0 0 0 .8  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--serif); font-weight: 600; font-size: .9rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow.line::after { content: ""; display: block; width: 64px; height: 1px; background: currentColor; opacity: .6; margin-top: .55rem; }
.center .eyebrow.line::after { margin-inline: auto; }
.marker { font-family: var(--marker); font-weight: 400; letter-spacing: .01em; }
.hand { font-family: var(--hand); font-weight: 600; }
.section-title {
  text-wrap: balance; font-family: var(--marker); font-weight: 400; color: var(--cream); line-height: 1;
  font-size: clamp(2.4rem, 7vw, 4rem); transform: rotate(-1.5deg); transform-origin: left center;
  margin: .6rem 0 .4rem; text-shadow: 0 2px 0 rgba(0, 0, 0, .45);
}
.center .section-title { transform-origin: center; }
.section-note { font-family: var(--hand); font-weight: 600; font-size: 1.55rem; line-height: 1.2; color: var(--gold); transform: rotate(-1deg); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --b: rgba(239, 227, 204, .85);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .75rem 1.4rem; border: 2px solid var(--b); border-radius: var(--wobble);
  background: rgba(23, 17, 12, .6); color: var(--cream); text-decoration: none;
  font-family: var(--cond); font-weight: 700; font-size: 1.08rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35); cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { color: var(--cream); background: rgba(59, 43, 30, .9); transform: translateY(-2px) rotate(-.4deg); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn .icon { width: 1.3em; height: 1.3em; }
.btn-primary { background: linear-gradient(180deg, var(--red), var(--red-dark)); --b: var(--cream); box-shadow: 0 10px 26px rgba(211, 32, 47, .3), 0 6px 16px rgba(0, 0, 0, .45); }
.btn-primary:hover { background: linear-gradient(180deg, #E1323F, var(--red-dark)); }
.btn-lg { min-height: 60px; padding: .9rem 1.8rem; font-size: 1.2rem; }
.btn-sm { min-height: 42px; padding: .5rem 1rem; font-size: .95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: linear-gradient(180deg, rgba(14, 10, 7, .7), rgba(14, 10, 7, 0));
}
.site-header.is-scrolled, .nav-open .site-header, .site-header.solid {
  background: rgba(14, 10, 7, .92); box-shadow: 0 1px 0 rgba(201, 163, 106, .25);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { font-family: var(--marker); font-size: 1.45rem; color: var(--cream); text-decoration: none; line-height: 1; transform: rotate(-2deg); white-space: nowrap; display: inline-flex; align-items: flex-start; gap: .15em; }
.brand:hover { color: var(--cream); }
.brand .heart { width: .7em; height: .7em; color: var(--parchment); }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: transparent; color: var(--cream); border: 2px solid rgba(239, 227, 204, .55); border-radius: var(--wobble); cursor: pointer;
}
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .i-close, .nav-open .nav-toggle .i-menu { display: none; }
.nav-open .nav-toggle .i-close { display: block; }
.site-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
  background: var(--ink); padding: 1rem var(--gutter) 1.75rem;
  display: none; overflow-y: auto; overscroll-behavior: contain;
}
.nav-open .site-nav { display: block; }
.nav-open { overflow: hidden; }
.site-nav ul { list-style: none; padding: 0; display: grid; gap: .1rem; }
.site-nav a:not(.btn) {
  display: block; padding: .7rem .25rem; color: var(--parchment); text-decoration: none;
  font-family: var(--cond); font-weight: 600; font-size: 1.25rem; letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(239, 227, 204, .08);
}
.site-nav a:not(.btn):hover, .site-nav a[aria-current="page"] { color: var(--gold); }
.site-nav .nav-cta { margin-top: 1rem; }
.site-nav .nav-cta .btn { width: 100%; }

@media (min-width: 1000px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: none; }
  .site-nav { position: static; display: block; background: none; padding: 0; border: 0; height: auto; overflow: visible; }
  .site-nav ul { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.5rem); }
  .site-nav a:not(.btn) { padding: .4rem 0; font-size: 1rem; border: 0; position: relative; }
  .site-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s ease; }
  .site-nav a:not(.btn):hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav .nav-cta { margin: 0 0 0 .5rem; }
  .site-nav .nav-cta .btn { width: auto; }
  .brand { font-size: 1.6rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + 1.5rem) 0 4rem;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: -40px; z-index: -2; background: var(--ink) center / cover no-repeat; background-image: url("../img/skyline-glow.jpg"); background-image: image-set(url("../img/skyline-glow.webp") type("image/webp"), url("../img/skyline-glow.jpg") type("image/jpeg")); transform: scale(1.05); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 60% at var(--glow-pos, 50% 74%), rgba(201, 163, 106, .18), transparent 60%),
    radial-gradient(120% 80% at 50% 120%, rgba(0, 0, 0, .9), transparent 60%),
    linear-gradient(180deg, rgba(14, 10, 7, .55), rgba(14, 10, 7, .35) 40%, rgba(14, 10, 7, .9));
  box-shadow: inset 0 0 160px 40px rgba(0, 0, 0, .7);
}
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-copy .eyebrow.line::after { margin-inline: auto; }
.wordmark {
  font-family: var(--marker); font-weight: 400; color: var(--cream); line-height: .9;
  font-size: clamp(3.6rem, 17vw, 7.6rem); transform: rotate(-2.5deg); margin: .9rem 0 .5rem;
  text-shadow: 0 3px 0 rgba(0, 0, 0, .55), 0 0 26px rgba(0, 0, 0, .6);
  display: block;
}
.wordmark .nw { white-space: nowrap; }
.wordmark .heart { display: inline-block; vertical-align: top; width: .38em; height: .38em; margin: .06em 0 0 .08em; color: var(--parchment); filter: drop-shadow(0 2px 0 rgba(0, 0, 0, .5)); }
.tagline { font-family: var(--serif); font-weight: 600; font-size: clamp(1.05rem, 2.6vw, 1.3rem); letter-spacing: .06em; line-height: 1.4; color: var(--parchment); }
.nominee {
  display: inline-block; margin-top: 1.1rem; padding: .45rem .9rem; color: var(--gold);
  border-top: 1px solid rgba(201, 163, 106, .5); border-bottom: 1px solid rgba(201, 163, 106, .5);
  font-family: var(--cond); font-weight: 700; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
}
.lc { text-transform: none; }
.nominee span[aria-hidden] { color: var(--parchment); }
@media (max-width: 480px) { .nominee { font-size: .8rem; letter-spacing: .05em; padding-inline: .4rem; } }

.release { margin-top: 1.6rem; display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.release-kicker { font-family: var(--cond); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; font-size: .95rem; color: var(--parchment); display: flex; align-items: center; gap: .6rem; }
.tag-explicit { display: inline-block; padding: .05rem .4rem; border: 1px solid rgba(239, 227, 204, .6); border-radius: 2px; font-size: .72rem; letter-spacing: .12em; color: var(--parchment); }
.release-title { font-family: var(--marker); font-weight: 400; color: var(--cream); line-height: 1; font-size: clamp(2.1rem, 8.4vw, 3.5rem); transform: rotate(-2deg); margin: .25rem 0; text-shadow: 0 2px 0 rgba(0, 0, 0, .55); }
.release-title .red { color: var(--red); display: inline-block; position: relative; text-shadow: 0 2px 0 rgba(0, 0, 0, .6), 0 0 10px rgba(8, 5, 3, .95), 0 0 22px rgba(8, 5, 3, .9), 0 0 40px rgba(8, 5, 3, .7); }
.release-title .red::after { content: ""; position: absolute; left: 2%; right: -2%; bottom: -.12em; height: .12em; background: var(--red); border-radius: 50%; transform: rotate(-2deg); }
.release-date { margin-top: .45rem; font-family: var(--marker); font-size: clamp(1.35rem, 4vw, 1.7rem); color: var(--gold); transform: rotate(-1.5deg); margin-bottom: 1rem; }
.release .btn-row { justify-content: center; }

.hero-art { position: relative; width: min(84vw, 460px); margin-inline: auto; }
/* City skyline + lights behind the single cover (built by tools/nashville_bg/build_bg.py from the album art's
   skyline strip only: no title text, no figure). Cover art itself is untouched; the bridge line sits at the cover's centre. */
.hero-art::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 50%; top: 0; margin-top: 50%; width: var(--sky-w, 150%); aspect-ratio: 454 / 720;
  transform: translate(-50%, var(--sky-y, -60%));
  background: center / cover no-repeat url("../img/skyline-panel-800.jpg");
  background-image: image-set(url("../img/skyline-panel-800.webp") type("image/webp") 1x, url("../img/skyline-panel-1200.webp") type("image/webp") 2x, url("../img/skyline-panel-800.jpg") type("image/jpeg") 1x, url("../img/skyline-panel-1200.jpg") type("image/jpeg") 2x);
  -webkit-mask-image: radial-gradient(closest-side, #000 58%, rgba(0, 0, 0, .55) 78%, transparent);
          mask-image: radial-gradient(closest-side, #000 58%, rgba(0, 0, 0, .55) 78%, transparent);
}
.cover-frame {
  position: relative; transform: rotate(2deg); background: var(--cream); padding: 10px; border-radius: 3px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, .4);
}
.cover-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 1px; }
.tape { position: absolute; z-index: 2; width: 120px; height: 30px; background: rgba(239, 227, 204, .6); box-shadow: 0 1px 3px rgba(0, 0, 0, .3); }
.tape.t1 { top: -14px; left: 50%; transform: translateX(-50%) rotate(-4deg); }
.art-note { font-family: var(--hand); font-weight: 600; font-size: 1.5rem; line-height: 1.15; color: var(--parchment); text-align: center; margin-top: 1.1rem; transform: rotate(-2deg); }

@media (min-width: 900px) {
  .hero { padding: calc(var(--header-h) + 3rem) 0 6rem; min-height: min(100vh, 980px); display: flex; align-items: center; --glow-pos: 70% 30%; }
  .hero > .wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); }
  .hero-copy { align-items: flex-start; text-align: left; }
  .hero-copy .eyebrow.line::after { margin-inline: 0; }
  .wordmark { transform-origin: left center; }
  .release { align-items: flex-start; }
  .release .btn-row { justify-content: flex-start; }
  .hero-art { width: 100%; max-width: 500px; --sky-w: 172%; --sky-y: -62%; }
}

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; }
.section + .section { border-top: 1px solid rgba(201, 163, 106, .14); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-dark { background: var(--ink); }
.section-sepia { background: radial-gradient(120% 90% at 20% 0%, #3B2B1E 0%, #231912 55%, #17110C 100%); }

/* Paper (light) section */
.section-paper {
  color: #2E2117; background-color: var(--parchment);
  background-image:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 250, 238, .7), transparent 60%),
    radial-gradient(140% 120% at 50% 100%, rgba(120, 84, 50, .22), transparent 60%);
  box-shadow: inset 0 0 120px rgba(90, 60, 30, .25);
}
.section-paper .eyebrow { color: #7A5327; }
.section-paper .section-title { color: var(--night); text-shadow: none; }
.section-paper .section-note { color: var(--red-dark); }
.section-paper .lead, .section-paper p { color: #3A2A1C; }
.section-paper a { color: #8A1620; }
.section-paper a:hover { color: var(--night); }
.section-paper .btn { color: var(--cream); }

/* ---------- Music ---------- */
.music-grid { display: grid; gap: 2.5rem; }
.single-card {
  display: grid; gap: 1.4rem; align-content: start; padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(59, 43, 30, .55), rgba(23, 17, 12, .6));
  border: 1px solid rgba(201, 163, 106, .3); border-radius: 6px;
}
.single-top { display: grid; grid-template-columns: 120px 1fr; gap: 1.1rem; align-items: center; }
.single-top img { border-radius: 3px; box-shadow: 0 0 0 3px var(--cream), 0 10px 22px rgba(0, 0, 0, .5); transform: rotate(-2deg); }
.single-top h3 { text-wrap: balance; font-family: var(--marker); font-weight: 400; font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.05; color: var(--cream); }
.single-meta { font-family: var(--cond); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; color: var(--gold); margin-top: .35rem; }
.single-card .btn-primary { width: 100%; }
.stream-label { font-family: var(--cond); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .85rem; color: var(--muted); }
.stream-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
.stream-grid .btn { width: 100%; padding-inline: .75rem; font-size: .98rem; letter-spacing: .06em; justify-content: flex-start; white-space: nowrap; }
.embed-wrap { position: relative; border-radius: 14px; overflow: hidden; background: #1a1410; box-shadow: var(--shadow); border: 1px solid rgba(201, 163, 106, .25); }
.embed-wrap iframe { position: relative; width: 100%; height: 452px; border: 0; }
.embed-loading { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-family: var(--cond); letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; }
.embed-caption { font-size: .92rem; color: var(--muted); margin-top: .7rem; }
@media (min-width: 900px) {
  .music-grid { grid-template-columns: 5fr 6fr; align-items: start; }
}

/* ---------- Videos ---------- */
.video-card {
  position: relative; display: block; overflow: hidden; border-radius: 8px; text-decoration: none; color: var(--cream);
  box-shadow: var(--shadow); border: 1px solid rgba(201, 163, 106, .3); isolation: isolate; aspect-ratio: 4 / 5;
}
.video-card picture, .video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; z-index: -2; transition: transform .5s ease; }
.video-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14, 10, 7, .15), rgba(14, 10, 7, .35) 45%, rgba(14, 10, 7, .92)); }
.video-card:hover img { transform: scale(1.03); }
.video-card:hover { color: var(--cream); }
.video-card .play {
  position: absolute; top: 36%; left: 66%; transform: translate(-50%, -50%); width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(211, 32, 47, .92); border: 3px solid var(--cream); box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
  transition: transform .2s ease;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.06); }
.video-card .play .icon { width: 36px; height: 36px; margin-left: 5px; }
.video-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.25rem, 3vw, 2rem); }
.video-card-body h3 { font-family: var(--marker); font-weight: 400; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.05; }
.video-card-body p { color: var(--parchment); margin-top: .4rem; max-width: 48ch; }
.video-card-body .fake-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: .9rem; font-family: var(--cond); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.video-card-body .fake-link .icon { width: 1.1em; height: 1.1em; }
.video-side { display: grid; gap: 1rem; align-content: center; }
.video-grid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .video-card { aspect-ratio: 16 / 9; } }
@media (min-width: 900px) { .video-grid { grid-template-columns: 2fr 1fr; align-items: center; } }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
.photo-frame { position: relative; background: #FFF9EE; padding: 12px 12px 52px; border-radius: 2px; box-shadow: 0 18px 40px rgba(60, 38, 18, .35); transform: rotate(-2deg); max-width: 440px; margin-inline: auto; }
.photo-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.photo-frame figcaption { position: absolute; left: 0; right: 0; bottom: 10px; text-align: center; font-family: var(--hand); font-weight: 600; font-size: 1.5rem; color: #3A2A1C; }
.photo-frame .tape { background: rgba(201, 163, 106, .55); }
.about-copy p + p { margin-top: 1rem; }
.about-copy .lead { font-size: 1.2rem; color: #2E2117; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(58, 42, 28, .25); }
.facts dt { font-family: var(--cond); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; color: #7A5327; }
.facts dd { font-weight: 600; color: #2E2117; line-height: 1.35; margin-top: .15rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 4.5rem; } }

/* ---------- Press / highlights ---------- */
.highlights { display: grid; gap: 1.25rem; }
.hl {
  position: relative; padding: 1.6rem 1.5rem; border-radius: 6px; background: rgba(23, 17, 12, .65);
  border: 1px solid rgba(201, 163, 106, .3);
}
.hl .hl-label { font-family: var(--marker); color: var(--red); font-size: clamp(2.2rem, 5vw, 2.8rem); line-height: 1; transform: rotate(-2deg); transform-origin: left; margin-bottom: .5rem; }
.hl-media { display: flex; flex-direction: column; justify-content: center; }
.hl .hl-big { font-family: var(--marker); color: var(--red); font-size: 4.2rem; line-height: .9; }
.hl h3 { font-family: var(--cond); font-weight: 700; font-size: 1.35rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); line-height: 1.2; margin-top: .3rem; }
.hl .hl-sub { font-family: var(--cond); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; color: var(--gold); margin-top: .35rem; }
.hl .hl-date { font-family: var(--hand); font-weight: 600; font-size: 1.35rem; color: var(--gold); margin-top: .25rem; }
.hl p { color: var(--muted); margin-top: .45rem; }
.noms { list-style: none; padding: 0; margin-top: .9rem; display: grid; gap: .4rem; }
.noms li { position: relative; padding-left: 1.3rem; color: var(--parchment); line-height: 1.35; }
.noms li::before { content: "★"; position: absolute; left: 0; top: .05em; color: var(--gold); font-size: .85em; }
.noms em { font-style: normal; color: var(--muted); }
.hl-josies { display: grid; gap: 1.25rem; }
.hl-josies figure img { border-radius: 4px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hl-josies figcaption { font-size: .85rem; color: var(--muted); margin-top: .4rem; }
.presskit { margin-top: 2.5rem; padding: clamp(1.25rem, 3vw, 2rem); border: 2px dashed rgba(201, 163, 106, .45); border-radius: var(--wobble); display: grid; gap: 1.2rem; align-items: center; }
.presskit h3 { font-family: var(--marker); font-weight: 400; font-size: 1.8rem; color: var(--cream); line-height: 1.1; }
.presskit p { color: var(--muted); }
@media (max-width: 699px) { .presskit .btn-row .btn { flex: 1 1 40%; } }
@media (min-width: 700px) {
  .hl-josies { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
@media (min-width: 900px) {
  .highlights { grid-template-columns: 1.6fr 1fr; }
  .hl-josies { grid-row: span 2; }
  .presskit { grid-template-columns: 1fr auto; }
}

/* ---------- Shows ---------- */
.shows-box { max-width: 820px; margin-inline: auto; }
.shows-empty {
  text-align: center; padding: clamp(2rem, 5vw, 3rem) 1.5rem; background: rgba(239, 227, 204, .05);
  border: 2px solid rgba(239, 227, 204, .3); border-radius: var(--wobble);
}
.shows-empty > .icon { width: 42px; height: 42px; margin: 0 auto .8rem; color: var(--gold); }
.shows-empty h3 { font-family: var(--marker); font-weight: 400; font-size: clamp(1.6rem, 4.5vw, 2.2rem); color: var(--cream); line-height: 1.1; }
.shows-empty p { color: var(--muted); margin: .6rem auto 1.4rem; max-width: 46ch; }
.shows-list { list-style: none; padding: 0; display: grid; gap: .8rem; }
.show { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.2rem; align-items: center; padding: 1rem 1.2rem; background: rgba(23, 17, 12, .6); border: 1px solid rgba(201, 163, 106, .3); border-radius: 6px; }
.show-date { display: grid; place-items: center; width: 64px; padding: .35rem 0; background: var(--cream); color: var(--night); border-radius: 3px; transform: rotate(-2deg); line-height: 1; }
.show-date span { font-family: var(--cond); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--red-dark); }
.show-date b { font-family: var(--marker); font-weight: 400; font-size: 1.7rem; }
.show-info b { display: block; font-family: var(--cond); font-weight: 700; font-size: 1.2rem; letter-spacing: .04em; color: var(--cream); }
.show-info span { color: var(--muted); }
.show .btn, .show .show-tba { grid-column: 1 / -1; justify-self: start; }
.show-tba { font-family: var(--cond); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-size: .9rem; }
@media (min-width: 640px) { .show { grid-template-columns: auto 1fr auto; } .show .btn, .show .show-tba { grid-column: auto; justify-self: end; } }

/* ---------- Merch + signup ---------- */
.merch-signup { display: grid; gap: 1.5rem; }
.merch-card, .signup-card { position: relative; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 6px; overflow: hidden; }
.merch-card { background: linear-gradient(160deg, #3B2B1E, #1D150F); border: 1px solid rgba(201, 163, 106, .35); min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.merch-card .stamp {
  position: absolute; top: 1.4rem; right: 1.2rem; transform: rotate(8deg); padding: .35rem .9rem; border: 3px solid var(--red);
  color: var(--red); font-family: var(--marker); font-size: 1.35rem; line-height: 1; border-radius: 4px; background: rgba(14, 10, 7, .4);
}
.merch-card h3, .signup-card h3 { font-family: var(--marker); font-weight: 400; font-size: clamp(1.8rem, 4.5vw, 2.4rem); line-height: 1.05; color: var(--cream); max-width: 16ch; }
.merch-card p, .signup-card p { color: var(--muted); margin-top: .6rem; max-width: 44ch; }
.merch-card .ghost { position: absolute; top: .5rem; left: 1.2rem; font-family: var(--marker); font-size: 5.5rem; line-height: 1; color: rgba(239, 227, 204, .06); transform: rotate(-6deg); pointer-events: none; }
.signup-card { background: rgba(239, 227, 204, .05); border: 2px solid rgba(239, 227, 204, .3); border-radius: var(--wobble); }
.signup-form { margin-top: 1.2rem; display: grid; gap: .7rem; }
.signup-form label { font-family: var(--cond); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; color: var(--parchment); }
.signup-row { display: grid; gap: .7rem; }
.signup-form input {
  min-height: 52px; width: 100%; padding: .7rem 1rem; font: inherit; color: var(--night); background: var(--cream);
  border: 2px solid var(--cream); border-radius: 4px;
}
.signup-form input::placeholder { color: #6E5A44; }
.signup-form input:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.signup-msg { min-height: 1.5em; font-size: .95rem; color: var(--gold); }
.signup-fine { font-size: .82rem; color: #A99474; }
.signup-form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: .7rem; }
.signup-form fieldset:disabled input, .signup-form fieldset:disabled .btn { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }
.signup-form fieldset:disabled .btn:hover { background: linear-gradient(180deg, var(--red), var(--red-dark)); }
@media (min-width: 560px) { .signup-row { grid-template-columns: 1fr auto; } }
@media (min-width: 900px) { .merch-signup { grid-template-columns: 1fr 1fr; } }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact-email { display: inline-block; text-transform: none; margin: 1.2rem 0 1.6rem; font-family: var(--cond); font-weight: 700; letter-spacing: .02em; font-size: clamp(1.35rem, 6vw, 2.4rem); color: var(--cream); text-decoration: none; overflow-wrap: anywhere; border-bottom: 3px solid var(--red); line-height: 1.3; }
.contact-email:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); padding: 3.5rem 0 2.5rem; border-top: 1px solid rgba(201, 163, 106, .25); text-align: center; }
.footer-brand { font-family: var(--marker); font-size: 2.2rem; color: var(--cream); transform: rotate(-2deg); display: inline-flex; align-items: flex-start; gap: .1em; line-height: 1; }
.footer-brand .heart { width: .6em; height: .6em; }
.footer-tag { text-wrap: balance; font-family: var(--serif); font-weight: 600; letter-spacing: .06em; color: var(--parchment); margin-top: .6rem; }
.socials { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 1.6rem 0; }
.socials a {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: var(--parchment);
  border: 1.5px solid rgba(239, 227, 204, .45); transition: color .15s, border-color .15s, transform .15s, background-color .15s;
}
.socials a:hover { color: var(--night); background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.socials .icon { width: 22px; height: 22px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.4rem; font-family: var(--cond); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .95rem; }
.footer-links a { color: var(--parchment); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.copyright { margin-top: 1.6rem; font-family: var(--serif); font-weight: 600; letter-spacing: .14em; font-size: .85rem; color: #A99474; }
.signoff { font-family: var(--hand); font-weight: 600; font-size: 1.4rem; color: var(--parchment); margin-top: 1.2rem; }

/* ---------- Press page ---------- */
.page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; background: radial-gradient(120% 100% at 50% 0%, #3B2B1E, #17110C 70%); border-bottom: 1px solid rgba(201, 163, 106, .2); }
.page-hero h1 { font-family: var(--marker); font-weight: 400; font-size: clamp(2.8rem, 9vw, 5rem); color: var(--cream); line-height: 1; transform: rotate(-2deg); transform-origin: left center; margin: .7rem 0 1.3rem; }
.downloads { display: grid; gap: 1rem; }
.dl {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1.2rem 1.3rem; text-decoration: none;
  color: var(--cream); background: rgba(23, 17, 12, .6); border: 2px solid rgba(239, 227, 204, .5); border-radius: var(--wobble);
  transition: transform .15s, background-color .15s;
}
.dl:hover { color: var(--cream); background: rgba(59, 43, 30, .9); transform: translateY(-2px); }
.dl > .icon { width: 30px; height: 30px; color: var(--gold); }
.dl b { display: block; font-family: var(--cond); font-weight: 700; font-size: 1.2rem; letter-spacing: .08em; text-transform: uppercase; }
.dl span { color: var(--muted); font-size: .95rem; line-height: 1.35; display: block; }
.dl .icon-ext { width: 20px; height: 20px; opacity: .7; }
@media (min-width: 800px) { .downloads { grid-template-columns: repeat(3, 1fr); } }
.bio-block { background: rgba(23, 17, 12, .6); border: 1px solid rgba(201, 163, 106, .3); border-radius: 6px; padding: clamp(1.25rem, 3vw, 2rem); }
.bio-block + .bio-block { margin-top: 1.25rem; }
.bio-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .8rem; flex-wrap: wrap; }
.bio-head h3 { font-family: var(--cond); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-size: 1.05rem; }
.bio-block p { color: var(--parchment); }
.bio-block p + p { margin-top: .9rem; }
.press-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .press-grid { grid-template-columns: 7fr 5fr; align-items: start; } }
.fact-list { display: grid; gap: .9rem; }
.fact-list div { padding-bottom: .9rem; border-bottom: 1px solid rgba(201, 163, 106, .18); }
.fact-list dt { font-family: var(--cond); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; color: var(--gold); }
.fact-list dd { color: var(--parchment); margin-top: .15rem; }
.photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.photo-grid figure { background: rgba(23, 17, 12, .6); border: 1px solid rgba(201, 163, 106, .25); border-radius: 6px; overflow: hidden; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.photo-grid .contain img { object-fit: contain; background: var(--ink); padding: 8%; }
.photo-grid figcaption { padding: .6rem .8rem; font-size: .9rem; color: var(--muted); line-height: 1.3; }
@media (min-width: 800px) { .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* 404 */
.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 6rem var(--gutter) 3rem; }
.notfound h1 { font-family: var(--marker); font-weight: 400; font-size: clamp(3rem, 12vw, 6rem); color: var(--cream); transform: rotate(-3deg); line-height: 1; }
.notfound p { color: var(--muted); margin: 1rem auto 1.8rem; max-width: 40ch; }
