:root {
  --ink: #26120f;
  --cream: #fff3dc;
  --paper: #fffaf0;
  --orange: #ff781f;
  --hot: #ff4f88;
  --yellow: #ffd166;
  --teal: #15b8a6;
  --plum: #5c2a72;
  --shadow: 0 22px 70px rgba(38, 18, 15, 0.18);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 136, .22), transparent 35rem),
    radial-gradient(circle at 90% 5%, rgba(255, 209, 102, .35), transparent 28rem),
    var(--cream);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(120deg, rgba(38,18,15,.08) 1px, transparent 1px), linear-gradient(30deg, rgba(38,18,15,.05) 1px, transparent 1px);
  background-size: 38px 38px, 52px 52px;
  z-index: -1;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 10;
}
.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: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(16px);
  background: rgba(255, 243, 220, .86);
  border-bottom: 2px solid rgba(38,18,15,.1);
}
.nav, .section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  min-height: 58px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--orange);
  box-shadow: 5px 5px 0 var(--ink);
  padding: .35rem .7rem;
}
.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}
.nav-links { display: flex; gap: .25rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
  padding: .7rem .85rem;
  border-radius: 999px;
}
.nav-links a:hover, .nav-links a:focus-visible { background: var(--yellow); outline: 2px solid var(--ink); }
.nav-toggle { display: none; }

.section-shell { padding: clamp(4rem, 9vw, 7rem) 0; }
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.eyebrow {
  margin: 0 0 .9rem;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
  color: var(--plum);
}
h1, h2, h3 { line-height: .95; margin: 0; letter-spacing: -.06em; }
h1 { font-size: clamp(2.9rem, 6.4vw, 5.8rem); max-width: 14ch; }
h2 { font-size: clamp(2.5rem, 6vw, 5.25rem); }
h3 { font-size: 1.35rem; }
.lede { font-size: clamp(1.12rem, 2vw, 1.45rem); max-width: 660px; margin: 1.4rem 0 0; }
.hero-copy,
.hero-details {
  display: grid;
  justify-items: center;
}
.hero-details {
  margin-top: -.75rem;
}
.hero-actions, .contact-options { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.button, .contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: .85rem 1.15rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover, .button:focus-visible, .contact-pill:hover, .contact-pill:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
  outline: none;
}
.primary { background: var(--hot); color: white; }
.secondary { background: var(--yellow); }
.ghost { background: white; }
.button:disabled {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
}
.quick-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  padding: 0;
  margin: 2rem 0 0;
  max-width: 610px;
  width: min(100%, 610px);
}
.quick-facts li {
  background: rgba(255,255,255,.7);
  border: 2px solid rgba(38,18,15,.15);
  border-radius: 22px;
  padding: 1rem;
}
.quick-facts strong { display: block; font-size: 1.55rem; line-height: 1; }
.quick-facts span { font-weight: 750; font-size: .9rem; }
.hero-art { position: relative; transform: rotate(.75deg); width: min(100%, 980px); justify-self: center; }
.hero-art img, .hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 12px solid white;
  border-bottom-width: 38px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #120706;
}
.video-art { transform: rotate(.75deg); }
.sticker {
  position: absolute;
  padding: .65rem .9rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 4px 4px 0 var(--ink);
}
.sticker-one { background: var(--yellow); top: 10%; left: -1.4rem; transform: rotate(-10deg); }
.sticker-two { background: var(--teal); color: white; bottom: 12%; right: -1rem; transform: rotate(8deg); }

.color-block {
  background: var(--orange);
  border-block: 4px solid var(--ink);
  box-shadow: inset 0 18px 0 rgba(255,255,255,.12);
}
.two-column, .setlist, .booking {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about p:not(.eyebrow) { font-size: 1.35rem; font-weight: 750; margin: 0; }
.band-polaroids {
  margin: -1.5rem 0 0;
  width: min(100%, 470px);
}
.band-polaroids img {
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 14px 0 rgba(38, 18, 15, .18));
}
.section-heading { margin-bottom: 2rem; }
.section-heading.split { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.note { max-width: 430px; font-weight: 750; margin: 0; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.video-card, .poster-card, .booking-form, .shows-grid article, .photo-callout, .event-grid article, details, .song-category {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
}
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; background: #000; }
.video-card h3 { padding: 1rem; }
.event-grid, .faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.song-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.event-grid article, details, .song-category { padding: 1.2rem; }
.song-category ul { columns: 1; margin: 1rem 0 0; padding-left: 1.15rem; }
.song-category li { break-inside: avoid; margin-bottom: .38rem; font-weight: 700; }
.song-hero { padding-bottom: 2rem; }
.event-grid h3 { margin-bottom: .6rem; }
.event-grid p, details p { margin-bottom: 0; }
summary { cursor: pointer; font-weight: 950; font-size: 1.1rem; }
summary:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.setlist { align-items: center; }
.setlist-copy p { font-size: 1.13rem; }
.song-tags { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.4rem 0 1.7rem; }
.song-tags span { background: white; border: 2px solid var(--ink); border-radius: 999px; padding: .55rem .8rem; font-weight: 850; }
.poster-card { padding: 1rem; transform: rotate(-2deg); background: white; }
.poster-card img { border-radius: 18px; width: 100%; height: auto; object-fit: contain; }
.shows-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.shows-grid article { padding: 1.1rem; }
.show-date { font-weight: 950; font-size: 1.15rem; }
.show-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.show-meta span { background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px; padding: .25rem .6rem; font-weight: 850; font-size: .85rem; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 1rem; align-items: stretch; }
.gallery-grid img { width: 100%; height: auto; object-fit: contain; border-radius: 28px; border: 3px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); background: white; }
.photo-callout { padding: 1.5rem; display: grid; align-content: center; background: var(--yellow); }
.photo-callout span { font-size: 2rem; line-height: .98; font-weight: 950; letter-spacing: -.06em; }
.booking { align-items: start; }
.booking-copy { position: sticky; top: 108px; }
.booking-form { padding: 1.2rem; display: grid; gap: .9rem; }
.form-note { background: #fff3bc; border: 2px solid var(--ink); border-radius: 16px; padding: .8rem; margin: 0; font-size: .92rem; }
label { display: grid; gap: .35rem; font-weight: 850; }
input, select, textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: white;
  padding: .8rem .9rem;
}
input:focus, select:focus, textarea:focus { outline: 3px solid var(--yellow); }
.site-footer { background: var(--ink); color: var(--cream); }
.footer-inner { padding-block: 2rem; display: flex; justify-content: space-between; gap: 1rem; }
.footer-inner a { font-weight: 850; }

@media (max-width: 820px) {
  .nav { min-height: 68px; }
  .nav-toggle {
    display: inline-flex;
    border: 2px solid var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    padding: .6rem .8rem;
    font-weight: 900;
  }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 24px;
    padding: .6rem;
    box-shadow: 7px 7px 0 var(--ink);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem; }
  .hero, .two-column, .setlist, .booking, .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  h1 { max-width: none; }
  .hero-art { transform: none; width: min(100%, 560px); justify-self: center; }
  .about .two-column { gap: 1.5rem; }
  .band-polaroids {
    margin: 0;
    width: 100%;
  }
  .about p:not(.eyebrow) {
    font-size: clamp(1.08rem, 5.2vw, 1.35rem);
    line-height: 1.45;
  }
  .quick-facts, .video-grid, .shows-grid, .event-grid, .faq-grid, .song-columns { grid-template-columns: 1fr; }
  .section-heading.split { display: block; }
  .booking-copy { position: static; }
  .gallery-grid img { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
