/* ==========================================================================
   McAlester Extreme Bulls — site styles
   Colour scheme matched to 3ringproductions.com: near-black zinc surfaces
   with a bright orange accent. Type is still taken from the event flyers.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  /* Zinc scale, sampled from 3ringproductions.com */
  --zinc-950:  #09090b;   /* page background          */
  --zinc-900:  #111114;   /* alternating sections     */
  --zinc-850:  #17171b;   /* cards                    */
  --zinc-800:  #1e1e23;   /* raised surfaces          */
  --line:      #2c2c33;   /* hairline borders         */
  --line-2:    #3f3f48;   /* stronger borders         */

  --orange:     #f26620;  /* primary accent           */
  --orange-hot: #ff8a45;  /* hover / highlight        */

  --text:       #e9e9ec;
  --muted:      #b4b4bd;
  --muted-2:    #8e8e99;
  --muted-3:    #6b6b76;

  /* Light plaque used behind the logo and sponsor artwork, which are both
     drawn for light backgrounds. */
  --plaque:     #f2ede3;
  --plaque-line:#d9d2c4;

  --shadow-lg:  0 24px 60px rgba(0, 0, 0, .6);
  --shadow-md:  0 12px 32px rgba(0, 0, 0, .45);
  --shadow-sm:  0 4px 16px rgba(0, 0, 0, .35);

  --wrap:       1180px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);

  --font-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-script:  "Caveat Brush", "Segoe Script", cursive;
  --font-head:    "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Section-scoped defaults */
  --fg: var(--text);
  --card-bg: var(--zinc-850);
  --card-line: var(--line);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--zinc-950);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hot); }

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1;
  margin: 0 0 .5em;
  font-weight: 400;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-family: var(--font-head); font-weight: 700; }

p { margin: 0 0 1.1em; }

.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--muted);
  max-width: 62ch;
}

/* Brush-script accent, matching "presented by" on the flyers */
.script {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: .01em;
  font-size: 1.35em;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--orange);
  margin: 0 0 .6rem;
  line-height: 1.15;
}

/* Large variant, used where the eyebrow IS the section heading */
.eyebrow--lg {
  letter-spacing: .04em;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: .5rem;
}

/* --- Layout ------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* Alternating band, one step up from the page background */
.section--alt {
  background: var(--zinc-900);
  border-block: 1px solid var(--line);
  --card-bg: var(--zinc-850);
  --card-line: var(--line);
}

/* Deeper band, sits flush with the page background */
.section--deep {
  background: var(--zinc-950);
  --card-bg: var(--zinc-850);
  --card-line: var(--line);
}

.section-head { max-width: 70ch; margin-bottom: 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* Decorative rule with a diamond */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}
.rule::before, .rule::after {
  content: "";
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.rule span {
  width: 9px; height: 9px;
  background: var(--orange);
  transform: rotate(45deg);
  flex: none;
}
.section-head--center .rule { margin-inline: auto; max-width: 340px; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 1.02rem;
  font-weight: 700;
  padding: .9rem 1.8rem;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--orange);
  color: #0b0b0d;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--orange-hot); color: #0b0b0d; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn--lg { font-size: 1.15rem; padding: 1.05rem 2.4rem; }
.btn--block { width: 100%; }

/* Not a true "unavailable" control — it reads "Tickets Coming Soon", so the
   label has to stay legible. */
.btn.is-disabled {
  background: var(--zinc-800);
  color: var(--muted);
  border-color: var(--line-2);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 104px;
}

/* The logo artwork has a dark bull and dark "Choctaw" wordmark, so it sits on
   a light plaque rather than directly on the near-black header. */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  background: var(--plaque);
  border-radius: 6px;
  padding: .45rem .7rem;
  transition: transform .15s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand img { height: 78px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  padding: .35rem 0;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--orange); border-bottom-color: var(--orange); }

