/* ================================================================
   HTH26 Hi-Fi styles — Variant A Civic Poster, production aesthetic
   Mobile-first, tokenized, Montserrat + Inter
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --navy: #0E2C85;
  --navy-700: #0a2064;
  --navy-900: #061044;
  --red: #C80403;
  --red-700: #a20303;
  --gold: #C9A14A;
  --gold-soft: #E3C989;
  --white: #FFFFFF;
  --paper: #FAFAF7;
  --paper-2: #F3F2ED;

  /* Ink */
  --ink: #0F1420;
  --ink-2: #2B344A;
  --ink-3: #556073;
  --ink-4: #8A92A3;

  /* Rules */
  --rule: #E2E5EC;
  --rule-2: #C8CED9;

  /* Type */
  --display: "Montserrat", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;

  /* Radii / shadow */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15,20,32,0.08);
  --shadow-md: 0 4px 16px rgba(15,20,32,0.10);
  --shadow-lg: 0 12px 40px rgba(15,20,32,0.18);

  /* Content width */
  --wide: 1200px;
  --reg: 960px;
  --narrow: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

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

/* ================================================================
   Typography
   ================================================================ */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.on-navy { color: var(--gold); }
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: currentColor;
  display: inline-block;
}

.display-xxl {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 10vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.display-xl {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lead {
  font-family: var(--body);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
}
.body { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.body-sm { font-size: 14px; line-height: 1.55; color: var(--ink-3); }
.label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ================================================================
   Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #D4B05A;
  color: var(--navy-900);
  border-color: #D4B05A;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn-lg { padding: 18px 30px; font-size: 15px; }

.btn-arrow::after {
  content: "→";
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.15s;
}
.btn:hover .btn-arrow::after { transform: translateX(3px); }

/* ================================================================
   Top nav
   ================================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.topbar-logo img { height: 44px; width: auto; }
.topbar-logo .wordmark {
  display: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.topbar-logo .wordmark small {
  display: block;
  font-weight: 600;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-top: 3px;
}
.topbar-nav {
  display: none;
  gap: 28px;
  align-items: center;
}
.topbar-nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.topbar-nav a:hover { color: var(--red); }
.topbar-menu {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.topbar-menu span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
}
.topbar-menu span::before,
.topbar-menu span::after {
  content: ""; position: absolute;
  left: 0; width: 100%; height: 2px;
  background: var(--ink);
}
.topbar-menu span::before { top: -6px; }
.topbar-menu span::after { top: 6px; }

/* Hamburger X when open */
.topbar-menu.open span { background: transparent; }
.topbar-menu.open span::before { top: 0; transform: rotate(45deg); }
.topbar-menu.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer — nav becomes a full-width dropdown under the sticky topbar */
.topbar-nav.open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 12px 20px 20px;
  box-shadow: var(--shadow-md);
}
.topbar-nav.open a {
  padding: 12px 4px;
  font-size: 15px;
  border-bottom: 1px solid var(--rule);
}
.topbar-nav.open a:last-child {
  border-bottom: none;
  margin-top: 8px;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .topbar-logo img { height: 52px; }
  .topbar-logo .wordmark { display: block; }
  .topbar-nav,
  .topbar-nav.open { display: flex; flex-direction: row; position: static; padding: 0; box-shadow: none; border: 0; background: transparent; }
  .topbar-nav.open a { padding: 0; border: 0; font-size: 13px; }
  .topbar-nav.open a:last-child { margin-top: 0; align-self: center; }
  .topbar-menu { display: none; }
}

/* ================================================================
   Hero
   ================================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(0.8) contrast(1.05);
  z-index: -2;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, transparent 0%, var(--navy) 75%),
    linear-gradient(180deg, rgba(14,44,133,0.4) 0%, var(--navy) 100%);
  z-index: -1;
}
.hero-stars {
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.6) 0, rgba(255,255,255,0) 1.5px),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,0.4) 0, rgba(255,255,255,0) 1px),
    radial-gradient(circle at 45% 12%, rgba(255,255,255,0.35) 0, rgba(255,255,255,0) 1px),
    radial-gradient(circle at 88% 72%, rgba(255,255,255,0.3) 0, rgba(255,255,255,0) 1px),
    radial-gradient(circle at 22% 85%, rgba(255,255,255,0.3) 0, rgba(255,255,255,0) 1px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--reg);
  margin: 0 auto;
  padding: 56px 20px 64px;
  text-align: center;
  position: relative;
}
.hero-shield {
  width: clamp(180px, 40vw, 280px);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.35));
}
.hero-year {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-year::before, .hero-year::after {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 9vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.hero-title .red { color: #FF5A58; text-shadow: 0 0 40px rgba(255,90,88,0.35); }
.hero-title .gold { color: var(--gold); text-shadow: 0 0 40px rgba(201,161,74,0.35); }
.hero-sub {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 2.6vw, 22px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 14px 0 0;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 32px 0 28px;
  font-family: var(--body);
  color: rgba(255,255,255,0.9);
}
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
}
.hero-meta-row strong {
  font-family: var(--display);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero-ctas .btn { min-width: 240px; }
@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas .btn { min-width: 200px; }
}
.hero-beneficiary {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.hero-beneficiary strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Red gold-striped bottom bar echoing shield */
.hero-stripes {
  display: flex;
  height: 14px;
  background: var(--white);
}
.hero-stripes span { flex: 1; }
.hero-stripes span:nth-child(odd) { background: var(--red); }
.hero-stripes span:nth-child(even) { background: var(--white); }

/* ================================================================
   Stats strip
   ================================================================ */
.stats {
  background: var(--white);
  padding: 48px 20px;
  border-bottom: 1px solid var(--rule);
}
.stats-inner {
  max-width: var(--reg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 560px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-num .unit {
  font-size: 0.5em;
  color: var(--red);
  margin-left: 4px;
  font-weight: 800;
}
.stat-label {
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.stat-rule {
  width: 36px; height: 3px; background: var(--gold);
  margin: 12px auto 0;
}

/* ================================================================
   Section — details grid (over photo)
   ================================================================ */
.section { padding: 72px 20px; }
.section-inner { max-width: var(--reg); margin: 0 auto; }
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .eyebrow { margin-bottom: 14px; }

.details {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.details-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: -1;
}
.details-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,68,0.85) 0%, rgba(14,44,133,0.75) 100%);
  z-index: -1;
}
.details .section-head .eyebrow { color: var(--gold); }
.details .section-head h2 { color: var(--white); }
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) {
  .details-grid { grid-template-columns: repeat(4, 1fr); }
}
.details-cell {
  padding: 28px 20px;
  text-align: center;
  background: rgba(14,44,133,0.4);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.details-cell:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .details-cell { border-bottom: none; }
  .details-cell:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.12); }
  .details-cell:last-child { border-right: none; }
}
.details-icon {
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.details-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.details-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}
.details-value small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
  font-family: var(--body);
}

