/* =========================================================
   The Showcase Card Show — Design System (refined)
   Inspired by the logo: a soft neutral field, royal-blue ink,
   gold used sparingly as jewelry, deep navy for a few rich
   feature bands. Restraint and whitespace over saturated fields.
   ========================================================= */

/* ---------- Brand display font (self-hosted, from the logo) ---------- */
@font-face {
  font-family: "ChunkFive";
  src: url("../fonts/ChunkFive.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --blue:        #0b4ea8;   /* royal blue ink */
  --blue-600:    #1a5cbd;
  --navy-900:    #06183a;   /* deepest */
  --navy-800:    #0a2a5c;   /* feature bands (hero, footer) */
  --navy-700:    #103a72;
  --gold:        #d9a63c;   /* muted gold for accents on light */
  --gold-bright: #f4c04c;
  --gold-soft:   #f9cd55;   /* logo gold, used on navy */

  /* Neutrals */
  --paper:   #f4f6f9;   /* page field (soft, cool off-white) */
  --white:   #ffffff;   /* cards */
  --wash:    #eaf1fb;   /* light blue wash for soft accents */
  --ink:     #182238;   /* body text (slate) */
  --ink-dim: #43506e;
  --ink-mute:#758199;

  --line:    rgba(11, 78, 168, 0.14);
  --line-2:  rgba(11, 78, 168, 0.26);

  /* Roles */
  --bg:        var(--paper);
  --bg-2:      var(--white);
  --surface:   var(--white);
  --text:      var(--ink);
  --text-dim:  var(--ink-dim);
  --text-mute: #737f99;
  --border:    var(--line);
  --border-2:  var(--line-2);

  /* Type */
  --font-display: "ChunkFive", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --gap: 26px;

  --shadow-sm: 0 2px 10px rgba(10, 42, 92, 0.06);
  --shadow: 0 16px 40px -20px rgba(10, 42, 92, 0.28);
  --shadow-navy: 0 24px 60px -28px rgba(6, 24, 58, 0.65);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: 0.005em; margin: 0; color: var(--blue); }
p { margin: 0; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 16px; }
.muted { color: var(--text-mute); }
.dim { color: var(--text-dim); }
.holo-text { color: var(--gold); }   /* emphasis word = gold jewelry */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.lead { font-size: clamp(18px, 2.3vw, 21px); color: var(--text-dim); max-width: 60ch; line-height: 1.7; }

/* ---------- Promo bar ---------- */
.promobar {
  background: var(--navy-900);
  color: #eaf0fb;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.promobar a { color: var(--gold-soft); text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
/* default: solid royal blue on light backgrounds */
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(11,78,168,0.6); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(11,78,168,0.6); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--blue); }
.btn--ghost:hover { border-color: var(--blue); background: rgba(11,78,168,0.05); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 15.5px; }
.btn--block { width: 100%; justify-content: center; }

/* buttons on navy feature bands: gold primary, light ghost */
.on-navy .btn--primary, .hero .btn--primary, .page-head .btn--primary, .cta-band .btn--primary {
  background: var(--gold-soft); color: var(--navy-900); box-shadow: 0 12px 28px -14px rgba(0,0,0,0.5);
}
.on-navy .btn--primary:hover, .hero .btn--primary:hover, .page-head .btn--primary:hover, .cta-band .btn--primary:hover { background: var(--gold-bright); }
.on-navy .btn--ghost, .hero .btn--ghost, .page-head .btn--ghost, .cta-band .btn--ghost {
  border-color: rgba(255,255,255,0.4); color: #fff;
}
.on-navy .btn--ghost:hover, .hero .btn--ghost:hover, .page-head .btn--ghost:hover, .cta-band .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- Header / Nav (light, quiet) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 246, 249, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo { height: 54px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-dim); transition: color .15s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--blue); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--blue); }
.nav__toggle svg { width: 28px; height: 28px; }

