/* ── 1. CSS Custom Properties ── */
:root {
  --bg:         #040404;
  --bg-2:       #0a0a0a;
  --bg-3:       #111111;
  --border:     #1e1e1e;
  --gold:       #c8911a;
  --gold-light: #eebc3a;
  --gold-pale:  #f5dc88;
  --text:       #ede8da;
  --text-2:     #8a8270;
  --text-3:     #4a4438;
  --white:      #ffffff;
  --nav-h:      72px;
  --radius:     3px;
  --aff:        "https://ticketnetwork.7eer.net/c/340950/120057/2322?u=http%3A%2F%2Fwww.ticketnetwork.com%2Fperformers%2Fthe-eagles-tickets";
}

/* ── 2. Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
strong { font-weight: 600; color: var(--white); }

/* ── 3. Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(1.75rem, 4.5vw, 2.875rem); font-weight: 700; }
h2 { font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 600; }
h3 { font-size: 1.125rem; font-weight: 600; }
h4 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-pale); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── 4. Utility Classes ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-2); }
.text-pale  { color: var(--gold-pale); }
.small      { font-size: 0.875rem; }
.tiny       { font-size: 0.75rem; letter-spacing: 0.05em; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── 5. Buttons ── */
.btn-buy .btn-buy-short { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(200, 145, 26, 0.08);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-buy:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
}

/* ── 6. Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(4, 4, 4, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  line-height: 1;
}

.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  line-height: 1;
  font-variant: small-caps;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  display: block;
  padding: 6px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link.active {
  color: var(--gold-pale);
}

.nav-buy {
  margin-left: 8px;
  padding: 8px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-buy:hover {
  background: var(--gold-light);
  color: var(--bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 7. Homepage Hero ── */
