:root {
  --bg: #07080b;
  --surface: #11141b;
  --surface-2: #171b24;
  --text: #f5f2ea;
  --muted: #b9b4aa;
  --line: rgba(245, 242, 234, 0.14);
  --accent: #d8b358;
  --red: #d94d44;
  --cyan: #54b8ae;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body[data-page="discography"] {
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 179, 88, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 4%, rgba(84, 184, 174, 0.14), transparent 23rem),
    linear-gradient(145deg, #10131b 0%, #07080b 42%, #121017 100%);
}

body[data-page="home"],
body[data-page="splash"],
body[data-page="legal"] {
  background:
    radial-gradient(circle at 14% 10%, rgba(84, 184, 174, 0.13), transparent 24rem),
    radial-gradient(circle at 84% 8%, rgba(216, 179, 88, 0.13), transparent 25rem),
    radial-gradient(circle at 70% 86%, rgba(217, 77, 68, 0.1), transparent 22rem),
    linear-gradient(145deg, #0b0f12 0%, #07080b 48%, #111018 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 242, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 234, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.24;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

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

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

button,
input {
  font: inherit;
}

.site-header,
.home-section,
.page-shell,
.join-band {
  width: min(calc(100% - 1.25rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.65rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  border: 1px solid rgba(245, 242, 234, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(245, 242, 234, 0.055), rgba(245, 242, 234, 0.02)),
    rgba(7, 8, 11, 0.64);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(245, 242, 234, 0.08);
  backdrop-filter: blur(22px) saturate(130%);
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.24rem;
  border: 1px solid rgba(245, 242, 234, 0.08);
  border-radius: 8px;
  background: rgba(245, 242, 234, 0.035);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.55rem 0.72rem;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
  background: rgba(245, 242, 234, 0.08);
  box-shadow: inset 0 0 0 1px rgba(245, 242, 234, 0.07);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0.7rem;
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 8px;
  background: rgba(245, 242, 234, 0.045);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.26rem 0;
  background: var(--text);
}

.splash-wrap {
  display: grid;
  place-items: center;
  min-height: 100vh;
  width: min(calc(100% - 1.25rem), 1040px);
  margin: 0 auto;
  padding: 1.4rem 0;
}

.splash-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  width: 100%;
  max-width: 920px;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(84, 184, 174, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(216, 179, 88, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(245, 242, 234, 0.065), rgba(245, 242, 234, 0.018)),
    rgba(17, 20, 27, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(216, 179, 88, 0.08);
  backdrop-filter: blur(22px) saturate(125%);
}

.splash-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--red));
}

.splash-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #050609;
}

.splash-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 72%, rgba(216, 179, 88, 0.2), transparent 18%),
    linear-gradient(90deg, transparent 36%, rgba(7, 8, 11, 0.42)),
    linear-gradient(0deg, rgba(7, 8, 11, 0.48), transparent 48%);
}

.splash-media-glow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 72px;
  height: 4px;
  border: 1px solid rgba(245, 242, 234, 0.28);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  box-shadow: 0 0 34px rgba(84, 184, 174, 0.48);
}

.splash-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.splash-copy h1 {
  max-width: 10.8em;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 4.7rem);
  line-height: 0.94;
}

.splash-copy p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted);
  line-height: 1.6;
}

.splash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.splash-hint {
  display: none;
  margin: 1rem 0 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.splash-footer {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
  color: rgba(245, 242, 234, 0.5);
  font-size: 0.82rem;
  font-weight: 700;
}

.campaign-hero {
  position: relative;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  background: #0b0d12;
}

.campaign-hero > img {
  width: 100%;
  height: 500px;
  min-height: 500px;
  object-fit: cover;
}

.campaign-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.92) 0%, rgba(7, 8, 11, 0.58) 46%, rgba(7, 8, 11, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.78) 0%, transparent 38%);
}

