/* =========================================================
   Let's Rock N Roll — Design System
   Palette: near-black stage floor, gold marquee, purple/blue/
   magenta concert lighting used as ambient glow (not text color),
   red used only as a rare accent. Cinzel for display, Inter for body.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0d;
  --bg-alt: #121016;
  --panel: #18151d;
  --panel-border: #2a2530;
  --gold: #d4af37;
  --gold-light: #f2dd9c;
  --gold-deep: #a9821f;
  --purple: #7c3aed;
  --blue: #3556d6;
  --magenta: #c026a3;
  --red: #9a2230;
  --text: #f3f1ea;
  --text-dim: #c7c2b8;
  --text-faint: #8f8a82;
  --focus: #ffd76a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1180px;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.reduced-motion, html.reduced-motion * { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--gold-light); line-height: 1.2; margin: 0 0 .5em; letter-spacing: .01em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--text-dim); }
a { color: var(--gold-light); text-decoration-thickness: 1px; }
a:hover { color: var(--gold); }
ul { padding-left: 1.2em; }
main { display: block; }

/* Focus visibility — never suppressed */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}
a, button, input, select, textarea { min-height: 44px; }
input[type="checkbox"], input[type="radio"] { min-height: auto; min-width: 20px; width: 20px; height: 20px; }

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  background: var(--gold);
  color: #1a1305;
  padding: .75em 1em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 2rem; }
.eyebrow { display: inline-block; font-family: var(--font-display); color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: .75rem; margin-bottom: .6em; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  padding: .85em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep)); color: #1a1305; box-shadow: 0 6px 24px rgba(212,175,55,.35); }
.btn-gold:hover { color: #1a1305; box-shadow: 0 10px 28px rgba(212,175,55,.5); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold-light); }
.btn-outline:hover { background: rgba(212,175,55,.1); color: var(--gold-light); }
.btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--text); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05em 2em; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10,10,13,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--panel-border); }
.header-inner { max-width: var(--container); margin-inline: auto; padding: .7rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { color: var(--gold); font-size: 1.4rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-org { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.brand-event { font-family: var(--font-display); color: var(--gold-light); font-size: 1.15rem; }

.nav-toggle { display: flex; align-items: center; gap: .4em; background: transparent; border: 1px solid var(--panel-border); color: var(--text); border-radius: var(--radius-sm); padding: .5em .8em; }
.nav-toggle-label { font-weight: 600; font-size: .9rem; }

.primary-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw); background: var(--bg-alt); border-left: 1px solid var(--panel-border); padding: 5rem 1.5rem 2rem; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
.primary-nav.is-open { transform: translateX(0); }
.primary-nav ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .75em .25em; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--panel-border); font-weight: 600; }
.primary-nav a[aria-current="page"] { color: var(--gold-light); }
.btn-nav-cta { width: 100%; }

body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; width: auto; background: transparent; border: 0; padding: 0; transform: none; display: flex; align-items: center; gap: 1.75rem; overflow: visible; }
  .primary-nav ul { flex-direction: row; gap: 1.25rem; margin: 0; }
  .primary-nav a { border-bottom: 0; padding: .3em 0; }
  .btn-nav-cta { width: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(60% 55% at 18% 10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(55% 50% at 85% 15%, rgba(53,86,214,.32), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(192,38,163,.22), transparent 65%),
    linear-gradient(180deg, #0a0a0d 0%, #0d0b11 60%, #0a0a0d 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 40%, rgba(212,175,55,.06) 50%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.hero-presents { font-family: var(--font-display); color: var(--text-dim); letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; margin-bottom: .75rem; }
.hero-title { margin-bottom: .2em; }
.hero-subtitle { font-family: var(--font-display); color: var(--gold); font-size: clamp(1rem, 2.6vw, 1.3rem); letter-spacing: .08em; margin-bottom: 1.1rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; color: var(--text); font-weight: 600; margin-bottom: 1.4rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5em; }
.hero-price { font-size: 1.15rem; color: var(--gold-light); font-weight: 700; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.6rem; }
.hero-trust { max-width: 46ch; color: var(--text-dim); font-size: .95rem; }
.hero-flyer-link { display: inline-flex; align-items: center; gap: .4em; font-size: .85rem; color: var(--text-faint); margin-top: .5rem; text-decoration: underline; }

@media (min-width: 860px) {
  .hero .container { grid-template-columns: 1.1fr .9fr; align-items: center; }
}

/* Motion accent — respects reduced motion */
.spotlight { position: absolute; inset: -20% -10% auto -10%; height: 140%; opacity: .5; pointer-events: none; }
html:not(.reduced-motion) .spotlight { animation: sweep 14s ease-in-out infinite; }
@keyframes sweep { 0%,100% { transform: rotate(-3deg) translateX(0); } 50% { transform: rotate(2deg) translateX(2%); } }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--panel), #141119);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.card h3 { margin-bottom: .1em; }
.card .price { font-family: var(--font-display); color: var(--gold-light); font-size: 1.6rem; }
.card-footer { margin-top: auto; }
.card-featured { border-color: var(--gold-deep); box-shadow: 0 0 0 1px rgba(212,175,55,.25) inset; }

/* Performer cards */
.performer-card { text-align: center; }
.performer-photo { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-md); background: linear-gradient(145deg, #221d2a, #171420); display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-size: .8rem; border: 1px solid var(--panel-border); overflow: hidden; }
.performer-card.is-featured { border-color: var(--gold-deep); }
.performer-name { font-family: var(--font-display); color: var(--gold-light); margin: .75rem 0 .15rem; font-size: 1.1rem; }
.performer-role { color: var(--text-faint); font-size: .85rem; margin: 0; }

/* Impact / beneficiary cards */
.impact-card { border-left: 3px solid var(--gold); }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: 1rem; flex-wrap: wrap; }
.countdown-unit { background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius-md); padding: .9rem 1.2rem; min-width: 84px; text-align: center; }
.countdown-unit strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); }
.countdown-unit span { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); }
.countdown-done { font-weight: 700; color: var(--gold-light); }

