/* =========================================================
   Livonia Coin Show — branded stylesheet
   Black + gold flyer aesthetic. Color tokens in :root.
   ========================================================= */
:root {
  /* Brand colors pulled from flyer + logo */
  --black:        #0a0a0a;
  --black-2:      #141414;
  --black-3:      #1c1c1c;
  --navy-deep:    #0c1726;
  --gold:         #d4a548;
  --gold-bright:  #f3c969;
  --gold-deep:    #a87c25;
  --gold-pale:    #f7e3a8;
  --cream:        #fff7e0;
  --white:        #ffffff;
  --text:         #f5efe1;
  --muted:        #b9a988;
  --line:         rgba(212, 165, 72, 0.28);
  --shadow-lg:    0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-md:    0 12px 30px rgba(0, 0, 0, 0.45);
  --radius:       18px;
  --max-width:    1200px;

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script:  "Great Vibes", "Snell Roundhand", cursive;

  /* Reusable gold gradients */
  --grad-gold: linear-gradient(180deg, #fbe28b 0%, #e8be5f 35%, #d4a548 55%, #a87c25 100%);
  --grad-gold-flat: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--gold-bright); }
img { max-width: 100%; display: block; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--black);
  padding: 10px 16px; z-index: 100; font-weight: 800; border-radius: 6px;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Gold text effect ---------- */
.gold-text,
.h1-huge,
.h1-medium,
.next-date,
.section-heading h2,
.aside-panel h2,
.contact-inner h2,
legend {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 18px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  height: 56px; width: auto;
  border-radius: 6px;
  filter: drop-shadow(0 4px 10px rgba(212, 165, 72, 0.18));
}
.nav-links {
  display: flex; align-items: center; gap: 22px; font-size: 14px;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-links a {
  color: var(--text); text-decoration: none; opacity: 0.85; transition: color 0.15s, opacity 0.15s;
}
.nav-links a:hover { color: var(--gold-bright); opacity: 1; }

.nav-toggle {
  display: none; background: transparent;
  border: 1px solid var(--line); border-radius: 8px;
  width: 44px; height: 44px; padding: 0; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 4px auto; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 12px 26px; border-radius: 999px;
  border: 0; font-weight: 800; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  font-family: var(--font-body);
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.button-primary {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(212, 165, 72, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 220, 140, 0.5);
}
.button-ghost {
  background: transparent; color: var(--gold-bright);
  border: 1.5px solid var(--gold);
}
.full-width { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--black);
  padding: 56px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 165, 72, 0.18), transparent 35%),
    radial-gradient(circle at 15% 85%, rgba(212, 165, 72, 0.10), transparent 40%),
    url("../assets/flyer.jpg") center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(1.1);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--grad-gold-flat);
}
.hero-inner {
  position: relative;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block; color: var(--gold-bright);
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 12px; margin-bottom: 18px;
  padding: 8px 16px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(212, 165, 72, 0.06);
}

h1 { margin: 0; font-family: var(--font-display); font-weight: 900; line-height: 0.95; }
.h1-line { display: block; }
.h1-small {
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--white); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  opacity: 0.92;
}
.h1-small em {
  font-style: normal; font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}
.h1-huge {
  font-size: clamp(64px, 12vw, 140px);
  letter-spacing: -0.01em; line-height: 0.9;
  text-transform: uppercase; margin: 6px 0 0;
}
.h1-medium {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tagline {
  margin: 22px 0 0; font-size: clamp(18px, 2vw, 22px);
  color: var(--white); letter-spacing: 0.04em;
  font-weight: 600; text-transform: uppercase;
}
.tagline strong {
  font-family: var(--font-display); font-weight: 900;
  color: var(--gold-bright); font-size: 1.35em; padding: 0 4px;
}

.badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 24px;
  padding: 16px 22px; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 14px; color: var(--white);
}
.b-icon {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-gold); color: var(--black);
  font-weight: 900; font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.sep { color: var(--gold); opacity: 0.4; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- Next show card ---------- */
.next-show-card {
  position: relative;
  background: linear-gradient(180deg, var(--black-2), var(--black));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.next-show-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 165, 72, 0.18), transparent 50%),
    radial-gradient(circle at bottom left, rgba(212, 165, 72, 0.08), transparent 60%);
  pointer-events: none;
}