.campaign-overlay {
  position: absolute;
  z-index: 1;
  left: max(0.75rem, calc((100vw - var(--max)) / 2));
  top: 44%;
  width: min(92%, 560px);
  transform: translateY(-12%);
}

.date-stamp,
.eyebrow,
.release-kicker,
.card-label {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.campaign-overlay h1,
.section-title h2,
.feature-copy h2,
.page-head h1,
.release-body h2,
.lyrics-release h2,
.song-head h1,
.contact-hero-copy h1,
.contact-note-panel h2,
.join-band h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.campaign-overlay h1 {
  font-size: 4rem;
}

.campaign-overlay p:not(.date-stamp),
.feature-copy p,
.update-card p,
.release-body p,
.release-card p,
.lyrics-sheet p,
.contact-card span {
  color: var(--muted);
  line-height: 1.65;
}

.campaign-overlay p:not(.date-stamp) {
  max-width: 31rem;
  font-size: 1rem;
}

.hero-actions,
.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-solid {
  background: var(--text);
  color: #101217;
}

.button-outline {
  border-color: var(--line);
  background: rgba(7, 8, 11, 0.38);
}

.slide-controls {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
}

.slide-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(7, 8, 11, 0.58);
}

.slide-controls span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 242, 234, 0.34);
}

.slide-controls .is-current {
  background: var(--text);
}

.home-section,
.page-shell,
.join-band {
  padding: 3rem 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.section-title h2,
.join-band h2 {
  font-size: 2.5rem;
}

.section-title p {
  max-width: 30rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-title a {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.update-card,
.release-card,
.lyrics-release,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.update-card {
  overflow: hidden;
}

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

.update-card div,
.release-card,
.lyrics-release,
.contact-card {
  padding: 1rem;
}

.update-card time {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.update-card h3,
.release-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.feature-art img,
.cover-art {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.feature-art img {
  aspect-ratio: 1;
}

.feature-copy h2,
.release-body h2 {
  font-size: 3.3rem;
}

.text-links a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
}

.lyrics-preview {
  border-top: 1px solid var(--line);
}

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

.lyrics-preview-grid a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
}

.media-strip {
  border-top: 1px solid var(--line);
}

.media-strip-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 0.75rem;
}

.media-strip-grid img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.home-story {
  display: grid;
  gap: 1rem;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.76fr);
  gap: 1rem;
  align-items: stretch;
}

.story-hero-copy,
.story-hero-art,
.story-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 242, 234, 0.055), transparent 46%),
    var(--surface);
}

.story-hero-copy {
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: clamp(1.1rem, 2.6vw, 1.8rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 179, 88, 0.2), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(84, 184, 174, 0.13), transparent 28%),
    linear-gradient(135deg, #171b24, #090b10 66%);
}

.story-hero-copy h1,
.current-era-copy h2,
.visuals-coming h2,
.producer-note blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

.story-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 4.4vw, 4.25rem);
  line-height: 0.96;
}

.story-hero-copy p:not(.eyebrow) {
  max-width: 35rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.story-hero-art {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.story-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.story-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(216, 179, 88, 0.12), transparent 24%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.24), transparent 42%);
}

.story-section {
  padding: clamp(1rem, 3vw, 1.5rem);
}

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

.process-grid article {
  min-height: 220px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.04), transparent),
    rgba(7, 8, 11, 0.32);
}

.process-grid span {
  color: rgba(245, 242, 234, 0.38);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-grid h3 {
  margin: 1.3rem 0 0.65rem;
  font-size: 1.2rem;
}

.process-grid p,
.current-era-copy p,
.visuals-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.current-era {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  overflow: hidden;
  border-color: rgba(216, 179, 88, 0.28);
  background:
    radial-gradient(circle at 18% 50%, rgba(216, 179, 88, 0.22), transparent 26%),
    radial-gradient(circle at 92% 22%, rgba(84, 184, 174, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(245, 242, 234, 0.075), rgba(245, 242, 234, 0.02) 48%),
    #11141b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.current-era::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), transparent);
}

.current-era > * {
  position: relative;
  z-index: 1;
}

.current-era-art img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 242, 234, 0.22);
  border-radius: 8px;
  object-fit: contain;
  background: #050609;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.visuals-coming h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
}