/* ---------- FAQ / Accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--panel-border); }
.accordion-trigger {
  width: 100%; text-align: left; background: transparent; border: 0; color: var(--text);
  font-weight: 700; font-size: 1.02rem; padding: 1.1rem .25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer;
}
.accordion-trigger::after { content: "+"; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"]::after { content: "\2212"; }
.accordion-panel { padding: 0 .25rem 1.1rem; }

/* ---------- Forms ---------- */
fieldset { border: 1px solid var(--panel-border); border-radius: var(--radius-md); padding: 1.25rem; margin: 0 0 1.5rem; }
legend { font-family: var(--font-display); color: var(--gold-light); padding: 0 .5rem; font-size: 1.05rem; }
.field { margin-bottom: 1.1rem; }
.field label, .field legend.sub-legend { display: block; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.field .hint { display: block; color: var(--text-faint); font-size: .82rem; margin-top: .3rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; background: #0f0d13; border: 1px solid var(--panel-border); border-radius: var(--radius-sm);
  color: var(--text); padding: .75em .9em; font-family: var(--font-body); font-size: 1rem;
}
textarea { min-height: 120px; resize: vertical; }
.radio-row, .checkbox-row { display: flex; align-items: flex-start; gap: .6em; margin-bottom: .6em; }
.radio-row label, .checkbox-row label { font-weight: 500; margin: 0; }
.required-mark { color: var(--gold); }
.form-error-summary { background: rgba(154,34,48,.15); border: 1px solid var(--red); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.form-error-summary a { color: var(--gold-light); }
.confirmation-panel { background: var(--panel); border: 1px solid var(--gold-deep); border-radius: var(--radius-lg); padding: 2rem; }

/* Order summary */
.order-summary { background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius-lg); padding: 1.5rem; }
.order-summary dl { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem; margin: 0 0 1rem; }
.order-summary dt { color: var(--text-faint); }
.order-summary dd { margin: 0; text-align: right; font-weight: 600; }
.order-total-row dt, .order-total-row dd { color: var(--gold-light); font-size: 1.2rem; font-family: var(--font-display); }

/* ---------- Table (schedule etc.) ---------- */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: .7em .6em; border-bottom: 1px solid var(--panel-border); }
th { color: var(--gold-light); font-family: var(--font-display); font-weight: 600; }

/* ---------- Badges / notes ---------- */
.badge { display: inline-block; background: rgba(212,175,55,.15); color: var(--gold-light); border: 1px solid var(--gold-deep); border-radius: 999px; padding: .3em .9em; font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.note-box { background: rgba(53,86,214,.1); border: 1px solid rgba(53,86,214,.4); border-radius: var(--radius-md); padding: 1rem 1.25rem; font-size: .92rem; }
.warning-box { background: rgba(154,34,48,.12); border: 1px solid var(--red); border-radius: var(--radius-md); padding: 1rem 1.25rem; font-size: .92rem; }
.placeholder-box { border: 1px dashed var(--panel-border); border-radius: var(--radius-md); padding: 1rem 1.25rem; color: var(--text-faint); font-size: .88rem; }

/* ---------- Sticky mobile action bar ---------- */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(10,10,13,.96); border-top: 1px solid var(--panel-border); backdrop-filter: blur(8px); }
.sticky-btn { flex: 1; text-align: center; padding: .8em .5em; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: .92rem; }
.sticky-btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1305; }
.sticky-btn-outline { border: 2px solid var(--gold); color: var(--gold-light); }
body { padding-bottom: 76px; }
@media (min-width: 900px) { .sticky-bar { display: none; } body { padding-bottom: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--panel-border); padding: 3rem 0 6.5rem; }
.footer-inner { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-heading { color: var(--gold-light); font-family: var(--font-display); font-size: .95rem; margin-bottom: .6rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { color: var(--text-dim); text-decoration: none; font-size: .92rem; }
.footer-legal { max-width: var(--container); margin: 2rem auto 0; padding-inline: 1.25rem; color: var(--text-faint); font-size: .78rem; }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } .site-footer { padding-bottom: 3rem; } }

/* ---------- Final CTA band ---------- */
.cta-band { text-align: center; background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(192,38,163,.14)); border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border); }
.cta-band .btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

/* ---------- Utility ---------- */
.stack { display: flex; flex-direction: column; gap: 1rem; }
.text-center { text-align: center; }
.two-col { display: grid; gap: 2rem; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }
.divider { border: 0; border-top: 1px solid var(--panel-border); margin: 2.5rem 0; }
.legal-page main .container { max-width: 820px; }
.legal-page h2 { margin-top: 2rem; }
.map-embed-wrap { border: 1px solid var(--panel-border); border-radius: var(--radius-lg); overflow: hidden; }
.map-consent { padding: 2rem; text-align: center; background: var(--panel); }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; }
