/* ── SCALE ──────────────────────────────────────────
   Root font-size drives all rem values.
   1440px → ~16px  |  1920px → ~21px  |  2560px → 26px
   ─────────────────────────────────────────────────── */
html {
  font-size: clamp(16px, 1.1vw, 26px);
  scroll-behavior: smooth;
}

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --black-2:    #0f0d0b;
  --black-3:    #141210;
  --gold:       #E8A200;
  --gold-mid:   #C47A00;
  --gold-dark:  #8B5500;
  --gold-deep:  #4A2800;
  --cream:      #F0E6CC;
  --muted:      #907860;
  --border:     rgba(232,162,0,0.18);

  /* --font-metal:   'Metal Mania', serif; */
  --font-metal:   'Cinzel Decorative', serif;
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'Rajdhani', sans-serif;

  --nav-h:     clamp(60px, 5rem, 96px);
  --pad:       clamp(1.25rem, 5vw, 7rem);
  --section-v: clamp(3rem, 8vw, 10rem);
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  isolation: isolate;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── ILLUSTRATION BACKGROUND ────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url('assets/SFB_illustration.jpg');
  background-size: contain;
  /* background-repeat: no-repeat; */
  background-position: center top;
  opacity: 0.13;
}

/* ── GRAIN OVERLAY ──────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0)      }
  10%  { transform: translate(-5%,-10%) }
  20%  { transform: translate(-15%,5%)  }
  30%  { transform: translate(7%,-25%)  }
  40%  { transform: translate(-5%,25%)  }
  50%  { transform: translate(-15%,10%) }
  60%  { transform: translate(15%,0)    }
  70%  { transform: translate(0,15%)    }
  80%  { transform: translate(3%,35%)   }
  90%  { transform: translate(-10%,10%) }
  100% { transform: translate(0,0)      }
}

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ── NAVIGATION ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
}
#navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-deep) 20%,
    rgba(232,162,0,0.5) 50%,
    var(--gold-deep) 80%,
    transparent 100%);
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  overflow: hidden;
  mix-blend-mode: screen;
}
.nav-logo-img {
  width: clamp(240px, 20vw, 360px);
  height: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(240,230,204,0.75);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 1.4rem; height: 1px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.6rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
}
.btn:hover::before  { transform: translateX(0); }
.btn:hover          { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn-primary::before { background: #fff8e6; }
.btn-primary:hover   { color: var(--black); }

.btn-ghost {
  background: transparent;
  border-color: rgba(232,162,0,0.35);
  color: var(--gold);
}
.btn-ghost::before { background: rgba(232,162,0,0.09); }
.btn-ghost:hover   { color: var(--gold); border-color: var(--gold); }

/* ── SECTION BASE ───────────────────────────────── */
.s-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.s-music, .s-bio   { background: rgba(20,18,16,0.5); }
.s-tour, .s-merch  { background: rgba(15,13,11,0.5); }

.s-music, .s-tour, .s-merch, .s-bio {
  padding: var(--section-v) var(--pad);
  position: relative;
}
.s-music::before, .s-tour::before, .s-merch::before, .s-bio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-deep) 20%,
    rgba(232,162,0,0.5) 50%,
    var(--gold-deep) 80%,
    transparent 100%);
}

.sec-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-align: center;
  margin-bottom: 0.5rem;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: var(--cream);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

/* ── REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(10,10,10,0.4);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 50% 58%, rgba(196,122,0,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 28% 35% at 50% 52%, rgba(232,162,0,0.14) 0%, transparent 55%);
  animation: halo-pulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes halo-pulse {
  from { opacity: 0.75; transform: scale(1);    }
  to   { opacity: 1;    transform: scale(1.04); }
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 5rem;
  width: 100%;
}

.hero-band-name-wrap {
  animation: hero-up 1.3s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-band-name {
  overflow: hidden;
  height: clamp(65px, 13vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
}
.hero-band-name-img {
  width: clamp(280px, 55vw, 780px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(232,162,0,0.5)) drop-shadow(0 0 80px rgba(196,122,0,0.2));
  flex-shrink: 0;
}
.hero-new-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.75rem;
  animation: hero-up 1.3s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-artwork {
  width: clamp(260px, 38vw, 640px);
  aspect-ratio: 1;
  margin: 2.5rem 0 2rem;
  position: relative;
  flex-shrink: 0;
  animation: hero-up 1.3s 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-artwork img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-artwork::after {
  content: '';
  position: absolute;
  bottom: -1.75rem; left: 8%; right: 8%;
  height: 3.5rem;
  background: radial-gradient(ellipse, rgba(232,162,0,0.4) 0%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}
.hero-release-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.2vw, 1.5rem);
  letter-spacing: 0.14em;
  color: var(--cream);
  margin-bottom: 2.2rem;
  animation: hero-up 1.3s 0.34s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: hero-up 1.3s 0.46s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes hero-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MUSIC SECTION ──────────────────────────────── */
