:root {
  --bg: #fff3df;
  --bg-soft: #fff9f1;
  --panel: rgba(255, 249, 241, 0.92);
  --panel-strong: rgba(255, 246, 236, 0.97);
  --text: #3b2130;
  --muted: #86646a;
  --line: rgba(115, 60, 79, 0.14);
  --gold: #f7b347;
  --gold-deep: #ef7a3a;
  --seafoam: #ea5d8d;
  --seafoam-deep: #b43b67;
  --shadow: 0 26px 60px rgba(120, 62, 73, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1180px, calc(100% - 32px));
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-soft);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg-soft);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(126, 72, 90, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 72, 90, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 84%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 93, 141, 0.18), transparent 25%),
    radial-gradient(circle at 84% 9%, rgba(247, 179, 71, 0.18), transparent 22%),
    radial-gradient(circle at 72% 62%, rgba(239, 122, 58, 0.11), transparent 24%),
    linear-gradient(180deg, #fff8ef 0%, #fff1df 46%, #ffe7d2 100%);
}

.site-header {
  width: min(var(--content-width), calc(100% - var(--safe-left) - var(--safe-right)));
}

main {
  width: 100%;
  margin: 0;
  padding-bottom: 72px;
}

.site-footer {
  width: min(var(--content-width), calc(100% - var(--safe-left) - var(--safe-right)));
  margin: 0 auto;
  padding: 0 0 calc(28px + var(--safe-bottom));
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(115, 60, 79, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 246, 236, 0.88)),
    var(--panel);
  box-shadow: 0 18px 42px rgba(120, 62, 73, 0.08);
}

.site-footer-brand {
  display: grid;
  gap: 6px;
}

.site-footer-brand strong,
.site-footer-nav a,
.site-footer-meta {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-brand strong {
  font-size: 0.82rem;
}

.site-footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-footer-nav a {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer-nav a.is-active {
  color: var(--seafoam-deep);
}

.site-footer-meta-wrap {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180, 59, 103, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--seafoam-deep);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(180, 59, 103, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 20px rgba(120, 62, 73, 0.1);
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-social .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.site-footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: right;
}

main > section:not(.hero) {
  width: min(var(--content-width), calc(100% - var(--safe-left) - var(--safe-right)));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: fixed;
  top: calc(var(--safe-top) + 18px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 1px solid transparent;
  border-radius: 24px;
  background: transparent;
  backdrop-filter: blur(0);
  box-shadow: none;
  transition:
    padding 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    top 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-compact {
  top: calc(var(--safe-top) + 12px);
  padding: 12px 16px;
  border-color: rgba(255, 240, 231, 0.3);
  background: linear-gradient(180deg, rgba(110, 31, 63, 0.82), rgba(166, 70, 56, 0.56));
  box-shadow: 0 16px 36px rgba(109, 45, 59, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand img {
  width: 350px;
  max-width: 42vw;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
  opacity: 1;
  transition: width 220ms ease, max-width 220ms ease;
}

.site-header.is-compact .brand img {
  width: 104px;
  max-width: 22vw;
}

.brand span,
.site-nav a,
.eyebrow,
.button,
.text-link,
.form-label,
.hero-points,
.show-date,
.show-venue span,
.history-entry span,
.video-card span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand span {
  max-width: 24ch;
  color: rgba(255, 241, 223, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition:
    opacity 220ms ease,
    max-width 220ms ease;
}

.site-header.is-compact .brand span {
  opacity: 1;
  max-width: 24ch;
}

.interior-page .site-header {
  top: calc(var(--safe-top) + 12px);
  padding: 12px 16px;
  border-color: rgba(255, 240, 231, 0.3);
  background: linear-gradient(180deg, rgba(110, 31, 63, 0.82), rgba(166, 70, 56, 0.56));
  box-shadow: 0 16px 36px rgba(109, 45, 59, 0.24);
  backdrop-filter: blur(14px);
}

.interior-page .brand img {
  width: 104px;
  max-width: 22vw;
}

.interior-page .brand span {
  opacity: 1;
  max-width: 24ch;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  color: #fff8f0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 248, 240, 0.18);
  border-radius: 999px;
  background: rgba(13, 28, 37, 0.32);
  color: #fff8f0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.section-grid,
.songs,
.media {
  padding-top: 52px;
}

.interior-page-section {
  padding-top: 52px;
}

#about,
#songs {
  scroll-margin-top: 80px;
}

.upcoming-preview {
  padding-top: 34px;
}

.upcoming-preview .section-heading {
  margin-bottom: 10px;
}

.hero,
.story,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: center;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  padding: calc(188px + var(--safe-top)) var(--safe-right) calc(44px + var(--safe-bottom)) var(--safe-left);
  grid-template-columns: 1fr;
  overflow: hidden;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.page-hero {
  display: grid;
  place-items: center;
  min-height: 320px;
  margin-top: 82px;
  padding: 32px var(--safe-right) calc(44px + var(--safe-bottom)) var(--safe-left);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-hero-image) center center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(29, 51, 64, 0.08);
  z-index: 1;
}

.page-hero-copy {
  display: grid;
  gap: 0;
  width: min(calc(100% - 32px - var(--safe-left) - var(--safe-right)), 720px);
  justify-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0;
}

.page-hero-note {
  max-width: 42rem;
  margin-top: 16px;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 0.98;
  color: #fff8f0;
  text-shadow: 0 12px 30px rgba(7, 18, 25, 0.28);
}

.shows-page-body h2 {
  max-width: none;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 0.98;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--seafoam);
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 0.92;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4.2vw, 4.3rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.68;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(var(--content-width), calc(100% - var(--safe-left) - var(--safe-right)));
  margin: 0 auto;
  min-height: min(620px, calc(100vh - 240px));
  min-height: min(620px, calc(100svh - 240px));
}

.hero h1 {
  max-width: 17ch;
}

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

.hero-backdrop {
  margin: 0;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 20, 28, 0.12) 0%, rgba(8, 20, 28, 0.2) 100%),
    url("assets/hero-night-crowd.jpg") center center / cover no-repeat;
}

.hero-video-shell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  width: 177.78svh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 320ms ease;
}

.hero-video-shell.is-video-active iframe {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 20, 28, 0.42) 0%, rgba(8, 20, 28, 0.2) 30%, rgba(8, 20, 28, 0.06) 52%, rgba(8, 20, 28, 0) 68%),
    linear-gradient(180deg, rgba(8, 20, 28, 0.02) 0%, rgba(8, 20, 28, 0.18) 100%);
}