.current-era-copy h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
}

.visuals-coming {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.36fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  border-color: rgba(84, 184, 174, 0.24);
  background:
    radial-gradient(circle at 86% 18%, rgba(84, 184, 174, 0.18), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(216, 179, 88, 0.12), transparent 28%),
    linear-gradient(135deg, #101a1b 0%, #11141b 52%, #0a0d12 100%);
}

.visuals-copy,
.visuals-video-card {
  position: relative;
  z-index: 1;
}

.visuals-copy p {
  max-width: 34rem;
}

.visuals-credit {
  margin-top: 0.9rem;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(216, 179, 88, 0.55);
  font-size: 0.9rem;
}

.visuals-credit a {
  display: inline-flex;
  margin-left: 0.35rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visuals-listen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.15rem;
}

.visuals-listen a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(216, 179, 88, 0.34);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(216, 179, 88, 0.18), rgba(84, 184, 174, 0.1)),
    rgba(7, 8, 11, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 rgba(216, 179, 88, 0.28);
}

.visuals-listen a:hover {
  border-color: rgba(216, 179, 88, 0.58);
  transform: translateY(-1px);
}

.visuals-video-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 230px);
  justify-self: end;
  aspect-ratio: 9 / 16;
  min-height: 0;
  border: 1px solid rgba(245, 242, 234, 0.16);
  border-radius: 8px;
  background: #050609;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.visuals-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visuals-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(7, 8, 11, 0.72), transparent 44%),
    linear-gradient(90deg, rgba(7, 8, 11, 0.25), transparent 45%);
}

.visuals-video-card div {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.visuals-video-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visuals-video-card strong {
  color: var(--text);
  font-size: 1rem;
  text-transform: uppercase;
}

.producer-note {
  display: grid;
  justify-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 179, 88, 0.14), transparent 28%),
    var(--surface);
}

.producer-note .eyebrow {
  justify-self: start;
}

.producer-note blockquote {
  max-width: 48rem;
  margin-top: 0.75rem;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.16;
  text-align: center;
  color: var(--text);
}

.eventide-labs-panel {
  display: block;
  padding: 0.8rem;
  border-color: rgba(245, 242, 234, 0.1);
  background:
    linear-gradient(90deg, rgba(245, 242, 234, 0.05), transparent 48%),
    rgba(13, 15, 20, 0.72);
}

.eventide-labs-copy {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  max-width: 880px;
}

.eventide-labs-copy img {
  width: 54px;
  height: 54px;
  margin-bottom: 0;
  border-radius: 8px;
  border: 1px solid rgba(245, 242, 234, 0.14);
  background: rgba(245, 242, 234, 0.04);
}

.eventide-labs-copy h2 {
  max-width: none;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
}

.eventide-labs-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.eventide-labs-copy > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  width: fit-content;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(216, 179, 88, 0.26);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(216, 179, 88, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eventide-labs-copy > a:hover {
  border-color: rgba(216, 179, 88, 0.5);
  color: var(--text);
}

.home-platform-band {
  margin-top: 0;
}

.join-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 3rem;
  border-top: 1px solid var(--line);
}

.join-form {
  display: grid;
  grid-template-columns: 1fr 0.55fr auto;
  gap: 0.75rem;
  align-items: end;
}

.join-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.join-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  color: var(--text);
  background: var(--surface);
}

.page-shell {
  min-height: calc(100vh - 64px);
}

.page-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.music-page {
  position: relative;
}

.music-page::before {
  content: "";
  position: absolute;
  inset: 0 -4rem auto;
  height: 360px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 242, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 234, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  opacity: 0.5;
}

