:root {
  --steel: #89a9ba;
  --steel-soft: #b8ced8;
  --teal: #0f435f;
  --navy: #14273d;
  --cream: #faf9f3;
  --cream-warm: #f3efe2;
  --sand: #e8e2cf;

  --f-display: 'Cinzel', 'Felix Titling', 'Trajan Pro', serif;
  --f-body: 'Libre Franklin', 'Franklin Gothic Book', 'Franklin Gothic', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== ACCESSIBILITY ========== */

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -200px;
  left: 20px;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 20px;
  outline: 2px solid var(--steel);
  outline-offset: 2px;
}

/* Visually hidden but available to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global focus styles — visible, consistent (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 1px;
}

/* On dark sections, use steel for focus ring contrast */
.lineup a:focus-visible,
.lineup button:focus-visible,
.booking a:focus-visible,
.booking button:focus-visible,
.booking input:focus-visible,
.booking select:focus-visible,
.booking textarea:focus-visible,
.footer a:focus-visible {
  outline-color: var(--steel);
}

/* ========== GLOBAL DECORATION ========== */

/* Subtle film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--teal); color: var(--cream); }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 249, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(20, 39, 61, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.nav-logo img {
  width: 80px;
  height: 80px;
  display: block;
}
.nav-logo-text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  font-weight: 400;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 10px 20px !important;
  transition: background 0.2s ease;
  letter-spacing: 0.14em !important;
}
.nav-cta:hover { background: var(--teal); }
.nav-cta::after { display: none; }

/* min touch target 44px per WCAG 2.5.8 */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 44px;
  padding: 0 8px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

/* Paper texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.15  0 0 0 0 0.24  0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
  opacity: 0.7;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Riso teal plate — offset for misregistration effect */
.hero-plate-teal {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  transform: translate(-10px, 8px);
  mix-blend-mode: multiply;
  opacity: 0.88;
}
.hero-plate-teal svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Riso navy plate — key plate, sits on top */
.hero-plate-navy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  width: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-plate-navy svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 340px;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(44px, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}
.hero-title span {
  display: block;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  max-width: 640px;
  margin: 70px auto 0;
  text-align: center;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--navy);
  animation: fadeUp 1s ease 0.7s both;
}
.hero-tagline em {
  font-style: italic;
  color: var(--teal);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.85s both;
}

/* ========== BUTTONS ========== */
.btn {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--navy);
  transition: all 0.25s ease;
  cursor: pointer;
  background: none;
  min-height: 44px; /* WCAG 2.5.8 touch target */
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--navy);
}
.btn-ghost {
  color: var(--navy);
  background: rgba(250, 249, 243, 0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--teal);
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== MARQUEE ========== */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: slide 15s linear infinite;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-track .dot {
  color: var(--steel);
  font-size: 10px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== SECTION BASE ========== */
.section {
  padding: 130px 40px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.section-kicker {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-kicker::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--teal);
}
.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 40px;
  max-width: 900px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
  font-family: 'Libre Franklin', sans-serif;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}

/* ========== ABOUT ========== */
.about {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
}
.about-copy p {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 22px;
}
.about-copy p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 68px;
  float: left;
  line-height: 0.9;
  margin: 8px 14px 0 0;
  color: var(--teal);
}

/* ========== BAND PHOTOS — polaroid style ========== */
.band-photo {
  margin: 0;
  background: var(--cream);
  padding: 12px 12px 44px;
  box-shadow:
    0 1px 2px rgba(20, 39, 61, 0.08),
    0 12px 28px rgba(20, 39, 61, 0.18);
  width: 280px;
  flex-shrink: 0;
}
.band-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) contrast(1.05) sepia(0.08);
}
.band-photo figcaption {
  margin-top: 12px;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--teal);
  text-align: center;
  letter-spacing: 0.02em;
}

/* About polaroid — sticky, pinned to the right */
.band-photo--about {
  transform: rotate(-3deg);
  margin-top: -180px;
  position: sticky;
  top: 110px;
  width: 360px;
}

