:root {
  --ink: #241820;
  --night: #18131c;
  --plum: #3a1c35;
  --rose: #f5b4c4;
  --blush: #ffe2ea;
  --cream: #fff8ef;
  --gold: #f0c45c;
  --sky: #96d7f2;
  --electric: #6dd9ff;
  --muted: #6d5c67;
  --line: rgba(36, 24, 32, 0.14);
  --white: #ffffff;
  --bolt-shape: polygon(58% 0, 100% 0, 68% 43%, 100% 43%, 34% 100%, 48% 54%, 14% 54%);
  --max: 1180px;
  --shadow: 0 22px 70px rgba(58, 28, 53, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 226, 234, 0.9) 0%, rgba(255, 248, 239, 0.95) 44%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(245, 180, 196, 0.52), transparent 38%),
    linear-gradient(245deg, rgba(109, 217, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #fff8ef 0%, #ffe7ee 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.09;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 24, 32, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 24, 32, 0.26) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.6rem;
  z-index: 2000;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--night);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 248, 239, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: inset 0 0 0 2px rgba(255, 248, 237, 0.95), 0 10px 28px rgba(58, 28, 53, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.brand-name {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  color: rgba(36, 24, 32, 0.74);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--night);
  background: rgba(255, 255, 255, 0.68);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  color: var(--night);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--night);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(36, 24, 32, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 24, 32, 0.25);
  outline: none;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--night);
  border-color: rgba(36, 24, 32, 0.14);
  box-shadow: none;
}

.btn.gold {
  color: #1d151b;
  background: linear-gradient(135deg, #f6db87, var(--gold));
}

.hero {
  min-height: calc(100vh - 72px);
  padding: clamp(2.6rem, 5vw, 5.2rem) 0 3rem;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  min-width: 0;
}

.hero-grid > *,
.music-grid > *,
.thunder-grid > *,
.press-preview > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.52rem;
  height: 1rem;
  flex: 0 0 auto;
  background: var(--gold);
  clip-path: var(--bolt-shape);
  filter: drop-shadow(0 3px 7px rgba(240, 196, 92, 0.35));
}

.signature-script {
  width: max-content;
  max-width: 100%;
  margin: -0.35rem 0 -1.15rem 0.1rem;
  color: rgba(223, 172, 52, 0.86);
  font-family: "Segoe Script", "Bradley Hand ITC", "Brush Script MT", cursive;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
  background:
    radial-gradient(circle at 16% 42%, rgba(255, 255, 255, 0.58) 0 1.1%, transparent 2.2%),
    radial-gradient(circle at 72% 36%, rgba(255, 244, 171, 0.52) 0 1.2%, transparent 2.3%),
    radial-gradient(circle at 46% 62%, rgba(255, 255, 255, 0.42) 0 0.9%, transparent 1.9%),
    linear-gradient(105deg, #c99525 0%, #e3b644 34%, #f0cb60 49%, #d6a13a 66%, #c58c21 100%);
  background-size: 96px 100%, 118px 100%, 84px 100%, 100% 100%;
  background-position: 0 0, 30px 0, 12px 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-5deg);
  filter: drop-shadow(0 8px 18px rgba(240, 196, 92, 0.14));
  animation: signature-sparkle 5.6s steps(5, end) infinite;
  pointer-events: none;
}

@keyframes signature-sparkle {
  0% {
    background-position: 0 0, 30px 0, 12px 0, 0 0;
    filter: drop-shadow(0 8px 18px rgba(240, 196, 92, 0.12));
  }
  38% {
    background-position: 28px 0, 10px 0, 54px 0, 0 0;
    filter: drop-shadow(0 8px 18px rgba(240, 196, 92, 0.16));
  }
  62% {
    background-position: 64px 0, 86px 0, 24px 0, 0 0;
    filter: drop-shadow(0 8px 18px rgba(240, 196, 92, 0.11));
  }
  100% {
    background-position: 96px 0, 148px 0, 84px 0, 0 0;
    filter: drop-shadow(0 8px 18px rgba(240, 196, 92, 0.14));
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  width: max-content;
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--night);
  font-size: clamp(4rem, 11vw, 9.3rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  color: var(--night);
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  color: var(--night);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lede {
  max-width: 62ch;
  color: rgba(36, 24, 32, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  overflow-wrap: break-word;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 720px;
}

.stat {
  padding: 1rem;
  border: 1px solid rgba(36, 24, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.stat strong {
  display: block;
  color: var(--night);
  font-size: 1.05rem;
  line-height: 1.15;
}

.stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.cover-stack {
  position: sticky;
  top: 96px;
}

.cover-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  background: var(--night);
}

.cover-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cover-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(24, 19, 28, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.cover-caption strong,
.cover-caption span {
  display: block;
}

.cover-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section.tight {
  padding-top: 2rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

.band {
  background:
    linear-gradient(180deg, rgba(24, 19, 28, 0.97), rgba(58, 28, 53, 0.96)),
    url("thunderbolts-bg.jpg") center / cover;
  color: var(--white);
}

.band h2,
.band h3 {
  color: var(--white);
}

.band .section-head p,
.band p {
  color: rgba(255, 255, 255, 0.9);
}

.thunder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3.6rem);
  align-items: center;
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #09070a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 760px;
  object-fit: cover;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.clip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.clip-card video,
.clip-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--night);
}

.clip-card.wide video,
.clip-card.wide img {
  aspect-ratio: 16 / 9;
}

.clip-copy {
  padding: 0.95rem;
}

.clip-copy strong,
.clip-copy span {
  display: block;
}

.clip-copy span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.release-copy {
  display: grid;
  gap: 1rem;
}

.release-copy .lede {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 450;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-height: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.card p:last-child {
  margin-bottom: 0;
}

.music-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.track-list {
  display: grid;
  gap: 0.75rem;
}

.track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.track img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.track strong,
.track span {
  display: block;
}

.track span {
  color: var(--muted);
  font-size: 0.92rem;
}

.listen-link {
  color: var(--plum);
  font-weight: 950;
}

.listen-link::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.72rem;
  margin-left: 0.36rem;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(0.04rem);
}

body.has-preview-modal {
  overflow: hidden;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.preview-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.preview-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 19, 28, 0.48);
  backdrop-filter: blur(10px);
}

.preview-modal__panel {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 229, 238, 0.95), rgba(255, 248, 239, 0.98) 54%, rgba(233, 248, 251, 0.92));
  box-shadow: 0 28px 80px rgba(36, 24, 32, 0.32);
}

