/* Radiant Son — Stylesheet
   Three-mode system: Day / Sunset / Night */

/* ─── FONTS ──────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Kimane';
  src: url('fonts/kimane-regular.woff2') format('woff2'),
       url('fonts/kimane-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KimaneHandwriting';
  src: url('fonts/kimane-handwriting.woff2') format('woff2'),
       url('fonts/kimane-handwriting.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KimaneIcon';
  src: url('fonts/kimane-icon.woff2') format('woff2'),
       url('fonts/kimane-icon.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:        #1A0A00;
  --bg-mid:    #2C1500;
  --gold:      #D4820A;
  --gold-warm: #E8A830;
  --ember:     #8B2500;
  --water:     #051018;
  --cream:     #F5E6C8;
  --cream-dim: #C8A878;
  --font-mark: 'Kimane', Georgia, serif;
  --font-hand: 'KimaneHandwriting', cursive;
  --font-icon: 'KimaneIcon', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Mode-aware tokens (defaults = day) */
  --mode-accent:      #D4820A;
  --mode-accent-warm: #E8A830;
  --mode-cream:       #F5E6C8;
  --mode-scrim:       rgba(20, 8, 0, 0.48);
  --mode-section-bg:  rgba(20, 8, 0, 0.84);
  --mode-footer-bg:   rgba(5, 12, 20, 0.92);
  --mode-transition:  1.4s ease;
  --glow-rgb:         212, 130, 10;
}

/* ─── MODE OVERRIDES ─────────────────────────────────────────────── */
html[data-mode="day"] {
  --mode-accent:      #D4820A;
  --mode-accent-warm: #E8A830;
  --mode-cream:       #F5E6C8;
  --mode-scrim:       rgba(20, 8, 0, 0.42);
  --mode-section-bg:  rgba(20, 8, 0, 0.82);
  --mode-footer-bg:   rgba(5, 12, 20, 0.92);
  --glow-rgb:         212, 130, 10;
}

html[data-mode="sunset"] {
  --mode-accent:      #E8640A;
  --mode-accent-warm: #FF8C28;
  --mode-cream:       #FFF2E0;
  --mode-scrim:       rgba(40, 12, 0, 0.38);
  --mode-section-bg:  rgba(30, 8, 0, 0.82);
  --mode-footer-bg:   rgba(10, 4, 0, 0.92);
  --glow-rgb:         232, 100, 10;
}

html[data-mode="night"] {
  --mode-accent:      #C8A060;
  --mode-accent-warm: #E8B870;
  --mode-cream:       #EEE0CC;
  --mode-scrim:       rgba(2, 6, 14, 0.55);
  --mode-section-bg:  rgba(4, 8, 18, 0.88);
  --mode-footer-bg:   rgba(2, 4, 12, 0.96);
  --glow-rgb:         200, 160, 96;
}

html[data-mode="rising"] {
  --mode-accent:      #C87850;
  --mode-accent-warm: #E09060;
  --mode-cream:       #F8EEE0;
  --mode-scrim:       rgba(10, 4, 0, 0.35);
  --mode-section-bg:  rgba(10, 4, 0, 0.80);
  --mode-footer-bg:   rgba(4, 2, 0, 0.92);
  --glow-rgb:         200, 120, 80;
}

html[data-mode="merch"] {
  --mode-accent:      #F5ECD8;
  --mode-accent-warm: #FFFFFF;
  --mode-cream:       #F5ECD8;
  --mode-scrim:       rgba(4, 2, 0, 0.50);
  --mode-section-bg:  rgba(6, 4, 2, 0.90);
  --mode-footer-bg:   rgba(2, 1, 0, 0.95);
  --glow-rgb:         200, 176, 144;
}

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--mode-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: color var(--mode-transition);
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

a { text-decoration: none; color: inherit; }

/* ─── BACKGROUND LAYERS ──────────────────────────────────────────── */
.bg-layers {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--mode-transition);
}

/* Background images */
.bg-layer--day    { background-image: url('images/bg-day.png'); background-position: center 40%; }
.bg-layer--sunset { background-image: url('images/bg-sunset.png'); background-position: center 62%; }
.bg-layer--night  { background-image: url('images/bg-night.png'); background-position: center top; }
.bg-layer--rising { background-image: url('images/bg-rising.png'); background-position: center center; }
.bg-layer--merch { background-image: url('images/bg-merch.png'); background-position: center center; }

