:root {
  color-scheme: dark;
  --char: #080a0b;
  --coal: #101316;
  --storm: #242a2e;
  --ocean: #0b2632;
  --ocean-light: #173e4d;
  --cream: #ded4bc;
  --cream-dim: #a89f8b;
  --burnt: #b6492d;
  --ember: #db3f27;
  --fire: #e3a04f;
  --line: rgba(222, 212, 188, 0.18);
  --line-hot: rgba(227, 160, 79, 0.48);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(182, 73, 45, 0.72); color: #fff8e9; }
body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 4%, rgba(182, 73, 45, 0.12), transparent 25rem),
    linear-gradient(180deg, #080a0b 0%, #0a1216 48%, #080a0b 100%);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(222, 212, 188, 0.12) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 67%, rgba(222, 212, 188, 0.09) 0 1px, transparent 1.4px);
  background-size: 47px 43px, 61px 57px;
  mix-blend-mode: screen;
}

a { color: inherit; }
button, input, select { font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--fire);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--char);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 80; height: 2px; background: rgba(222, 212, 188, 0.06); }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--burnt), var(--fire)); box-shadow: 0 0 12px rgba(227, 160, 79, 0.65); }

.atmosphere { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
main, .site-footer { position: relative; z-index: 1; }
.rain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
}
.light-sweep {
  position: absolute;
  width: min(78rem, 115vw);
  height: min(34rem, 90vw);
  right: -35vw;
  top: 1rem;
  transform-origin: 100% 18%;
  background: linear-gradient(92deg, transparent 12%, rgba(227, 160, 79, 0.055) 48%, rgba(222, 212, 188, 0.015) 70%, transparent 88%);
  clip-path: polygon(0 44%, 100% 0, 100% 100%);
  filter: blur(7px);
  mix-blend-mode: screen;
  animation: searchlight 15s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}
.ember-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -12rem;
  top: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 63, 39, 0.17), rgba(227, 160, 79, 0.04) 42%, transparent 70%);
  filter: blur(14px);
  animation: flicker 6s ease-in-out infinite alternate;
}
.embers { position: absolute; inset: 0; overflow: hidden; opacity: 0.75; }
.embers i {
  position: absolute;
  left: var(--x);
  bottom: -1rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 8px rgba(227, 160, 79, 0.8);
  animation: ember-drift var(--duration) linear var(--delay) infinite;
}
.embers i:nth-child(3n) { width: 2px; height: 2px; background: var(--ember); }
.tone-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 46%, rgba(11, 38, 50, 0.26), transparent 48%);
  opacity: 0.72;
  transition: background 900ms ease, opacity 900ms ease;
}
body[data-tone="ember"] .tone-wash { background: radial-gradient(circle at 72% 48%, rgba(182, 73, 45, 0.2), transparent 47%); opacity: 1; }
body[data-tone="storm"] .tone-wash { background: radial-gradient(circle at 22% 52%, rgba(23, 62, 77, 0.3), transparent 50%); opacity: 0.9; }
body[data-tone="dark"] .tone-wash { background: radial-gradient(circle at 50% 70%, rgba(36, 42, 46, 0.2), transparent 45%); opacity: 0.45; }

.shell { width: min(100% - 2rem, 74rem); margin-inline: auto; }
section[id] { scroll-margin-top: 6.25rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(100% - 2rem, 74rem);
  min-height: 5.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 10, 11, 0.96), rgba(8, 10, 11, 0.82));
  backdrop-filter: blur(14px);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}
.site-header.is-scrolled { border-color: rgba(227, 160, 79, 0.22); background: linear-gradient(180deg, rgba(8, 10, 11, 0.985), rgba(8, 10, 11, 0.93)); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28); }
.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 0.92;
  text-decoration: none;
  text-shadow: 1px 0 rgba(222, 212, 188, 0.22), -1px 0 rgba(182, 73, 45, 0.22);
}
.wordmark span:first-child { color: var(--cream-dim); font-size: 0.68em; letter-spacing: 0.35em; }
.brand-logo {
  width: clamp(8.2rem, 31vw, 12rem);
  flex: 0 1 auto;
  min-width: 0;
  display: block;
  line-height: 0;
  text-decoration: none;
}
.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  filter: sepia(0.22) saturate(0.72) brightness(0.96);
  transition: filter 280ms ease, opacity 280ms ease, transform 280ms ease;
}
.brand-logo:hover img { opacity: 1; filter: sepia(0.35) saturate(0.9) brightness(1.08); transform: scale(1.015); }
.access-mark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream-dim);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}
.access-mark span { width: 0.45rem; height: 0.45rem; flex: 0 0 0.45rem; border-radius: 50%; background: var(--fire); box-shadow: 0 0 14px var(--fire); }
.motion-ready .access-mark span { animation: signal-pulse 2.8s ease-out infinite; }