.preview-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.05rem 0.85rem;
}

.preview-modal__eyebrow {
  margin: 0 0 0.32rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-modal__header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 5vw, 2.2rem);
  line-height: 1;
}

.preview-modal__close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--night);
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  font-weight: 650;
  line-height: 1;
}

.preview-modal__close:hover,
.preview-modal__close:focus-visible {
  outline: none;
  background: var(--gold);
}

.preview-modal__player {
  position: relative;
  width: calc(100% - 1.6rem);
  height: 352px;
  margin: 0 0.8rem 0.8rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
}

.preview-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--night);
}

.preview-modal__loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 0.7rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(36, 24, 32, 0.88), rgba(58, 28, 53, 0.78)),
    var(--night);
  color: var(--white);
  font-weight: 850;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.preview-modal.is-loading .preview-modal__loading {
  opacity: 1;
}

.preview-modal__loading img {
  width: 86px;
  height: 86px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.visual-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.press-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.portrait-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.fact {
  padding: 0.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.56);
}

.fact strong,
.fact span {
  display: block;
}

.fact span {
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.press-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.press-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.75rem;
}

.press-doc {
  display: grid;
  gap: 1rem;
}

.press-block {
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.press-block h2 {
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.quote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  color: rgba(36, 24, 32, 0.78);
  font-size: 1.15rem;
}

.asset-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.asset-link {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.78);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 248, 239, 0.96);
    box-shadow: 0 18px 48px rgba(36, 24, 32, 0.16);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .nav-links a,
  .nav-panel .btn {
    justify-content: center;
    text-align: center;
  }

  .hero-grid,
  .thunder-grid,
  .music-grid,
  .press-preview,
  .press-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 0;
  }

  .cover-stack,
  .press-sidebar {
    position: static;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .clip-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-meta,
  .facts,
  .asset-list {
    grid-template-columns: 1fr;
  }

  .track {
    grid-template-columns: auto 1fr;
  }

  .listen-link {
    grid-column: 1 / -1;
  }

  .preview-modal__player {
    height: 232px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.5rem);
  }

  .action-row .btn {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .hero .shell {
    width: 100%;
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 3.7rem);
  }

  .hero .lede {
    display: block;
    width: min(31ch, calc(100vw - 2rem)) !important;
    max-width: min(31ch, calc(100vw - 2rem)) !important;
    font-size: 1rem;
    line-height: 1.45;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .signature-script {
    animation: none !important;
  }
}

/* Final Thunderbolts refinement: compact, cover-led, no visual filler. */
.hero {
  min-height: auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero-art {
  min-height: 0;
}

.cover-stack {
  position: static;
}

.cover-card {
  display: grid;
  aspect-ratio: 1 / 1;
}

.cover-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: #eba7ad;
}

.cover-caption {
  display: none;
}

.hero-meta {
  display: none;
}

