/* ============================================================
   FRANKLIN JONAS & THE BYZANTINES — franklin-jonas.com rebuild
   Palette + type carried over from the original Elementor kit:
   gold #CEA62C · dark gold #6A4F00 · khaki #C2B46D · cream #EDFFB2
   ember #C13130 · black
   Dream Orphans (brand display) · Space Grotesk · Space Mono
   ============================================================ */

@font-face {
  font-family: "Dream Orphans";
  src: url("../assets/dream_orphans_bd-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050403;
  --surface: #0d0b07;
  --surface-2: #14110a;
  --line: rgba(206, 166, 44, 0.18);
  --gold: #cea62c;
  --gold-dark: #6a4f00;
  --khaki: #c2b46d;
  --cream: #edffb2;
  --paper: #f2eddf;
  --ember: #c13130;
  --display: "Dream Orphans", "Space Grotesk", sans-serif;
  --heading: "Space Grotesk", sans-serif;
  --mono: "Space Mono", monospace;
  --pad: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--black);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.055;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

::selection { background: var(--gold); color: var(--black); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

.wrap { max-width: 1200px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  display: block;
}
.announce:hover .announce-cta { text-decoration: underline; }
.announce-cta { white-space: nowrap; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 4, 3, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand img { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--khaki);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--cream); }
.header-socials { display: flex; align-items: center; gap: 14px; }
.header-socials a { color: var(--khaki); transition: color 0.2s; display: inline-flex; }
.header-socials a:hover { color: var(--gold); }
.header-socials svg { width: 17px; height: 17px; fill: currentColor; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: transform 0.25s, opacity 0.25s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vh, 96px) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(206, 166, 44, 0.16), transparent 65%),
    radial-gradient(ellipse 50% 45% at 15% 85%, rgba(106, 79, 0, 0.22), transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-with {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 18px;
}
.hero-sub {
  color: var(--khaki);
  max-width: 46ch;
  margin-top: 18px;
  font-size: 14px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-solid { background: var(--gold); color: var(--black); }
.btn-solid:hover { background: var(--cream); border-color: var(--cream); }
.btn-ghost { border-color: rgba(242, 237, 223, 0.25); color: var(--paper); }
.btn-ghost:hover { background: var(--paper); border-color: var(--paper); color: var(--black); }
.btn svg { width: 15px; height: 15px; fill: currentColor; }

/* hero artwork card */
.hero-art { position: relative; justify-self: center; width: min(440px, 100%); }
.hero-art-frame {
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px var(--line);
}
.hero-art:hover .hero-art-frame { transform: rotate(0deg) scale(1.015); }
.hero-art-frame img { width: 100%; }
.hero-art-caption {
  margin-top: 20px;
  font-size: 12px;
  color: var(--khaki);
  text-align: center;
  letter-spacing: 0.04em;
}
.hero-art-caption .star { color: var(--gold); }

/* preview player button on artwork */
.preview-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(5, 4, 3, 0.72);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.preview-btn:hover { background: var(--gold); color: var(--black); transform: translate(-50%, -50%) scale(1.06); }
.preview-btn svg { width: 26px; height: 26px; fill: currentColor; }
.preview-btn .icon-pause { display: none; }
.preview-btn.playing .icon-play { display: none; }
.preview-btn.playing .icon-pause { display: block; }
.preview-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 22px;
  animation: cue 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--khaki);
  white-space: nowrap;
}
.marquee-track .sep { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: clamp(72px, 11vh, 130px) 0; position: relative; }
.section-head { margin-bottom: clamp(36px, 6vh, 64px); }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
}
.section-sub { color: var(--khaki); margin-top: 14px; max-width: 62ch; font-size: 14px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- video ---------- */
#video { background: var(--surface); border-bottom: 1px solid var(--line); }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px var(--line);
  overflow: hidden;
}
.video-frame img,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame img { object-fit: cover; filter: brightness(0.6); }
.video-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--khaki);
  text-align: center;
  margin-top: 18px;
}
.video-note a { color: var(--gold); }

/* ---------- tour ---------- */
#tour { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tour-list { border-top: 1px solid var(--line); }
.tour-row {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s, padding-left 0.2s;
}
.tour-row:hover { background: rgba(206, 166, 44, 0.05); padding-left: 16px; }
.tour-date { font-family: var(--mono); font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.tour-venue { font-family: var(--heading); font-weight: 700; font-size: 16px; letter-spacing: 0.02em; }
.tour-city { color: var(--khaki); font-size: 13px; display: block; font-family: var(--mono); }
.tour-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 10px;
  white-space: nowrap;
}
.tour-tickets {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 237, 223, 0.25);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tour-tickets:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.tour-row.hidden-date { display: none; }
.tour-more-wrap { text-align: center; margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- music ---------- */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.release { position: relative; }
.release-art {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.release-art img { transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1); }
.release:hover .release-art img { transform: scale(1.045); }
.release-num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: rgba(5, 4, 3, 0.7);
  padding: 3px 9px;
  backdrop-filter: blur(3px);
}
.release-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-top: 14px; }
.release-title { font-family: var(--heading); font-weight: 700; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase; }
.release-year { font-family: var(--mono); font-size: 12px; color: var(--khaki); }
.release-kind { font-family: var(--mono); font-size: 11px; color: var(--khaki); letter-spacing: 0.1em; text-transform: uppercase; }
.release-links { display: flex; gap: 16px; margin-top: 8px; }
.release-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.release-links a:hover { color: var(--cream); border-color: var(--cream); }