/* ================================================================
   Play For — contest prize cards
   ================================================================ */
.prizes {
  background: var(--paper);
  padding: 72px 20px;
}
.prizes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--reg);
  margin: 0 auto;
}
@media (min-width: 560px) { .prizes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .prizes-grid { grid-template-columns: repeat(4, 1fr); } }
.prize-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red);
  padding: 26px 22px;
  transition: all 0.2s;
}
.prize-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.prize-card .label-hdr {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.prize-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.prize-card .prize-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}
.prize-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}
.prize-card.hero-prize {
  background: var(--navy);
  color: var(--white);
  border-top-color: var(--gold);
}
.prize-card.hero-prize .label-hdr { color: var(--gold); }
.prize-card.hero-prize h3 { color: var(--white); }
.prize-card.hero-prize .prize-amount { color: var(--gold); font-size: 28px; }
.prize-card.hero-prize p { color: rgba(255,255,255,0.75); }

/* ================================================================
   Sponsors preview — featured tiers
   ================================================================ */
.sponsors {
  background: var(--white);
  padding: 72px 20px;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: var(--reg);
  margin: 0 auto 40px;
}
@media (min-width: 768px) { .sponsors-grid { grid-template-columns: repeat(3, 1fr); } }

.sponsor-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.sponsor-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sponsor-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.sponsor-card.featured .price { color: var(--gold); }
.sponsor-card.featured .inc-check { color: var(--gold); }
.sponsor-card.featured .desc { color: rgba(255,255,255,0.75); }
.sponsor-card.featured h3 { color: var(--white); }