/* Activate the right layer per mode */
html[data-mode="day"]    .bg-layer--day    { opacity: 1; }
html[data-mode="sunset"] .bg-layer--sunset { opacity: 1; }
html[data-mode="night"]  .bg-layer--night  { opacity: 1; }
html[data-mode="rising"] .bg-layer--rising { opacity: 1; }
html[data-mode="merch"]  .bg-layer--merch  { opacity: 1; }

/* Dark scrim baked into each layer */
.bg-layer--day::after,
.bg-layer--sunset::after,
.bg-layer--night::after,
.bg-layer--rising::after,
.bg-layer--merch::after {
  content: '';
  position: absolute;
  inset: 0;
}
.bg-layer--day::after    { background: rgba(20, 8, 0, 0.38); }
.bg-layer--sunset::after { background: rgba(10, 4, 8, 0.38); }
.bg-layer--night::after  { background: rgba(2, 4, 10, 0.62); }
.bg-layer--rising::after { background: rgba(10, 4, 0, 0.30); }
.bg-layer--merch::after  { background: rgba(4, 2, 0, 0.20); }

/* Fallback colors behind images */
.bg-layer--day    { background-color: #2A1000; }
.bg-layer--sunset { background-color: #1A0808; }
.bg-layer--night  { background-color: #050810; }
.bg-layer--rising { background-color: #1A0C06; }
.bg-layer--merch  { background-color: #0A0806; }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  text-align: center;
  background: transparent;
}

/* Kimane Icon — rotating sun mark */
.hero__mark-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.hero__mark-icon {
  font-family: var(--font-icon);
  font-size: clamp(260px, 52vw, 540px);
  color: var(--mode-accent);
  opacity: 0.07;
  display: block;
  animation: spin 80s linear infinite;
  line-height: 1;
  user-select: none;
  transition: color var(--mode-transition);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 32vh, 320px) 40px 0;
  max-width: 100%;
}

/* ─── TITLE WRAP + SYMBOLS ───────────────────────────────────────── */
.hero__title-wrap {
  margin-bottom: 0;
}


.hero__figure-above {
  position: absolute;
  top: clamp(76px, 10vh, 110px);
  left: 50%;
  translate: -50% 0;
  font-family: var(--font-icon);
  font-size: clamp(140px, 18vw, 165px);
  color: var(--mode-cream);
  opacity: 0.6;
  line-height: 1;
  z-index: 2;
  transition: color var(--mode-transition);
}

.hero__album-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
}

.hero__sym {
  font-family: var(--font-icon);
  font-size: 36px;
  color: var(--mode-accent);
  opacity: 0.65;
  line-height: 1;
  display: none; /* hidden on mobile by default */
  flex-shrink: 0;
  transition: color var(--mode-transition);
}

.hero__sym--left  { animation: spin 14s linear infinite; }
.hero__sym--right { animation: spin 18s linear infinite reverse; }

.hero__album {
  font-family: var(--font-hand);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: normal;
  letter-spacing: 0.08em;
  color: var(--mode-accent);
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.45s forwards;
  transition: color var(--mode-transition);
}

.hero__sym-divider {
  font-family: var(--font-icon);
  font-size: 30px;
  color: var(--mode-accent);
  opacity: 0.45;
  line-height: 1;
  margin-top: 44px;
  margin-bottom: 28px;
  animation: spin 22s linear infinite;
  transition: color var(--mode-transition);
  display: block;
}

.hero__name {
  font-family: var(--font-mark);
  font-size: clamp(52px, 10vw, 108px);
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mode-cream);
  line-height: 1.0;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.2s ease 0.3s forwards;
  transition: color var(--mode-transition);
}

.hero__tagline {
  font-family: var(--font-hand);
  font-size: clamp(18px, 3.5vw, 28px);
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
  transition: color var(--mode-transition);
}

.hero__dedication {
  display: none;
  font-family: var(--font-hand);
  font-size: clamp(12px, 1.6vw, 15px);
  color: var(--cream-dim);
  letter-spacing: 0.03em;
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 56px;
  opacity: 0.72;
  font-style: italic;
  transition: color var(--mode-transition);
}

[data-mode="rising"] .hero__dedication {
  display: block;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(200, 168, 120, 0.4);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.9s forwards;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
}

.hero__cta:hover {
  color: var(--mode-cream);
  border-color: var(--mode-accent);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modeSwitcherIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes rimFlicker {
  0%   { box-shadow: 0 0 6px 1px rgba(var(--glow-rgb), 0.22), 0 0 24px 6px rgba(var(--glow-rgb), 0.09); }
  12%  { box-shadow: 0 0 11px 3px rgba(var(--glow-rgb), 0.44), 0 0 40px 10px rgba(var(--glow-rgb), 0.18); }
  20%  { box-shadow: 0 0 7px 2px rgba(var(--glow-rgb), 0.27), 0 0 28px 7px rgba(var(--glow-rgb), 0.11); }
  38%  { box-shadow: 0 0 15px 4px rgba(var(--glow-rgb), 0.52), 0 0 56px 14px rgba(var(--glow-rgb), 0.23); }
  47%  { box-shadow: 0 0 8px 2px rgba(var(--glow-rgb), 0.28), 0 0 32px 8px rgba(var(--glow-rgb), 0.12); }
  60%  { box-shadow: 0 0 5px 1px rgba(var(--glow-rgb), 0.17), 0 0 18px 4px rgba(var(--glow-rgb), 0.07); }
  72%  { box-shadow: 0 0 13px 3px rgba(var(--glow-rgb), 0.47), 0 0 48px 12px rgba(var(--glow-rgb), 0.20); }
  83%  { box-shadow: 0 0 9px 2px rgba(var(--glow-rgb), 0.31), 0 0 36px 9px rgba(var(--glow-rgb), 0.14); }
  100% { box-shadow: 0 0 6px 1px rgba(var(--glow-rgb), 0.22), 0 0 24px 6px rgba(var(--glow-rgb), 0.09); }
}

/* ─── MODE SWITCHER ──────────────────────────────────────────────── */
.mode-switcher {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8, 4, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--glow-rgb), 0.28);
  border-radius: 60px;
  padding: 8px 4px;
  opacity: 0;
  animation: modeSwitcherIn 1s ease 1.4s forwards, rimFlicker 5s ease-in-out 2.4s infinite;
  white-space: nowrap;
}