.music-release {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 660px) {
  .music-release {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .streaming-links { justify-content: center; }
}

.music-cover {
  width: clamp(200px, 22vw, 360px);
  aspect-ratio: 1;
  flex-shrink: 0;
}
.music-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 50px rgba(0,0,0,0.75), 0 0 70px rgba(196,122,0,0.18);
}

.music-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 0.4rem;
}
.music-type {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  color: var(--gold-mid);
  text-transform: uppercase;
}
.music-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  color: var(--cream);
  line-height: 1.1;
}
.music-artist {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.music-desc {
  font-size: 1rem;
  color: rgba(240,230,204,0.65);
  line-height: 1.85;
  max-width: 44ch;
}

.streaming-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240,230,204,0.65);
  border: 1px solid rgba(240,230,204,0.12);
  padding: 0.55rem 1.1rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.stream-btn svg { width: 0.9rem; height: 0.9rem; fill: currentColor; flex-shrink: 0; }
.stream-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,162,0,0.05);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  color: var(--gold-dark);
  font-size: 0.8rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}
.ornament::after { background: linear-gradient(90deg, var(--gold-dark), transparent); }

.embed-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--black);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.embed-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,122,0,0.09) 0%, transparent 65%);
}
.embed-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  z-index: 1;
}
.play-ring {
  width: 3.4rem; height: 3.4rem;
  border: 1px solid rgba(232,162,0,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.play-ring svg { width: 1.1rem; height: 1.1rem; }
.embed-wrap:hover .play-ring {
  border-color: var(--gold);
  transform: scale(1.1);
  background: rgba(232,162,0,0.08);
}
.embed-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TOUR SECTION ───────────────────────────────── */
.tour-list {
  max-width: 860px;
  margin: 0 auto;
}
.tour-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(232,162,0,0.07);
  transition: background 0.3s;
}
.tour-row:first-child { border-top: 1px solid rgba(232,162,0,0.07); }
.tour-row:hover { background: rgba(232,162,0,0.03); }

.tour-date {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.tour-venue {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.tour-city {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.tour-ticket {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(232,162,0,0.3);
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s;
}
.tour-ticket:hover { background: rgba(232,162,0,0.1); border-color: var(--gold); }

.tour-empty {
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px solid var(--border);
  max-width: 520px;
  margin: 0 auto;
}
.tour-empty-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}
.tour-empty p {
  font-size: 0.95rem;
  color: rgba(240,230,204,0.45);
  line-height: 1.9;
}

/* ── MERCH SECTION ──────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 3.5rem;
}
.merch-card {
  background: var(--black);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.merch-card:hover {
  border-color: rgba(232,162,0,0.5);
  transform: translateY(-5px);
}
.merch-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.merch-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,122,0,0.06) 0%, transparent 70%);
}
.merch-thumb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(144,120,96,0.5);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.merch-icon-ring {
  width: 3rem; height: 3rem;
  border: 1px solid rgba(232,162,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-info { padding: 1rem 1.2rem 1.3rem; }
.merch-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.merch-price {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* ── BIO SECTION ────────────────────────────────── */
.bio-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.bio-quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.7rem);
  color: var(--gold);
  line-height: 1.45;
  margin-bottom: 2.5rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold-dark);
  font-style: italic;
}
.bio-p {
  font-size: 1.05rem;
  color: rgba(240,230,204,0.68);
  line-height: 1.95;
}
.bio-p + .bio-p { margin-top: 1.2rem; }

/* ── MEET THE BAND ──────────────────────────────── */
.s-band {
  background: rgba(20,18,16,0.5);
  padding: var(--section-v) var(--pad);
  position: relative;
}
.s-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-deep) 20%,
    rgba(232,162,0,0.5) 50%,
    var(--gold-deep) 80%,
    transparent 100%);
}
.band-gallery {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.band-photo {
  position: relative;
  width: clamp(280px, 65%, 860px);
  overflow: hidden;
  outline: 1px solid rgba(232,162,0,0.5);
}
.band-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.band-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.band-photo:hover img { transform: scale(1.03); }

/* ── FOOTER ─────────────────────────────────────── */
.img_logo { width: 240px; height: auto; }

footer {
  /* background: rgba(10,10,10); */
  background: rgb(1, 1, 1);
  border-top: 1px solid var(--border);
  padding: 2rem var(--pad) 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-metal);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--gold);
  text-shadow: 0 0 35px rgba(232,162,0,0.45);
  display: block;
  margin-bottom: 1.8rem;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.soc {
  width: 2.8rem; height: 2.8rem;
  border: 1px solid rgba(232,162,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.soc svg { width: 1rem; height: 1rem; fill: currentColor; }
.soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,162,0,0.07); }

.footer-booking {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.footer-mail {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-mail:hover { color: var(--cream); }
.footer-copy {
  margin-top: 3rem;
  font-size: 0.7rem;
  color: rgba(144,120,96,0.4);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

/* ── MAILING LIST ───────────────────────────────── */
.s-mailinglist {
  padding: var(--section-v) var(--pad);
  text-align: center;
}
.ml-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: left;
}
.ml-mag-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.mag-stat { text-align: center; }
.mag-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}
.mag-num-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.mag-cta-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(144,120,96,0.5);
  text-transform: uppercase;
}