/* album teaser */
.album-teaser {
  margin-top: clamp(40px, 6vh, 72px);
  border: 1px dashed var(--gold-dark);
  background: linear-gradient(120deg, rgba(206, 166, 44, 0.07), transparent 60%);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.album-teaser-title { font-family: var(--display); font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; line-height: 1; }
.album-teaser-title em { font-style: normal; color: var(--gold); }
.album-teaser p { color: var(--khaki); font-size: 13px; margin-top: 10px; max-width: 52ch; }

/* ---------- fireborn ---------- */
#fireborn {
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(193, 49, 48, 0.14), transparent 65%),
    var(--surface-2);
  border-top: 1px solid rgba(193, 49, 48, 0.28);
  border-bottom: 1px solid var(--line);
}
#fireborn .section-eyebrow { color: var(--ember); }
#fireborn .section-eyebrow::selection { background: var(--ember); }
.fireborn-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.fireborn-cover {
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(193, 49, 48, 0.18);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(193, 49, 48, 0.3);
}
.fireborn-cover:hover { transform: rotate(0deg) scale(1.02); }
.fireborn-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--khaki);
  color: var(--khaki);
}
.badge-ember { border-color: var(--ember); color: var(--ember); }
.badge-gold { border-color: var(--gold); color: var(--gold); }
.fireborn-copy p { color: var(--khaki); font-size: 14px; margin-bottom: 16px; max-width: 58ch; }
.fireborn-copy strong { color: var(--paper); }
.fireborn-quote {
  border-left: 2px solid var(--ember);
  padding-left: 20px;
  margin: 26px 0;
  font-size: 14px;
  color: var(--paper);
  font-style: italic;
  max-width: 52ch;
}
.fireborn-quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--khaki); }
.fireborn-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
#fireborn .btn { border-color: var(--ember); color: var(--ember); }
#fireborn .btn:hover { background: var(--ember); color: var(--paper); }
#fireborn .btn-solid { background: var(--ember); color: var(--paper); }
#fireborn .btn-solid:hover { background: #d94a49; border-color: #d94a49; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.about-photo { position: relative; }
.about-photo img {
  filter: grayscale(1) contrast(1.06);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(206, 166, 44, 0.16), transparent 55%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about-copy p { color: var(--khaki); margin-bottom: 18px; font-size: 14px; }
.about-copy p strong { color: var(--paper); }
.about-pull {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--paper);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0;
}
.about-pull em { color: var(--gold); font-style: normal; }
.influences { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.influences-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.influences-row { display: flex; flex-wrap: wrap; gap: 10px 22px; font-family: var(--heading); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper); }
.influences-row span::before { content: "✶ "; color: var(--gold); }

/* ---------- signup / connect ---------- */
#connect { background: var(--surface); border-top: 1px solid var(--line); }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
.connect-card {
  border: 1px solid var(--line);
  background: var(--black);
  padding: clamp(26px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.connect-card h3 { font-family: var(--display); font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; line-height: 1; }
.connect-card p { color: var(--khaki); font-size: 13px; flex-grow: 1; }
.signup-form { display: flex; gap: 0; }
.signup-form input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-right: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  padding: 14px 16px;
  outline: none;
  min-width: 0;
}
.signup-form input:focus { border-color: var(--gold); }
.signup-form input::placeholder { color: rgba(194, 180, 109, 0.55); }
.signup-msg { font-family: var(--mono); font-size: 12px; color: var(--cream); min-height: 18px; }

/* ---------- store banner ---------- */
.store-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(206, 166, 44, 0.09), transparent 55%);
  padding: clamp(44px, 7vh, 80px) 0;
}
.store-banner .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.store-banner h2 { font-family: var(--display); font-size: clamp(32px, 5vw, 60px); text-transform: uppercase; line-height: 0.95; }
.store-banner p { color: var(--khaki); font-size: 13px; margin-top: 10px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact-copy p { color: var(--khaki); font-size: 14px; margin-bottom: 18px; max-width: 52ch; }
.contact-email {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(17px, 2.4vw, 24px);
  color: var(--gold);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold-dark);
  transition: color 0.2s, border-color 0.2s;
  word-break: break-all;
}
.contact-email:hover { color: var(--cream); border-color: var(--cream); }
.contact-list { border-top: 1px solid var(--line); }
.contact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 13px; }
.contact-list .k { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.14em; color: var(--khaki); font-size: 11px; padding-top: 2px; }
.contact-list .v { font-family: var(--heading); font-weight: 700; text-align: right; }
.contact-list a.v { color: var(--gold); }
.contact-list a.v:hover { color: var(--cream); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(44px, 7vh, 72px) 0 32px; background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo img { height: 74px; width: auto; margin-bottom: 18px; }
.footer-tag { color: var(--khaki); font-size: 12px; max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--khaki); font-size: 13px; font-family: var(--heading); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(194, 180, 109, 0.6);
  letter-spacing: 0.06em;
}
.footer-bottom a:hover { color: var(--cream); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: min(340px, 78vw); }
  .hero { min-height: 0; }
  .fireborn-grid { grid-template-columns: 1fr; }
  .fireborn-cover { max-width: 320px; transform: rotate(-1deg); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .connect-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* no backdrop-filter here: it would make the sticky header the containing
     block for the fixed nav drawer, collapsing the drawer to header height */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5, 4, 3, 0.96);
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    background: var(--surface-2);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 18px; }
  .nav-toggle { display: flex; z-index: 300; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-socials { display: none; }
  .tour-row { grid-template-columns: 1fr auto; grid-template-areas: "date badge" "venue tickets"; row-gap: 8px; }
  .tour-date { grid-area: date; }
  .tour-venue-wrap { grid-area: venue; }
  .tour-badge { grid-area: badge; justify-self: end; }
  .tour-tickets { grid-area: tickets; justify-self: end; }
  .music-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .signup-form input { border-right: 1px solid var(--line); }
}