.music-profile-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.2), rgba(7, 8, 11, 0.74)),
    radial-gradient(circle at 20% 20%, rgba(216, 179, 88, 0.18), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(217, 77, 68, 0.11), transparent 30%),
    #11141b;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.music-profile-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 179, 88, 0.55), transparent);
}

.artist-profile-image {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 242, 234, 0.2);
  border-radius: 8px;
  object-fit: cover;
  background: #050609;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
}

.music-profile-copy {
  display: grid;
  align-content: center;
}

.music-profile-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.8rem;
  line-height: 0.95;
}

.music-profile-copy p:not(.eyebrow) {
  max-width: 43rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-intro {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-head h1,
.song-head h1 {
  font-size: 4.2rem;
}

.release-grid,
.lyrics-archive,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.release-card-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 1.4rem;
  align-items: center;
  overflow: hidden;
  padding: 1.15rem;
  margin-top: 1.2rem;
  background:
    radial-gradient(circle at 16% 28%, rgba(238, 216, 154, 0.24), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(210, 62, 48, 0.24), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(84, 184, 174, 0.12), transparent 30%),
    linear-gradient(135deg, #1d1720 0%, #11141b 44%, #08090d 100%);
}

.release-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 242, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 234, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
  mask-image: linear-gradient(120deg, transparent 0%, #000 42%, transparent 100%);
}

.release-card-featured > * {
  position: relative;
  z-index: 1;
}

.release-card-featured .cover-art {
  aspect-ratio: 1;
  object-fit: contain;
  background: #050609;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

.release-body {
  display: grid;
  align-content: center;
}

.release-body p {
  max-width: 34rem;
}

.release-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.release-stats span {
  min-height: 34px;
  padding: 0.55rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(245, 242, 234, 0.055);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-section-title {
  margin-top: 2.4rem;
  margin-bottom: 0;
}

.release-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.release-card-list .release-card {
  display: flex;
  flex-direction: column;
  height: auto;
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.045), transparent 42%),
    var(--surface);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.release-card-list .release-card.is-hidden {
  display: none;
}

.release-card-list .release-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 179, 88, 0.36);
  background:
    linear-gradient(180deg, rgba(216, 179, 88, 0.08), transparent 46%),
    var(--surface-2);
}

.release-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  object-fit: contain;
  background: #050609;
}

.release-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(216, 179, 88, 0.5);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.track-list-panel {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(84, 184, 174, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(245, 242, 234, 0.04), transparent),
    var(--surface);
  overflow: hidden;
}

.track-row-card {
  display: grid;
  grid-template-columns: 3.4rem 58px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 82px;
  padding: 0.75rem 0.95rem;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.track-row-card + .track-row-card {
  border-top: 1px solid rgba(245, 242, 234, 0.09);
}

.track-row-card:hover {
  background: rgba(245, 242, 234, 0.055);
}

.track-rank {
  color: rgba(245, 242, 234, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
}

.track-row-card img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #050609;
}

.track-copy {
  display: grid;
  gap: 0.18rem;
}

.track-copy strong {
  font-size: 1rem;
}

.track-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.track-action {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.catalog-filters button {
  min-height: 36px;
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  background: rgba(245, 242, 234, 0.04);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.catalog-filters button:hover {
  color: var(--text);
  border-color: rgba(245, 242, 234, 0.22);
  background: rgba(245, 242, 234, 0.075);
}

.catalog-filters button.is-active {
  color: #101217;
  border-color: transparent;
  background: var(--text);
}

.spotify-follow-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(216, 179, 88, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 179, 88, 0.2), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(84, 184, 174, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(245, 242, 234, 0.06), rgba(245, 242, 234, 0.02)),
    var(--surface);
}

.spotify-follow-band h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.spotify-follow-band p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.spotify-follow-band .company-credit {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spotify-follow-band .company-credit a {
  color: var(--accent);
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.65rem;
}

.release-platform-actions {
  justify-content: flex-start;
  margin-top: 1.2rem;
}

.platform-button {
  position: relative;
  overflow: hidden;
  border-color: rgba(245, 242, 234, 0.16);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.08), rgba(245, 242, 234, 0.02)),
    rgba(7, 8, 11, 0.42);
}

.platform-button::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--platform-accent);
}