.hero .eyebrow,
.hero h1,
.hero-text,
.hero-points,
.hero .stat-label {
  color: #fff8f0;
}

.hero .eyebrow {
  color: #b9efff;
}

.hero-text,
.section-note,
.page-hero-note,
.section-intro p,
.contact-copy p,
.quote-card p,
.proof-card p,
.history-entry p,
.show-entry p,
.video-card p,
.song-card p,
.form-feedback {
  color: var(--muted);
}

.section-intro p,
.contact-copy p,
.history-entry p,
.show-entry p,
.video-card p,
.song-card p,
.page-hero-note,
.form-feedback,
.section-note,
.hero-text {
  font-size: 1rem;
}

.hero-text {
  max-width: 28rem;
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255, 248, 240, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 248, 240, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: hero-scroll-float 2.2s ease-in-out infinite;
}

.hero-scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.button-primary {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--seafoam-deep), var(--seafoam));
  box-shadow: 0 18px 34px rgba(180, 59, 103, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.16);
  color: #fff8f0;
}

.story-visuals {
  display: grid;
  gap: 18px;
}

.hero-card,
.panel-photo,
.gallery-item,
.show-entry,
.history-panel,
.song-card,
.video-card,
.form-panel,
.proof-card,
.quote-card,
.cta-band,
.hero-stat {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card,
.panel-photo,
.gallery-item {
  overflow: hidden;
}

.hero-card img,
.panel-photo img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  min-height: 560px;
  border-radius: var(--radius-lg);
}

