:root {
  --bg: #bde9ff;
  --bg-soft: #e7f8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #162332;
  --muted: #4c6576;
  --line: rgba(45, 111, 151, 0.2);
  --pink: #ff5cb6;
  --green: #00dd30;
  --green-deep: #008f2d;
  --lime: #72ff49;
  --blue: #5ab6e3;
  --blue-deep: #2f7fa8;
  --ink: #27303d;
  --shadow: 0 22px 55px rgba(47, 127, 168, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(189, 233, 255, 0.86) 38%, #f7fdff 100%),
    var(--bg);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  inset: -45vmax;
  opacity: 1;
  background: repeating-conic-gradient(
    from -8deg at 50% 0,
    rgba(47, 127, 168, 0.12) 0deg 7deg,
    transparent 7deg 14deg
  );
}

.site-shell::after {
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(135deg, rgba(255, 92, 182, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(0, 221, 48, 0.13), transparent 36%);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-badge {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.brand-subtitle {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--blue-deep);
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--pink);
  transform: translateY(-1px);
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease, background 180ms ease;
}

.button {
  color: #05260d;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 14px 26px rgba(0, 221, 48, 0.22);
}

.button-ghost {
  color: var(--ink);
  border: 1px solid rgba(47, 127, 168, 0.28);
  background: rgba(255, 255, 255, 0.76);
}

.button:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-home .container {
  width: min(calc(100% - 2rem), 1280px);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 40rem;
  border-radius: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--blue);
}

.hero-stage-image,
.hero-stage-overlay,
.hero-stage-content {
  position: absolute;
  inset: 0;
}

.hero-stage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-stage-overlay {
  background: linear-gradient(
      90deg,
      rgba(22, 35, 50, 0.78) 0%,
      rgba(22, 35, 50, 0.58) 34%,
      rgba(22, 35, 50, 0.12) 68%,
      rgba(47, 127, 168, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(90, 182, 227, 0.04) 0%,
      rgba(22, 35, 50, 0.1) 60%,
      rgba(22, 35, 50, 0.66) 100%
    );
}

.hero-stage-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
}

.hero-copy-home {
  max-width: 46rem;
  z-index: 1;
}

.hero-copy-home .lead {
  max-width: 56ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.44);
}

.hero-copy-home h1,
.hero-copy-home .eyebrow {
  color: #ffffff;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.62);
}

.hero-metrics-section {
  padding-top: 0;
}

.hero-metrics-standalone {
  margin-top: -0.8rem;
}