.mode-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  color: rgba(200, 168, 120, 0.45);
  transition: color 0.4s ease;
  font-family: var(--font-body);
  border-radius: 40px;
}

.mode-btn:hover {
  color: rgba(200, 168, 120, 0.85);
}

.mode-btn.active {
  color: var(--mode-accent);
}

.mode-btn__icon {
  font-size: 15px;
  line-height: 1;
  transition: color 0.4s ease;
}

.mode-btn__label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.mode-divider {
  width: 1px;
  height: 24px;
  background: rgba(212, 130, 10, 0.15);
  flex-shrink: 0;
}

/* ─── SYMBOL RULE ────────────────────────────────────────────────── */
.sym-rule {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 40px;
}

.sym-rule__line {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,130,10,0.25), transparent);
}

.sym-rule__icon {
  font-family: var(--font-icon);
  font-size: 38px;
  color: var(--mode-accent);
  opacity: 0.55;
  line-height: 1;
  transition: color var(--mode-transition);
}

.sym-rule__icon--spin     { animation: spin 20s linear infinite; }
.sym-rule__icon--spin-rev { animation: spin 20s linear infinite reverse; }
.sym-rule__icon--pulse    { animation: spin 30s linear infinite; }

/* ─── RISING MODE — section swap ─────────────────────────────────── */
.manifesto                          { display: none; }
[data-mode="rising"] .manifesto     { display: block; }
[data-mode="rising"] .listen        { display: none; }
[data-mode="rising"] .mailing       { display: none; }
[data-mode="rising"] .hero__cta     { display: none; }

/* ─── MERCH MODE — section swap ──────────────────────────────────── */
.merch                              { display: none; }
[data-mode="merch"] .merch          { display: block; }
[data-mode="merch"] .listen         { display: none; }
[data-mode="merch"] .mailing        { display: none; }
[data-mode="merch"] .sym-rule       { display: none; }
[data-mode="merch"] .hero__cta      { display: none; }
.hero__cta--merch                   { display: none; }
[data-mode="merch"] .hero__cta--merch { display: inline-block; color: var(--mode-cream); border-bottom-color: rgba(245,236,216,0.5); }

