:root {
  --black: #0b0a09;
  --black-soft: #12100e;
  --black-deep: #060504;
  --cream: #f3ebe0;
  --cream-soft: #e8dccb;
  --gold: #d4a15a;
  --gold-light: #ebc98f;
  --gold-bright: #f0d9a8;
  --amber: #a66b2a;
  --ember: #c45a2a;
  --muted: #b9a894;
  --muted-dim: #8a7a68;
  --line: rgba(243, 235, 224, .12);
  --line-strong: rgba(243, 235, 224, .2);
  --line-gold: rgba(212, 161, 90, .42);
  --line-gold-soft: rgba(212, 161, 90, .22);
  --serif: "Instrument Serif", Iowan Old Style, Baskerville, Georgia, serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + .75rem); }
body {
  min-width: 320px; margin: 0; color: var(--cream); background: var(--black);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.atmosphere {
  position: fixed; z-index: -1; inset: 0; pointer-events: none; overflow: hidden;
  background: linear-gradient(180deg, #14110e 0%, var(--black) 42%, var(--black-deep) 100%);
}
.atmosphere__glow { position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform, opacity; }
.atmosphere__glow--a {
  top: -18%; left: -12%; width: min(72vw, 780px); height: min(52vw, 560px);
  background: radial-gradient(circle, rgba(166, 107, 42, .38) 0%, rgba(212, 161, 90, .12) 45%, transparent 70%);
  animation: glow-drift-a 28s ease-in-out infinite alternate;
}
.atmosphere__glow--b {
  top: 8%; right: -18%; width: min(58vw, 640px); height: min(48vw, 520px);
  background: radial-gradient(circle, rgba(90, 42, 22, .36) 0%, rgba(166, 107, 42, .1) 50%, transparent 72%);
  animation: glow-drift-b 34s ease-in-out infinite alternate;
}
.atmosphere__glow--c {
  bottom: -10%; left: 28%; width: min(50vw, 520px); height: min(40vw, 400px);
  background: radial-gradient(circle, rgba(212, 161, 90, .1) 0%, transparent 68%);
  animation: glow-drift-c 40s ease-in-out infinite alternate;
}
.atmosphere__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 40%, transparent 35%, rgba(0, 0, 0, .55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, transparent 18%, transparent 78%, rgba(0, 0, 0, .55) 100%);
}
.atmosphere__grain {
  position: absolute; inset: 0; opacity: .32; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
@keyframes glow-drift-a {
  0% { transform: translate(0, 0) scale(1); opacity: .9; }
  100% { transform: translate(6%, 8%) scale(1.08); opacity: 1; }
}
@keyframes glow-drift-b {
  0% { transform: translate(0, 0) scale(1); opacity: .85; }
  100% { transform: translate(-8%, 5%) scale(1.1); opacity: 1; }
}
@keyframes glow-drift-c {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, -6%) scale(1.12); }
}
.shell { width: min(1120px, calc(100% - 3.25rem)); margin-inline: auto; }
a { color: inherit; }
a:focus-visible, .button:focus-visible, .tracklist a:focus-visible, .link-card:focus-visible {
  outline: 2px solid var(--gold-light); outline-offset: 3px;
}
.site-header {
  position: sticky; top: 0; z-index: 40; border-bottom: 1px solid transparent;
  background: rgba(11, 10, 9, .55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
.site-header::after {
  content: ""; position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold-soft), transparent); opacity: .7;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); padding-block: .65rem;
}
.wordmark-link { display: inline-flex; width: 158px; transition: opacity .2s ease; }
.wordmark-link:hover { opacity: .88; }
.wordmark { display: block; width: 100%; height: auto; }
.wordmark--header { aspect-ratio: 16 / 9; object-fit: cover; }
.site-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: flex-end; }
.site-nav a {
  position: relative; color: var(--muted); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-decoration: none; text-transform: uppercase; transition: color .2s ease;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.35rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease-out);
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--cream); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.hero {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
  align-items: center; gap: clamp(2.75rem, 8vw, 7.5rem);
  min-height: min(78vh, 720px);
  padding-top: clamp(3.5rem, 8vw, 5.75rem);
  padding-bottom: clamp(4rem, 9vw, 6.5rem);
}
.kicker, .section-label, .section-number, .feature-card__eyebrow {
  margin: 0; color: var(--gold); font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.kicker span { margin: 0 .4rem; color: var(--muted-dim); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 11ch; margin: 1rem 0 .85rem;
  font-size: clamp(3.85rem, 8.4vw, 7.4rem);
  letter-spacing: -.045em; line-height: .88; text-wrap: balance;
}
h1 em { color: var(--gold); font-style: italic; text-shadow: 0 0 40px rgba(212, 161, 90, .22); }
.hero-lede {
  margin: 0 0 .85rem; color: var(--cream-soft); font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem); font-style: italic;
  letter-spacing: -.01em; line-height: 1.25;
}
.hero-intro { max-width: 34rem; margin: 0 0 1.55rem; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: .35rem 1.15rem; margin-bottom: 1.9rem;
  color: var(--gold-light); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
}
.hero-meta span + span::before {
  content: ""; display: inline-block; width: 3px; height: 3px;
  margin: 0 1.15rem .18rem 0; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 161, 90, .6);
}
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  min-height: 3.05rem; padding: .78rem 1.35rem; border: 1px solid transparent; border-radius: 999px;
  font-size: .84rem; font-weight: 600; letter-spacing: .02em; text-decoration: none;
  transition: transform .25s var(--ease-out), border-color .25s ease, background .25s ease, box-shadow .25s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold {
  color: #181008;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .22) inset, 0 10px 28px rgba(212, 161, 90, .22);
}
.button--gold:hover {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-light) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .28) inset, 0 14px 36px rgba(212, 161, 90, .32);
}
.button--quiet {
  border-color: var(--line-strong); background: rgba(255, 255, 255, .03); color: var(--cream);
}
.button--quiet:hover {
  border-color: var(--line-gold); background: rgba(212, 161, 90, .09);
  box-shadow: 0 0 24px rgba(212, 161, 90, .08);
}
.brand-lockup { width: 100%; }
.brand-frame {
  position: relative; padding: .7rem; border: 1px solid var(--line-gold); overflow: hidden;
  background: linear-gradient(145deg, rgba(212, 161, 90, .08), rgba(0, 0, 0, .35)), rgba(0, 0, 0, .4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .4) inset, 0 28px 90px rgba(0, 0, 0, .45), 0 0 60px rgba(212, 161, 90, .08);
}
.brand-frame__glow {
  position: absolute; inset: -40%; pointer-events: none;
  background: radial-gradient(circle at 40% 35%, rgba(212, 161, 90, .18), transparent 55%);
  animation: frame-glow 12s ease-in-out infinite alternate;
}
.brand-frame__ken { position: relative; overflow: hidden; }
.wordmark--hero {
  aspect-ratio: 16 / 9; object-fit: cover; transform: scale(1.06);
  animation: ken-burns 22s ease-in-out infinite alternate;
}
.brand-caption {
  display: flex; justify-content: space-between; gap: 1rem; margin: 1rem .15rem 0;
  color: var(--muted); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
}
.brand-caption span:last-child { color: var(--gold); }
@keyframes ken-burns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@keyframes frame-glow {
  0% { opacity: .55; transform: translate(0, 0); }
  100% { opacity: 1; transform: translate(4%, 3%); }
}
.section { padding: clamp(4.25rem, 8vw, 5.75rem) 0; border-top: 1px solid var(--line); }
.section-heading {
  display: grid; grid-template-columns: 3.25rem 1fr; gap: 1rem; align-items: start; margin-bottom: 2.15rem;
}
.section-number { padding-top: .55rem; color: var(--muted-dim); }
.section-deck { margin: .65rem 0 0; max-width: 32rem; color: var(--muted); font-size: .95rem; }
h2 {
  margin: .28rem 0 0; font-size: clamp(2.45rem, 5.2vw, 3.95rem);
  letter-spacing: -.03em; line-height: .94;
}
.tracklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.tracklist li { border-bottom: 1px solid var(--line); }
.tracklist a {
  position: relative; display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto auto; gap: .85rem 1rem; align-items: center;
  padding: 1.2rem .4rem; color: var(--cream); text-decoration: none; overflow: hidden;
  transition: color .25s ease, padding .28s var(--ease-out);
}
.tracklist a::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(212, 161, 90, .14), rgba(212, 161, 90, .03) 70%, transparent);
  transition: width .35s var(--ease-out);
}
.tracklist a:hover, .tracklist a:focus-visible { padding-left: .85rem; color: var(--gold-light); }
.tracklist a:hover::before, .tracklist a:focus-visible::before { width: 100%; }
.track-number { position: relative; color: var(--muted-dim); font-size: .75rem; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.track-name { position: relative; font-size: 1.05rem; font-weight: 500; letter-spacing: -.01em; }
.track-meta {
  position: relative; color: var(--muted-dim); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; opacity: .75;
}
.tracklist a:hover .track-meta, .tracklist a:focus-visible .track-meta { color: var(--gold); opacity: 1; }
.track-arrow { position: relative; color: var(--gold); font-size: 1.1rem; transition: transform .28s var(--ease-out); }
.tracklist a:hover .track-arrow, .tracklist a:focus-visible .track-arrow { transform: translate(3px, -2px); }
.section-note { margin: 1.4rem 0 0; color: var(--muted); font-size: .88rem; }
.section-note a { text-decoration-color: rgba(212, 161, 90, .4); text-underline-offset: .28em; transition: color .2s ease; }
.section-note a:hover { color: var(--gold-light); }
.feature-card {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: stretch;
  padding: clamp(1.6rem, 3.5vw, 2.35rem); border: 1px solid var(--line-gold); position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(196, 90, 42, .1) 0%, rgba(212, 161, 90, .07) 35%, rgba(255, 255, 255, .02) 100%), rgba(0, 0, 0, .28);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .35) inset, 0 24px 70px rgba(0, 0, 0, .35), 0 0 50px rgba(196, 90, 42, .06);
}
.feature-card--ember::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 55%; height: 90%; pointer-events: none;
  background: radial-gradient(circle, rgba(196, 90, 42, .16), transparent 65%);
}
.feature-card__copy { position: relative; z-index: 1; }
.feature-card__eyebrow span { color: var(--muted-dim); }
.feature-card__title {
  margin: .55rem 0 .75rem; font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -.03em; line-height: .95;
  background: linear-gradient(180deg, var(--cream) 30%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.feature-card__body { max-width: 34rem; margin: 0 0 1.5rem; color: var(--muted); font-size: 1.02rem; }
.feature-card__mark {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .85rem; min-width: 7.5rem; padding: 1rem 1.25rem; border: 1px solid var(--line-gold-soft); background: rgba(0, 0, 0, .35);
}
.feature-card__flame {
  display: block; width: 28px; height: 40px;
  border-radius: 50% 50% 45% 45% / 55% 55% 40% 40%;
  background:
    radial-gradient(ellipse at 50% 75%, rgba(240, 217, 168, .95) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 55%, rgba(212, 161, 90, .9) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 30%, rgba(196, 90, 42, .85) 0%, transparent 60%);
  box-shadow: 0 0 24px rgba(196, 90, 42, .35);
  animation: flame-pulse 3.2s ease-in-out infinite; filter: blur(.2px);
}
.feature-card__date { color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
@keyframes flame-pulse {
  0%, 100% { transform: scaleY(1) scaleX(1); opacity: .85; }
  50% { transform: scaleY(1.08) scaleX(.96); opacity: 1; }
}
.link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.link-card {
  position: relative; display: flex; min-height: 9rem; flex-direction: column; justify-content: space-between;
  gap: .85rem; padding: 1.3rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .025);
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .28s var(--ease-out), box-shadow .28s ease;
}
.link-card:hover {
  border-color: var(--line-gold); background: rgba(212, 161, 90, .08); transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28), 0 0 30px rgba(212, 161, 90, .06);
}
.link-card span { color: var(--muted); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.link-card strong { font-size: .98rem; font-weight: 500; letter-spacing: -.01em; }
.link-card i { position: absolute; right: 1.25rem; top: 1.2rem; color: var(--gold); font-size: 1rem; font-style: normal; transition: transform .28s var(--ease-out); }
.link-card:hover i { transform: translate(2px, -2px); }
.link-card--featured {
  border-color: var(--line-gold);
  background: linear-gradient(145deg, rgba(212, 161, 90, .16), rgba(255, 255, 255, .02));
  box-shadow: 0 0 40px rgba(212, 161, 90, .06);
}
.section--radio {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding: clamp(3.5rem, 6vw, 4.5rem) clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line); border-radius: 2px;
  background: linear-gradient(120deg, rgba(212, 161, 90, .07), transparent 50%), rgba(255, 255, 255, .02);
  margin-bottom: .5rem;
}
.section--radio .section-label { margin-bottom: .15rem; }
.radio-copy { max-width: 36rem; margin: .9rem 0 0; color: var(--muted); font-size: 1.02rem; }
.site-footer {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.25rem;
  padding: 2.25rem 0 3.75rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem;
}
.footer-brand { display: grid; gap: .35rem; }
.site-footer p { margin: 0; }
.footer-mark { color: var(--cream); font-family: var(--serif); font-size: 1.35rem; letter-spacing: -.01em; }
.site-footer a { color: var(--gold); text-decoration: none; white-space: nowrap; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold-light); }
@media (max-width: 900px) { .link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: 0; padding-top: 3.25rem; padding-bottom: 4.25rem; }
  h1 { max-width: none; }
  .brand-lockup { max-width: 440px; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card__mark { flex-direction: row; justify-content: flex-start; min-width: 0; width: fit-content; }
  .section--radio { flex-direction: column; align-items: flex-start; }
  .tracklist a { grid-template-columns: 2.5rem minmax(0, 1fr) auto; }
  .track-meta { display: none; }
}
@media (max-width: 520px) {
  .shell { width: min(100% - 1.75rem, 1120px); }
  .site-header__inner { align-items: flex-start; flex-direction: column; gap: .85rem; padding-block: .85rem; }
  .wordmark-link { width: 148px; }
  .site-nav { gap: 1rem; width: 100%; }
  .site-nav a { font-size: .66rem; }
  .hero { padding-top: 2.75rem; }
  h1 { font-size: clamp(3.35rem, 15.5vw, 4.85rem); }
  .hero-intro { font-size: .98rem; }
  .hero-meta { gap: .55rem; font-size: .6rem; }
  .hero-meta span + span::before { margin-right: .55rem; }
  .actions, .actions .button { width: 100%; }
  .section { padding: 3.5rem 0; }
  .section-heading { grid-template-columns: 2.5rem 1fr; gap: .75rem; }
  .link-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 6.4rem; }
  .section--radio { padding: 1.5rem 1.15rem; width: 100%; }
  .site-footer { flex-direction: column; align-items: flex-start; padding-bottom: 2.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .atmosphere__glow, .brand-frame__glow, .wordmark--hero, .feature-card__flame { animation: none !important; }
  .wordmark--hero { transform: scale(1.04); }
  *, *::before, *::after {
    transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important;
  }
}
