:root {
  --bg: #0b0d10;
  --bg-soft: #121820;
  --ink: #f6f8fb;
  --muted: #b5c0c9;
  --paper: #f5f1e8;
  --paper-ink: #121820;
  --paper-muted: #53606a;
  --cyan: #17a5ae;
  --red: #d93636;
  --gold: #f0b84a;
  --green: #87ba5e;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(18, 24, 32, 0.16);
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.75rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(11, 13, 16, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 13, 16, 0.94);
  border-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 74px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8.5rem max(1rem, calc((100vw - var(--max)) / 2)) 4.5rem;
}

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

.hero-media {
  background-image: url("../images/band-hero-1600.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0.5) 45%, rgba(11, 13, 16, 0.18)),
    linear-gradient(0deg, rgba(11, 13, 16, 0.92), rgba(11, 13, 16, 0.18) 45%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 950;
}

h3 {
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 650;
}

.hero-actions,
.contact-actions,
.next-show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  white-space: normal;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(217, 54, 54, 0.28);
}

.button-primary:hover {
  background: #f14a42;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section,
.section-band {
  padding: 5.5rem max(1rem, calc((100vw - var(--max)) / 2));
}

.section-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section-dark {
  background: var(--bg);
}

.section-light {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-light .eyebrow {
  color: var(--red);
}

.section-light p,
.section-light .section-heading p {
  color: var(--paper-muted);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

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

.section-heading h2,
.hero-copy,
.next-show h2 {
  text-wrap: balance;
}

.next-show {
  background: linear-gradient(90deg, var(--cyan), #0d5d65 62%, #0f2c32);
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.next-show-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.next-show h2 {
  margin-bottom: 0.4rem;
  font-size: 2.15rem;
}

.next-show p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0.55rem 0.8rem;
  font-weight: 850;
}

.chip.is-active {
  background: #0b6f78;
  border-color: #0b6f78;
  color: #fff;
}

.tour-list {
  display: grid;
  gap: 0.7rem;
}

.tour-item {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.tour-item.is-past {
  opacity: 0.56;
}

.tour-date {
  display: grid;
  place-items: center;
  min-height: 78px;
  border-radius: 6px;
  background: #fff;
  color: #10151b;
  font-weight: 950;
  text-align: center;
}

.tour-date span:first-child {
  font-size: 1.55rem;
  line-height: 1;
}

.tour-date span:last-child {
  color: var(--red);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.tour-info h3 {
  margin: 0;
  font-size: 1.2rem;
  overflow-wrap: normal;
}

.tour-info p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  overflow-wrap: normal;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  background: rgba(240, 184, 74, 0.16);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-link {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.7rem;
  font-weight: 800;
}

.calendar-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tour-more {
  display: flex;
  justify-content: center;
  padding-top: 0.65rem;
}

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

.member-card {
  position: relative;
  overflow: hidden;
  height: 560px;
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 12px 34px rgba(18, 24, 32, 0.18);
}

.member-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
}

.member-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.member-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1rem;
  color: #fff;
}

.member-card h3 {
  margin-bottom: 0.1rem;
  font-size: 1.3rem;
}

.member-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
}

.video-card img,
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.video-card.is-loaded::after {
  display: none;
}

.video-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1rem;
}

.video-card-content p {
  color: var(--muted);
}

.download-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

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

.download-card {
  display: flex;
  min-height: 230px;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  color: var(--paper-ink);
  text-decoration: none;
  border-color: var(--line-dark);
}

.download-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  object-fit: cover;
  background: #10151b;
}

.download-card.download-logo img {
  object-fit: contain;
  padding: 1rem;
}

.download-card span {
  padding: 0.85rem;
  font-weight: 900;
}

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

.social-photo-cta {
  display: grid;
  min-height: 156px;
  align-content: end;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(23, 165, 174, 0.26), rgba(217, 54, 54, 0.2)),
    var(--bg-soft);
  color: #fff;
  text-decoration: none;
}

.social-photo-cta-facebook {
  background:
    linear-gradient(135deg, rgba(23, 165, 174, 0.28), rgba(217, 54, 54, 0.2)),
    var(--bg-soft);
}

.social-photo-cta-instagram {
  background:
    linear-gradient(135deg, rgba(217, 54, 54, 0.28), rgba(240, 184, 74, 0.18)),
    var(--bg-soft);
}

.social-photo-cta span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.social-photo-cta strong {
  font-size: 1.3rem;
}

.refs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.refs-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 800;
}