.mobile-menu {
  display: none;
  position: fixed; inset: 84px 0 0 0; z-index: 99;
  background: var(--paper);
  padding: 28px 24px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 15px 0; font-family: var(--font-display); color: var(--blue); font-size: 26px; border-bottom: 1px solid var(--line); }
.mobile-menu .nav__cta { margin-top: 28px; flex-direction: column; align-items: stretch; }

/* ---------- Hero (deep navy feature band) ---------- */
.hero {
  position: relative; padding: 110px 0 100px; overflow: hidden;
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(31, 92, 190, 0.55), transparent 62%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.7;
}
.hero__glow { display: none; }
/* video background (poster painted behind so it never falls back to a blank gradient) */
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0a2a5c center/cover no-repeat url("../img/hero-poster-v2.jpg"); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,24,58,0.68) 0%, rgba(6,24,58,0.40) 52%, rgba(10,42,92,0.26) 100%),
    linear-gradient(0deg, rgba(6,24,58,0.55) 0%, rgba(6,24,58,0.10) 60%);
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { font-size: clamp(46px, 7.6vw, 92px); line-height: 0.98; letter-spacing: 0.005em; color: #fff; text-shadow: 0 2px 24px rgba(6,24,58,0.55); }
.hero .lead { margin-top: 24px; font-size: clamp(18px, 2.5vw, 23px); color: #eef3fc; text-shadow: 0 1px 16px rgba(6,24,58,0.7); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(233,240,251,0.9);
  max-width: 100%; flex-wrap: wrap;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 8px var(--gold-soft); }

/* Next-show strip — crisp white card on the navy hero */
.nextshow {
  position: relative; z-index: 1;
  margin-top: 42px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  padding: 20px 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-navy);
}
.nextshow__label { font-family: var(--font-display); color: var(--blue); font-size: 17px; letter-spacing: 0.01em; }
.nextshow__item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink-dim); font-weight: 500; }
.nextshow__item strong { color: var(--ink); font-weight: 700; }
.nextshow__item svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.nextshow__sep { width: 1px; height: 22px; background: var(--line-2); }

/* ---------- Proof band (light, airy stats) ---------- */
.proof { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__cell { padding: 54px 20px; text-align: center; border-right: 1px solid var(--line); }
.proof__cell:last-child { border-right: 0; }
.proof__num, .proof__num.holo-text { font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 58px); letter-spacing: 0.01em; color: var(--blue); }
.proof__lbl { color: var(--ink-mute); font-size: 13px; margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 660px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(32px, 4.6vw, 52px); }
.sec-head p { margin-top: 18px; color: var(--text-dim); font-size: 18px; line-height: 1.7; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card--hover:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 16px; }

.icon-badge {
  width: 50px; height: 50px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--wash); border: 1px solid var(--line);
  font-size: 23px;
}

/* Fork (two-path) cards */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.fork__card {
  position: relative; overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.fork__card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; z-index: 0; }
.fork__card--attend::before { background: var(--blue); }
.fork__card--sell::before { background: var(--gold); }
.fork__card > * { position: relative; z-index: 1; }
.fork__card h3 { font-size: 30px; margin-bottom: 12px; }
.fork__card p { color: var(--text-dim); margin-bottom: 26px; }

/* Category chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.chip:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.chip .emoji { font-size: 18px; }

/* Featured vendors strip */
.vlogos { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.vlogo {
  padding: 16px 26px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display); color: var(--blue); font-size: 18px;
  transition: border-color .2s, transform .2s;
}
.vlogo:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ---------- Show cards (schedule) ---------- */
.shows { display: grid; gap: 20px; }
.show {
  display: grid; grid-template-columns: 132px 1fr auto; gap: 30px; align-items: center;
  padding: 28px 32px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.show:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-2px); }