.hero-card-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.marquee {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  gap: 18px;
  overflow: auto;
  margin-top: 28px;
  padding: 18px 0 4px;
  color: rgba(29, 51, 64, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee::-webkit-scrollbar {
  display: none;
}

.section-intro,
.contact-copy {
  display: grid;
  gap: 18px;
}

.about-header {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
}

.section-label-strong,
.about-header .eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-title {
  max-width: none;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 0.98;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-points div {
  padding-top: 14px;
  border-top: 1px solid rgba(29, 51, 64, 0.12);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-card {
  width: min(28rem, 100%);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(120deg, rgba(200, 150, 74, 0.14), rgba(94, 142, 161, 0.08)),
    var(--panel);
}

.quote-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-visuals {
  grid-template-columns: 1fr;
  align-items: start;
}

.panel-photo {
  min-height: 320px;
  border-radius: var(--radius-lg);
}

.panel-photo-tall {
  min-height: 560px;
}

.story-hero-photo {
  min-height: 0;
  align-self: start;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.story-hero-photo img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 8px);
}

.band-roster {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: 6px;
}

.band-roster-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(115, 60, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.44);
}

.band-roster-item strong {
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band-roster-item span {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 30px;
}

.proof-card {
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-md);
}

.proof-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial {
  padding-top: 28px;
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 20px;
  border-top: 1px solid rgba(115, 60, 79, 0.14);
  border-bottom: 1px solid rgba(115, 60, 79, 0.14);
}

.testimonial-card .eyebrow {
  margin-bottom: 14px;
  color: var(--gold-deep);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  color: var(--text);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.72;
}

.testimonial-attribution {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading-panel {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(29, 51, 64, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-note {
  max-width: 26rem;
}

.section-stat {
  margin: 12px 0 0;
  color: var(--gold-deep);
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-link {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.shows-layout,
.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.media-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.upcoming-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.upcoming-preview-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.upcoming-preview-grid .upcoming-preview-card {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 10px;
  padding: 18px 18px 16px;
  height: 100%;
}

.upcoming-preview-grid .upcoming-preview-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.06;
}

.upcoming-preview-grid .upcoming-preview-card .show-venue {
  display: grid;
  gap: 4px;
  align-items: start;
}

.upcoming-preview-grid .upcoming-preview-card .show-venue-subtitle {
  display: block;
  line-height: 1.35;
}

.upcoming-preview-grid .upcoming-preview-card .show-time {
  white-space: normal;
}

.upcoming-preview-grid .upcoming-preview-card .show-link-side {
  display: inline-flex;
  align-items: center;
  width: auto;
  justify-self: start;
  text-align: left;
  padding-top: 0;
}

.shows-stack {
  display: grid;
  gap: 12px;
}

.shows-panel,
.history-panel {
  border-radius: var(--radius-lg);
}

.shows-panel {
  display: grid;
  gap: 14px;
}

.show-entry,
.history-panel {
  padding: 22px;
}

.show-entry {
  display: grid;
  grid-template-columns: 128px minmax(0, 1.45fr) minmax(160px, 0.72fr) minmax(120px, 0.56fr) 112px;
  gap: 16px;
  align-items: center;
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.show-entry-upcoming {
  padding: 16px 18px;
  border-color: rgba(29, 51, 64, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.show-entry-upcoming:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 142, 161, 0.2);
  box-shadow: 0 16px 30px rgba(21, 37, 46, 0.08);
}

.show-entry-past {
  padding: 13px 16px;
  border-color: rgba(29, 51, 64, 0.06);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
}

.show-date {
  color: var(--seafoam);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.show-venue {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  min-width: 0;
}

.show-venue h3 {
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  line-height: 1.06;
}

.show-venue-subtitle {
  color: #6f6250;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.show-meta-wrap {
  min-width: 0;
}

.show-time {
  color: #60737d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  justify-content: flex-start;
}

.show-meta-chip,
.show-meta-text {
  color: #60737d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.show-meta-chip {
  padding: 5px 9px;
  border: 1px solid rgba(94, 142, 161, 0.18);
  border-radius: 999px;
  background: rgba(94, 142, 161, 0.08);
  color: #2b5668;
}

.show-link-side {
  width: 100%;
  white-space: nowrap;
  font-size: 0.68rem;
  text-align: right;
  justify-self: end;
}

.show-year-group {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.show-year-heading {
  position: sticky;
  top: 108px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(29, 51, 64, 0.07);
  border-radius: 999px;
  background: rgba(250, 246, 237, 0.96);
  box-shadow: 0 8px 18px rgba(21, 37, 46, 0.06);
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.show-year-list {
  display: grid;
  gap: 10px;
}

.history-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(94, 142, 161, 0.1), rgba(255, 255, 255, 0.45)),
    var(--panel-strong);
}

.history-list {
  display: grid;
  gap: 14px;
}

.history-entry {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(228, 214, 188, 0.1);
}

.history-entry:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.history-entry span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.song-list-page {
  max-width: 1040px;
  padding-bottom: 72px;
}

.song-list-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.song-list-sort-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-list-sort-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--seafoam);
  color: #fffaf2;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(180, 59, 103, 0.22);
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.song-list-sort-link:hover,
.song-list-sort-link:focus-visible {
  background: var(--seafoam-deep);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(180, 59, 103, 0.28);
}

.song-list-sort-link.is-active {
  box-shadow: 0 18px 34px rgba(180, 59, 103, 0.28);
}

.song-list-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(115, 60, 79, 0.14);
}

.song-list-entry {
  display: grid;
  gap: 0;
}

.song-list-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  min-height: 58px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(115, 60, 79, 0.14);
}

.song-list-artist-cell,
.song-list-song-cell {
  font-size: 0.98rem;
  line-height: 1.35;
}

.song-list-artist-cell {
  text-align: right;
  font-weight: 800;
  color: var(--text);
}

.song-list-song-cell {
  color: var(--muted);
  font-weight: 500;
}

.media-page {
  display: grid;
  gap: 24px;
}

.media-playlist-layout {
  display: grid;
  gap: 22px;
}

.media-feature-player {
  display: grid;
}

.media-feature-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 249, 241, 0.8)),
    var(--panel);
  box-shadow: var(--shadow);
}

.media-feature-frame > div,
.media-feature-frame iframe {
  width: 100%;
  height: 100%;
}

.media-playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-playlist-item {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(115, 60, 79, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 249, 241, 0.84)),
    var(--panel);
  box-shadow: 0 14px 28px rgba(120, 62, 73, 0.08);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.media-playlist-item:hover,
.media-playlist-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(180, 59, 103, 0.28);
  box-shadow: 0 18px 34px rgba(120, 62, 73, 0.12);
}

.media-playlist-item.is-active {
  border-color: rgba(180, 59, 103, 0.36);
  box-shadow: 0 20px 38px rgba(180, 59, 103, 0.14);
}

.media-playlist-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

.media-playlist-thumb img {
  height: 100%;
  object-fit: cover;
}

.media-playlist-copy {
  display: grid;
  gap: 6px;
}

.media-playlist-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.media-playlist-artist {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.booking-page {
  display: grid;
  gap: 52px;
  padding-top: 24px;
}

.booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  column-gap: 28px;
  align-items: start;
}

.booking-intro-copy {
  grid-column: 1;
  display: grid;
  gap: 12px;
}

.booking-intro .about-title {
  max-width: none;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.04;
}

.booking-intro .section-intro {
  max-width: 38rem;
}

.booking-intro .story-visuals {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.booking-intro .panel-photo-tall {
  min-height: 0;
}

.booking-intro .story-hero-photo {
  display: block;
  padding: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 249, 241, 0.82)),
    var(--panel);
}