.platform-button:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 242, 234, 0.24);
}

.platform-spotify {
  --platform-accent: #1ed760;
}

.platform-apple {
  --platform-accent: linear-gradient(90deg, #f5f2ea, #9aa3ad);
}

.platform-amazon {
  --platform-accent: #54b8ae;
}

.lyrics-release {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
}

.lyrics-release-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.lyrics-release-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.lyrics-release-head a,
.track-list a,
.song-meta a {
  color: var(--text);
}

.track-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.track-list li + li {
  margin-top: 0.75rem;
}

.song-head {
  margin-bottom: 2rem;
}

.song-meta {
  margin-top: 0.9rem;
  color: var(--muted);
}

.lyrics-sheet {
  max-width: 44rem;
  padding: 1rem 0 3rem;
  white-space: pre-line;
}

.lyrics-sheet p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.media-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 280px 220px;
  gap: 0.85rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 11, 0.76), transparent 52%);
}

.media-card span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.media-card-tall {
  grid-row: 1 / span 2;
}

.visuals-page {
  display: grid;
  gap: 1rem;
}

.visuals-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(84, 184, 174, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 16%, rgba(84, 184, 174, 0.2), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(216, 179, 88, 0.12), transparent 30%),
    linear-gradient(135deg, #101a1b 0%, #11141b 54%, #07080b 100%);
}

.visuals-page-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.9;
}

.visuals-page-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.65;
}

.visuals-page-status {
  display: inline-grid;
  gap: 0.2rem;
  margin-top: 1.2rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(216, 179, 88, 0.6);
}

.visuals-page-status span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visuals-page-status strong {
  font-size: 1rem;
}

.visuals-page-video {
  position: relative;
  justify-self: end;
  width: min(100%, 240px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, 0.16);
  border-radius: 8px;
  background: #050609;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.visuals-page-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visuals-page-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 8, 11, 0.7), transparent 45%);
}

.visuals-page-video div {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
}

.visuals-page-video span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visuals-page-video strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.2;
}

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

.visuals-coming-grid article {
  min-height: 190px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.055), transparent),
    var(--surface);
}

.visuals-coming-grid span {
  color: rgba(245, 242, 234, 0.4);
  font-size: 0.76rem;
  font-weight: 800;
}

.visuals-coming-grid h2 {
  margin: 1.3rem 0 0.55rem;
  font-size: 1.15rem;
}

.visuals-coming-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-hero,
.contact-note-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.24fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(245, 242, 234, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 14%, rgba(216, 179, 88, 0.2), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(84, 184, 174, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(245, 242, 234, 0.055), rgba(245, 242, 234, 0.015)),
    rgba(13, 15, 20, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-hero {
  min-height: 0;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.contact-hero-copy {
  display: grid;
  align-content: center;
}

.contact-hero-copy h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 0.92;
}

.contact-hero-copy p:not(.eyebrow),
.contact-note-panel p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-hero-mark {
  display: grid;
  gap: 1.1rem;
  align-content: center;
  justify-items: center;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.075), transparent),
    rgba(7, 8, 11, 0.36);
}

.contact-hero-mark img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  border: 1px solid rgba(245, 242, 234, 0.14);
  background: rgba(245, 242, 234, 0.04);
}

.contact-hero-mark span {
  max-width: 10rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

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

.contact-card {
  position: relative;
  display: grid;
  gap: 1.4rem;
  min-height: 118px;
  overflow: hidden;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.07), transparent 62%),
    rgba(13, 15, 20, 0.86);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.85rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 179, 88, 0.82), transparent);
  opacity: 0.7;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 179, 88, 0.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 179, 88, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(245, 242, 234, 0.08), transparent 62%),
    rgba(13, 15, 20, 0.94);
}