.sponsor-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
}
.sponsor-card .tier-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.sponsor-card.featured .tier-label { color: var(--gold-soft); }
.sponsor-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.sponsor-card .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
  margin: 6px 0 18px;
}
.sponsor-card .desc {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 18px;
  line-height: 1.5;
}
.sponsor-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.sponsor-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.sponsor-card.featured ul li { color: rgba(255,255,255,0.9); }
.inc-check {
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.4;
}
.sponsor-cta-row {
  display: flex;
  justify-content: center;
}

/* ================================================================
   About the course
   ================================================================ */
.course {
  background: var(--paper);
  padding: 72px 20px;
}
.course-inner {
  max-width: var(--reg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) {
  .course-inner { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.course-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.course-photo::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1.5px solid var(--gold);
  transform: translate(16px, 16px);
  z-index: -1;
}
.course-copy h2 { margin-bottom: 24px; }
.course-copy p { margin: 0 0 16px; font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.course-copy p:last-child { margin-bottom: 28px; }
.course-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: 28px;
}
.course-fact .label { margin-bottom: 4px; }
.course-fact .value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  background: var(--white);
  padding: 72px 20px;
}
.faq-inner { max-width: var(--narrow); margin: 0 auto; }
.faq-list { border-top: 1.5px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-q:hover { color: var(--red); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 14px;
  padding-right: 48px;
}

/* ================================================================
   Final CTA band
   ================================================================ */
.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 40px, transparent 40px, transparent 48px, var(--gold) 48px, var(--gold) 72px, transparent 72px, transparent 80px);
}
.final-cta::before { top: 0; }
.final-cta::after { bottom: 0; }
.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 16px 0 16px;
}
.final-cta h2 .red { color: #FF5A58; }
.final-cta p {
  max-width: 580px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.6;
}
.final-cta .cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.final-cta .cta-row .btn { min-width: 240px; }
@media (min-width: 560px) {
  .final-cta .cta-row { flex-direction: row; }
}

/* ================================================================
   Footer
   ================================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 48px 20px 28px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--reg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p { margin: 0; line-height: 1.6; font-size: 13px; max-width: 340px; }
.footer-col h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--reg);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
@media (min-width: 560px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ================================================================
   Placeholder treatment — unmissable, easy to find & remove
   ================================================================ */
.ph {
  position: relative;
  display: inline-block;
  background: #FFF3B0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 8px,
    rgba(201, 161, 74, 0.18) 8px 10px
  );
  color: #5B4200;
  padding: 1px 6px;
  border: 1.5px dashed #C9A14A;
  border-radius: 3px;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.ph::before {
  content: "TBD";
  display: inline-block;
  background: #C9A14A;
  color: #1A1206;
  font-family: var(--body);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 1px 5px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: 2px;
  text-transform: uppercase;
}
/* On-navy (dark) variants keep legibility */
.hero .ph,
.details .ph,
.final-cta .ph,
.footer .ph,
.sponsor-card.featured .ph,
.prize-card.hero-prize .ph {
  background: rgba(255, 224, 110, 0.95);
  color: #3A2900;
  border-color: #FFD75A;
}
/* Whole-block placeholders (for paragraphs / multi-line) */
.ph-block {
  background: #FFF8D6;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 10px,
    rgba(201, 161, 74, 0.14) 10px 12px
  );
  border: 1.5px dashed #C9A14A;
  border-radius: 4px;
  padding: 10px 14px;
  position: relative;
  display: block;
}
.ph-block::before {
  content: "PLACEHOLDER — replace before launch";
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #8A6200;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* Summary banner at top of page — sticky indicator */
.ph-banner {
  background: #FFF3B0;
  border-bottom: 2px solid #C9A14A;
  padding: 8px 20px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #5B4200;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ph-banner::before {
  content: "⚠";
  font-size: 14px;
}
.ph-banner a {
  color: #5B4200;
  text-decoration: underline;
  font-weight: 800;
}

/* ================================================================
   Sponsorship page — full inventory, filter chips, category sections
   ================================================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 20px 72px;
  isolation: isolate;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: -2;
}
.page-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,68,0.85) 0%, var(--navy) 100%);
  z-index: -1;
}
.page-hero-inner {
  max-width: var(--reg);
  margin: 0 auto;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.page-hero h1 .red { color: #FF5A58; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero .lead {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
}
.page-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.page-hero-meta::before, .page-hero-meta::after {
  content: "";
  width: 24px; height: 2px;
  background: var(--gold);
}

/* Why sponsor — cards */
.why-sponsor {
  background: var(--white);
  padding: 56px 20px 24px;
  border-bottom: 1px solid var(--rule);
}
.why-sponsor-grid {
  max-width: var(--reg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .why-sponsor-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 24px 20px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}
.why-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0;
  color: var(--ink);
}
.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Category filter bar */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 74px;
  z-index: 40;
  padding: 14px 20px;
}
.filter-bar-inner {
  max-width: var(--reg);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.chip {
  background: var(--white);
  border: 1.5px solid var(--rule-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.chip .count {
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
}
.chip:not(.active) .count {
  background: var(--paper-2);
  color: var(--ink-3);
}

/* Inventory */
.inventory {
  background: var(--paper);
  padding: 48px 20px 80px;
}
.category {
  max-width: var(--reg);
  margin: 0 auto 48px;
}
.category-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.category-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
}
.category-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}
.category-meta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Inventory grid */
.inv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .inv-grid { grid-template-columns: repeat(3, 1fr); } }