/* Shows polaroid — rectangular, left edge cropped */
.band-photo--shows {
  position: absolute;
  top: -60px;
  left: 480px;
  transform: rotate(-3deg);
  z-index: 5;
  width: 300px;
}
.band-photo--shows img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  clip-path: inset(0 0 0 12%);
  margin-left: -12%;
  width: 112%;
}

/* ========== LINEUP ========== */
.lineup {
  background: var(--navy);
  color: var(--cream);
  padding: 130px 40px;
  margin: 0;
  max-width: none;
  overflow: hidden;
  position: relative;
}
.lineup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 40% 30% at 10% 0%, rgba(15, 67, 95, 0.4), transparent),
    radial-gradient(ellipse 30% 40% at 90% 100%, rgba(137, 169, 186, 0.1), transparent);
  pointer-events: none;
}
.lineup-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.lineup .section-title { color: var(--cream); }
.lineup .section-title em { color: var(--steel); }
.lineup .section-kicker { color: var(--steel); }
.lineup .section-kicker::before { background: var(--steel); }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--teal);
}

.lineup-member {
  --photo-zoom: 1;
  --photo-zoom-hover: 1.05;
  --photo-pos-x: 50%;
  --photo-pos-y: 25%;

  padding: 48px 22px;
  border-right: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.lineup-member:last-child { border-right: none; }

.lineup-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: var(--photo-pos-x) var(--photo-pos-y);
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.55) contrast(1.05);
  transform: scale(var(--photo-zoom));
  transform-origin: var(--photo-pos-x) var(--photo-pos-y);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.lineup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 39, 61, 0.55) 0%,
    rgba(20, 39, 61, 0.4) 40%,
    rgba(20, 39, 61, 0.85) 100%);
  z-index: 2;
  transition: background 0.4s ease;
  pointer-events: none;
}

.lineup-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  flex: 1;
}

.lineup-member:hover .lineup-photo,
.lineup-member:focus-visible .lineup-photo,
.lineup-member:focus-within .lineup-photo {
  filter: grayscale(100%) brightness(0.95) contrast(1.1);
  transform: scale(calc(var(--photo-zoom) * var(--photo-zoom-hover)));
}
.lineup-member:hover .lineup-overlay,
.lineup-member:focus-visible .lineup-overlay,
.lineup-member:focus-within .lineup-overlay {
  background: linear-gradient(180deg,
    rgba(20, 39, 61, 0.25) 0%,
    rgba(20, 39, 61, 0.15) 40%,
    rgba(20, 39, 61, 0.7) 100%);
}

.lineup-member-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: auto;
  text-shadow: 0 2px 12px rgba(20, 39, 61, 0.5);
}
.lineup-member-player {
  font-family: var(--f-body);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: var(--steel);
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(20, 39, 61, 0.6);
}

/* Per-member photo framing */
.lineup-member--mady   { --photo-zoom: 1.2; --photo-pos-x: 50%; --photo-pos-y: 25%; }
.lineup-member--jason  { --photo-zoom: 1.4; --photo-pos-x: 50%; --photo-pos-y: 25%; }
.lineup-member--revae  { --photo-zoom: 1.2; --photo-pos-x: 20%; --photo-pos-y: 45%; }
.lineup-member--camryn { --photo-zoom: 1.2; --photo-pos-x: 50%; --photo-pos-y: 70%; }
.lineup-member--nathan { --photo-zoom: 1.4; --photo-pos-x: 50%; --photo-pos-y: 15%; }
.lineup-member--timmy  { --photo-zoom: 1.2; --photo-pos-x: 50%; --photo-pos-y: 25%; }

/* ========== SHOWS ========== */
.shows {
  background: var(--cream-warm);
  padding: 130px 40px;
  max-width: none;
  margin: 0;
  position: relative;
}
.shows-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.shows-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.show-list {
  list-style: none;
  border-top: 1px solid var(--navy);
}
.show-item {
  display: grid;
  grid-template-columns: 180px 1fr 1fr auto;
  gap: 40px;
  padding: 40px 8px;
  border-bottom: 1px solid rgba(20, 39, 61, 0.2);
  align-items: center;
  transition: padding 0.3s ease, background 0.3s ease;
  position: relative;
}
.show-item:hover,
.show-item:focus-within {
  padding-left: 48px;
  background: rgba(15, 67, 95, 0.04);
}
.show-item::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--teal);
  font-family: var(--f-body);
  font-size: 22px;
  transition: opacity 0.3s ease, left 0.3s ease;
}
.show-item:hover::before,
.show-item:focus-within::before { opacity: 1; left: 16px; }