/* Premier Coin Show seal */
.seal {
  position: absolute; top: -22px; right: -22px;
  width: 130px; height: 130px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  display: grid; place-items: center;
  border: 4px solid var(--black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  transform: rotate(8deg);
  z-index: 2;
}
.seal::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%;
  border: 1.5px dashed rgba(0, 0, 0, 0.35);
}
.seal-inner {
  position: relative; text-align: center;
  font-family: var(--font-display); color: #2b1d05;
  line-height: 1; padding: 4px;
}
.seal-top, .seal-bot { display: block; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.seal-mid { display: block; font-size: 17px; font-weight: 900; text-transform: uppercase; margin: 2px 0; }

.next-label {
  position: relative; z-index: 1;
  display: inline-block;
  background: var(--grad-gold); color: var(--black);
  font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 12px; padding: 6px 14px; border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.next-date {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(54px, 7vw, 84px); line-height: 1;
  margin: 14px 0 4px; letter-spacing: -0.01em;
}
.next-sub {
  position: relative; z-index: 1;
  color: var(--muted); letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 12px; font-weight: 700;
}
.hero-list {
  position: relative; z-index: 1;
  list-style: none; padding: 0; margin: 22px 0;
  display: grid; gap: 8px; text-align: left;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 16px 0;
}
.hero-list li { color: var(--cream); font-size: 14px; }
.phone-icon {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.2); font-size: 12px;
}
.script-line {
  position: relative; z-index: 1;
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: 30px; margin: 14px 0 0;
}

/* ---------- Generic section ---------- */
.section-heading {
  display: flex; justify-content: space-between; align-items: end;
  gap: 28px; margin-bottom: 36px;
}
.section-heading.center {
  flex-direction: column; align-items: center; text-align: center;
}
.section-heading.center p { max-width: 640px; }
.section-heading h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1;
  margin: 0; letter-spacing: 0.02em; text-transform: uppercase;
}
.section-heading h2::after {
  content: ""; display: block; height: 3px; width: 80px; margin-top: 14px;
  background: var(--grad-gold-flat); border-radius: 3px;
}
.section-heading.center h2::after { margin-left: auto; margin-right: auto; }
.section-heading p { color: var(--muted); line-height: 1.6; margin: 0; max-width: 560px; }

/* ---------- Details band ---------- */
.details-band {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.detail-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: left;
  transition: transform 0.18s, border-color 0.18s, background 0.18s;
}
.detail-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 165, 72, 0.08), rgba(255, 255, 255, 0.01));
}
.d-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-gold); color: var(--black);
  font-size: 20px; margin-bottom: 14px; font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.detail-card .label {
  display: block; color: var(--muted); font-size: 12px;
  text-transform: uppercase; font-weight: 800; letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.detail-card strong {
  display: block; color: var(--white); font-size: 18px;
  font-weight: 700; line-height: 1.3;
}
.detail-card strong a { color: var(--gold-bright); text-decoration: none; }

/* ---------- Dates ---------- */
.dates-band { padding: 80px 0; background: var(--black); }
.date-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.date-card {
  position: relative;
  background: linear-gradient(180deg, var(--black-2), var(--black-3));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 12px 16px;
  text-align: center;
  transition: transform 0.18s, border-color 0.18s;
}
.date-card:hover { transform: translateY(-2px); border-color: var(--gold); }
.date-card .month {
  display: block; color: var(--muted); font-size: 11px;
  text-transform: uppercase; font-weight: 800; letter-spacing: 0.12em;
}
.date-card .day {
  display: block; margin-top: 6px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--white); line-height: 1;
}
.date-card.is-next {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  border-color: var(--gold-bright);
  box-shadow: 0 14px 30px rgba(212, 165, 72, 0.35);
  transform: translateY(-3px);
}
.date-card.is-next .month { color: rgba(20, 12, 0, 0.7); }
.date-card.is-next .day { color: #1a1100; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); }
.date-card .badge-next {
  display: inline-block; margin-top: 8px;
  font-size: 9px; font-weight: 900; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-bright);
  background: var(--black); padding: 3px 8px; border-radius: 999px;
}
.date-card.is-past { opacity: 0.4; }