.nav-cta { flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: .5rem .6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  /* Let the links list wrap onto its own row beneath the logo + buttons. */
  /* Sized so the logo, ticket button and hamburger stay on one row down to
     360px-wide phones. */
  .nav { flex-wrap: wrap; padding-block: .7rem; min-height: 0; gap: .8rem; }
  .brand img { height: 56px; }

  .nav-toggle { display: block; order: 3; }
  .nav-cta { order: 2; margin-left: auto; }
  .nav-cta .btn { padding: .65rem 1.1rem; font-size: .85rem; }

  .nav-links {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }
  .nav-links.is-open { max-height: 420px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: .95rem 0; border-bottom: none; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 65% at 50% 6%, rgba(242, 102, 32, .26), transparent 68%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(255, 138, 69, .08), transparent 70%),
    var(--zinc-950);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(112deg, rgba(255, 255, 255, .012) 0 2px, transparent 2px 8px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--orange-hot);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: .35rem 1.3rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, .03);
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: .88;
  margin-bottom: .6rem;
  text-shadow: 0 6px 34px rgba(0, 0, 0, .6);
}
.hero h1 em {
  font-style: normal;
  display: block;
  font-size: .54em;
  letter-spacing: .015em;
  margin-top: .12em;
  color: var(--orange);
}

.hero .lede { margin-inline: auto; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .7rem 1.5rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  color: var(--text);
  margin: 1.4rem 0 0;
}
.hero-meta .dot { color: var(--orange); }

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

/* Price flash, echoing "TICKETS STARTING AT JUST $10" on the poster */
.price-flash {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--orange-hot);
  margin: 1.5rem 0 0;
  line-height: 1.15;
}

/* --- Countdown ---------------------------------------------------------- */
.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.5rem, 2vw, 1.25rem);
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}
.countdown li {
  background: var(--zinc-900);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .85rem clamp(.85rem, 3vw, 1.6rem);
  min-width: 82px;
}
.countdown .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
  color: var(--orange);
}
.countdown .lbl {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  font-size: .7rem;
  color: var(--muted-3);
  margin-top: .45rem;
}
.countdown.is-live .num { color: var(--orange-hot); }

/* --- Cards -------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-line);
  border-radius: 4px;
  padding: 1.85rem;
  color: var(--fg);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--orange); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.card .icon {
  width: 42px; height: 42px;
  color: var(--orange);
  margin-bottom: 1rem;
}
.card--static:hover { transform: none; border-color: var(--card-line); }

/* --- Detail lists ------------------------------------------------------- */
.dl { margin: 0; display: grid; gap: 0; }
.dl > div {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  justify-content: space-between;
  padding: .95rem 0;
  border-bottom: 1px solid var(--card-line);
}
.dl > div:last-child { border-bottom: none; }
.dl dt {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted-2);
}
.dl dd { margin: 0; font-weight: 600; text-align: right; color: var(--text); }

/* --- Schedule ----------------------------------------------------------- */
.night {
  background: var(--card-bg);
  border: 1px solid var(--card-line);
  border-left: 5px solid var(--orange);
  border-radius: 4px;
  padding: 1.85rem;
}
.night-day {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--orange-hot);
  margin-bottom: .1rem;
}
.night-date {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: flex;
  gap: 1.1rem;
  padding: .68rem 0;
  border-bottom: 1px dashed var(--card-line);
}
.timeline li:last-child { border-bottom: none; }
.timeline time {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text);
  flex: none;
  min-width: 82px;
}
.timeline span { color: var(--muted); }