.show-date-day {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.show-date-month {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 8px;
}
.show-venue {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.show-venue-sub {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--teal);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.show-city {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--navy);
}
.show-tag {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px; /* WCAG 2.5.8 touch target */
  display: inline-flex;
  align-items: center;
}
.show-tag:hover {
  background: var(--navy);
  color: var(--cream);
}
.show-tag.free {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}

.shows-footer-note {
  margin-top: 50px;
  text-align: center;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--teal);
}
.shows-footer-note a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.shows-footer-note a:hover { color: var(--teal); }

/* ========== LISTEN ========== */
.listen {
  padding: 130px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.listen-player {
  background: var(--navy);
  border-radius: 2px;
  padding: 44px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.listen-player::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  opacity: 0.5;
}
.listen-player-label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
  position: relative;
}
.listen-track-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
}
.listen-track-sub {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--steel);
  margin-bottom: 34px;
  position: relative;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 60px;
  margin-bottom: 22px;
  position: relative;
}
.waveform .bar {
  flex: 1;
  background: var(--steel);
  border-radius: 1px;
  transition: background 0.2s ease, height 0.2s ease;
}
.waveform .bar.active { background: var(--cream); }
.waveform:hover .bar { background: var(--cream); }

.play-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.play-btn:hover { transform: scale(1.08); background: var(--steel); }
.track-time {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.08em;
}

.track-list { list-style: none; }
.track-list li {
  padding: 20px 0;
  border-bottom: 1px dashed rgba(20, 39, 61, 0.25);
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: padding 0.2s ease;
}
.track-list li:hover { padding-left: 12px; }
.track-list li:hover .track-num { color: var(--teal); }
.track-list li.active { padding-left: 12px; }
.track-list li.active .track-num,
.track-list li.active .track-title { color: var(--teal); }
.track-list li.active .track-num::before { content: '▸ '; color: var(--teal); }
.track-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  color: rgba(20, 39, 61, 0.4);
  transition: color 0.2s ease;
  letter-spacing: 0.12em;
}
.track-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.track-length {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.06em;
}

/* ========== BOOKING ========== */
.booking {
  background: var(--navy);
  color: var(--cream);
  padding: 130px 40px;
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: 'BOOK';
  position: absolute;
  top: 40px;
  right: -40px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(180px, 28vw, 420px);
  line-height: 0.8;
  color: var(--teal);
  opacity: 0.14;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.booking-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking .section-title { color: var(--cream); }
.booking .section-title em { color: var(--steel); }
.booking .section-kicker { color: var(--steel); }
.booking .section-kicker::before { background: var(--steel); }

.booking-intro {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 44px;
  max-width: 500px;
}

.booking-details {
  display: grid;
  gap: 0;
  margin-bottom: 40px;
}
.booking-detail {
  padding: 22px 0;
  border-top: 1px solid var(--teal);
}
.booking-detail:last-child { border-bottom: 1px solid var(--teal); }
.booking-detail-label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}
.booking-detail-value {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.booking-detail-value.regular {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0.01em;
}
.booking-detail-value a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--steel);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.booking-detail-value a:hover {
  color: var(--steel);
  border-color: var(--cream);
}

.form {
  background: rgba(250, 249, 243, 0.03);
  padding: 44px;
  border: 1px solid var(--teal);
  border-radius: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--teal);
  color: var(--cream);
  padding: 10px 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: normal; /* prevent inherited spacing from distorting input text */
  transition: border-color 0.2s ease;
}
/* Visible focus for form inputs — overrides browser default (WCAG 2.4.7) */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
  border-color: var(--steel);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select option {
  background: var(--navy);
  color: var(--cream);
}
.form-submit {
  width: 100%;
  margin-top: 18px;
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  justify-content: center;
}
.form-submit:hover {
  background: var(--steel);
  color: var(--navy);
  border-color: var(--steel);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--cream);
}