.show__date { text-align: center; padding-right: 28px; border-right: 1px solid var(--line); }
.show__mon { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px; color: var(--gold); }
.show__day { font-family: var(--font-display); font-size: 48px; line-height: 1; margin: 4px 0; color: var(--blue); }
.show__yr { color: var(--ink-mute); font-size: 13px; font-weight: 600; }
.show__body h3 { font-size: 23px; margin-bottom: 8px; }
.show__meta { display: flex; flex-wrap: wrap; gap: 6px 20px; color: var(--text-dim); font-size: 15px; }
.show__meta span { display: inline-flex; align-items: center; gap: 7px; }
.show__meta a:hover { color: var(--blue); }
.show__meta svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.show__actions { display: flex; flex-direction: column; gap: 10px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  font-family: var(--font-body); letter-spacing: 0.04em; text-transform: uppercase;
}
.tag--free { background: var(--wash); color: var(--blue); border: 1px solid var(--line); }
.tag--paid { background: rgba(217,166,60,0.16); color: #a9761b; border: 1px solid rgba(217,166,60,0.4); }

/* ---------- Pricing table ---------- */
.ptable { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.plan {
  display: flex; flex-direction: column;
  padding: 34px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.plan--featured { border-color: var(--gold); box-shadow: 0 20px 46px -22px rgba(217,166,60,0.5); }
.plan--featured .plan__tag { color: var(--navy-900); background: var(--gold-soft); display: inline-block; padding: 4px 12px; border-radius: 999px; }
.plan__tag { font-family: var(--font-body); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px; color: var(--gold); }
.plan__name { font-family: var(--font-display); font-size: 27px; margin: 12px 0 4px; color: var(--blue); }
.plan__price { font-family: var(--font-display); font-size: 46px; letter-spacing: 0.01em; margin: 12px 0; color: var(--ink); }
.plan__price small { font-size: 15px; color: var(--ink-mute); font-weight: 500; font-family: var(--font-body); }
.plan__list { list-style: none; padding: 0; margin: 12px 0 28px; display: grid; gap: 13px; }
.plan__list li { display: flex; gap: 11px; color: var(--text-dim); font-size: 15.5px; }
.plan__list svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 2px; }
.plan .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--gap); }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step__num {
  counter-increment: step; flex: none;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 21px;
  background: var(--blue); color: #fff;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 21px; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 16px; }

/* ---------- Embed region ---------- */
.embed-shell {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-sm);
  min-height: 200px;
}
.embed-note {
  border: 1.5px dashed var(--line-2); border-radius: var(--radius-sm);
  padding: 30px; text-align: center; color: var(--text-mute); font-size: 15px;
  background: var(--paper);
}
.embed-note strong { color: var(--blue); }