.hero-grid {
  align-items: center;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.tight {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.portrait-panel img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #eba7ad;
}

.band {
  background:
    linear-gradient(180deg, rgba(24, 19, 28, 0.86), rgba(58, 28, 53, 0.84)),
    url("thunderbolts-bg.jpg") center / cover;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-grid,
  .thunder-grid,
  .music-grid,
  .press-preview,
  .press-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-grid > *,
  .thunder-grid > *,
  .music-grid > *,
  .press-preview > *,
  .press-layout > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lede,
  .hero p,
  .section p {
    max-width: 100%;
  }

  .cover-card,
  .cover-stack,
  .hero-art {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .hero .shell {
    width: 100%;
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 3.7rem);
  }

  .hero .lede {
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.45;
  }

}

.release-cover {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: min(100%, 460px);
  justify-self: start;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #eba7ad;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.release-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thunder-grid {
  align-items: center;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.platform-grid .btn {
  width: 100%;
  box-shadow: none;
  white-space: nowrap;
}

.platform-grid .btn.gold {
  grid-column: 1 / -1;
}

.platform-card .platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.platform-card .platform-grid .btn.gold {
  grid-column: auto;
}

.press-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  align-content: start;
  padding: 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.press-collage img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: 6px;
  object-fit: cover;
  background: #eba7ad;
}

.press-collage .span-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.press-collage.tall img {
  min-height: 170px;
}

.press-collage.tall .span-wide {
  aspect-ratio: 4 / 5;
}

.press-collage.tall .span-wide:last-child {
  aspect-ratio: 4 / 5;
}

.press-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 0.8rem;
}

.press-hero + .section.tight {
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
}

/* Shared photo frame: matches the press kit image treatment across the site. */
.cover-card,
.release-cover,
.press-collage,
.portrait-panel {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.cover-card,
.release-cover,
.portrait-panel {
  padding: 0.65rem;
}

.cover-card img,
.release-cover img,
.portrait-panel img {
  display: block;
  border-radius: 6px;
  background: #eba7ad;
}

.track img {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 24px rgba(36, 24, 32, 0.12);
}

.band .release-cover {
  padding: 0.65rem;
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.platform-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.15rem, 2.4vw, 1.45rem);
}

.platform-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0;
}

.platform-card > p {
  margin: 0;
  color: rgba(36, 24, 32, 0.74);
}

.platform-group {
  display: grid;
  gap: 0.6rem;
  padding-top: 0.15rem;
}

.platform-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 0.9rem;
}

.platform-note a {
  color: var(--plum);
  font-weight: 950;
}

.subscribe-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 229, 238, 0.88), rgba(255, 248, 239, 0.94) 52%, rgba(233, 248, 251, 0.82));
  box-shadow: var(--shadow);
}

.subscribe-copy .lede {
  margin-bottom: 0;
}

.subscribe-form-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 246, 249, 0.96), rgba(255, 251, 244, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64), 0 18px 44px rgba(36, 24, 32, 0.11);
}

.subscribe-form {
  display: grid;
  gap: 0.7rem;
}

.subscribe-form label {
  color: var(--night);
  font-weight: 900;
}

.subscribe-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.subscribe-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(36, 24, 32, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--night);
  font: inherit;
}

.subscribe-field input:focus {
  outline: none;
  border-color: rgba(240, 196, 92, 0.88);
  box-shadow: 0 0 0 4px rgba(240, 196, 92, 0.18);
}

.subscribe-field .btn {
  min-height: 48px;
  white-space: nowrap;
}

.subscribe-note,
.subscribe-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.subscribe-status {
  min-height: 1.35em;
  color: var(--plum);
  font-weight: 850;
}

.subscribe-honeypot,
.subscribe-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
}

@media (max-width: 620px) {
  .press-collage {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.55rem;
  }

  .press-collage .span-wide {
    grid-column: auto;
  }

  .press-collage img {
    display: none;
  }

  .press-collage img:first-child {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 42%;
  }

  .platform-grid:not(.platform-card .platform-grid) {
    grid-template-columns: 1fr;
  }

  .platform-grid:not(.platform-card .platform-grid) .btn.gold {
    grid-column: auto;
  }

  .platform-card .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card .platform-grid .btn {
    min-height: 42px;
    padding-inline: 0.9rem;
  }

  .subscribe-band {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .subscribe-field {
    grid-template-columns: 1fr;
  }

  .subscribe-field .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .platform-card {
    position: static;
  }
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero .shell,
  .section .shell {
    width: 100%;
  }

  .hero-grid,
  .thunder-grid,
  .music-grid,
  .press-layout {
    padding-inline: 1rem;
  }

  .hero-art {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cover-stack {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .cover-card {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .cover-card img {
    object-position: center center;
  }

  .thunder-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.8rem;
    overflow: hidden;
  }

  .release-cover {
    width: 100%;
    max-width: calc(100vw - 2rem);
    justify-self: center;
  }

  .release-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .release-copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .release-copy .lede {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .action-row {
    max-width: 100%;
  }

  .action-row {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .action-row .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

}

/* Final mobile signature guard: the rotated Love Language script needs breathing room. */
@media (max-width: 900px) {
  .hero-grid {
    overflow: visible;
  }

  .signature-script {
    width: max-content;
    max-width: none;
    margin: 0.1rem 0 -0.65rem 0.05rem;
    font-size: clamp(2.05rem, 8.4vw, 3.35rem);
    line-height: 1.08;
    transform-origin: left center;
  }
}

@media (max-width: 620px) {
  .signature-script {
    margin: 0.15rem 0 -0.55rem 0;
    font-size: clamp(1.85rem, 10.2vw, 2.7rem);
  }
}

@media (max-width: 430px) {
  .signature-script {
    margin-bottom: -0.45rem;
    font-size: clamp(1.65rem, 9.6vw, 2.2rem);
  }
}