.inv-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}
.inv-card:hover:not(.sold) {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.inv-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.inv-card.featured h3 { color: var(--white); }
.inv-card.featured .price { color: var(--gold); }
.inv-card.featured .inv-check { color: var(--gold); }
.inv-card.featured li { color: rgba(255,255,255,0.88); }
.inv-card.sold {
  opacity: 0.72;
  background: var(--paper-2);
  border-style: dashed;
  border-color: var(--ink-4);
}
.inv-card.sold::after {
  content: "SOLD OUT";
  position: absolute;
  top: 14px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  transform: rotate(4deg);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.inv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}
.tier-pill {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 10px;
}
.inv-card.featured .tier-pill { color: var(--gold-soft); }

.inv-availability {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.inv-availability.lots { background: rgba(14, 44, 133, 0.08); color: var(--navy); }
.inv-availability.few  { background: rgba(201, 161, 74, 0.18); color: #6B5020; }
.inv-availability.last { background: rgba(200, 4, 3, 0.1); color: var(--red); }
.inv-card.featured .inv-availability {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.inv-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.inv-card .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  margin: 2px 0 16px;
}
.inv-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.inv-card ul li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 7px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-2);
}
.inv-check {
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.5;
}
.inv-btn-row {
  display: flex;
  gap: 8px;
}
.inv-btn-row .btn { flex: 1; }

/* In-kind card */
.inv-card.inkind {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, #FFFDF5 100%);
}
.inv-card.inkind .price { color: var(--gold); }
.inv-card.inkind .inv-check { color: var(--gold); }

/* How it works */
.how-it-works {
  background: var(--white);
  padding: 72px 20px;
  border-top: 1px solid var(--rule);
}
.steps {
  max-width: var(--reg);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 0 24px 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .step { padding: 0 30px; }
  .step + .step::before {
    content: "→";
    position: absolute;
    top: 30px;
    left: -10px;
    font-family: var(--display);
    font-size: 28px;
    color: var(--gold);
    font-weight: 400;
  }
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px;
  line-height: 64px;
  margin: 0 auto 18px;
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Contact band */
.contact-band {
  background: var(--paper);
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.contact-band h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.contact-band p {
  margin: 0 auto 20px;
  max-width: 520px;
  color: var(--ink-3);
}
.contact-band .btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Givebutter widget mount */
/* Wraps the live <givebutter-widget> embed inside the sponsor modal.
   Givebutter's script paints its own form here once the element upgrades. */
.widget-mount {
  min-height: 280px;
  border-radius: var(--r-md);
  padding: 8px 0;
  max-width: 640px;
  margin: 0 auto;
}
.widget-mount givebutter-widget,
.widget-mount givebutter-giving-form,
.widget-mount givebutter-button {
  display: block;
  width: 100%;
}
.widget-mount .givebutter-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: none;
  border-radius: var(--r-md);
  background: var(--paper);
}

/* Modal overlay (sponsor widget) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 68, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: var(--r-md);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px);
  transition: transform 0.2s;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.modal-header h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.modal-header .tier-pill { margin-bottom: 4px; }
.modal-close {
  width: 36px; height: 36px;
  border: 1.5px solid var(--rule-2);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}
.modal-close:hover { background: var(--paper); border-color: var(--ink); }
.modal-body { padding: 24px; }
.modal-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--rule-2);
  margin-bottom: 20px;
}
.modal-price-line .label { color: var(--ink-3); }
.modal-price-line .amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
}

/* ================================================================
   Thank You page
   ================================================================ */
.thanks-hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 72px;
  text-align: center;
  isolation: isolate;
}
.thanks-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -2;
}
.thanks-hero-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,44,133,0.6) 0%, var(--navy) 80%);
  z-index: -1;
}
.thanks-check {
  width: 92px; height: 92px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 48px;
  color: var(--navy-900);
  line-height: 1;
  position: relative;
  box-shadow: 0 10px 32px rgba(201,161,74,0.35);
}
.thanks-check::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}
.thanks-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.thanks-hero h1 .red { color: #FF5A58; }
.thanks-hero .lead {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 2vw, 19px);
}
.thanks-eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.thanks-eyebrow::before, .thanks-eyebrow::after {
  content: "";
  width: 24px; height: 2px;
  background: var(--gold);
}

