@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Public+Sans:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* =========================================================
   DESIGN TOKENS
   Palette pulled from the Tupelo Honey logo: deep navy field,
   warm amber/gold accents, cream display type, wine for depth.
   ========================================================= */
:root {
  --navy-black: #0b0c1e;
  --navy-deep:  #151833;
  --navy-mid:   #20244a;
  --amber:      #c07f3c;
  --amber-bright: #e2a463;
  --wine:       #7a2a35;
  --wine-bright:#a63f4d;
  --cream:      #f4ead2;
  --muted:      #ad9e7e;
  --line:       rgba(194, 148, 79, 0.22);

  --font-display: 'Fraunces', serif;
  --font-body: 'Public Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max-width: 1180px;
  --nav-height: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  background: var(--navy-black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film-grain / vintage texture over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 500; line-height: 1.03; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-bright);
  display: inline-block;
  margin-bottom: 1em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
  position: relative;
  z-index: 1;
}

section { padding: 7rem 0; position: relative; z-index: 1; }
@media (max-width: 640px) { section { padding: 4.5rem 0; } }

.section-head { max-width: 42em; margin-bottom: 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.12rem; color: var(--muted); }

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 30, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(11, 12, 30, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.brand img { width: 30px; height: 30px; object-fit: contain; border-radius: 3px; }

.nav-links {
  display: flex;
  gap: 2.1rem;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nav-links a:hover { color: var(--amber-bright); }
.nav-links a.active { color: var(--amber-bright); border-color: var(--amber); }

.nav-toggle {
  display: none;
  width: 40px; height: 36px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--amber-bright);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================================================
   HERO — sunburst signature
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: -3%;
  background:
    radial-gradient(ellipse 60% 55% at 50% 38%, rgba(192,127,60,0.14), transparent 65%),
    linear-gradient(180deg, rgba(11,12,30,0.80) 0%, rgba(11,12,30,0.58) 45%, rgba(11,12,30,0.93) 100%),
    url('../images/logo.jpeg');
  background-size: auto, auto, cover;
  background-position: center, center, center 42%;
  background-repeat: no-repeat;
  filter: blur(3px) saturate(1.05);
}

/* hand-of-god sunburst rays, evoking 70s soul poster art */
.sunburst {
  position: absolute;
  top: 50%; left: 50%;
  width: 1400px; height: 1400px;
  transform: translate(-50%, -52%);
  background: repeating-conic-gradient(
    from 0deg,
    rgba(226,164,99,0.09) 0deg 4deg,
    transparent 4deg 12deg
  );
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 30%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 68%);
  animation: spin 140s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -52%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; }

.hero-logo {
  width: min(520px, 82vw);
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.6));
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 0.3em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: var(--amber-bright);
  max-width: 34em;
  margin: 0 auto 2.4rem;
}