/* ─── MERCH SECTION ──────────────────────────────────────────────── */
.merch {
  position: relative;
  z-index: 1;
  padding: 80px 24px 120px;
  text-align: center;
}

.merch__inner {
  max-width: 900px;
  margin: 0 auto;
}

.merch__label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.merch__sym {
  font-family: var(--font-icon);
  font-size: 32px;
  color: var(--mode-accent);
  opacity: 0.9;
  line-height: 1;
  animation: spin 16s linear infinite;
  transition: color var(--mode-transition);
}

.merch__sym--rev { animation-direction: reverse; }

.merch__label {
  font-family: var(--font-hand);
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--mode-accent);
  letter-spacing: 0.04em;
  transition: color var(--mode-transition);
}

.merch__title {
  font-family: var(--font-mark);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mode-cream);
  margin-bottom: 64px;
  transition: color var(--mode-transition);
}

.merch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

@media (max-width: 640px) {
  .merch__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

.merch__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.merch__card-img {
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--glow-rgb), 0.14);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.merch__card-img:hover {
  border-color: rgba(var(--glow-rgb), 0.32);
}

.merch__card-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 2px;
  display: block;
}

.merch__card-placeholder-icon {
  font-size: 36px;
  color: var(--mode-accent);
  opacity: 0.14;
  transition: color var(--mode-transition);
}

.merch__card-name {
  font-family: var(--font-mark);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mode-cream);
  transition: color var(--mode-transition);
}

.merch__card-status {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mode-accent);
  opacity: 0.45;
  transition: color var(--mode-transition);
}

.merch__note {
  font-family: var(--font-hand);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--mode-cream);
  opacity: 0.35;
  letter-spacing: 0.02em;
  transition: color var(--mode-transition), opacity var(--mode-transition);
}

/* ─── MANIFESTO ──────────────────────────────────────────────────── */
a.mode-btn {
  text-decoration: none;
}

.mode-divider--tall {
  height: 32px;
  background: rgba(212, 130, 10, 0.22);
}

.mode-switcher--static {
  opacity: 1;
  transform: translateX(-50%);
  animation: rimFlicker 5s ease-in-out 0.3s infinite;
}

/* ─── MANIFESTO PAGE ─────────────────────────────────────────────── */
.manifesto-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.manifesto-bg__photo {
  position: absolute;
  inset: 0;
  background: url('photos/manifesto-bg.jpg') center/cover no-repeat;
  background-color: #120a04;
}

.manifesto-bg__tint {
  position: absolute;
  inset: 0;
  transition: background var(--mode-transition);
}

[data-mode="day"]    .manifesto-bg__tint { background: rgba(10,5,0,0.38); }
[data-mode="sunset"] .manifesto-bg__tint { background: rgba(100,25,0,0.38); }
[data-mode="night"]  .manifesto-bg__tint { background: rgba(0,3,18,0.52); }

.manifesto-page__content {
  position: relative;
  z-index: 1;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.manifesto-page__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mode-cream);
  opacity: 0.28;
  margin: 0 0 56px;
  transition: color var(--mode-transition);
}

.footer--minimal {
  position: relative;
  z-index: 1;
  background: transparent;
  border-top: 1px solid rgba(212, 130, 10, 0.08);
}

.manifesto {
  position: relative;
  z-index: 1;
  padding: 80px 40px 96px;
  text-align: center;
}

.manifesto__eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--mode-accent);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  transition: color var(--mode-transition);
}

.manifesto__inner {
  max-width: 600px;
  margin: 0 auto;
}

.manifesto__text {
  font-family: var(--font-hand);
  font-size: clamp(17px, 2.2vw, 26px);
  color: var(--mode-cream);
  opacity: 0.72;
  line-height: 1.75;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  transition: color var(--mode-transition), opacity var(--mode-transition);
}

.manifesto__text:last-child {
  margin-bottom: 0;
}