.contact-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: end;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-note-panel {
  align-items: center;
  padding: 1rem 1.1rem;
}

.contact-note-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.legal-panel {
  max-width: 780px;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  border: 1px solid rgba(245, 242, 234, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 179, 88, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(245, 242, 234, 0.055), rgba(245, 242, 234, 0.015)),
    rgba(13, 15, 20, 0.9);
}

.legal-panel h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
}

.legal-panel h2 {
  margin: 1.6rem 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-panel a {
  color: var(--accent);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 1rem 1.5rem;
  align-items: center;
  width: 100%;
  margin: 3rem 0 0;
  padding: 1.35rem max(1rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(245, 242, 234, 0.13);
  border-bottom: 1px solid rgba(245, 242, 234, 0.08);
  background:
    linear-gradient(90deg, rgba(216, 179, 88, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(245, 242, 234, 0.032), rgba(7, 8, 11, 0.96)),
    #07080b;
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 0.28rem;
}

.site-footer strong {
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1rem;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0.18rem;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:hover {
  border-bottom-color: rgba(216, 179, 88, 0.62);
  color: var(--text);
}

.site-footer p {
  margin: 0;
  color: rgba(245, 242, 234, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header,
  .home-section,
  .page-shell,
  .join-band {
    width: min(calc(100% - 1rem), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0.55rem;
    right: 0.55rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.4rem;
    border: 1px solid rgba(245, 242, 234, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(245, 242, 234, 0.055), rgba(245, 242, 234, 0.02)),
      rgba(7, 8, 11, 0.94);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(22px) saturate(125%);
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
  }

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

  .campaign-hero,
  .campaign-hero > img {
    height: 520px;
    min-height: 520px;
  }

  .campaign-overlay {
    left: 1rem;
    top: 42%;
    width: calc(100% - 2rem);
  }

  .campaign-overlay h1 {
    font-size: 3.8rem;
  }

  .update-rail,
  .split-feature,
  .lyrics-preview-grid,
  .media-strip-grid,
  .join-band,
  .join-form,
  .visuals-page-hero,
  .visuals-coming-grid,
  .splash-card,
  .story-hero,
  .process-grid,
  .current-era,
  .visuals-coming,
  .eventide-labs-panel,
  .contact-hero,
  .contact-grid,
  .contact-note-panel,
  .music-profile-hero,
  .release-card-featured,
  .release-card-list,
  .spotify-follow-band,
  .lyrics-release,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .track-row-card {
    grid-template-columns: 2.4rem 52px minmax(0, 1fr);
  }

  .track-row-card img {
    width: 52px;
    height: 52px;
  }

  .track-action {
    display: none;
  }

  .splash-media,
  .story-hero-copy,
  .story-hero-art {
    min-height: 320px;
  }

  .platform-actions {
    justify-content: stretch;
  }

  .platform-actions .button {
    flex: 1 1 180px;
  }

  .contact-hero-mark {
    min-width: 0;
    justify-items: start;
  }

  .contact-hero-mark span {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }

  .eventide-labs-copy {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .eventide-labs-copy > a {
    grid-column: 2;
  }

  .visuals-video-card {
    justify-self: start;
    width: min(100%, 260px);
  }

  .visuals-page-video {
    justify-self: start;
    width: min(100%, 260px);
  }

  .media-grid {
    grid-template-rows: auto;
  }

  .media-card,
  .media-card-tall {
    min-height: 230px;
    grid-row: auto;
  }

  .media-strip-grid img {
    height: 220px;
  }

  .page-head h1,
  .music-profile-copy h1,
  .song-head h1 {
    font-size: 3.2rem;
  }

  .feature-copy h2,
  .release-body h2,
  .section-title h2,
  .join-band h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 460px) {
  .campaign-overlay h1 {
    font-size: 3.1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .lyrics-release-head {
    flex-direction: column;
  }
}