.hero-copy,
.hero-card,
.panel,
.show-list li,
.gallery-card,
.video-card,
.contact-card,
.list-card,
.notice-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.panel,
.gallery-card,
.video-card,
.contact-card,
.list-card,
.notice-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 9rem;
  height: 9rem;
  border-radius: 22px;
  opacity: 0.34;
  transform: rotate(8deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(90, 182, 227, 0.16);
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

h1 {
  max-width: min(100%, 15ch);
  font-size: clamp(3.4rem, 10vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.5rem;
}

.pink {
  color: var(--pink);
}

.green {
  color: color(display-p3 0.425 0.917 0.326);
}

.lead {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.metric {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 127, 168, 0.16);
}

.metric strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--green-deep);
  font-size: 1.4rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-card {
  padding: 1rem;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: 22px;
}

.section {
  padding: 1.4rem 0 3.5rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading p {
  max-width: 44rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.panel {
  padding: 1.6rem;
}

.grid-3,
.grid-2,
.media-grid,
.contact-grid,
.gallery-grid,
.video-grid,
.show-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.show-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.show-grid > .contact-card {
  align-self: start;
  height: fit-content;
}

.kicker {
  color: var(--pink);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.panel p,
.list-card p,
.contact-card p,
.notice-card p {
  color: var(--muted);
  line-height: 1.7;
}

.show-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.show-list li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.show-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1rem;
}

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

.show-list a,
.link-inline {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-color: rgba(0, 221, 48, 0.38);
  text-underline-offset: 0.18rem;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

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

.video-card {
  padding: 1rem;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

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

.contact-card,
.list-card,
.notice-card {
  padding: 1.5rem;
}

.contact-lines,
.bullet-list,
.song-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-lines li,
.bullet-list li,
.song-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(47, 127, 168, 0.14);
}

.contact-lines li:last-child,
.bullet-list li:last-child,
.song-list li:last-child {
  border-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 127, 168, 0.16);
}

.social-pill img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.playlist-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.playlist-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(
      135deg,
      rgba(255, 92, 182, 0.2),
      rgba(0, 221, 48, 0.17)
    ),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(47, 127, 168, 0.16);
  box-shadow: var(--shadow);
}

.notice-card {
  text-align: center;
}

.site-footer {
  padding: 1rem 0 3rem;
  color: var(--muted);
}

.site-footer .container {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(47, 127, 168, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.song-list {
  columns: 2;
  column-gap: 1.5rem;
}

.song-list li {
  break-inside: avoid;
}

.song-list strong {
  display: block;
  color: var(--text);
}

.song-list span {
  display: block;
  margin-top: 0.16rem;
  color: var(--muted);
}

.epk-hero {
  padding-bottom: 0.8rem;
}

.epk-header h1 {
  max-width: 150ch;
}

.epk-cover,
.epk-bio,
.epk-stage-plot,
.logo-card,
.epk-video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.epk-cover {
  overflow: hidden;
}

.epk-cover img {
  width: 100%;
  height: 45rem;
  object-fit: cover;
  object-position: center center;
}

.epk-bio {
  padding: 1.7rem;
}

.epk-bio p + p {
  margin-top: 1rem;
}

.epk-video-card {
  padding: 1rem;
}

.epk-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.epk-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.epk-stage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.epk-stage-plot {
  overflow: hidden;
  margin-top: 1rem;
}

.epk-stage-plot img {
  width: 100%;
  height: auto;
  display: block;
}

.setlist-scroll {
  margin-top: 1rem;
  max-height: 34rem;
  overflow: auto;
  padding-right: 0.4rem;
}

.song-list-scroll {
  columns: 1;
}

.logo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.2rem;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  min-height: 16rem;
}

.logo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.small-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.louder-now-page {
  --louder-bg: #160604;
  --louder-black: #070302;
  --louder-red: #5d120b;
  --louder-red-bright: #9f2617;
  --louder-copper: #c88a54;
  --louder-gold: #e1b878;
  --louder-cream: #f2ddbd;
  --louder-muted: #c5a286;
  --louder-line: rgba(225, 184, 120, 0.27);
  color: var(--louder-cream);
  background: linear-gradient(180deg, #220904 0%, #070302 48%, #160604 100%);
}

.louder-now-page .site-shell::before,
.louder-now-page .site-shell::after {
  display: none;
}

.louder-shell {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.louder-header {
  background: rgba(7, 3, 2, 0.86);
  border-bottom-color: var(--louder-line);
}

.louder-brand img {
  width: 7.5rem;
  height: 4.2rem;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(225, 184, 120, 0.36);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.louder-nav a,
.louder-now-page .link-inline {
  color: var(--louder-gold);
}

.louder-nav a:hover,
.louder-now-page .link-inline:hover {
  color: var(--louder-cream);
}

.louder-hero {
  position: relative;
  min-height: calc(100vh - 5.9rem);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 6rem 0 4rem;
}

.louder-hero-image,
.louder-hero-overlay {
  position: absolute;
  inset: 0;
}

.louder-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(1.18) contrast(1.04);
}

.louder-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 3, 2, 0.92) 0%, rgba(7, 3, 2, 0.58) 42%, rgba(93, 18, 11, 0.32) 100%),
    linear-gradient(180deg, rgba(7, 3, 2, 0.08) 0%, rgba(7, 3, 2, 0.42) 54%, #070302 100%);
}

.louder-hero-content {
  display: grid;
  grid-template-columns: minmax(16rem, 27rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.louder-logo {
  width: 100%;
  border: 1px solid rgba(225, 184, 120, 0.4);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.louder-hero-copy {
  max-width: 45rem;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.72);
}

.louder-kicker {
  margin: 0 0 0.7rem;
  color: var(--louder-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.louder-hero-copy h1,
.louder-section h2,
.louder-feature h3 {
  color: var(--louder-cream);
  letter-spacing: 0.04em;
}

.louder-hero-copy h1 {
  max-width: none;
  font-size: clamp(5rem, 14vw, 10.5rem);
}

.louder-hero-copy p:not(.louder-kicker),
.louder-copy p,
.louder-feature p {
  color: var(--louder-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.louder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.7rem;
  padding: 0.95rem 1.35rem;
  color: #130603;
  font-weight: 800;
  background: linear-gradient(135deg, var(--louder-gold), var(--louder-copper));
  border: 1px solid rgba(255, 235, 191, 0.35);
  border-radius: 4px;
  box-shadow: 0 16px 38px rgba(159, 38, 23, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.louder-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(159, 38, 23, 0.42);
}

.louder-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(225, 184, 120, 0.12);
}

.louder-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.louder-copy p {
  margin: 0;
}

.louder-copy p + p {
  margin-top: 1rem;
}

.louder-video-section {
  background: linear-gradient(180deg, rgba(93, 18, 11, 0.36), rgba(7, 3, 2, 0.1));
}

.louder-section-heading {
  margin-bottom: 1.4rem;
}

.louder-video-card,
.louder-feature,
.louder-cta {
  border: 1px solid var(--louder-line);
  background: linear-gradient(180deg, rgba(58, 14, 9, 0.76), rgba(13, 5, 3, 0.9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.louder-video-card {
  padding: 0.75rem;
}

.louder-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

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

.louder-feature {
  padding: 1.45rem;
}

.louder-feature h3 {
  font-size: 2rem;
}

.louder-cta-section {
  padding-bottom: 5rem;
}

.louder-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.louder-cta h2 {
  max-width: 16ch;
}

.louder-footer {
  color: var(--louder-muted);
}

.louder-footer .container {
  border-top-color: var(--louder-line);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero-copy,
.hero-card,
.panel,
.gallery-card,
.video-card,
.contact-card,
.list-card,
.notice-card,
.cta-band {
  animation: fadeUp 700ms ease both;
}

@media (max-width: 960px) {
  .hero-grid,
  .show-grid,
  .grid-3,
  .grid-2,
  .contact-grid,
  .video-grid,
  .epk-stage-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    min-height: 18rem;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .hero-stage-overlay {
    background: linear-gradient(
      180deg,
      rgba(22, 35, 50, 0.1) 0%,
      rgba(22, 35, 50, 0.38) 42%,
      rgba(22, 35, 50, 0.86) 100%
    );
  }

  .hero-stage-content {
    align-items: flex-start;
    padding: 1.25rem;
  }

  .hero-copy-home {
    max-width: 100%;
  }

  .song-list {
    columns: 1;
  }

  .epk-cover img {
    min-height: 20rem;
  }

  .louder-hero-content,
  .louder-split,
  .louder-feature-grid {
    grid-template-columns: 1fr;
  }

  .louder-logo {
    max-width: 22rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-row {
    align-items: center;
    flex-direction: row;
  }
  
  .hide-on-mobile {
    display: none;
  }

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

  .hero {
    padding-top: 2.7rem;
  }

  .hero-stage {
    min-height: 31rem;
    border-radius: 28px;
  }

  .hero-copy,
  .panel,
  .contact-card,
  .list-card,
  .notice-card,
  .cta-band {
    padding: 1.3rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .hero-copy-home .lead {
    max-width: 100%;
  }

  .hero-stage .hero-actions {
    width: 100%;
  }

  .logo-card {
    min-height: 12rem;
  }

  .louder-brand img {
    width: 5.8rem;
    height: 3.25rem;
  }

  .louder-nav {
    justify-content: flex-end;
  }

  .louder-nav a {
    font-size: 0.82rem;
  }

  .louder-hero {
    min-height: 44rem;
    padding: 4rem 0 2.5rem;
  }

  .louder-hero-copy h1 {
    font-size: clamp(4.3rem, 22vw, 6.8rem);
  }

  .louder-section {
    padding: 3rem 0;
  }

  .louder-cta {
    align-items: start;
    flex-direction: column;
    padding: 1.3rem;
  }
}

/* Mobile stage / QR landing page */
.stage-page {
  --stage-bg: #bde9ff;
  --stage-card: rgba(255, 255, 255, 0.9);
  --stage-line: rgba(45, 111, 151, 0.2);
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(189, 233, 255, 0.92) 44%, #f7fdff),
    var(--stage-bg);
}

.stage-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  inset: -45vmax;
  opacity: 1;
  background: repeating-conic-gradient(
    from -8deg at 50% 0,
    rgba(47, 127, 168, 0.12) 0deg 7deg,
    transparent 7deg 14deg
  );
}

.stage-main {
  position: relative;
  width: min(calc(100% - 1.5rem), 42rem);
  margin: 0 auto;
  padding: max(1.5rem, env(safe-area-inset-top)) 0 max(2rem, env(safe-area-inset-bottom));
}

.stage-brand {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0 1.25rem;
}

.stage-intro {
  position: relative;
  overflow: hidden;
  min-height: min(37rem, 78svh);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--stage-line);
  border-radius: 2rem;
  background: #172330;
  box-shadow: var(--shadow);
}

.stage-intro::before,
.stage-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage-intro::before {
  top: 0;
  background: url("images/sept5.png") center / cover no-repeat;
}

.stage-intro::after {
  background:
    linear-gradient(180deg, rgba(23, 35, 48, 0) 0 16%, rgba(23, 35, 48, 0.14) 42%, rgba(22, 35, 50, 0.88) 100%),
    linear-gradient(90deg, rgba(22, 35, 50, 0.24), transparent 70%);
}

.stage-intro > * {
  position: relative;
  z-index: 1;
}

.stage-logo {
  width: min(16rem, 66vw);
}

.stage-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(47, 127, 168, 0.2));
}

.stage-live,
.stage-kicker {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-live {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #fff;
}

.stage-live span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0.35rem rgba(255, 92, 182, 0.16);
}

.stage-intro h1 {
  max-width: 9ch;
  color: #fff;
  font-size: clamp(4.2rem, 19vw, 7rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.stage-intro h1 em {
  color: var(--pink);
  font-style: normal;
}

.stage-lead {
  max-width: 31rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.55;
}

.stage-panel,
.stage-tip {
  margin-bottom: 1rem;
  border: 1px solid var(--stage-line);
  border-radius: 1.5rem;
  background: var(--stage-card);
  box-shadow: var(--shadow);
}

.stage-panel {
  padding: 1.2rem;
}

.stage-panel-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.stage-number {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 92, 182, 0.38);
  border-radius: 50%;
  color: var(--pink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.2rem;
}

.stage-panel h2,
.stage-tip h2 {
  color: var(--text);
  font-size: clamp(2rem, 9vw, 3rem);
}

.stage-socials {
  display: grid;
  gap: 0.6rem;
}

.stage-socials a {
  display: grid;
  grid-template-columns: 2.65rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.6rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--stage-line);
  border-radius: 1rem;
  background: rgba(231, 248, 255, 0.72);
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.stage-socials a:hover,
.stage-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 92, 182, 0.55);
  background: rgba(255, 92, 182, 0.08);
}

.stage-socials img {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.stage-socials small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.stage-arrow {
  color: var(--pink);
  font-size: 1.35rem;
}

.stage-tip {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  background: linear-gradient(135deg, #ff5cb6, #eb348c);
}

.stage-tip::after {
  content: "$";
  position: absolute;
  top: -2.2rem;
  right: -0.2rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 12rem;
  line-height: 1;
  transform: rotate(8deg);
}

.stage-tip > * {
  position: relative;
  z-index: 1;
}

.stage-tip .stage-kicker {
  color: #311121;
}

.stage-tip p:not(.stage-kicker) {
  max-width: 28rem;
  margin: 0.55rem 0 1.15rem;
  color: rgba(23, 10, 17, 0.74);
  font-size: 0.9rem;
}

.stage-tip-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: #171018;
  font-weight: 700;
}

.stage-tip-button span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #171018;
  background: var(--green);
  font-size: 1.15rem;
}

.stage-request-copy {
  margin: -0.15rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stage-form label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.stage-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.stage-form textarea {
  display: block;
  width: 100%;
  resize: vertical;
  min-height: 8.5rem;
  padding: 1rem;
  border: 1px solid var(--stage-line);
  border-radius: 1rem;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  line-height: 1.5;
}

.stage-form textarea::placeholder {
  color: rgba(76, 101, 118, 0.65);
}

.stage-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 92, 182, 0.12);
}

.stage-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.stage-form-footer > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.stage-form button {
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #06230d;
  background: linear-gradient(135deg, var(--lime), var(--green));
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.stage-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.stage-form button span {
  margin-left: 0.35rem;
}

.stage-form-status {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  color: #a51f69;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
}

.stage-request-success {
  padding: 1.2rem 0 0.35rem;
  text-align: center;
}

.stage-request-success > span {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  color: #05260d;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 12px 28px rgba(0, 221, 48, 0.22);
  font-size: 1.8rem;
  font-weight: 700;
}

.stage-request-success h3 {
  color: var(--text);
  font-size: 2.2rem;
}

.stage-request-success p {
  margin: 0.55rem auto 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.stage-request-success button {
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--stage-line);
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--bg-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.stage-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.2rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.stage-footer a {
  color: var(--blue-deep);
}

@media (min-width: 600px) {
  .stage-panel,
  .stage-tip {
    padding: 1.65rem;
  }

  .stage-tip {
    display: grid;
    grid-template-columns: 1fr 12rem;
    align-items: end;
    gap: 1.5rem;
  }

  .stage-tip p:not(.stage-kicker) {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-socials a {
    transition: none;
  }
}

@media print {
  @page {
    margin: 0.45in;
  }

  .setlist-page {
    color: #000;
    background: #fff;
    font-family: Arial, sans-serif;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .setlist-page *,
  .setlist-page *::before,
  .setlist-page *::after {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .setlist-page .hero,
  .setlist-page .site-footer,
  .setlist-page .site-shell::before,
  .setlist-page .site-shell::after {
    display: none;
  }

  .setlist-page .site-shell {
    overflow: visible;
  }

  .setlist-page main,
  .setlist-page .section,
  .setlist-page .container,
  .setlist-page .list-card {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .setlist-page .site-header {
    position: static;
    display: block;
    margin: 0 0 0.16in;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .setlist-page .nav-row {
    display: block;
    padding: 0;
    text-align: center;
  }

  .setlist-page .brand-lockup {
    display: inline-block;
  }

  .setlist-page .brand-title img {
    width: 2.9in;
    height: auto;
    margin: 0 auto;
  }

  .setlist-page .site-nav {
    display: none;
  }

  .setlist-page .section-heading {
    display: block;
    margin: 0 0 0.16in;
    text-align: center;
  }

  .setlist-page .section-heading .kicker {
    display: none;
  }

  .setlist-page .section-heading h2 {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 16pt;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .setlist-page .song-list {
    columns: 2;
    column-gap: 0.35in;
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 9pt;
    line-height: 1.15;
  }

  .setlist-page .song-list li {
    break-inside: avoid;
    page-break-inside: avoid;
    padding: 0.055in 0;
    border-bottom: 1px solid #bbb;
  }

  .setlist-page .song-list strong,
  .setlist-page .song-list span {
    color: #000;
  }

  .setlist-page .song-list span {
    margin-top: 0.01in;
  }
}