/* ========== FOOTER ========== */
.footer {
  background: #0a1724;
  color: var(--cream);
  padding: 50px 40px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--teal);
}
.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}
.footer-brand img {
  width: 150px;
  height: 150px;
}
.footer-brand-text h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand-text p {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--steel);
  max-width: 300px;
  line-height: 1.55;
}
.footer-col h5 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 7px 0; }
.footer-col ul a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--steel); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  flex-wrap: wrap;
  gap: 16px;
}

/* ========== RESPONSIVE — 960px ========== */
@media (max-width: 960px) {
  /* Nav */
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-toggle { display: block; }

  /* Hero */
  .hero {
    padding: 140px 20px 20px;
    min-height: auto;
  }
  .hero-content { padding-bottom: 100px; }
  .hero-tagline { margin-top: 40px; }
  .hero-ctas { margin-top: 120px; }

  /* Buttons */
  .btn { font-size: 0.8rem; }

  /* Sections */
  .section { padding: 80px 20px; }
  .shows, .lineup, .booking { padding: 80px 20px; }
  .section, .shows-inner, .lineup-inner, .booking-inner, .listen-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Lineup grid */
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-member { min-height: 320px; }
  .lineup-member:nth-child(2n) { border-right: none; }
  .lineup-member--camryn { --photo-zoom: 1.3; --photo-pos-x: 80%; --photo-pos-y: 30%; }
  .lineup-member--revae  { --photo-zoom: 1.3; --photo-pos-y: 20%; }
  .lineup-member--jason  { --photo-zoom: 1.3; --photo-pos-y: 20%; }

  /* Polaroids — flow into document, centered */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .band-photo--about {
    position: static;
    margin: 20px auto 0;
    transform: rotate(-2deg);
    width: 280px;
    padding: 10px 10px 38px;
  }
  .band-photo--shows {
    position: static;
    margin: 0 auto 36px;
    transform: rotate(-2deg);
    width: 260px;
  }

  /* Shows header — stack vertically */
  .shows-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .shows-header .btn { align-self: flex-start; }

  /* Show items — 2-column grid, date spanning both rows */
  .show-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 24px 8px;
  }
  .show-item .show-date {
    grid-row: 1 / 3;
    align-self: center;
  }
  .show-city { display: none; }
  .show-date-day { font-size: 38px; }
  .show-venue { font-size: 18px; }
  .show-tag {
    grid-column: 2;
    align-self: start;
    width: fit-content;
    font-size: 0.75rem;
    padding: 7px 12px;
  }

  /* Listen */
  .listen { padding: 80px 20px; }
  .listen-grid { grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .listen-player { padding: 32px 24px; }
  .listen-track-title { font-size: 26px; }

  /* Booking */
  .booking-inner { grid-template-columns: 1fr; gap: 50px; }
  .booking-detail-value { font-size: 1rem; }
  .form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Marquee — faster on smaller screens */
  .marquee-track { animation-duration: 4s; }
}

/* ========== RESPONSIVE — 560px ========== */
@media (max-width: 560px) {
  /* Hero */
  .hero-title { font-size: clamp(36px, 12vw, 64px); }

  /* Lineup — single column */
  .lineup-grid { grid-template-columns: 1fr; }
  .lineup-member { border-right: none; }

  /* Shows */
  .shows-header .section-title { font-size: clamp(28px, 8vw, 44px); }
  .show-item { gap: 6px 12px; padding: 20px 8px; }
  .show-date-day { font-size: 32px; }
  .show-venue { font-size: 15px; line-height: 1.3; }
  .show-venue-sub { font-size: 13px; margin-top: 4px; }
  .band-photo--shows { width: 220px; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col { text-align: center; }
  .footer-col h5 { font-size: 9px; margin-bottom: 14px; }
  .footer-col ul li { padding: 5px 0; }
  .footer-col ul a { font-size: 13px; }

  /* Marquee */
  .marquee-track { font-size: 13px; gap: 36px; }
  .marquee-track span { gap: 36px; }
}