/* ---------- Directory ---------- */
.dir-controls { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; align-items: center; }
.dir-search {
  flex: 1; min-width: 220px;
  padding: 14px 18px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  font-size: 15px; font-family: var(--font-body); box-shadow: var(--shadow-sm);
}
.dir-search::placeholder { color: var(--text-mute); }
.dir-search:focus { outline: none; border-color: var(--blue); }
.dir-filter {
  padding: 10px 18px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--ink-dim); font-family: var(--font-body); font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em;
  transition: all .18s;
}
.dir-filter.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vendor {
  padding: 24px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.vendor:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.vendor h3 { font-size: 20px; margin-bottom: 6px; }
.vendor__cat { font-size: 12px; color: var(--gold); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.vendor__ig { margin-top: 12px; font-size: 14px; color: var(--text-mute); display: inline-flex; align-items: center; gap: 6px; }
.vendor__ig:hover { color: var(--blue); }
.dir-empty { grid-column: 1 / -1; text-align: center; padding: 40px; color: var(--text-mute); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq__group-label { font-family: var(--font-display); font-size: 22px; color: var(--blue); margin: 36px 0 8px; }
.faq__group-label:first-child { margin-top: 0; }
.qa { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.qa__q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--ink);
  padding: 21px 24px; font-family: var(--font-body); font-weight: 600; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.qa__q:hover { color: var(--blue); }
.qa__icon { flex: none; width: 22px; height: 22px; transition: transform .25s var(--ease); color: var(--gold); }
.qa.is-open .qa__icon { transform: rotate(45deg); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.qa__a-inner { padding: 0 24px 22px; color: var(--text-dim); font-size: 16px; }

/* ---------- CTA band (deep navy feature) ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 72px 48px; text-align: center;
  color: #fff;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(31, 92, 190, 0.5), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-navy);
}
.cta-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.cta-band h2 { font-size: clamp(30px, 4.6vw, 50px); color: #fff; }
.cta-band p { color: rgba(233,240,251,0.82); margin: 18px auto 32px; max-width: 52ch; font-size: 18px; }

/* ---------- Page header (interior) — navy band ---------- */
.page-head {
  position: relative; padding: 84px 0 66px; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 360px at 82% -10%, rgba(31, 92, 190, 0.5), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-bottom: 3px solid var(--gold-soft);
}
.page-head__glow { display: none; }
.page-head .eyebrow { color: var(--gold-soft); }
.page-head .eyebrow::before { background: var(--gold-soft); }
.page-head h1 { position: relative; font-size: clamp(40px, 6.4vw, 68px); color: #fff; }
.page-head p, .page-head .lead { position: relative; margin-top: 18px; color: rgba(233,240,251,0.82); }
.page-head p a, .page-head .lead a { color: var(--gold-soft); text-decoration: underline; }

/* ---------- Prose ---------- */
.prose { max-width: 720px; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: 30px; margin-top: 44px; }
.prose h3 { font-size: 22px; margin-top: 30px; }
.prose p, .prose li { color: var(--text-dim); font-size: 17px; line-height: 1.75; }
.prose ul { padding-left: 22px; display: grid; gap: 8px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field textarea, .field select {
  padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); }
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-info .card { padding: 26px; }

/* ---------- Footer (deep navy) ---------- */
.site-footer { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); padding: 64px 0 36px; color: #fff; border-top: 3px solid var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-col h4 { font-family: var(--font-display); font-size: 18px; color: var(--gold-soft); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(233,240,251,0.72); font-size: 15px; }
.footer-col a:hover { color: #fff; }
.brand--text { font-family: var(--font-display); color: #fff; font-size: 30px; line-height: 1.02; }
.footer-brand p { color: rgba(233,240,251,0.6); font-size: 15px; margin-top: 14px; max-width: 34ch; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(233,240,251,0.55); font-size: 14px; }
.footer-bottom a { color: rgba(233,240,251,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links, .nav__cta.desktop-only { display: none; }
  .nav__toggle { display: block; }
  .grid-3, .grid-4, .ptable, .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__cell:nth-child(2) { border-right: 0; }
  .proof__cell:nth-child(1), .proof__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .hero { padding: 40px 0 50px; }
  .hero .badge { font-size: 11px; padding: 6px 13px; letter-spacing: 0.05em; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 62px); }
  .hero .lead { margin-top: 18px; }
  .hero__cta { margin-top: 26px; }
  .nextshow { margin-top: 28px; padding: 16px 20px; }
  .grid-2, .fork, .contact-grid { grid-template-columns: 1fr; }
  .show { grid-template-columns: 1fr; gap: 18px; }
  .show__date { display: flex; align-items: baseline; gap: 10px; text-align: left; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 14px; }
  .show__day { font-size: 32px; margin: 0; }
  .show__actions { flex-direction: row; }
  .show__actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 540px) {
  .grid-3, .grid-4, .ptable, .dir-grid, .proof__grid { grid-template-columns: 1fr; }
  .proof__cell { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nextshow { flex-direction: column; align-items: flex-start; }
  .nextshow__sep { display: none; }
  .cta-band { padding: 52px 26px; }
  .brand__logo { height: 46px; }
}

@media (max-width: 760px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(6,24,58,0.60) 0%, rgba(6,24,58,0.74) 55%, rgba(6,24,58,0.88) 100%); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* hero video still plays; the poster background guarantees imagery either way */
}