.hero {
  position: relative;
  min-height: calc(100svh - 5.5rem);
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 3.5rem 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 12%;
  width: 1px;
  height: 64%;
  background: linear-gradient(transparent, var(--line-hot), transparent);
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--fire);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 1.35rem;
  font-family: var(--display);
  font-size: clamp(3.1rem, 12.5vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}
h1 span { display: block; }
h1 span:nth-child(2) { color: transparent; -webkit-text-stroke: 1px rgba(222, 212, 188, 0.7); }
h1 span:last-child { color: var(--burnt); }
.title-burn span { animation: title-burn-reveal 900ms cubic-bezier(.16, 1, .3, 1) both; }
.title-burn span:nth-child(1) { animation-delay: 180ms; }
.title-burn span:nth-child(2) { animation-delay: 270ms; }
.title-burn span:nth-child(3) { animation-delay: 360ms; }
.hero-intro { max-width: 37rem; color: var(--cream-dim); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.82rem 1.15rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-110%); background: linear-gradient(100deg, transparent, rgba(255,255,255,0.14), transparent); transition: transform 420ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.22); }
.button:active { transform: translateY(1px) scale(0.985); box-shadow: none; }
.button:hover::before { transform: translateX(110%); }
.button-primary { background: var(--burnt); color: #fff8e9; border-color: var(--burnt); }
.button-primary:hover { background: var(--ember); border-color: var(--ember); }
.button:disabled { cursor: not-allowed; opacity: 0.58; transform: none; box-shadow: none; }
.button:disabled::before { display: none; }
.button-quiet { background: rgba(8, 10, 11, 0.5); color: var(--cream); border-color: var(--line); }
.button-quiet:hover { border-color: var(--cream-dim); background: rgba(222, 212, 188, 0.06); }

.cover-wrap { width: min(100%, 29rem); margin-inline: auto; }
.cover-wrap > p { margin: 0.75rem 0 0; color: var(--cream-dim); font-size: 0.75rem; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; }
.cover-placeholder {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(222, 212, 188, 0.27);
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(227, 160, 79, 0.12) 44.2% 44.8%, transparent 45%),
    linear-gradient(175deg, #1f2f34 0%, #0c1d26 42%, #101416 43%, #07090a 100%);
  box-shadow: var(--shadow), inset 0 0 70px rgba(0, 0, 0, 0.65);
  transform-origin: center;
}
.corner { position: absolute; z-index: 2; width: 1.1rem; height: 1.1rem; border-color: rgba(227, 160, 79, 0.7); border-style: solid; }
.corner-tl { top: 0.65rem; left: 0.65rem; border-width: 1px 0 0 1px; }
.corner-tr { top: 0.65rem; right: 0.65rem; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 0.65rem; left: 0.65rem; border-width: 0 0 1px 1px; }
.corner-br { right: 0.65rem; bottom: 0.65rem; border-width: 0 1px 1px 0; }
.cover-monogram { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -58%); color: rgba(222, 212, 188, 0.045); font-family: var(--display); font-size: clamp(8rem, 35vw, 14rem); font-weight: 900; letter-spacing: -0.12em; line-height: 1; }
.cover-placeholder::before, .cover-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(106deg, transparent 0 28px, rgba(222, 212, 188, 0.05) 29px, transparent 30px 62px);
}
.cover-placeholder::after { background: radial-gradient(circle at 68% 28%, rgba(219, 63, 39, 0.34), transparent 18%); animation: flicker 4.8s ease-in-out infinite alternate; }
.cover-weather { position: absolute; inset: 0; overflow: hidden; border: 1.1rem solid rgba(0, 0, 0, 0.16); }
.cover-weather::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(105deg, transparent 42%, rgba(222, 212, 188, 0.07) 49%, transparent 56%);
  transform: translateX(-55%);
  animation: damaged-light 8s ease-in-out infinite;
}
.cover-status { position: absolute; z-index: 3; top: 1rem; right: 1rem; padding: 0.32rem 0.48rem; border: 1px solid rgba(227, 160, 79, 0.34); background: rgba(8, 10, 11, 0.64); color: var(--fire); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.cover-label { position: absolute; inset: auto 1.35rem 1.35rem; z-index: 1; display: grid; gap: 0.25rem; }
.cover-label span { color: var(--fire); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; }
.cover-label strong { font-family: var(--display); font-size: clamp(1.5rem, 7vw, 2.7rem); letter-spacing: -0.04em; line-height: 0.92; }
.cover-label small { color: var(--cream-dim); font-size: 0.65rem; letter-spacing: 0.18em; }

section:not(.hero) { position: relative; padding-block: 5.5rem; border-top: 1px solid var(--line); }
section:not(.hero)::before { content: ""; position: absolute; top: -1px; left: 0; width: clamp(2.8rem, 12vw, 6rem); height: 1px; background: linear-gradient(90deg, var(--fire), rgba(182, 73, 45, 0.22), transparent); }
h2 { margin-bottom: 1rem; font-family: var(--display); font-size: clamp(2.2rem, 8vw, 4.8rem); letter-spacing: -0.05em; line-height: 0.92; text-transform: uppercase; }
h3 { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.4rem); letter-spacing: -0.035em; line-height: 1; text-transform: uppercase; }
.section-heading { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.section-heading > p { max-width: 31rem; color: var(--cream-dim); }

.listen-section { position: relative; display: grid; gap: 2rem; }
.listen-copy { max-width: 42rem; }
.listen-copy > p:last-child { max-width: 33rem; color: var(--cream-dim); }
.player { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 2.1rem 1.3rem 1.3rem; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(20, 26, 29, 0.92), rgba(8, 10, 11, 0.86)); box-shadow: var(--shadow); transition: border-color 320ms ease, box-shadow 480ms ease, background 480ms ease; }
.player::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-top: 1px solid rgba(227, 160, 79, 0.22); background: linear-gradient(90deg, rgba(227, 160, 79, 0.035), transparent 35%); }
.player.is-active { border-color: rgba(227, 160, 79, 0.42); background: linear-gradient(135deg, rgba(28, 30, 29, 0.94), rgba(8, 10, 11, 0.88)); box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), inset 0 0 2.8rem rgba(182, 73, 45, 0.055); }
.player-index { position: absolute; top: 0.5rem; right: 0.7rem; color: rgba(222, 212, 188, 0.42); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.15em; }
.play-button { position: relative; width: 4rem; height: 4rem; align-self: center; display: grid; place-items: center; border: 1px solid var(--line-hot); border-radius: 50%; background: rgba(182, 73, 45, 0.13); color: var(--cream); cursor: pointer; transition: transform 180ms ease, background 220ms ease, box-shadow 320ms ease; }
.play-button::after { content: ""; position: absolute; inset: -0.5rem; border: 1px solid rgba(227, 160, 79, 0.2); border-radius: 50%; opacity: 0; }
.play-button:hover { background: var(--burnt); }
.play-button:active { transform: scale(0.94); }
.player.is-active .play-button { background: rgba(182, 73, 45, 0.5); box-shadow: 0 0 1.5rem rgba(219, 63, 39, 0.16); }
.player.is-active .play-button::after { animation: play-ring 1.8s ease-out infinite; }
.play-icon { width: 0; height: 0; margin-left: 0.25rem; border-top: 0.55rem solid transparent; border-bottom: 0.55rem solid transparent; border-left: 0.8rem solid currentColor; }
.play-button.is-playing .play-icon { width: 0.8rem; height: 1rem; margin: 0; border: 0; border-inline: 0.24rem solid currentColor; }
.player-main { min-width: 0; }
.player-title-row { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; }
.player-title-row div { min-width: 0; }
.track-status { display: block; color: var(--fire); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; transition: color 240ms ease, text-shadow 240ms ease; }
.player.is-active .track-status { color: #f0b768; text-shadow: 0 0 0.8rem rgba(227, 160, 79, 0.28); }
.player-title-row strong { display: block; overflow: hidden; font-size: 1rem; text-overflow: ellipsis; white-space: nowrap; }
.time { flex: 0 0 auto; color: var(--cream-dim); font-variant-numeric: tabular-nums; font-size: 0.78rem; }
.waveform { height: 2.7rem; display: flex; align-items: center; gap: 3px; opacity: 0.72; }
.waveform i { width: 2px; height: var(--h); background: linear-gradient(var(--fire), var(--burnt)); }
.player.is-active .waveform i { animation: pulse-wave 850ms ease-in-out infinite alternate; animation-delay: calc(var(--i, 1) * -32ms); }
.timeline { width: 100%; height: 1.2rem; min-height: 1.2rem; margin: 0; padding: 0; border: 0; background: transparent; accent-color: var(--fire); cursor: pointer; -webkit-appearance: none; appearance: none; }
.timeline:disabled { cursor: not-allowed; opacity: 0.4; }
.timeline::-webkit-slider-runnable-track { height: 3px; background: linear-gradient(90deg, var(--fire) var(--progress, 0%), rgba(222, 212, 188, 0.15) var(--progress, 0%)); }
.timeline::-webkit-slider-thumb { width: 0.8rem; height: 0.8rem; margin-top: -0.36rem; border: 1px solid var(--fire); border-radius: 50%; background: var(--char); -webkit-appearance: none; }
.timeline::-moz-range-track { height: 2px; background: rgba(222, 212, 188, 0.15); }
.timeline::-moz-range-progress { height: 2px; background: var(--fire); }
.timeline::-moz-range-thumb { width: 0.7rem; height: 0.7rem; border: 1px solid var(--fire); border-radius: 50%; background: var(--char); }
.player-utility { display: flex; justify-content: space-between; gap: 1rem; margin-top: 0.2rem; color: rgba(222, 212, 188, 0.38); font-size: 0.56rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.player-note { grid-column: 1 / -1; margin: 0.4rem 0 0; color: var(--cream-dim); font-size: 0.78rem; }

.ep-grid { display: grid; gap: 1.7rem; }
.product-image { position: relative; min-height: 19rem; display: grid; place-content: center; overflow: hidden; border: 1px solid rgba(222, 212, 188, 0.22); background: linear-gradient(145deg, rgba(36, 42, 46, 0.82), rgba(11, 38, 50, 0.62) 50%, rgba(8, 10, 11, 0.94)); color: var(--cream-dim); text-align: center; box-shadow: inset 0 0 70px rgba(0,0,0,0.62); }
.product-image::before { content: ""; position: absolute; inset: 0.8rem; z-index: 1; border: 1px solid rgba(222, 212, 188, 0.11); background-image: linear-gradient(145deg, transparent 0 47%, rgba(227, 160, 79, 0.09) 47.3% 47.8%, transparent 48%), repeating-linear-gradient(106deg, transparent 0 29px, rgba(222, 212, 188, 0.035) 30px, transparent 31px 63px); }
.product-image::after { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 70% 26%, rgba(219, 63, 39, 0.22), transparent 22%), linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.52)); }
.product-image span, .product-image strong, .product-image small, .product-image img, .product-art-copy { position: relative; z-index: 2; }
.product-image .sample-code { position: absolute; top: 1.15rem; left: 1.2rem; color: rgba(222, 212, 188, 0.48); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.14em; }
.product-logo { position: absolute !important; width: 72%; left: 50%; top: 45%; transform: translate(-50%, -50%); opacity: 0.075; filter: sepia(0.3) saturate(0.75); }
.product-art-copy { position: absolute !important; inset: auto 1.5rem 1.5rem; width: auto; display: grid; gap: 0.4rem; text-align: left; }
.product-art-copy > span { color: var(--fire); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.product-art-copy strong { color: var(--cream); font-family: var(--display); font-size: clamp(1.5rem, 5vw, 2.35rem); letter-spacing: -0.025em; line-height: 0.94; text-transform: uppercase; }
.product-art-copy small { color: var(--cream-dim); font-size: 0.62rem; font-weight: 750; letter-spacing: 0.16em; text-transform: uppercase; }
.product-image-merch-2 { background: linear-gradient(155deg, rgba(31, 36, 38, 0.86), rgba(22, 35, 39, 0.58) 52%, rgba(8, 10, 11, 0.94)); }
.ep-details { padding: 1.25rem 0; }
.product-title-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.product-kicker { margin-bottom: 0.3rem; color: var(--cream-dim); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.price { color: var(--fire); font-family: var(--display); font-size: 1.45rem; font-weight: 900; white-space: nowrap; }
.tracklist { margin: 1.5rem 0; padding: 0; list-style: none; counter-reset: tracks; }
.tracklist li { counter-increment: tracks; display: grid; grid-template-columns: 2rem 1fr; padding: 0.48rem 0; border-bottom: 1px solid rgba(222, 212, 188, 0.08); transition: color 180ms ease, transform 180ms ease, border-color 180ms ease; }
.tracklist li:hover { transform: translateX(0.22rem); border-color: rgba(227, 160, 79, 0.22); color: #fff8e9; }
.tracklist li::before { content: counter(tracks, decimal-leading-zero); color: var(--cream-dim); font-size: 0.73rem; }
.buy-controls { display: grid; grid-template-columns: 1fr 0.7fr; gap: 0.8rem; }
.buy-controls label { display: grid; gap: 0.35rem; }
.buy-controls label span, .merch-controls label span { color: var(--cream-dim); font-size: 0.7rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }
select { width: 100%; min-height: 3.2rem; border: 1px solid var(--line); border-radius: 0; background: rgba(8, 10, 11, 0.72); color: var(--cream); padding: 0.75rem; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
select:hover { border-color: rgba(222, 212, 188, 0.34); }
select:focus { border-color: var(--line-hot); background: rgba(8, 10, 11, 0.88); box-shadow: inset 0 0 0 1px rgba(227, 160, 79, 0.08); }
.buy-button { grid-column: 1 / -1; width: 100%; margin-top: 0.35rem; }
.secure-note { margin: 0.8rem 0 0; color: var(--cream-dim); font-size: 0.74rem; }

.merch-grid { display: grid; gap: 1.5rem; }
.merch-card { padding: 1rem; border: 1px solid rgba(222, 212, 188, 0.12); background: rgba(16, 19, 22, 0.34); transition: border-color 180ms ease, transform 180ms ease; }
.merch-card:hover { transform: translateY(-3px); border-color: rgba(227, 160, 79, 0.34); }
.merch-card .product-image { min-height: 16rem; margin-bottom: 1.2rem; }
.merch-card-head { display: flex; justify-content: space-between; gap: 1rem; }
.merch-card h3 { margin-bottom: 0.55rem; font-size: 1.55rem; }
.merch-card p { color: var(--cream-dim); font-size: 0.9rem; }
.merch-controls { display: grid; grid-template-columns: 1fr 0.65fr; gap: 0.7rem; margin-top: 1rem; }
.merch-controls label { display: grid; gap: 0.35rem; }
.merch-controls .button { grid-column: 1 / -1; width: 100%; }

.show-card { position: relative; display: grid; gap: 1.8rem; padding: 1.5rem; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(120deg, rgba(11, 38, 50, 0.6), rgba(8, 10, 11, 0.94) 62%); box-shadow: var(--shadow); }
.show-card::after { content: ""; position: absolute; width: 14rem; height: 14rem; right: -6rem; top: -7rem; border-radius: 50%; background: radial-gradient(circle, rgba(219, 63, 39, 0.25), transparent 68%); }
.show-date { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 10rem; border: 1px solid var(--line-hot); background: rgba(8, 10, 11, 0.42); }
.motion-ready .show-section.is-visible .show-date { animation: date-glow 5s ease-in-out 700ms infinite; }
.show-date span { color: var(--fire); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.18em; }
.show-date strong { font-family: var(--display); font-size: 4.6rem; line-height: 0.95; }
.show-main { position: relative; z-index: 1; }
.show-main h2 { font-size: clamp(2.1rem, 8vw, 4rem); }
.show-location { color: var(--cream-dim); }
.show-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin: 1.5rem 0; }
.show-facts div { border-top: 1px solid var(--line); padding-top: 0.6rem; }
.show-facts dt { color: var(--cream-dim); font-size: 0.67rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }
.show-facts dd { margin: 0.2rem 0 0; font-weight: 750; }
.lineup { margin-top: 1.4rem; padding: 1rem; border: 1px solid rgba(222, 212, 188, 0.11); background: rgba(8, 10, 11, 0.28); }
.lineup-label { margin: 0 0 0.75rem; color: var(--cream-dim); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.lineup-headliner { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line-hot); }
.lineup-headliner span { color: var(--fire); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.lineup-headliner strong { font-family: var(--display); font-size: clamp(1.35rem, 5vw, 2rem); letter-spacing: -0.02em; line-height: 1; text-align: right; text-transform: uppercase; }
.supporting { margin: 0.7rem 0 0; padding: 0; list-style: none; }
.supporting li { padding: 0.42rem 0; border-bottom: 1px solid rgba(222, 212, 188, 0.065); color: var(--cream-dim); font-size: 0.86rem; }
.supporting li:last-child { border-bottom: 0; }
.countdown-wrap { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.countdown-label { margin: 0 0 0.65rem; color: var(--cream-dim); font-size: 0.67rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.45rem; max-width: 28rem; }
.countdown div { position: relative; display: grid; place-items: center; min-width: 0; padding: 0.72rem 0.3rem; overflow: hidden; border: 1px solid rgba(227, 160, 79, 0.22); background: linear-gradient(180deg, rgba(23, 62, 77, 0.16), rgba(8, 10, 11, 0.6)); transition: border-color 400ms ease, background 400ms ease; }
.countdown div::after { content: ""; position: absolute; inset: auto 12% 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(227, 160, 79, 0.42), transparent); }
.countdown strong { color: var(--fire); font-family: var(--display); font-size: clamp(1.45rem, 6vw, 2rem); line-height: 1; font-variant-numeric: tabular-nums; }
.countdown span { margin-top: 0.35rem; color: var(--cream-dim); font-size: 0.58rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.countdown-live { grid-column: 1 / -1; margin: 0; color: var(--fire); font-family: var(--display); font-size: 1.6rem; }
.countdown.is-near div { border-color: rgba(227, 160, 79, 0.38); background: linear-gradient(180deg, rgba(182, 73, 45, 0.1), rgba(8, 10, 11, 0.62)); }
.countdown.is-imminent div { border-color: rgba(227, 160, 79, 0.52); }
.countdown.is-imminent strong { animation: countdown-glow 2.4s ease-in-out infinite; }
.directions-link[aria-disabled="true"] { opacity: 0.55; }
.connect-section { display: block; }
.connect-copy { max-width: 45rem; }
.connect-copy > .eyebrow { margin-bottom: 0.55rem; }
.connect-copy > p:not(.eyebrow) { max-width: 33rem; color: var(--cream-dim); }
.social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; margin-top: 1.8rem; }
.social-link {
  min-width: 0;
  min-height: 4.15rem;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(222, 212, 188, 0.13);
  background: linear-gradient(120deg, rgba(23, 62, 77, 0.2), rgba(16, 19, 22, 0.72));
  color: var(--cream);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.social-link:hover { transform: translateY(-2px); border-color: var(--line-hot); background: linear-gradient(120deg, rgba(182, 73, 45, 0.16), rgba(16, 19, 22, 0.78)); }
.social-link:active { transform: translateY(1px) scale(0.985); }
.social-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 160, 79, 0.36);
  color: var(--fire);
}
.social-mark svg { width: 1.12rem; height: 1.12rem; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-mark .icon-fill { fill: currentColor; stroke: none; }
.social-copy { min-width: 0; display: grid; line-height: 1.15; }
.social-copy strong { overflow: hidden; font-size: 0.73rem; letter-spacing: 0.1em; text-overflow: ellipsis; text-transform: uppercase; }
.social-copy small { margin-top: 0.28rem; color: var(--cream-dim); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }
.social-arrow { color: var(--burnt); font-size: 1rem; transition: color 180ms ease, transform 180ms ease; }
.social-link:hover .social-arrow { color: var(--fire); transform: translate(2px, -2px); }
.site-footer { min-height: 9rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; border-top: 1px solid var(--line); color: var(--cream-dim); font-size: 0.76rem; }
.site-footer p { margin: 0; }
.site-footer > a:last-child { text-underline-offset: 0.25rem; }
.footer-wordmark { color: var(--cream); }

.toast { position: fixed; z-index: 90; left: 1rem; right: 1rem; bottom: 1rem; max-width: 30rem; margin-inline: auto; transform: translateY(150%); padding: 1rem 1.2rem; border: 1px solid var(--line-hot); background: #15181a; box-shadow: var(--shadow); color: var(--cream); font-size: 0.9rem; transition: transform 220ms ease; }
.toast.is-visible { transform: translateY(0); }
.confirmation { width: min(calc(100% - 2rem), 34rem); border: 1px solid var(--line-hot); border-radius: 0; padding: 2rem; background: #111516; color: var(--cream); box-shadow: var(--shadow); }
.confirmation::backdrop { background: rgba(1, 5, 7, 0.82); backdrop-filter: blur(4px); }
.confirmation h2 { font-size: clamp(2rem, 10vw, 3.6rem); }
.confirmation > p:not(.eyebrow) { color: var(--cream-dim); }
.confirmation-mark { width: 3.2rem; height: 3.2rem; display: grid; place-items: center; margin-bottom: 1.5rem; border: 1px solid var(--line-hot); border-radius: 50%; color: var(--fire); font-size: 1.5rem; }
.dialog-close { position: absolute; top: 0.7rem; right: 0.7rem; width: 2.8rem; height: 2.8rem; border: 0; background: transparent; color: var(--cream-dim); cursor: pointer; font-size: 1.8rem; }

@media (min-width: 48rem) {
  .shell, .site-header { width: min(100% - 4rem, 74rem); }
  .hero { grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr); gap: 4rem; }
  .cover-wrap { width: 100%; }
  .player { padding: 2.2rem 1.7rem 1.7rem; }
  .section-heading { flex-direction: row; align-items: end; justify-content: space-between; }
  .section-heading > p { width: 40%; margin-bottom: 0.3rem; }
  .ep-grid { grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr); gap: 3rem; align-items: start; }
  .product-image-ep { position: sticky; top: 1.5rem; aspect-ratio: 1; min-height: 0; }
  .buy-controls { grid-template-columns: 1fr 0.6fr 1.2fr; align-items: end; }
  .buy-button { grid-column: auto; margin: 0; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .show-card { grid-template-columns: 10rem 1fr auto; align-items: center; padding: 2rem; }
  .directions-link { align-self: end; }
}

@media (max-width: 31rem) {
  .site-header {
    width: calc(100% - 1rem);
    min-height: 4.8rem;
    gap: 0.5rem;
    padding-left: max(0.25rem, env(safe-area-inset-left));
    padding-right: max(0.25rem, env(safe-area-inset-right));
    overflow: visible;
  }
  .brand-logo { width: min(8.4rem, 42vw); }
  .access-mark { max-width: none; justify-content: flex-end; font-size: 0.58rem; letter-spacing: 0.075em; text-align: right; }
  .hero { gap: 2.2rem; padding-block: 3rem 4rem; }
  section:not(.hero) { padding-block: 4.25rem; }
  h1 { font-size: clamp(2.8rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3.4rem); }
  .section-heading { margin-bottom: 1.8rem; }
  .hero-actions .button { flex: 1 1 9rem; }
  .player { grid-template-columns: 3.4rem minmax(0, 1fr); gap: 0.75rem; padding: 2rem 0.9rem 1rem; }
  .play-button { width: 3.4rem; height: 3.4rem; }
  .player-title-row { align-items: flex-start; flex-direction: column; gap: 0.2rem; }
  .waveform { overflow: hidden; }
  .player-utility { letter-spacing: 0.08em; }
  .product-image { min-height: 15rem; }
  .ep-details { padding-top: 0; }
  .product-title-line { flex-direction: column; gap: 0.7rem; }
  .merch-card { padding: 0.85rem; }
  .merch-controls { grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr); }
  .show-card { gap: 1.3rem; padding: 1.1rem; }
  .show-date { min-height: 7.5rem; }
  .show-date strong { font-size: 4rem; }
  .show-facts { grid-template-columns: 1fr; }
  .show-facts div { display: flex; justify-content: space-between; gap: 1rem; }
  .lineup { padding: 0.85rem; }
  .lineup-headliner { align-items: flex-end; }
  .countdown { gap: 0.3rem; }
  .countdown div { padding: 0.62rem 0.15rem; }
  .countdown span { font-size: 0.52rem; letter-spacing: 0.04em; }
  .directions-link { width: 100%; }
}

@media (hover: none) {
  .button:hover, .social-link:hover, .merch-card:hover { transform: none; box-shadow: none; }
  .tracklist li:hover { transform: none; }
}

@media (min-width: 70rem) {
  section:not(.hero) { padding-block: 7rem; }
  .hero::before { left: -2rem; }
  .social-links { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@keyframes flicker { 0%, 18%, 22%, 100% { opacity: 0.65; } 20%, 24%, 67% { opacity: 1; } }
@keyframes pulse-wave { from { transform: scaleY(0.65); opacity: 0.5; } to { transform: scaleY(1); opacity: 1; } }
@keyframes searchlight {
  0%, 12% { transform: rotate(-8deg); opacity: 0.15; }
  40% { opacity: 0.72; }
  58% { opacity: 0.28; }
  100% { transform: rotate(17deg); opacity: 0.58; }
}
@keyframes ember-drift {
  0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  10% { opacity: 0.65; }
  65% { opacity: 0.35; }
  100% { transform: translate3d(var(--drift), -105vh, 0) scale(0.15); opacity: 0; }
}
@keyframes signal-pulse {
  0%, 35% { box-shadow: 0 0 0 0 rgba(227, 160, 79, 0.34), 0 0 14px var(--fire); }
  75%, 100% { box-shadow: 0 0 0 0.55rem rgba(227, 160, 79, 0), 0 0 7px var(--fire); }
}
@keyframes damaged-light {
  0%, 14% { transform: translateX(-60%); opacity: 0; }
  28% { opacity: 0.7; }
  46%, 100% { transform: translateX(62%); opacity: 0; }
}
@keyframes cover-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.25deg); }
  50% { transform: translate3d(0, -0.65rem, 0) rotate(0.35deg); }
}
@keyframes play-ring {
  0% { transform: scale(0.86); opacity: 0.72; }
  100% { transform: scale(1.28); opacity: 0; }
}
@keyframes date-glow {
  0%, 100% { border-color: var(--line-hot); box-shadow: inset 0 0 0 rgba(227, 160, 79, 0); }
  50% { border-color: rgba(227, 160, 79, 0.66); box-shadow: inset 0 0 2.4rem rgba(182, 73, 45, 0.1); }
}
@keyframes countdown-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(227, 160, 79, 0); }
  50% { text-shadow: 0 0 0.85rem rgba(227, 160, 79, 0.28); }
}
@keyframes title-burn-reveal {
  0% { clip-path: inset(0 100% 0 0); filter: brightness(0.55) drop-shadow(0 0 0 rgba(219, 63, 39, 0)); }
  42% { filter: brightness(1.35) drop-shadow(0.08em 0 0.12em rgba(227, 160, 79, 0.5)); }
  72% { clip-path: inset(0 0 0 0); filter: brightness(1.08) drop-shadow(0 0 0.08em rgba(219, 63, 39, 0.24)); }
  100% { clip-path: inset(0 0 0 0); filter: none; }
}

.motion-ready [data-reveal] { opacity: 0; transform: translateY(1.25rem); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .hero h1 span,
.motion-ready .hero .hero-intro,
.motion-ready .hero .hero-actions,
.motion-ready .hero .cover-wrap {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .hero.is-visible h1 span,
.motion-ready .hero.is-visible .hero-intro,
.motion-ready .hero.is-visible .hero-actions,
.motion-ready .hero.is-visible .cover-wrap { opacity: 1; transform: translateY(0); }
.motion-ready .hero.is-visible h1 span:nth-child(1) { transition-delay: 80ms; }
.motion-ready .hero.is-visible h1 span:nth-child(2) { transition-delay: 170ms; }
.motion-ready .hero.is-visible h1 span:nth-child(3) { transition-delay: 260ms; }
.motion-ready .hero.is-visible .hero-intro { transition-delay: 350ms; }
.motion-ready .hero.is-visible .hero-actions { transition-delay: 430ms; }
.motion-ready .hero.is-visible .cover-wrap { transition-delay: 230ms; }
.motion-ready .hero.is-visible .cover-placeholder { animation: cover-float 8s ease-in-out 1.2s infinite; }

.motion-ready .listen-section > *,
.motion-ready .preorder-section > *,
.motion-ready .merch-section > *,
.motion-ready .show-section > *,
.motion-ready .connect-section > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 600ms ease, transform 750ms cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .listen-section.is-visible > *,
.motion-ready .preorder-section.is-visible > *,
.motion-ready .merch-section.is-visible > *,
.motion-ready .show-section.is-visible > *,
.motion-ready .connect-section.is-visible > * { opacity: 1; transform: translateY(0); }
.motion-ready [data-reveal].is-visible > :nth-child(1) { transition-delay: 90ms; }
.motion-ready [data-reveal].is-visible > :nth-child(2) { transition-delay: 180ms; }
.motion-ready [data-reveal].is-visible > :nth-child(3) { transition-delay: 270ms; }
.motion-ready .merch-card { opacity: 0; transform: translateY(1.2rem); transition: opacity 600ms ease, transform 750ms cubic-bezier(.16, 1, .3, 1), border-color 180ms ease; }
.motion-ready .merch-section.is-visible .merch-card { opacity: 1; transform: translateY(0); }
.motion-ready .merch-section.is-visible .merch-card:nth-child(1) { transition-delay: 280ms; }
.motion-ready .merch-section.is-visible .merch-card:nth-child(2) { transition-delay: 390ms; }
.motion-ready .connect-section .social-link { opacity: 0; transform: translateY(0.7rem); transition: opacity 500ms ease, transform 650ms cubic-bezier(.16, 1, .3, 1), border-color 180ms ease, background 180ms ease; }
.motion-ready .connect-section.is-visible .social-link { opacity: 1; transform: translateY(0); }
.motion-ready .connect-section.is-visible .social-link:nth-child(1) { transition-delay: 260ms; }
.motion-ready .connect-section.is-visible .social-link:nth-child(2) { transition-delay: 320ms; }
.motion-ready .connect-section.is-visible .social-link:nth-child(3) { transition-delay: 380ms; }
.motion-ready .connect-section.is-visible .social-link:nth-child(4) { transition-delay: 440ms; }