.hero {
  position: relative;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center top, rgba(200, 145, 26, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(200, 145, 26, 0.1);
  border: 1px solid rgba(200, 145, 26, 0.35);
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .gold-word { color: var(--gold-pale); }

.hero-text {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* Countdown */
#countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 36px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}

.cd-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.cd-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

.cd-sep {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
  align-self: flex-start;
  margin-top: 8px;
}

.countdown-label-txt {
  font-size: 0.75rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-coupon {
  font-size: 0.8125rem;
  color: var(--text-2);
  margin-bottom: 0;
}

.hero-coupon strong {
  color: var(--gold-pale);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}

/* ── 8. Page Hero (Inner Pages) ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center top, rgba(200, 145, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}

.page-hero-title {
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-sub {
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
}

/* ── 9. Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-3);
}

.breadcrumb-list li::after {
  content: '/';
  color: var(--text-3);
}

.breadcrumb-list li:last-child::after { display: none; }

.breadcrumb-list a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--gold); }

.breadcrumb-list li:last-child { color: var(--text-2); }

/* ── 10. Sections ── */
.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 600px;
}

.section-note {
  font-size: 0.8125rem;
  color: var(--text-2);
  margin-bottom: 20px;
  font-style: italic;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Inner page layout with sidebar */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.inner-main { min-width: 0; }

/* ── 11. Key Takeaways Box ── */
.key-takeaways {
  background: #0d0d00;
  border-left: 3px solid var(--gold);
  padding: 28px 28px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.takeaways-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.takeaways-list li::before {
  content: '✔';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.8rem;
}

/* ── 12. Dates Table ── */
.table-wrap { overflow-x: auto; }

.dates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.dates-table thead tr {
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}

.dates-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-pale);
  white-space: nowrap;
}

.dates-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.dates-table tbody tr {
  transition: background 0.15s;
}
.dates-table tbody tr:hover {
  background: rgba(200, 145, 26, 0.04);
}

.dates-table .show-num {
  font-size: 0.75rem;
  color: var(--text-2);
  white-space: nowrap;
  font-weight: 500;
}

.dates-table .show-date {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.dates-table .final-show-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  font-size: 0.65rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 6px;
  border-radius: 2px;
}

.dates-table .final-row td {
  background: rgba(200, 145, 26, 0.04);
}

.table-note {
  font-size: 0.8125rem;
  color: var(--text-2);
  margin-bottom: 16px;
  font-style: italic;
}

.table-cta {
  margin-top: 28px;
  text-align: center;
}

/* ── 13. Quote Block ── */
.quote-block {
  background: #060606;
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}

.quote-block blockquote {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}

.quote-block cite {
  display: block;
  font-size: 0.8125rem;
  font-style: normal;
  font-variant: small-caps;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
}

/* ── 14. Band Member Cards ── */
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.band-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.band-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.band-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.band-card-initial {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}

.band-card-name {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.band-card-role {
  font-size: 0.775rem;
  color: var(--gold-pale);
  font-weight: 500;
  margin-bottom: 8px;
}

.band-card-note {
  font-size: 0.775rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── 15. Setlist Grid ── */
.setlist-section {
  margin-top: 24px;
}

.setlist-part-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 16px;
  margin-top: 24px;
}

.setlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-bottom: 8px;
}

.setlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.setlist-item::before {
  content: '♪';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.setlist-note {
  font-size: 0.8125rem;
  color: var(--text-2);
  font-style: italic;
  margin-top: 12px;
}

/* ── 16. Weekend Comparison Cards ── */
.weekend-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.weekend-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s;
}

.weekend-card:hover { border-color: rgba(200, 145, 26, 0.4); }

.weekend-card.featured {
  border-color: var(--gold);
  position: relative;
}

.weekend-card.featured::before {
  content: 'FINAL SHOWS';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.weekend-shows {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.weekend-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.weekend-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.weekend-list li {
  font-size: 0.8875rem;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.weekend-list li::before {
  content: '›';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ── 17. Venue Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-pale);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── 18. FAQ Accordion ── */
.faq-category-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 20px 0 12px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.faq-category-label:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-trigger:hover { color: var(--gold-pale); }

.faq-item.open .faq-trigger { color: var(--gold-pale); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-size: 1.25rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.72;
}

.faq-answer-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 19. Internal Link Cards ── */
.link-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.link-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.link-card:hover {
  border-color: var(--gold);
  background: rgba(200, 145, 26, 0.04);
}

.link-card-icon {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.link-card-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
}

.link-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: block;
}

/* ── 20. CTA Band ── */
.cta-band {
  padding: 80px 0;
  background: #06060a;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(200, 145, 26, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-title {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band-text {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 28px;
}

.coupon-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px dashed var(--gold);
  padding: 12px 28px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  background: rgba(200, 145, 26, 0.04);
}

.coupon-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
}

.coupon-code {
  font-family: 'Cinzel', serif;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--gold-light);
}

.cta-band .btn { margin-bottom: 16px; }

.cta-guarantee {
  font-size: 0.8125rem;
  color: var(--text-2);
  margin-top: 12px;
}

/* ── 21. Sticky Ticket Box ── */
.ticket-box {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.ticket-box-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 16px;
  text-align: center;
}

.ticket-box-shows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.ticket-box-shows li {
  font-size: 0.8125rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticket-box-shows li::before {
  content: '›';
  color: var(--gold);
}

.ticket-box .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.ticket-box-code {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-2);
}

.ticket-box-code strong {
  color: var(--gold-pale);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}

.ticket-box-guarantee {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.4;
}

/* ── 22. Inline CTA ── */
.inline-cta {
  padding: 40px 48px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.inline-cta-text {
  flex: 1;
  min-width: 200px;
}

.inline-cta-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.inline-cta-text span {
  font-size: 0.875rem;
  color: var(--text-2);
}

/* ── 23. FAQ CTA ── */
.faq-cta {
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 8px 0;
}

/* ── 24. Section Separator ── */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── 25. Footer ── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-about {
  font-size: 0.8375rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-ftc {
  font-size: 0.7875rem;
  color: var(--text-3);
  line-height: 1.6;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.footer-ftc strong { color: var(--text-2); }

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-ticket-text {
  font-size: 0.8375rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-buy-btn {
  display: inline-flex;
  padding: 10px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 10px;
}
.footer-buy-btn:hover {
  background: rgba(200, 145, 26, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-3);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

.footer-guarantee {
  font-size: 0.75rem !important;
  color: var(--text-2) !important;
}

/* ── 26. Misc Components ── */
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 48px 0;
  opacity: 0.4;
}

.highlight-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.tag-final {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ── 27. Responsive — Tablet (900px) ── */
@media (max-width: 900px) {
  .site-nav { height: var(--nav-h); }

  .nav-links { display: none; }
  .nav-buy.desktop-only { display: none; }

  .hamburger { display: flex; }

  /* Mobile nav overlay */
  .nav-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(4, 4, 4, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 199;
    animation: slideDown 0.2s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-menu-open .nav-links .nav-link {
    padding: 14px 16px;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu-open .nav-buy {
    display: block;
    margin: 12px 0 0;
    text-align: center;
    padding: 14px;
  }

  .inner-layout {
    grid-template-columns: 1fr;
  }

  .ticket-box {
    position: static;
    margin-bottom: 32px;
  }

  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }

  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid-5 { grid-template-columns: repeat(3, 1fr); }

  .link-cards { grid-template-columns: repeat(2, 1fr); }
  .weekend-cards { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .inline-cta { flex-direction: column; padding: 28px 24px; }
}

/* ── 28. Responsive — Mobile (680px) ── */
@media (max-width: 680px) {
  :root { --nav-h: 64px; }

  .container { padding: 0 16px; }

  .section { padding: 56px 0; }

  .hero { padding: 120px 0 80px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }

  .hero-cta-group { flex-direction: column; }
  .btn { padding: 13px 24px; width: 100%; justify-content: center; }
  .btn-buy { width: auto; }

  #countdown { gap: 2px; }
  .cd-unit { min-width: 58px; }
  .cd-sep { font-size: 2rem; }

  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .band-grid-5 { grid-template-columns: repeat(2, 1fr); }

  .link-cards { grid-template-columns: 1fr; }
  .setlist-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .dates-table th,
  .dates-table td { padding: 12px 10px; font-size: 0.8125rem; }

  /* Hide Time and Venue columns on mobile */
  .dates-table .col-hide-mobile { display: none; }

  /* Schedule page: hide Time column on mobile (col 4 of 5) */
  .dates-table th:nth-child(4),
  .dates-table td:nth-child(4) { display: none; }

  /* Buy button fills cell on mobile */
  .dates-table td:last-child { width: 1%; white-space: nowrap; }
  .btn-buy { padding: 8px 14px; }

  /* Shorten buy button to just "Buy" on mobile */
  .btn-buy .btn-buy-full { display: none; }
  .btn-buy .btn-buy-short { display: inline; }

  /* Final show tag: show only the star on mobile */
  .final-show-tag .tag-text { display: none; }
  .final-show-tag { padding: 2px 5px; }

  .coupon-box { flex-direction: column; gap: 8px; text-align: center; }

  .quote-block { padding: 20px 20px; }
  .quote-block blockquote { font-size: 1rem; }

  .key-takeaways { padding: 22px 20px 18px; }

  .weekend-cards { grid-template-columns: 1fr; }
}

/* ── 29. Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