.hero .btn-row { justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 2.6rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.scroll-cue .stem {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: stem 2.2s ease-in-out infinite;
}
@keyframes stem { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9em 1.7em;
  border: 1px solid var(--amber);
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-solid { background: var(--amber); color: var(--navy-black); }
.btn-solid:hover { background: var(--amber-bright); border-color: var(--amber-bright); }
.btn-outline { background: transparent; color: var(--amber-bright); }
.btn-outline:hover { background: rgba(192,127,60,0.1); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================================
   DIVIDER (fedora + aviators motif)
   ========================================================= */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin: 0 auto 3.5rem;
  color: var(--amber);
  max-width: 500px;
}
.divider .line { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.divider svg { width: 30px; height: 30px; flex-shrink: 0; }

/* =========================================================
   ABOUT — full-bleed photo backdrop
   ========================================================= */
.about-bg {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(11,12,30,0.80) 0%, rgba(11,12,30,0.90) 55%, rgba(11,12,30,0.97) 100%),
    url('../images/gallery-fullband-02.jpg');
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-copy { max-width: 44em; }
.about-copy p { font-size: 1.08rem; color: var(--cream); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.about-copy .influences {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-bright);
}

.pull-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.pull-stats .stat {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber-bright);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.pull-stats .stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-top: 0.3em;
}

.success-box {
  margin-top: 2.2rem;
  max-width: 44em;
  background: rgba(21, 24, 51, 0.6);
  border: 1px solid var(--amber);
  padding: 1.6rem 1.8rem;
}
.success-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--amber-bright);
  margin: 0 0 0.6em;
}
.success-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* =========================================================
   MUSICIANS
   ========================================================= */
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.band-card {
  background: var(--navy-deep);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.band-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.band-card .photo { aspect-ratio: 4/5; overflow: hidden; background: var(--navy-mid); }
.band-card .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%); transition: filter 0.35s ease; }
.band-card:hover .photo img { filter: grayscale(0%); }
.band-card .info { padding: 1.3rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.band-card .name { font-family: var(--font-display); font-size: 1.22rem; margin-bottom: 0.1em; }
.band-card .role {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.8em;
}
.band-card .bio { font-size: 0.9rem; color: var(--muted); flex: 1; }

/* =========================================================
   VENUES
   ========================================================= */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.venue-item {
  border: 1px solid var(--line);
  background: var(--navy-deep);
  padding: 1rem 1.25rem;
}
.venue-item .v-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.2em;
}
.venue-item .v-city {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

/* =========================================================
   REFERENCES
   ========================================================= */
.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.reference-card {
  background: var(--navy-deep);
  border: 1px solid var(--line);
  padding: 2rem 2.2rem;
}
.reference-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.2rem;
}
.reference-card blockquote {
  margin: 0 0 1.3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--cream);
}
.reference-card .attribution {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-bright);
}
.reference-card .attribution span {
  display: block;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  margin-top: 0.35em;
}
@media (max-width: 900px) {
  .reference-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TOUR — ticket stub
   ========================================================= */
.tour-list { display: flex; flex-direction: column; gap: 1rem; max-width: 780px; margin: 0 auto; }
.tour-header {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  max-width: 780px;
  margin: 0 auto 0.9rem;
  padding: 0 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.tour-header span:nth-child(2) { padding-left: 1.5rem; }
.tour-header span:nth-child(3) { padding-right: 1.5rem; text-align: right; }
@media (max-width: 900px) {
  .tour-header { grid-template-columns: 90px 1fr auto; }
}
@media (max-width: 640px) {
  .tour-header { display: none; }
}
.ticket {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  background: var(--navy-deep);
  border: 1px dashed var(--line);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.88;
}
.ticket .date-block {
  background: var(--wine);
  color: var(--cream);
  text-align: center;
  padding: 1.3rem 0.4rem;
  font-family: var(--font-mono);
}
.ticket .date-block .month { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-bright); }
.ticket .date-block .day { display: block; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.ticket .details { padding: 1.1rem 1.5rem; }
.ticket .venue { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.15em; }
.ticket .location { font-size: 0.84rem; color: var(--muted); }
.ticket .date-block .year-sm { display: block; font-size: 0.6rem; color: var(--cream); opacity: 0.7; margin-top: 2px; }
.ticket .action { padding: 0 1.5rem; }
.ticket .tba {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

#tour-empty {
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 2rem 0;
  display: none;
}

.past-shows {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: none;
}
.past-shows summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.past-shows summary::-webkit-details-marker { display: none; }
.past-shows summary::before {
  content: '+';
  font-size: 1rem;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.past-shows[open] summary::before { content: '\2212'; }
.past-shows .tour-list { margin-top: 1.2rem; opacity: 0.6; }
.past-shows .ticket { border-style: dashed; }

/* =========================================================
   FEATURED SIZZLE REEL (top of page, buyer-facing)
   ========================================================= */
.featured-video-section {
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.featured-video {
  max-width: 820px;
  margin: 0 auto;
}
.featured-video .video-wrap {
  border: 1px solid var(--line);
  background: var(--navy-black);
}
.featured-video .video-label {
  padding-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-bright);
}

/* =========================================================
   LIVE VIDEOS
   ========================================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.video-card {
  background: var(--navy-deep);
  border: 1px solid var(--line);
  overflow: hidden;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-black);
}
.video-wrap.vertical { aspect-ratio: 9 / 16; }
.fb-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  transition: background 0.25s ease;
}
.fb-link-card:hover { background: var(--navy-mid); }
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-label {
  padding: 0.9rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-bright);
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SETLIST
   ========================================================= */
.setlist-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--amber-bright);
  margin-bottom: 2.4rem;
}
.setlist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 900px;
  margin: 0 auto;
}
.setlist-grid .song {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  background: var(--navy-deep);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 0.6em 1.2em;
  white-space: nowrap;
}
.setlist-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 40em;
  margin: 2.2rem auto 0;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid { columns: 3; column-gap: 0.9rem; }