.booking-intro .story-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 6px);
}

.booking-fit,
.booking-points {
  display: grid;
  gap: 22px;
}

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

.booking-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.booking-fit-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 249, 241, 0.86)),
    var(--panel);
  box-shadow: var(--shadow);
}

.booking-fit-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.08;
}

.booking-fit-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-cta {
  margin-top: 0;
  display: grid;
  justify-items: start;
  gap: 20px;
}

.booking-cta h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.98;
}

.booking-contact-note {
  margin-top: 12px;
}

.booking-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.booking-cta-links .button-secondary {
  border-color: rgba(115, 60, 79, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(120, 62, 73, 0.08);
}

.booking-cta-links .button-secondary:hover,
.booking-cta-links .button-secondary:focus-visible {
  border-color: rgba(115, 60, 79, 0.28);
  background: rgba(255, 255, 255, 0.86);
  color: var(--gold-deep);
}

.updates-page {
  display: grid;
  gap: 22px;
}

.updates-intro {
  display: grid;
  gap: 8px;
  max-width: 46rem;
  padding-top: 10px;
}

.updates-intro .about-title {
  max-width: 20ch;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.02;
}

.updates-intro .section-intro {
  max-width: 42rem;
  gap: 10px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.updates-grid .form-panel,
.updates-grid .proof-card {
  height: 100%;
  padding: 24px;
}

.updates-email-panel,
.updates-social-panel {
  display: grid;
  align-content: start;
  gap: 8px;
}

.updates-email-panel h2,
.updates-social-panel h2 {
  max-width: none;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  line-height: 1.04;
}

.updates-form-wrap {
  margin-top: 12px;
}

.updates-form {
  display: grid;
  gap: 12px;
}

.updates-form input {
  background: rgba(255, 255, 255, 0.78);
}

.updates-form .button {
  width: 100%;
  max-width: none;
}

.updates-privacy-note {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.updates-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback-inline {
  min-height: 0;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.form-feedback-success {
  color: var(--seafoam);
}

.form-feedback-error {
  color: #b14e5e;
}

.updates-social-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.updates-social-card {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
  color: var(--text);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.updates-social-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #b44d78;
}

.updates-social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.updates-social-icon .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.updates-social-icon .social-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.updates-social-copy {
  display: grid;
  gap: 2px;
}

.updates-social-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.updates-social-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.updates-social-card:hover,
.updates-social-card:focus-visible {
  transform: translateY(-2px);
  color: #934766;
}

.video-card,
.form-panel {
  padding: 22px;
  border-radius: var(--radius-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  min-height: 260px;
  border-radius: var(--radius-lg);
}

.gallery-item-large {
  grid-column: span 2;
  min-height: 460px;
}

.gallery-item-tall {
  min-height: 560px;
  grid-row: span 2;
}

.video-list {
  display: grid;
  gap: 16px;
}

.video-card {
  display: grid;
  gap: 12px;
}

.video-card span {
  color: var(--seafoam);
  font-size: 0.7rem;
  font-weight: 700;
}

.video-card a {
  width: fit-content;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 52px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(200, 150, 74, 0.16), rgba(94, 142, 161, 0.12)),
    var(--panel-strong);
}

.cta-band h2 {
  max-width: 14ch;
}

.contact {
  padding-top: 52px;
}

.contact-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.contact-rail a {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.forms {
  display: grid;
  gap: 18px;
}

.form-panel {
  display: grid;
  gap: 14px;
}

.form-panel-accent {
  background:
    linear-gradient(160deg, rgba(94, 142, 161, 0.12), rgba(255, 255, 255, 0.36)),
    var(--panel);
}

.form-label {
  color: var(--seafoam);
  font-size: 0.66rem;
  font-weight: 700;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 49, 55, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

input::placeholder,
textarea::placeholder {
  color: rgba(185, 197, 196, 0.72);
}

textarea {
  resize: vertical;
  min-height: 144px;
}

.form-feedback {
  min-height: 24px;
  font-size: 0.92rem;
}

.form-feedback.is-success {
  color: var(--seafoam);
}

.form-feedback.is-warning {
  color: #ffd1a0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-scroll-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .story,
  .contact,
  .page-hero,
  .shows-layout,
  .media-layout {
    grid-template-columns: 1fr;
  }

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

  .history-panel {
    position: static;
  }

  .upcoming-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .booking-intro {
    grid-template-columns: 1fr;
  }

  .booking-intro-copy,
  .booking-intro .story-visuals {
    grid-column: auto;
    grid-row: auto;
  }

  .booking-intro .panel-photo-tall {
    min-height: 0;
  }

  .booking-intro .story-hero-photo img {
    max-height: 320px;
  }

  .upcoming-preview-footer {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 260px;
    margin-top: 96px;
    padding-top: 26px;
    padding-bottom: 32px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer-brand {
    justify-items: center;
  }

  .site-footer-meta-wrap {
    justify-items: center;
  }

  .site-footer-social {
    justify-content: center;
  }

  .site-footer-meta {
    text-align: center;
  }

  .page-hero::before {
    background: var(--page-hero-image) center center / cover no-repeat;
  }

  .show-year-heading {
    top: 100px;
  }

  .song-list-row {
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
    gap: 22px;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100% - 20px, 1180px);
    --mobile-hero-media-height: min(60vw, 360px);
  }

  .site-header {
    position: sticky;
    left: auto;
    transform: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    top: 0;
    gap: 12px;
    padding: calc(10px + var(--safe-top)) 16px 12px;
    border-radius: 0 0 20px 20px;
    border-color: rgba(255, 240, 231, 0.3);
    background: linear-gradient(180deg, rgba(110, 31, 63, 0.82), rgba(166, 70, 56, 0.56));
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 36px rgba(109, 45, 59, 0.24);
    margin-bottom: -18px;
  }

  .media-playlist-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-links {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-fit-grid {
    grid-template-columns: 1fr;
  }

  .booking-points-grid {
    grid-template-columns: 1fr;
  }

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

  .updates-intro {
    padding-top: 12px;
  }

  .updates-intro .about-title {
    max-width: none;
  }

  .updates-grid .form-panel,
  .updates-grid .proof-card {
    padding: 22px;
  }

  .site-header.is-compact,
  .site-header.nav-open {
    top: 0;
  }

  .home-page .site-header:not(.is-compact):not(.nav-open) {
    margin-bottom: 0;
    padding: calc(14px + var(--safe-top)) 16px 10px;
    border-radius: 0;
    border-color: rgba(255, 240, 231, 0.3);
    background: linear-gradient(180deg, rgba(110, 31, 63, 0.88), rgba(166, 70, 56, 0.62));
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(109, 45, 59, 0.16);
  }

  .home-page .site-header:not(.is-compact):not(.nav-open) .brand {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 6px;
  }

  .home-page .site-header:not(.is-compact):not(.nav-open) .brand img {
    width: 166px;
    max-width: 53vw;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  }

  .home-page .site-header:not(.is-compact):not(.nav-open) .brand span {
    max-width: 24ch;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
    color: #fff8f0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    opacity: 0.84;
  }

  .home-page .site-header:not(.is-compact):not(.nav-open) .nav-toggle {
    position: absolute;
    top: calc(14px + var(--safe-top));
    right: 16px;
    border-color: rgba(255, 248, 240, 0.18);
    background: rgba(8, 20, 28, 0.38);
    backdrop-filter: blur(10px);
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 248, 240, 0.18);
    border-radius: 22px;
    background: rgba(13, 28, 37, 0.72);
  }

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

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

  .brand span {
    display: block;
    max-width: 17ch;
    font-size: 0.64rem;
    line-height: 1.28;
  }

  .brand img {
    width: 116px;
    max-width: 35vw;
  }

  .site-header.is-compact .brand img {
    width: 116px;
    max-width: 35vw;
  }

  .brand span {
    opacity: 1;
    max-width: 17ch;
  }

  .brand {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    gap: 12px;
  }

  .hero-logo {
    display: none;
  }

  .hero {
    display: block;
    min-height: var(--mobile-hero-media-height);
    padding: 0;
  }

  .interior-page .page-hero {
    margin-top: 0;
    padding-top: 22px;
  }

  #about {
    scroll-margin-top: 132px;
  }

  .hero h1,
  .hero .hero-text {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-backdrop,
  .hero-overlay {
    inset: 0 0 auto 0;
    height: var(--mobile-hero-media-height);
  }

  .hero-video-shell {
    background:
      linear-gradient(180deg, rgba(8, 20, 28, 0.04) 0%, rgba(8, 20, 28, 0.16) 100%),
      url("assets/hero-night-crowd.jpg") center center / cover no-repeat,
      #08141c;
  }

  .hero-video-shell iframe {
    display: block;
    width: max(100vw, calc(var(--mobile-hero-media-height) * 1.7778));
    height: max(var(--mobile-hero-media-height), 56.25vw);
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 20, 28, 0.04) 0%, rgba(8, 20, 28, 0.14) 100%);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-card-main,
  .panel-photo-tall,
  .gallery-item-large {
    min-height: 320px;
  }

  .hero-card-stack,
  .story-visuals,
  .about-points,
  .gallery-grid,
  .proof {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card {
    max-width: 700px;
  }

  .band-roster-item:last-child {
    grid-column: 1 / -1;
  }

  .hero-copy {
    width: min(calc(100% - 24px), 420px);
    min-height: 0;
    padding: calc(var(--mobile-hero-media-height) + 14px) 0 14px;
    align-content: start;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .home-page .upcoming-preview {
    padding-top: 8px;
  }

  .gallery-item-large {
    grid-column: auto;
  }

  .gallery-item-tall {
    min-height: 320px;
    grid-row: auto;
  }

  .show-entry {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 18px 18px 16px;
  }

  .show-entry-upcoming,
  .show-entry-past {
    padding: 18px 18px 16px;
  }

  .show-date {
    font-size: 0.74rem;
  }

  .show-venue {
    display: grid;
    gap: 4px;
    align-items: start;
  }

  .show-venue h3 {
    font-size: 1.04rem;
    line-height: 1.18;
  }

  .show-venue-subtitle {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.01em;
    line-height: 1.35;
  }

  .show-meta {
    gap: 7px 8px;
  }

  .show-time {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .show-meta-wrap {
    padding-top: 0;
  }

  .show-meta-chip,
  .show-link-side {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .show-link-side {
    display: inline-flex;
    align-items: center;
    width: auto;
    justify-self: start;
    text-align: left;
    padding-top: 0;
    color: var(--gold-deep);
  }

  .testimonial {
    padding-top: 24px;
  }

  .testimonial-card {
    padding: 20px 0 16px;
  }

  .testimonial-card blockquote p {
    font-size: 1rem;
  }

  .show-year-heading {
    position: static;
  }

  .song-list-page {
    padding-bottom: 48px;
  }

  .song-list-sort {
    justify-content: flex-start;
  }

  .song-list-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
    min-height: 0;
    padding: 14px 0;
  }

  .song-list-artist-cell {
    text-align: left;
  }

  .song-list-body.sort-artist .song-list-groups {
    gap: 12px;
    border-top: 0;
  }

  .song-list-body.sort-artist .song-list-entry {
    padding: 10px 0 0;
    border-top: 1px solid rgba(115, 60, 79, 0.14);
  }

  .song-list-body.sort-artist .song-list-row {
    gap: 2px;
    padding: 0;
    border-bottom: 0;
  }

  .song-list-body.sort-artist .song-list-artist-cell {
    padding-bottom: 1px;
    font-size: 1.02rem;
  }

  .song-list-body.sort-artist .song-list-row + .song-list-row .song-list-song-cell {
    padding-left: 0;
  }

  .song-list-body.sort-artist .song-list-song-cell {
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(115, 60, 79, 0.1);
  }

}

@media (orientation: landscape) and (max-height: 520px) {
  .site-header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--content-width), calc(100% - var(--safe-left) - var(--safe-right)));
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    top: var(--safe-top);
    gap: 12px;
    padding: calc(8px + var(--safe-top)) 16px 10px;
    border-radius: 0 0 20px 20px;
    border-color: rgba(255, 240, 231, 0.3);
    background: linear-gradient(180deg, rgba(110, 31, 63, 0.82), rgba(166, 70, 56, 0.56));
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 36px rgba(109, 45, 59, 0.24);
    margin-bottom: -18px;
  }

  .site-header.is-compact,
  .site-header.nav-open {
    top: var(--safe-top);
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 248, 240, 0.18);
    border-radius: 22px;
    background: rgba(13, 28, 37, 0.72);
  }

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

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

  .brand {
    gap: 12px;
  }

  .brand img,
  .site-header.is-compact .brand img,
  .interior-page .brand img {
    width: 116px;
    max-width: 24vw;
  }

  .brand span,
  .site-header.is-compact .brand span,
  .interior-page .brand span {
    display: block;
    opacity: 1;
    max-width: 17ch;
    font-size: 0.64rem;
    line-height: 1.28;
  }
}