/* ---------- Features ---------- */
.features-band {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  border-top: 1px solid var(--line);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; min-height: 200px;
  transition: transform 0.18s, border-color 0.18s;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold); color: var(--black);
  font-size: 24px; font-weight: 900;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.feature-card h3 {
  font-family: var(--font-display); color: var(--gold-bright);
  font-size: 22px; font-weight: 700; margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.feature-card p { color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- Registration ---------- */
.register-band {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.registration-wrap {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px;
  align-items: start;
}
.aside-panel {
  background: linear-gradient(180deg, var(--black-2), var(--black-3));
  border: 1px solid var(--line);
  border-radius: 24px; padding: 36px 30px;
  box-shadow: var(--shadow-md);
  position: sticky; top: 90px;
}
.aside-panel h2 {
  font-family: var(--font-display); font-size: 36px;
  margin: 0 0 14px; line-height: 1.05; text-transform: uppercase;
}
.aside-panel p { color: var(--muted); line-height: 1.65; margin: 0; }
.check-list {
  list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px;
}
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--cream); font-size: 15px;
}
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-gold); color: var(--black);
  font-weight: 900; font-size: 13px;
  margin-top: 1px;
}
.phone-box {
  margin-top: 22px; border-radius: 16px; padding: 18px 20px;
  background: linear-gradient(180deg, rgba(212, 165, 72, 0.12), rgba(212, 165, 72, 0.04));
  border: 1px solid var(--gold); display: grid; gap: 4px;
}
.phone-box span {
  color: var(--gold-bright); text-transform: uppercase;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
}
.phone-box strong { color: var(--white); font-size: 14px; }
.phone-box a {
  color: var(--gold-bright); font-family: var(--font-display);
  font-size: 28px; font-weight: 900; text-decoration: none;
}

.form-card {
  background: linear-gradient(180deg, #fdf9ee, #f7eed4);
  border: 1px solid var(--gold);
  border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-lg);
  color: #2c2310;
}
form { display: grid; gap: 26px; }
fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 16px; }
legend {
  width: 100%; font-family: var(--font-display);
  font-size: 24px; font-weight: 700; margin-bottom: 4px;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-shadow: none;
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 6px; }
label { font-weight: 700; color: #2c2310; font-size: 13px; letter-spacing: 0.02em; }
input, select, textarea {
  width: 100%; min-height: 46px;
  border: 1px solid rgba(168, 124, 37, 0.4);
  border-radius: 10px; padding: 11px 14px;
  font: inherit; background: var(--white); color: #2c2310;
  font-family: var(--font-body);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(212, 165, 72, 0.28);
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }
.full { grid-column: 1 / -1; }

.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  line-height: 1.5; color: #5a4710; font-size: 13px;
}
.checkbox-row input { width: auto; min-height: auto; margin-top: 3px; }