/* Magazine body */
.magazine {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 6px 24px rgba(232,162,0,0.12));
  transition: filter 0.6s ease;
}
.magazine.mag-full {
  filter: drop-shadow(0 6px 32px rgba(232,162,0,0.45));
}
.magazine.mag-full .mag-body {
  border-color: rgba(232,162,0,0.65);
}

.mag-lips {
  width: 80px;
  height: 18px;
  background: linear-gradient(180deg, #333 0%, #222 60%, #1a1a1a 100%);
  border: 1px solid rgba(232,162,0,0.45);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 58% 100%, 52% 60%, 48% 60%, 42% 100%, 0% 100%);
}
.mag-lips-divider {
  width: 1px;
  height: 6px;
  background: rgba(232,162,0,0.25);
}
.mag-body {
  width: 130px;
  background: linear-gradient(90deg,
    #111 0%, #1c1c1c 8%,
    #252525 20%, #222 50%,
    #1e1e1e 80%, #161616 92%,
    #0e0e0e 100%
  );
  border: 1px solid rgba(232,162,0,0.35);
  border-top: none;
  border-bottom: none;
  padding: 6px 7px;
  position: relative;
  transition: border-color 0.6s ease;
  box-shadow:
    inset 3px 0 8px rgba(0,0,0,0.6),
    inset -2px 0 4px rgba(0,0,0,0.3);
}
.mag-body::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  border-left: 1px solid rgba(0,0,0,0.4);
  border-right: 1px solid rgba(0,0,0,0.4);
}
.mag-spine {
  position: absolute;
  left: 4px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 70%);
}
.mag-window {
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,0,0,0.6);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.8);
}
.mag-base {
  width: 132px;
  height: 12px;
  background: linear-gradient(90deg, #202020 0%, #323232 40%, #2a2a2a 60%, #1c1c1c 100%);
  border: 1px solid rgba(232,162,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-radius: 0 0 5px 5px;
  position: relative;
}
.mag-base::after {
  content: '';
  position: absolute;
  left: 50%; top: 3px;
  transform: translateX(-50%);
  width: 28px; height: 2px;
  background: rgba(0,0,0,0.5);
  border-radius: 1px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.4);
}

/* Bullets */
.bullet {
  position: relative;
  width: 100%;
  height: 16px;
  flex-shrink: 0;
  overflow: hidden;
  animation: bulletLoad 0.28s ease-out backwards;
}
.bullet-half { height: 8px; }
.bullet-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 116px;
  transform: translate(-50%, -50%) rotate(90deg);
}
@keyframes bulletLoad {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.bullet-new {
  animation: bulletNew 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) backwards !important;
}
@keyframes bulletNew {
  from { opacity: 0; transform: translateX(-16px) scaleX(0.5); }
  to   { opacity: 1; transform: translateX(0) scaleX(1); }
}
@keyframes magNumPulse {
  0%   { transform: scale(1);    color: var(--gold); }
  45%  { transform: scale(1.18); color: #fff; }
  100% { transform: scale(1);    color: var(--gold); }
}
.mag-num-pulse { animation: magNumPulse 0.5s ease-out; }

/* Form col */
.ml-form-col { display: flex; flex-direction: column; gap: 0; }
.ml-sub {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.ml-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ml-input {
  flex: 1 1 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1.1rem;
  outline: none;
  transition: border-color 0.2s;
}
.ml-input::placeholder { color: var(--muted); }
.ml-input:focus { border-color: rgba(232,162,0,0.5); }
.ml-btn { white-space: nowrap; }
.ml-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}
.ml-feedback {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  min-height: 1.4em;
}
.ml-feedback--ok  { color: var(--gold); }
.ml-feedback--err { color: #e05555; }

/* ── MOBILE ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav: slide-down drawer */
  .nav-burger { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,7,6,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem var(--pad) 2rem;
    border-bottom: 1px solid var(--border);
    z-index: 700;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(232,162,0,0.07);
  }
  .nav-links li:last-child a { border-bottom: none; }

  /* Hero */
  .hero-band-name-img { width: clamp(220px, 80vw, 420px); }
  .hero-artwork   { width: min(78vw, 300px); }
  .hero-release-title { font-size: clamp(1rem, 4vw, 1.3rem); }
  .hero-new-label { letter-spacing: 0.25em; }

  /* Music */
  .music-release {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.8rem;
  }
  .music-cover {
    width: min(68vw, 260px);
    margin: 0 auto;
  }
  .music-desc   { max-width: 100%; }
  .streaming-links { justify-content: center; }

  /* Bio */
  .bio-quote { font-size: clamp(1rem, 4.5vw, 1.3rem); }

  /* Meet the Band */
  .band-photo { width: clamp(240px, 90vw, 640px); }

  /* Footer */
  .img_logo { display: none; }
  .footer-logo { font-size: clamp(1.3rem, 7vw, 2rem); }
  .soc { width: 2.6rem; height: 2.6rem; }

  /* Mailing list magazine */
  .ml-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .ml-form { justify-content: center; }
}