/* --- Gallery ------------------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--card-line);
  border-radius: 4px;
  background: var(--zinc-850);
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover { border-color: var(--orange); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 600;
  font-size: .82rem;
  text-align: left;
  color: #fff;
}

.gallery-item--empty {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
}
.gallery-item--empty:hover { border-color: var(--card-line); }
.gallery-item--empty span {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  font-size: .78rem;
  color: var(--muted-3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 6, .96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-caption {
  text-align: center;
  color: var(--muted-2);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .85rem;
  margin-top: 1rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(23, 23, 27, .8);
  border: 1px solid var(--line-2);
  color: var(--text);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover,
.lightbox-nav:hover { border-color: var(--orange); color: var(--orange); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* --- Sponsors ----------------------------------------------------------- */
.tier { margin-bottom: 3.25rem; }
.tier:last-child { margin-bottom: 0; }
.tier-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .4rem 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .7rem;
  border-bottom: 3px solid var(--orange);
}
.tier-head h3 { margin: 0; }

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1rem;
}

/* Sponsor artwork is almost always drawn for light backgrounds, so these
   tiles stay light even on the dark page. */
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: .75rem;
  /* White rather than cream: most sponsor artwork has a white background,
     so white lets those logos sit seamlessly in the tile. */
  background: #fff;
  border: 1px solid var(--plaque-line);
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: 1rem;
  color: #1c1f19;
  transition: border-color .2s ease, transform .2s ease;
}
.sponsor-logo:hover { border-color: var(--orange); transform: translateY(-3px); color: #1c1f19; }
.sponsor-logo img {
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}

.sponsor-logo--presenting {
  min-height: 200px;
  border-color: var(--orange);
  border-width: 2px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0;
}
.sponsor-logo--presenting img { max-height: 168px; }

.sponsor-logo--empty {
  border-style: dashed;
  border-color: var(--line-2);
  background: transparent;
  color: var(--muted-3);
  font-size: .78rem;
  letter-spacing: .16em;
}
.sponsor-logo--empty:hover {
  transform: none;
  border-color: var(--line-2);
  color: var(--muted-3);
}

.benefits { list-style: none; margin: 0; padding: 0; }
.benefits li {
  position: relative;
  padding: .45rem 0 .45rem 1.7rem;
  color: var(--muted);
}
.benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05em;
  width: 8px; height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}
.benefits li strong { color: var(--text); font-weight: 600; }

/* --- Forms -------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  font-size: .86rem;
  color: var(--muted-2);
}
.field input,
.field select,
.field textarea {
  background: var(--zinc-950);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .82rem 1rem;
  width: 100%;
}
.field textarea { min-height: 155px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 102, 32, .2);
}
.field .hint { font-size: .82rem; color: var(--muted-3); }

.form-note {
  background: var(--zinc-850);
  border: 1px solid var(--card-line);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: .92rem;
  color: var(--muted);
}
.form-note strong { color: var(--text); }
.form-note code {
  background: var(--zinc-800);
  border-radius: 3px;
  padding: .1rem .35rem;
  font-size: .9em;
  color: var(--orange-hot);
}

/* --- Map ---------------------------------------------------------------- */
.map-frame {
  border: 1px solid var(--card-line);
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  background: var(--zinc-850);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* --- Ticket call-to-action band ----------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 130% at 50% 0%, rgba(242, 102, 32, .22), transparent 70%),
    var(--zinc-900);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band .lede { margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* --- Page banner (interior pages) --------------------------------------- */
.page-banner {
  position: relative;
  background:
    radial-gradient(ellipse 80% 110% at 50% 0%, rgba(242, 102, 32, .2), transparent 70%),
    var(--zinc-950);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}
.page-banner h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); }
.page-banner .lede { margin-inline: auto; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--zinc-900);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: .95rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-bottom: 3rem;
}
.footer-grid h4 {
  font-size: .92rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--orange); }
.footer-grid p { color: var(--muted-2); }

/* Logo plaque — same reasoning as the header */
.footer-logo {
  display: inline-block;
  background: var(--plaque);
  border-radius: 6px;
  padding: .8rem 1rem;
  margin-bottom: 1.1rem;
}
.footer-logo img { height: 84px; width: auto; }

.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--text);
}
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.socials svg { width: 19px; height: 19px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.5rem;
  justify-content: space-between;
  color: var(--muted-3);
  font-size: .85rem;
}