.form-note {
  border-radius: 12px; padding: 14px 16px;
  background: rgba(212, 165, 72, 0.18);
  border: 1px solid var(--gold-deep);
  color: #4a3608; line-height: 1.5; font-size: 14px;
}
.form-status { margin: 0; font-weight: 700; min-height: 1.4em; color: #2c2310; }
.form-status.is-success { color: #1a6e2a; }
.form-status.is-error { color: #8b1e2d; }

/* ---------- Contact band ---------- */
.contact-band {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)),
    var(--grad-gold-flat);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.contact-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.contact-inner h2 {
  font-family: var(--font-display); font-size: 38px;
  margin: 0; text-transform: uppercase; letter-spacing: 0.02em;
}
.contact-inner p { color: var(--muted); margin: 8px 0 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--muted); padding: 36px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 70px; width: auto; border-radius: 6px;
  filter: drop-shadow(0 4px 10px rgba(212, 165, 72, 0.18));
}
.footer-meta { flex: 1; min-width: 260px; }
.footer-meta p { margin: 4px 0; font-size: 14px; line-height: 1.5; }
.footer-meta strong { color: var(--gold-bright); }
.footer-perks { color: var(--gold); font-weight: 700; letter-spacing: 0.06em; font-size: 13px; }
.footer .copy { font-size: 12px; opacity: 0.6; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner,
  .registration-wrap { grid-template-columns: 1fr; }
  .detail-grid,
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .date-grid { grid-template-columns: repeat(3, 1fr); }
  .aside-panel { position: static; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section-heading.center { align-items: center; }
}

@media (max-width: 680px) {
  .nav-toggle { display: block; order: 3; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    gap: 14px; padding: 14px 0 4px; order: 4;
  }
  .nav-links.is-open { display: flex; }
  .nav { flex-wrap: wrap; }
  .brand-logo { height: 46px; }

  .hero { padding: 36px 0 60px; }
  .h1-huge { font-size: clamp(56px, 18vw, 96px); }
  .badges { gap: 8px; padding: 12px 14px; }
  .sep { display: none; }

  .seal { width: 100px; height: 100px; top: -16px; right: -16px; }
  .seal-mid { font-size: 14px; }

  .detail-grid,
  .feature-grid,
  .field-grid { grid-template-columns: 1fr; }
  .date-grid { grid-template-columns: repeat(2, 1fr); }

  .form-card { padding: 26px 22px; }
  .contact-inner { display: block; text-align: center; }
  .contact-inner .button { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover, .date-card:hover, .feature-card:hover, .detail-card:hover { transform: none; }
}

/* =========================================================
   Theme picker UI
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.theme-picker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(255, 255, 255, 0.04);
}
.theme-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4); padding: 0; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.theme-swatch:hover { transform: scale(1.1); }
.theme-swatch[aria-checked="true"] {
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.theme-swatch--gold {
  background: linear-gradient(135deg, #f3c969 0%, #d4a548 50%, #0a0a0a 50%, #1c1c1c 100%);
}
.theme-swatch--patriot {
  background: linear-gradient(135deg, #b22234 0%, #b22234 33%, #ffffff 33%, #ffffff 66%, #1f3a8a 66%, #1f3a8a 100%);
}

/* =========================================================
   Patriotic theme — Red, White & Blue
   Activated via <html data-theme="patriot">
   ========================================================= */
[data-theme="patriot"] {
  --black:        #0b1638;   /* deep navy stands in for "black" */
  --black-2:      #122050;
  --black-3:      #1a2c66;
  --navy-deep:    #0b1638;

  --gold:         #b22234;   /* Old Glory red as primary accent */
  --gold-bright:  #e63946;   /* brighter red for hovers/links */
  --gold-deep:    #7a1622;
  --gold-pale:    #ffd1d6;

  --cream:        #f8fafc;
  --white:        #ffffff;
  --text:         #f5f7ff;
  --muted:        #b9c3e8;
  --line:         rgba(255, 255, 255, 0.22);

  --grad-gold:
    linear-gradient(180deg, #ffffff 0%, #e63946 50%, #b22234 100%);
  --grad-gold-flat:
    linear-gradient(135deg, #e63946, #b22234, #1f3a8a);
}

/* Patriotic-specific overrides for elements that need
   a distinct red/white/blue treatment */
[data-theme="patriot"] body {
  background: var(--navy-deep);
}
[data-theme="patriot"] .hero {
  background:
    linear-gradient(180deg, #0b1638 0%, #1f3a8a 100%);
}
[data-theme="patriot"] .hero-bg {
  background:
    radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.22), transparent 35%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08), transparent 40%),
    /* Stars-and-stripes pattern: red horizontal stripes + blue canton */
    repeating-linear-gradient(
      180deg,
      rgba(178, 34, 52, 0.18) 0 28px,
      transparent 28px 56px
    );
  opacity: 0.55;
}
[data-theme="patriot"] .hero::after {
  background: linear-gradient(90deg, #b22234 0%, #ffffff 50%, #1f3a8a 100%);
  height: 6px;
}

/* Headings: white instead of red-gradient text for readability */
[data-theme="patriot"] .h1-huge,
[data-theme="patriot"] .next-date {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 60%, #c8d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}
[data-theme="patriot"] .h1-small em { color: #ffd1d6; }
[data-theme="patriot"] .section-heading h2,
[data-theme="patriot"] .aside-panel h2,
[data-theme="patriot"] .contact-inner h2 {
  background: linear-gradient(180deg, #ffffff 0%, #ffd1d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="patriot"] legend {
  background: linear-gradient(135deg, #1f3a8a, #b22234);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow + small accents read better in red on dark navy */
[data-theme="patriot"] .eyebrow { color: #ffd1d6; }
[data-theme="patriot"] .feature-card h3 { color: #ffd1d6; }
[data-theme="patriot"] .h1-small { color: #ffffff; }
[data-theme="patriot"] .tagline strong { color: #ffffff; }

/* Buttons: red gradient with white text */
[data-theme="patriot"] .button-primary {
  background: linear-gradient(135deg, #e63946, #b22234);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 24px rgba(178, 34, 52, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
[data-theme="patriot"] .button-ghost {
  color: #ffffff; border-color: #ffffff;
}

/* Round icons / accents become red */
[data-theme="patriot"] .b-icon,
[data-theme="patriot"] .d-icon,
[data-theme="patriot"] .feature-icon,
[data-theme="patriot"] .check-list li::before {
  background: linear-gradient(135deg, #e63946, #b22234);
  color: #ffffff;
}

/* Hero "Premier" seal becomes a blue star-spangled medallion */
[data-theme="patriot"] .seal {
  background:
    radial-gradient(circle at 35% 30%, #2a4fb8, #1f3a8a 50%, #0b1638);
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}
[data-theme="patriot"] .seal::before { border-color: rgba(255, 255, 255, 0.55); }
[data-theme="patriot"] .seal-inner { color: #ffffff; }

/* Next-show label band */
[data-theme="patriot"] .next-label {
  background: linear-gradient(135deg, #e63946, #b22234);
  color: #ffffff;
}
[data-theme="patriot"] .script-line { color: #ffd1d6; }

/* Date grid: "next show" tile in patriotic red */
[data-theme="patriot"] .date-card.is-next {
  background: linear-gradient(180deg, #e63946, #b22234 60%, #7a1622);
  border-color: #ffffff;
  box-shadow: 0 14px 30px rgba(178, 34, 52, 0.45);
}
[data-theme="patriot"] .date-card.is-next .month { color: rgba(255, 255, 255, 0.85); }
[data-theme="patriot"] .date-card.is-next .day {
  color: #ffffff; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
[data-theme="patriot"] .date-card .badge-next {
  color: #ffffff; background: #1f3a8a;
}

/* Form card: white card on navy page, red focus */
[data-theme="patriot"] .form-card {
  background: #ffffff;
  border-color: #1f3a8a;
  color: #0b1638;
}
[data-theme="patriot"] .form-card label,
[data-theme="patriot"] .form-card input,
[data-theme="patriot"] .form-card select,
[data-theme="patriot"] .form-card textarea {
  color: #0b1638;
}
[data-theme="patriot"] .form-card input,
[data-theme="patriot"] .form-card select,
[data-theme="patriot"] .form-card textarea {
  border-color: rgba(31, 58, 138, 0.4);
}
[data-theme="patriot"] .form-card input:focus,
[data-theme="patriot"] .form-card select:focus,
[data-theme="patriot"] .form-card textarea:focus {
  border-color: #b22234;
  box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.25);
}
[data-theme="patriot"] .form-note {
  background: rgba(31, 58, 138, 0.08);
  border-color: #1f3a8a; color: #0b1638;
}
[data-theme="patriot"] .checkbox-row { color: #1f3a8a; }

/* Phone box: white text on red */
[data-theme="patriot"] .phone-box {
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.18), rgba(31, 58, 138, 0.12));
  border-color: #ffffff;
}
[data-theme="patriot"] .phone-box span,
[data-theme="patriot"] .phone-box a { color: #ffffff; }

/* Header / contact band tweaks */
[data-theme="patriot"] .site-header {
  background: rgba(11, 22, 56, 0.94);
}
[data-theme="patriot"] .nav-links a:hover { color: #ffd1d6; }
[data-theme="patriot"] .contact-band {
  background:
    linear-gradient(180deg, rgba(11, 22, 56, 0.92), rgba(11, 22, 56, 0.96)),
    linear-gradient(135deg, #e63946, #1f3a8a);
  border-color: #ffffff;
}
[data-theme="patriot"] .footer-meta strong { color: #ffd1d6; }
[data-theme="patriot"] .footer-perks { color: #ffffff; }

/* Theme swatch active ring uses the active accent */
[data-theme="patriot"] .theme-swatch[aria-checked="true"] {
  box-shadow: 0 0 0 2px #ffffff;
}

/* ========== FAQ ========== */
.faq-band {
  background: linear-gradient(180deg, var(--black-2, #111) 0%, var(--black, #0a0a0a) 100%);
  padding: 4rem 1rem;
  border-top: 1px solid rgba(212, 165, 72, 0.2);
}
.faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 165, 72, 0.25);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item[open] {
  background: rgba(212, 165, 72, 0.06);
  border-color: rgba(212, 165, 72, 0.55);
}
.faq-item summary {
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-bright, #f3c969);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold, #d4a548);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.98rem;
}
.faq-item a { color: var(--gold-bright, #f3c969); }

/* Patriot theme */
[data-theme="patriot"] .faq-band {
  background: linear-gradient(180deg, #0a1a3a 0%, #050d1f 100%);
  border-top-color: rgba(255, 255, 255, 0.2);
}
[data-theme="patriot"] .faq-item {
  border-color: rgba(255, 255, 255, 0.25);
}
[data-theme="patriot"] .faq-item[open] {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.6);
}
[data-theme="patriot"] .faq-item summary { color: #ffffff; }
[data-theme="patriot"] .faq-item summary::after { color: #ef4444; }
[data-theme="patriot"] .faq-item a { color: #ef4444; }