.gallery-grid figure {
  margin: 0 0 0.9rem;
  break-inside: avoid;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery-grid img {
  width: 100%; display: block;
  filter: saturate(0.92);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.gallery-grid figure:hover img { filter: saturate(1.1); transform: scale(1.04); }

.gallery-grid figure::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(11,12,30,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-grid figure:hover::after { opacity: 1; }

.gallery-grid figure .expand-cue {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 42px; height: 42px;
  border: 1px solid var(--amber-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,12,30,0.55);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.gallery-grid figure:hover .expand-cue { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-grid figure .expand-cue svg { width: 18px; height: 18px; stroke: var(--amber-bright); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 9, 20, 0.94);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw;
}
.lightbox.open { display: flex; }

.lightbox-figure {
  max-width: min(1100px, 90vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  max-width: 60em;
}
.lightbox-counter {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-bright);
}

.lightbox-close, .lightbox-nav {
  position: fixed;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--amber); color: var(--amber-bright); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav svg, .lightbox-close svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 0.6rem; }
  .lightbox-nav.next { right: 0.6rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; }
}

/* =========================================================
   QUOTE CTA (Contact section highlight box)
   ========================================================= */
.quote-cta {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  background: var(--navy-deep);
  border: 1px solid var(--amber);
  padding: 2.4rem 2.2rem;
}
.quote-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
.quote-cta p {
  color: var(--muted);
  font-size: 0.98rem;
}
.quote-cta ul {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;
  display: inline-block;
  text-align: left;
}
.quote-cta ul li {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cream);
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
}
.quote-cta ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--amber);
}
.quote-cta .response-time {
  color: var(--amber-bright);
  font-weight: 600;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 3rem; align-items: start; }
.contact-card { border: 1px solid var(--line); padding: 2rem; background: var(--navy-deep); }
.contact-card .row { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; gap: 1rem; }
.contact-card .row:last-child { border-bottom: none; }
.contact-card .row span:first-child { color: var(--muted); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.contact-card .row a:hover { color: var(--amber-bright); }

form.booking { display: flex; flex-direction: column; gap: 1.1rem; }
form.booking label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 0.4em; display: block; }
form.booking input, form.booking textarea {
  width: 100%; background: var(--navy-deep); border: 1px solid var(--line); color: var(--cream);
  padding: 0.8em 1em; font-family: var(--font-body); font-size: 0.95rem; border-radius: 2px;
}
form.booking input:focus, form.booking textarea:focus { outline: none; border-color: var(--amber); }
form.booking textarea { min-height: 120px; resize: vertical; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { border-top: 1px solid var(--line); padding: 3rem 0 2.2rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.15rem; }
.footer-brand small { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-top: 0.4em; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.footer-nav a:hover { color: var(--amber-bright); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.9rem;
  font-family: var(--font-mono); font-size: 0.66rem; color: var(--muted); opacity: 0.85;
}
.footer-socials { display: flex; gap: 0.9rem; opacity: 1; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-socials a:hover { color: var(--amber-bright); border-color: var(--amber); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .ticket { grid-template-columns: 90px 1fr; }
  .ticket .action { grid-column: 1 / -1; padding: 0 1.5rem 1.1rem; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--navy-black); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 1rem 6vw 1.5rem; gap: 1rem;
    transform: translateY(-140%); transition: transform 0.3s ease; z-index: 400;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .band-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-grid { flex-direction: column; }
  .pull-stats { gap: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