.manifesto__text em {
  font-style: normal;
  color: var(--mode-accent);
  opacity: 1;
  transition: color var(--mode-transition);
}

/* ─── LISTEN ─────────────────────────────────────────────────────── */
.listen {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 120px 24px;
  border-top: none;
}

.listen__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.listen__label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.listen__sym {
  font-family: var(--font-icon);
  font-size: 32px;
  color: var(--mode-accent);
  opacity: 0.55;
  line-height: 1;
  transition: color var(--mode-transition);
}

.listen__sym--spin     { animation: spin 16s linear infinite; }
.listen__sym--spin-rev { animation: spin 16s linear infinite reverse; }

.listen__label {
  font-family: var(--font-hand);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--mode-accent);
  margin-bottom: 0;
  letter-spacing: 0.04em;
  transition: color var(--mode-transition);
}

.listen__title {
  font-family: var(--font-mark);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mode-cream);
  margin-bottom: 56px;
  transition: color var(--mode-transition);
}

.embed-wrap {
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.embed-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 130, 10, 0.15);
  border-radius: 4px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.embed-placeholder__icon {
  font-size: 28px;
  color: var(--mode-accent);
  opacity: 0.4;
  transition: color var(--mode-transition);
}

.embed-placeholder__text {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.4;
}

.stream-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.stream-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mode-cream);
  opacity: 0.75;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}

.stream-link:hover {
  color: var(--mode-accent-warm);
  border-color: var(--mode-accent-warm);
}

.stream-link__dot {
  color: var(--mode-accent);
  opacity: 0.35;
  transition: color var(--mode-transition);
}

/* ─── ALBUM PLAYER ───────────────────────────────────────────────── */
.album-player-wrap {
  position: relative;
}

.player-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 88px;
  background: rgba(10, 4, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mode-accent);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  z-index: 2;
  transition: opacity 0.2s, background 0.2s, color var(--mode-transition), border-color var(--mode-transition);
  line-height: 1;
}

.player-nav:hover {
  opacity: 1;
  background: rgba(30, 12, 0, 0.96);
}

.player-nav--prev {
  right: calc(100% + 8px);
  border-radius: 6px 0 0 6px;
}

.player-nav--next {
  left: calc(100% + 8px);
  border-radius: 0 6px 6px 0;
}


.album-player {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
  text-align: left;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 580px) {
  .album-player {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .album-player-wrap {
    margin: 0 52px;
  }
  .player-nav {
    width: 36px;
    height: 72px;
    font-size: 22px;
  }
  .player-nav--prev {
    right: calc(100% + 4px);
  }
  .player-nav--next {
    left: calc(100% + 4px);
  }
}

.album-player__art-wrap {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  background: rgba(10, 4, 0, 0.88);
}

@media (max-width: 580px) {
  .album-player__art-wrap {
    width: 100%;
    max-width: 100%;
  }
}

.album-player__art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.album-player__art.is-swapping {
  opacity: 0;
}

.album-player__controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px 44px;
  background: rgba(10, 4, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.player-now-playing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-height: 1.4em;
}

.player-now-playing__num {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--mode-accent);
  opacity: 0.7;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: color var(--mode-transition);
}

.player-now-playing__title {
  font-family: var(--font-mark);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.14em;
  color: var(--mode-cream);
  text-transform: uppercase;
  transition: color var(--mode-transition);
}

.player-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-skip {
  background: transparent;
  border: none;
  color: var(--mode-accent);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 4px;
  line-height: 1;
  transition: opacity 0.2s, color var(--mode-transition);
  flex-shrink: 0;
}

.player-skip:hover { opacity: 1; }

.player-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--mode-accent);
  background: transparent;
  color: var(--mode-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color var(--mode-transition);
}

.player-play:hover {
  background: var(--mode-accent);
  color: #1A0A00;
}

.player-play.is-playing .js-play-icon::before { content: '❚❚'; font-size: 10px; letter-spacing: 2px; }

.player-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-progress {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
}

.player-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--mode-accent);
  border-radius: 2px;
  transition: background var(--mode-transition);
  pointer-events: none;
}

.player-times {
  display: flex;
  justify-content: space-between;
}

.player-time {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  opacity: 0.75;
  font-family: var(--font-body);
}

.player-buy-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .player-buy-row { justify-content: center; }
}