/* Receipt card */
.receipt {
  max-width: 620px;
  margin: -48px auto 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--gold);
}
@media (min-width: 640px) { .receipt { padding: 40px; } }
.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--rule-2);
  margin-bottom: 20px;
}
.receipt-head .label {
  margin-bottom: 4px;
  color: var(--ink-4);
}
.receipt-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}
.receipt-amount {
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.01em;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--rule);
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row .k { color: var(--ink-3); }
.receipt-row .v { font-weight: 600; color: var(--ink); text-align: right; }
.receipt-footnote {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule-2);
  font-size: 12px;
  color: var(--ink-4);
  line-height: 1.5;
  text-align: center;
}

/* Next steps */
.next-steps {
  background: var(--white);
  padding: 72px 20px;
}
.next-steps-grid {
  max-width: var(--reg);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .next-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.ns-card {
  padding: 28px 24px;
  background: var(--paper);
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
}
.ns-card:nth-child(2) { border-top-color: var(--gold); }
.ns-card:nth-child(3) { border-top-color: var(--navy); }
.ns-icon {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1;
}
.ns-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink);
}
.ns-card p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  flex: 1;
}

/* Share row */
.share-band {
  background: var(--paper);
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.share-band h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.share-band p {
  margin: 0 auto 20px;
  max-width: 480px;
  font-size: 14px;
  color: var(--ink-3);
}
.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.share-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--rule-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  transition: all 0.15s;
}
.share-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ================================================================
   404 page
   ================================================================ */