/* --- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .cta-band, .btn-row { display: none; }
  body { background: #fff; color: #000; }
}

/* --- Hero date block ----------------------------------------------------
   Date sits large and centred, with the start time and venue beneath it at a
   matching smaller size, echoing the flyer layout.                          */
.hero-date {
  font-family: var(--font-display);
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--text);
  margin: 1.9rem 0 .8rem;
}
.hero-sub {
  font-family: var(--font-display);
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.15rem, 2.8vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--orange);
  margin: 0 0 .3rem;
}

/* --- Compact feature cards (icon + title only) --------------------------- */
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }

.card--compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.1rem 1.2rem;
}
.card--compact .icon { margin: 0 0 1rem; }
.card--compact h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.1;
}

/* --- 2026 Partners banner ------------------------------------------------
   Deliberately not inside .wrap, so the logo wall spans the full page width. */
.partners-banner {
  background: linear-gradient(180deg, var(--zinc-900), var(--zinc-950));
  border-block: 1px solid var(--line);
}
.partners-inner {
  width: 100%;
  padding-inline: clamp(1.25rem, 3vw, 3rem);
}
.partners-title {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin-bottom: 1.8rem;
}
.partners-banner .sponsor-logos {
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}

/* The presenting tier holds a single tile, so it should fill its container
   rather than being split into auto-fill columns. */
.sponsor-logos[data-sponsor-tier="presenting"] { grid-template-columns: 1fr; }

/* --- Gallery empty state ------------------------------------------------ */
.empty-state {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  background: var(--zinc-850);
  border: 1px dashed var(--line-2);
  border-radius: 6px;
}
.empty-state svg {
  width: 56px;
  height: 56px;
  color: var(--orange);
  margin: 0 auto 1.25rem;
}
.empty-state h2 { margin-bottom: .75rem; }
.empty-state .lede { margin-inline: auto; }

/* Small badge under the hero venue line (indoor / air conditioned) */
.hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: clamp(.78rem, 1.5vw, .92rem);
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: .45rem 1.15rem;
  margin: .9rem 0 0;
}

/* The fee note rides along with the price line, a touch smaller */
.price-flash em {
  font-style: italic;
  font-size: .82em;
}

/* --- Email signup popup -------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 2.5rem);
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, .82);
  backdrop-filter: blur(3px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(242, 102, 32, .18), transparent 70%),
    var(--zinc-900);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  animation: modal-in .28s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.modal-card .eyebrow { margin-bottom: .35rem; }
.modal-card h2 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); margin-bottom: .6rem; }
.modal-card .lede { font-size: 1rem; margin-inline: auto; margin-bottom: 1.5rem; }

.modal-close {
  position: absolute;
  top: .6rem; right: .75rem;
  background: none;
  border: none;
  color: var(--muted-2);
  font-size: 1.9rem;
  line-height: 1;
  padding: .25rem .5rem;
  cursor: pointer;
  border-radius: 4px;
}
.modal-close:hover { color: var(--text); }
.modal-close:focus-visible { outline: 2px solid var(--orange); }

.signup-form { display: flex; flex-direction: column; gap: .75rem; }
.signup-form input[type="email"] {
  background: var(--zinc-950);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .9rem 1rem;
  width: 100%;
  text-align: center;
}
.signup-form input[type="email"]::placeholder { color: var(--muted-3); }
.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 102, 32, .2);
}
.signup-form .btn { width: 100%; }
.signup-form .btn:disabled { opacity: .7; cursor: wait; }

.signup-note {
  font-size: .8rem;
  color: var(--muted-3);
  margin: 1rem 0 0;
}
.signup-status {
  margin: 1rem 0 0;
  font-size: .95rem;
  line-height: 1.5;
}
.signup-status.is-good { color: var(--orange-hot); }
.signup-status.is-bad  { color: var(--muted); }