.player-buy-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--mode-accent);
  color: var(--mode-accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color var(--mode-transition);
  cursor: pointer;
}

.player-buy-btn:hover {
  background: var(--mode-accent);
  color: #1A0A00;
}

.player-bundle-btn {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.75;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s, color 0.2s;
}

.player-bundle-btn:hover {
  opacity: 1;
  color: var(--mode-cream);
}

.player-tracklist {
  max-height: 200px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.player-tracklist::-webkit-scrollbar { width: 3px; }
.player-tracklist::-webkit-scrollbar-track { background: transparent; }
.player-tracklist::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.tracklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.15s;
}

.tracklist-item:last-child { border-bottom: none; }

.tracklist-item:hover .tracklist-item__title { color: var(--mode-cream); opacity: 1; }

.tracklist-item.is-active .tracklist-item__num { color: var(--mode-accent); opacity: 1; }
.tracklist-item.is-active .tracklist-item__title { color: var(--mode-cream); opacity: 1; }

.tracklist-item__num {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  opacity: 0.4;
  width: 18px;
  text-align: right;
  flex-shrink: 0;
  font-family: var(--font-body);
  transition: color var(--mode-transition);
}

.tracklist-item__title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.6;
  font-family: var(--font-body);
  transition: color 0.15s, opacity 0.15s;
}

.tracklist-item__playing {
  margin-left: auto;
  font-size: 9px;
  color: var(--mode-accent);
  opacity: 0;
  transition: opacity 0.2s, color var(--mode-transition);
  flex-shrink: 0;
}

.tracklist-item.is-active .tracklist-item__playing { opacity: 1; }

/* ─── MAILING ────────────────────────────────────────────────────── */
.mailing {
  position: relative;
  z-index: 1;
  background: var(--mode-section-bg);
  padding: 120px 24px;
  border-top: 1px solid rgba(212, 130, 10, 0.1);
  text-align: center;
  transition: background var(--mode-transition);
}

.mailing__inner {
  max-width: 480px;
  margin: 0 auto;
}

.mailing__sym {
  display: block;
  font-family: var(--font-icon);
  font-size: 44px;
  color: var(--mode-accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 28px;
  animation: spin 25s linear infinite;
  transition: color var(--mode-transition);
}

.mailing__eyebrow {
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--mode-accent);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  transition: color var(--mode-transition);
}

.mailing__title {
  font-family: var(--font-mark);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mode-cream);
  margin-bottom: 40px;
  transition: color var(--mode-transition);
}

.mailing__form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(212, 130, 10, 0.35);
  transition: border-color var(--mode-transition);
}

html[data-mode="sunset"] .mailing__form { border-color: rgba(232, 100, 10, 0.4); }
html[data-mode="night"]  .mailing__form { border-color: rgba(200, 160, 96, 0.3); }

.mailing__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--mode-cream);
  letter-spacing: 0.04em;
}

.mailing__input::placeholder {
  color: var(--cream-dim);
  opacity: 0.4;
}

.mailing__submit {
  background: var(--mode-accent);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.mailing__submit:hover {
  background: var(--mode-accent-warm);
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--mode-footer-bg);
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(212, 130, 10, 0.08);
  transition: background var(--mode-transition);
}

.footer__badge {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--mode-cream);
  opacity: 0.7;
  transition: color var(--mode-transition), opacity var(--mode-transition);
}

.footer__badge:hover {
  opacity: 1;
}

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.3;
}

/* ─── DESKTOP — ONE LINE TITLE + FLANKING SYMBOLS ───────────────── */
@media (min-width: 768px) {
  .hero__figure-above {
    font-size: 150px;
    top: clamp(86px, calc(16vh - 37px), 123px);
  }

  .hero__name {
    font-size: clamp(44px, 5.6vw, 72px);
    letter-spacing: 0.07em;
    word-spacing: 0.25em;
    line-height: 1;
    margin-bottom: 0;
  }

  .hero__sym {
    display: block;
    font-size: clamp(36px, 4.8vw, 60px);
    opacity: 0.75;
  }

  .hero__album-wrap {
    gap: clamp(12px, 1.5vw, 20px);
  }
}

/* ─── SCROLL FADE-IN ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