.fourohfour {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.fourohfour-main {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  isolation: isolate;
}
.fourohfour-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: -2;
}
.fourohfour-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,44,133,0.4) 0%, var(--navy) 80%);
  z-index: -1;
}
.fourohfour-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
  position: relative;
}
.big404 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(140px, 26vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--gold);
  text-shadow: 0 6px 0 rgba(0,0,0,0.2);
}
.big404 .zero {
  display: inline-block;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 4px var(--gold);
}
.big404 .zero::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 22%; height: 22%;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 0 rgba(0,0,0,0.25);
}
.fourohfour h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 12px;
}
.fourohfour h1 .red { color: #FF5A58; }
.fourohfour .lead {
  max-width: 480px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 2vw, 18px);
}
.fourohfour .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.fourohfour-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.fourohfour-links .label {
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.fourohfour-links ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 8px 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.fourohfour-links a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.fourohfour-links a:hover { border-bottom-color: var(--gold); }

/* ================================================================
   Utilities
   ================================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider-gold {
  width: 60px; height: 3px; background: var(--gold);
  margin: 16px auto;
}
.divider-red {
  width: 60px; height: 3px; background: var(--red);
  margin: 16px 0;
}

/* ================================================================
   Forms — Registration / login / roster editor
   ================================================================ */
.field {
  margin-bottom: 18px;
}
.field-label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.input,
.select,
.textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 16px;          /* iOS won't auto-zoom at 16px+ */
  line-height: 1.4;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--rule-2);
  border-radius: var(--r-sm);
  transition: border-color 0.12s, box-shadow 0.12s;
  -webkit-appearance: none;
}
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,44,133,0.12);
}
.input[disabled],
.select[disabled] {
  background: var(--paper-2);
  color: var(--ink-3);
  cursor: not-allowed;
}
.input.is-error,
.select.is-error {
  border-color: var(--red);
}
.field-error {
  margin-top: 6px;
  font-size: 13px;
  color: var(--red);
}
.field-help {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-3);
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Generic page-level cards used by Registration */
.auth-page {
  min-height: calc(100vh - 64px);
  background: var(--paper);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.auth-card .eyebrow {
  margin-bottom: 8px;
}
.auth-card h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.auth-card p {
  margin: 0 0 18px;
  color: var(--ink-2);
  line-height: 1.55;
}
.auth-footer {
  max-width: 480px;
  width: 100%;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}
.auth-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.5;
}
.auth-status.is-success {
  background: #EAF2E8;
  border: 1px solid #A8C8A1;
  color: #1F4E16;
}
.auth-status.is-error {
  background: #FCE8E8;
  border: 1px solid #E8A4A4;
  color: #7A0808;
}

/* Roster editor */
.roster-page {
  background: var(--paper);
  padding: 32px 20px 64px;
}
.roster-shell {
  max-width: var(--reg);
  margin: 0 auto;
}
.roster-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.roster-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  text-transform: uppercase;
  margin: 4px 0 0;
}
.roster-head .label {
  color: var(--ink-3);
}
.roster-head .signed-as {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--body);
}
.roster-head .signed-as strong { color: var(--ink); font-weight: 600; }

.roster-section {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.roster-section h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--navy);
}
.roster-section .section-help {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-3);
}

.roster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .roster-grid { grid-template-columns: 1fr 1fr; }
}

.player-row {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 16px;
}
.player-row .player-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.player-row.captain {
  background: #EEF1FA;
  border-color: var(--navy-700);
}
.player-row.captain .player-tag { color: var(--navy-900); }

.roster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.roster-actions .btn { flex: 1 1 auto; min-width: 160px; }

.locked-banner {
  background: #FFF5DC;
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.locked-banner strong { color: var(--ink); }