.refs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--red);
}

.refs-list li.refs-wide {
  grid-column: 1 / -1;
  overflow-wrap: normal;
}

.refs-list li.is-hidden {
  display: none;
}

.refs-more {
  margin-top: 1rem;
  color: var(--paper-ink);
  border-color: var(--line-dark);
}

.booking-section {
  background:
    linear-gradient(115deg, rgba(217, 54, 54, 0.9), rgba(23, 165, 174, 0.92)),
    var(--bg);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 7rem;
}

.booking-copy h2 {
  color: #fff;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(11, 13, 16, 0.72);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

label {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  inline-size: 100%;
  max-inline-size: 100%;
  min-inline-size: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: #10151b;
  padding: 0.72rem 0.8rem;
}

input,
select {
  height: 50px;
}

input[type="date"] {
  display: block;
  min-width: 0;
  min-inline-size: 0;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-date-and-time-value {
  min-width: 0;
  text-align: left;
}

textarea {
  resize: vertical;
}

.check-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  color: var(--muted);
  font-weight: 650;
}

.check-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
  background: #07080a;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-inner p {
  max-width: 720px;
  margin-bottom: 0.35rem;
}

.footer-inner nav {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.legal-shell {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
  hyphens: auto;
}

.legal-shell h1 {
  margin-top: 2.2rem;
  font-size: 3.2rem;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.legal-shell h1:first-of-type {
  margin-top: 0;
}

.legal-shell h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.16;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.legal-shell p {
  max-width: 72ch;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.legal-shell a,
.legal-shell code {
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-shell a {
  color: #0b6f78;
  font-weight: 850;
}

.legal-shell code {
  border-radius: 4px;
  background: rgba(18, 24, 32, 0.08);
  padding: 0.08rem 0.24rem;
  font-size: 0.94em;
}

.back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 2rem;
}

.no-script {
  color: var(--gold);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-header {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 75px 1rem auto 1rem;
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(11, 13, 16, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.9rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 7rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 13, 16, 0.95), rgba(11, 13, 16, 0.28)),
      linear-gradient(90deg, rgba(11, 13, 16, 0.72), rgba(11, 13, 16, 0.24));
  }

  .next-show-grid,
  .booking-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.05rem;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: calc(5.45rem + 61.875vw);
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    padding-bottom: 2.6rem;
  }

  .hero-media {
    background-color: #0b0d10;
    background-image: url("../images/band-hero-960.webp");
    background-size: 110% auto;
    background-position: center 4.65rem;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 13, 16, 0.98) 0%, rgba(11, 13, 16, 0.92) 35%, rgba(11, 13, 16, 0.38) 72%, rgba(11, 13, 16, 0.22) 100%),
      linear-gradient(90deg, rgba(11, 13, 16, 0.68), rgba(11, 13, 16, 0.2));
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions,
  .next-show-actions,
  .contact-actions {
    gap: 0.55rem;
  }

  .button {
    min-height: 42px;
    padding: 0.64rem 0.76rem;
    font-size: 0.75rem;
  }

  .section-heading {
    margin-bottom: 1.25rem;
  }

  .section-heading p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .next-show h2 {
    font-size: 1.28rem;
    line-height: 1.15;
  }

  .next-show p {
    font-size: 0.92rem;
  }

  .next-show-grid {
    gap: 1rem;
  }

  .next-show-actions .button,
  .hero-actions .button {
    flex: 1 1 130px;
  }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    font-size: 0.78rem;
  }

  .toolbar {
    gap: 0.4rem;
  }

  .chip {
    min-height: 38px;
    padding: 0.48rem 0.65rem;
    font-size: 0.78rem;
  }

  .form-row,
  .tour-item,
  .video-grid,
  .members-grid,
  .download-grid,
  .refs-list {
    grid-template-columns: 1fr;
  }

  .tour-item {
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .tour-date {
    min-height: 58px;
  }

  .tour-info {
    min-width: 0;
  }

  .tour-info h3 {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .tour-info p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .tour-badge {
    min-height: 26px;
    font-size: 0.68rem;
    width: max-content;
  }

  .calendar-link {
    width: 100%;
  }

  .tour-more .button {
    width: 100%;
  }

  .member-card {
    height: 620px;
  }

  .video-card,
  .video-card img,
  .video-card iframe {
    height: 250px;
    min-height: 250px;
  }

  .video-card-content {
    padding: 0.8rem;
  }

  .video-card-content h3 {
    font-size: 1.05rem;
  }

  .video-card-content p {
    margin-bottom: 0.65rem;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .video-card-content .button {
    min-height: 40px;
    padding: 0.58rem 0.72rem;
    font-size: 0.72rem;
  }

  .download-card {
    min-height: 0;
  }

  .download-card img {
    aspect-ratio: 16 / 9;
    max-height: 185px;
  }

  .download-card span,
  .social-photo-cta,
  .refs-list li,
  .footer-inner p {
    overflow-wrap: normal;
  }

  .download-card span {
    padding: 0.68rem 0.75rem;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .gallery-links {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .social-photo-cta {
    min-height: 126px;
    padding: 0.85rem;
  }

  .social-photo-cta strong {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .refs-list li {
    padding: 0.38rem 0 0.38rem 0.95rem;
    font-size: 0.94rem;
    line-height: 1.36;
  }

  .refs-list li::before {
    top: 0.92rem;
    width: 0.35rem;
    height: 0.35rem;
  }

  .refs-more {
    width: 100%;
  }

  .booking-copy h2 {
    font-size: 1.68rem;
  }

  .booking-copy p {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .booking-form {
    padding: 0.9rem;
  }

  input,
  select,
  textarea {
    padding: 0.68rem 0.75rem;
    font-size: 16px;
  }

  .contact-actions .button {
    width: 100%;
    text-transform: none;
    overflow-wrap: normal;
  }

  .check-label {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .footer-inner p {
    font-size: 0.88rem;
    line-height: 1.4;
  }

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

  .section,
  .section-band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .legal-shell {
    width: min(100% - 1.5rem, 880px);
    padding: max(1.25rem, env(safe-area-inset-top)) 0 max(3rem, env(safe-area-inset-bottom));
  }

  .legal-shell h1 {
    margin: 2rem 0 0.8rem;
    font-size: 1.88rem;
    line-height: 1.08;
  }

  .legal-shell h1:first-of-type {
    margin-top: 0;
  }

  .legal-shell h2 {
    margin: 1.55rem 0 0.55rem;
    font-size: 1.14rem;
    line-height: 1.18;
  }

  .legal-shell p {
    margin-bottom: 0.85rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .legal-shell a,
  .legal-shell code {
    overflow-wrap: anywhere;
  }

  .back-link {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    text-decoration: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .brand img {
    width: 62px;
    height: 42px;
  }

  .site-header {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .site-nav {
    inset: 64px 0.75rem auto 0.75rem;
  }

  .hero {
    padding-top: calc(5.45rem + 61.875vw);
  }

  .next-show h2 {
    font-size: 1.18rem;
  }

  .member-card {
    height: 560px;
  }

  .legal-shell {
    width: min(100% - 1.25rem, 880px);
    padding-top: 1.25rem;
  }

  .legal-shell h1 {
    font-size: 1.5rem;
  }

  .legal-shell h2 {
    font-size: 1.02rem;
  }

  .legal-shell p {
    font-size: 0.91rem;
  }
}
