/* Black Health Ball 2026 — Site styles */
:root {
  --onyx: #0A0A0B;
  --onyx-2: #131316;
  --onyx-3: #1C1C20;
  --onyx-4: #26262B;
  --gold: #C8A24A;
  --gold-bright: #E5C56E;
  --gold-deep: #8E6F2C;
  --burgundy: #6B2737;
  --purple: #4B2A6B;
  --linen: #F5F0E8;
  --linen-2: #EAE3D5;
  --white: #FFFFFF;
  --graphite: #2A2A2D;
  --graphite-2: #4A4A4E;
  --accent: var(--gold);
  --accent-text: #0A0A0B;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--onyx);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

/* Type */
.serif { font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
.eyebrow {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 7vw, 88px); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; }
h4 { font-size: 20px; line-height: 1.2; }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

/* Layout */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.bg-onyx { background: var(--onyx); color: var(--white); }
.bg-onyx-2 { background: var(--onyx-2); color: var(--white); }
.bg-linen { background: var(--linen); color: var(--graphite); }
.bg-burgundy { background: var(--burgundy); color: var(--white); }

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--accent) 60%, transparent) 20%, color-mix(in oklab, var(--accent) 60%, transparent) 80%, transparent);
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-dark {
  background: transparent;
  color: var(--graphite);
  border-color: var(--graphite);
}
.btn-outline-dark:hover { background: var(--graphite); color: var(--linen); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 10px 0;
  letter-spacing: 0.2em;
}
.btn-ghost::after { content: '→'; transition: transform 0.25s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* Nav */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,162,74,0.15);
}
.topnav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.topnav-inner > nav { justify-self: center; }
.topnav-inner .topnav-cta { justify-self: end; }
.topnav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topnav-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 480px) {
  .topnav-logo { height: 36px; }
}
.topnav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topnav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.topnav-links a:hover, .topnav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.topnav-cta { display: flex; align-items: center; gap: 16px; }
.topnav-cta .btn { padding: 12px 22px; font-size: 12px; }

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  cursor: pointer;
}

/* Mobile sticky bar */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(200,162,74,0.3);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
}
.sticky-mobile a {
  text-align: center;
  padding: 14px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sticky-mobile .a-primary { background: var(--accent); color: var(--accent-text); }
.sticky-mobile .a-outline { border: 1px solid rgba(255,255,255,0.25); color: var(--white); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #1a1a1f 0%, #0A0A0B 60%, #050506 100%);
  z-index: -2;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,162,74,0.10), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(107,39,55,0.18), transparent 50%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 80px, rgba(200,162,74,0.025) 80px 81px);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.1) 30%, rgba(10,10,11,0.65) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.63 0 0 0 0 0.29 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.25'/></svg>");
  pointer-events: none;
  z-index: -1;
}
.hero-content { position: relative; padding: 140px 32px 100px; max-width: 1100px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}
.hero-eyebrow .line { width: 60px; height: 1px; background: var(--accent); }
.hero-logo-wordmark {
  width: min(720px, 90%);
  margin: 0 auto 36px;
  display: block;
}
.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 36px 0 48px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-meta .dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-foot {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Mission band */
.mission {
  text-align: center;
  padding: 100px 32px;
  background: var(--linen);
  color: var(--graphite);
}
.mission-bhc-logo {
  display: block;
  width: clamp(180px, 22vw, 240px);
  height: auto;
  margin: 0 auto 36px;
  filter: brightness(0);
  opacity: 0.9;
}
.mission p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--graphite);
}
.mission .pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  font-style: normal;
  margin-top: 32px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(200,162,74,0.25);
  border-bottom: 1px solid rgba(200,162,74,0.25);
  margin-top: 48px;
}
.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(200,162,74,0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.4;
}

/* The Night */
.night-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.night-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold-deep);
  opacity: 0.4;
}
.night-step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}
.night-step:not(:last-child) {
  border-right: 1px dashed rgba(42,42,45,0.2);
}
.night-time {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.night-marker {
  width: 14px; height: 14px;
  background: var(--burgundy);
  border-radius: 50%;
  margin: 20px auto 28px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--linen);
}
.night-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--graphite);
}
.night-step p {
  font-size: 15px;
  color: var(--graphite-2);
  margin: 0;
}

/* The Night — 3-block standing Gala */
.night-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.night-block {
  padding: 32px 28px;
  border-top: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(200,162,74,0.04), transparent 60%);
  position: relative;
}
.night-num {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 16px;
}
.night-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.night-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite-2);
}
@media (max-width: 900px) {
  .night-three { grid-template-columns: 1fr; gap: 28px; }
}

/* 5-up tier grid override */
.tier-grid-5 { grid-template-columns: repeat(5, 1fr) !important; gap: 16px !important; }
.tier-grid-5 .tier-card { padding: 24px 18px; }
.tier-grid-5 .tier-name { font-size: 22px; }
.tier-grid-5 .tier-price { font-size: 32px; }
.tier-grid-5 .tier-list li { font-size: 13px; }
@media (max-width: 1200px) {
  .tier-grid-5 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) {
  .tier-grid-5 { grid-template-columns: 1fr !important; }
}

/* Tier cards (home) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tier-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid rgba(42,42,45,0.1);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(10,10,11,0.15);
}
.tier-card.featured {
  background: var(--onyx);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-8px);
}
.tier-card.featured:hover { transform: translateY(-12px); }
.tier-card.title-tier {
  background: linear-gradient(180deg, var(--onyx) 0%, #1a1a1f 100%);
  color: var(--white);
  border-color: var(--accent);
}
.tier-ribbon {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--accent);
  color: var(--accent-text);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.tier-scarcity {
  position: absolute;
  top: -12px; right: 28px;
  background: var(--burgundy);
  color: var(--white);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.tier-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--graphite-2);
  margin-bottom: 8px;
}
.tier-card.featured .tier-name, .tier-card.title-tier .tier-name { color: rgba(255,255,255,0.6); }
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.tier-card.featured .tier-price, .tier-card.title-tier .tier-price { color: var(--accent); }
.tier-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin-bottom: 24px;
}
.tier-card.featured .tier-meta, .tier-card.title-tier .tier-meta { color: rgba(255,255,255,0.6); }
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,42,45,0.08);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-card.featured .tier-list li, .tier-card.title-tier .tier-list li { border-color: rgba(255,255,255,0.1); }
.tier-list li::before {
  content: '◆';
  color: var(--accent);
  font-size: 9px;
  margin-top: 6px;
  flex-shrink: 0;
}
.tier-foot { font-size: 11px; color: var(--graphite-2); margin-top: 12px; }
.tier-card.featured .tier-foot, .tier-card.title-tier .tier-foot { color: rgba(255,255,255,0.5); }

/* Tier teaser (home page sponsorship section) */
.tier-teaser {
  margin: 56px 0 0;
  border-top: 1px solid rgba(42,42,45,0.18);
}
.tier-teaser-row {
  display: grid;
  grid-template-columns: 1.2fr auto 1.6fr 24px;
  gap: 32px;
  align-items: baseline;
  padding: 28px 8px 28px 16px;
  border-bottom: 1px solid rgba(42,42,45,0.18);
  color: var(--graphite);
  transition: background 0.25s ease, padding-left 0.25s ease, color 0.25s ease;
  position: relative;
}
.tier-teaser-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.tier-teaser-row:hover {
  background: rgba(200,162,74,0.06);
  padding-left: 24px;
}
.tier-teaser-row:hover::before { transform: scaleY(1); }
.tier-teaser-row:hover .tt-arrow { transform: translateX(4px); color: var(--accent); }
.tt-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--graphite);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.tt-price {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--graphite-2);
  white-space: nowrap;
}
.tt-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--graphite-2);
  line-height: 1.35;
}
.tt-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: rgba(42,42,45,0.35);
  transition: transform 0.25s ease, color 0.25s ease;
  justify-self: end;
}
.tt-scarcity {
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: 4px 10px;
  display: inline-block;
}
.tier-teaser-row.is-title { background: rgba(200,162,74,0.05); }
.tier-teaser-row.is-title::before { transform: scaleY(1); }
.tier-teaser-row.is-title .tt-price { color: var(--accent); }
.tier-teaser-row.is-title:hover { background: rgba(200,162,74,0.1); }

@media (max-width: 760px) {
  .tier-teaser-row {
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 22px 12px 22px 16px;
  }
  .tt-name { grid-column: 1; font-size: 22px; }
  .tt-price { grid-column: 2; text-align: right; }
  .tt-line { grid-column: 1 / -1; font-size: 16px; }
  .tt-arrow { display: none; }
}

/* Honoree teaser */
.honoree-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 64px;
  text-align: left;
}
.honoree-cat {
  border-top: 1px solid rgba(200,162,74,0.4);
  padding-top: 20px;
}
.honoree-cat-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}
.honoree-cat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.honoree-cat p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}
.honoree-sample-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* Honoree card */
.h-card {
  background: var(--onyx-2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.h-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Real-photo card — image already has name + title baked in. */
.h-card-photo {
  background: var(--onyx);
  border: 1px solid rgba(200,162,74,0.18);
  padding: 0;
  display: block;
}
.h-card-photo .h-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.h-card-photo:hover { border-color: var(--accent); }
.h-card-photo:hover .h-photo { transform: scale(1.015); }
.h-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a2a30 0%, #1a1a1f 100%);
  position: relative;
  overflow: hidden;
}
.h-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 35%, rgba(200,162,74,0.15) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(255,255,255,0.015) 6px 7px);
}
.h-portrait::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(10,10,11,0.85));
}
.h-silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.h-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(8px);
  color: var(--accent);
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(200,162,74,0.3);
}
.h-info { padding: 16px 18px 20px; }
.h-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.h-title {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.h-org {
  font-size: 11px;
  color: var(--accent);
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Section header */
.s-head {
  text-align: center;
  margin-bottom: 24px;
}
.s-head .eyebrow { margin-bottom: 16px; display: inline-block; }
.s-head h2 { margin-bottom: 16px; }
.s-head p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
}
.bg-linen .s-head p { color: var(--graphite-2); }

/* Council strip */
.council-strip {
  background: var(--burgundy);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.council-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,162,74,0.12), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,0.4), transparent 60%);
}
.council-strip .container { position: relative; }
.council-strip h2 { color: var(--white); margin-bottom: 24px; }
.council-strip p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}

/* Tickets — Eventnoire iframe frame */
.ticket-flier {
  max-width: 480px;
  margin: 0 auto 56px;
  border: 1px solid rgba(200,162,74,0.35);
  background: var(--onyx);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.ticket-flier img {
  width: 100%;
  height: auto;
  display: block;
}
.ticket-iframe-frame {
  background: #fff;
  border: 1px solid var(--accent);
  padding: 6px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.ticket-iframe-frame iframe {
  width: 100%;
  display: block;
  background: #fff;
}

/* Past gala */
.past-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.past-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #1a1a1f 0%, #2a2a30 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}
.past-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.past-photo:hover img { transform: scale(1.04); }
.past-photo:hover { transform: translateY(-2px); }
.past-photo:nth-child(3n) { aspect-ratio: 1/1; background: linear-gradient(135deg, #2a1a1f 0%, #1a1a25 100%); }
.past-photo:nth-child(5n) { aspect-ratio: 1/1; background: linear-gradient(135deg, #1f1a2a 0%, #0a0a0f 100%); }
.past-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(200,162,74,0.12), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.past-photo::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  pointer-events: none;
  z-index: 1;
}
.past-photo .caption {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-family: 'Cinzel', serif;
  z-index: 2;
}

.reel-embed {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #050506 0%, #1a1a1f 100%);
  position: relative;
  margin: 56px 0 0;
  cursor: pointer;
  border: 1px solid rgba(200,162,74,0.2);
  overflow: hidden;
}
.reel-embed::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(200,162,74,0.18), transparent 50%);
}
.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  font-size: 28px;
  transition: all 0.3s;
}
.reel-embed:hover .reel-play { transform: translate(-50%, -50%) scale(1.1); }
.reel-meta {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* FAQ */
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(42,42,45,0.15);
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--graphite);
  user-select: none;
}
.faq-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--graphite-2);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 28px; }

/* Newsletter */
.newsletter-band {
  text-align: center;
  padding: 100px 32px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 32px auto 16px;
  border: 1px solid var(--accent);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  padding: 0 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-bright); }

/* Footer */
.foot {
  background: #050506;
  padding: 80px 32px 32px;
  border-top: 1px solid rgba(200,162,74,0.15);
}
.foot-bhc-logo {
  display: block;
  width: clamp(160px, 18vw, 200px);
  height: auto;
  margin: 0 0 8px;
}
.foot-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.foot h5 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 500;
}
.foot p, .foot li, .foot a { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.foot a:hover { color: var(--accent); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-501 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(200,162,74,0.3);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
}
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  font-size: 14px;
  transition: all 0.2s;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }

/* Typeform embed frame */
.typeform-frame {
  background: var(--onyx-2);
  border: 1px solid rgba(200,162,74,0.25);
  padding: 8px;
  max-width: 880px;
  margin: 56px auto 0;
}
.typeform-frame > div {
  width: 100%;
  min-height: 720px;
  background: var(--onyx);
}

/* ----- /sponsor page ----- */
.page-hero {
  padding: 140px 32px 80px;
  text-align: center;
  background: var(--onyx);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(200,162,74,0.10), transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(107,39,55,0.18), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); margin-bottom: 24px; }
.page-hero p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

/* Page hero with hero image backdrop */
.page-hero-image {
  padding: 200px 32px 140px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-image::before {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(200,162,74,0.12), transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(107,39,55,0.22), transparent 60%);
  z-index: 1;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.45) 40%, rgba(10,10,11,0.85) 100%);
}
.page-hero-image .container { z-index: 2; }
.page-hero-image h1 {
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.page-hero-image p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.three-col-item {
  border-top: 2px solid var(--accent);
  padding-top: 28px;
}
.three-col-item .label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.three-col-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.bg-onyx .three-col-item h3 { color: var(--white); }
.three-col-item p { font-size: 15px; line-height: 1.65; color: var(--graphite-2); }
.bg-onyx .three-col-item p { color: rgba(255,255,255,0.65); }

/* Sponsor matrix */
.matrix {
  margin: 72px 0 0;
  border: 1px solid rgba(200,162,74,0.25);
  background: var(--onyx-2);
}
.matrix-row {
  display: grid;
  grid-template-columns: 200px 130px 1fr 130px 130px;
  border-bottom: 1px solid rgba(200,162,74,0.12);
  align-items: center;
}
.matrix-row:last-child { border-bottom: none; }
.matrix-row.head {
  background: var(--onyx);
  border-bottom: 1px solid var(--accent);
}
.matrix-row.head > div {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 22px 24px;
}
.matrix-row > div { padding: 28px 24px; font-size: 14px; }
.matrix-row.featured-row { background: linear-gradient(90deg, rgba(200,162,74,0.05), transparent); }

/* Shimmer on tier hover */
.matrix-row:not(.head) {
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.matrix-row:not(.head)::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 50%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    color-mix(in oklab, var(--accent) 12%, transparent) 35%,
    color-mix(in oklab, var(--accent) 28%, transparent) 50%,
    color-mix(in oklab, var(--accent) 12%, transparent) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.matrix-row:not(.head):hover {
  background: linear-gradient(90deg, rgba(200,162,74,0.08), rgba(200,162,74,0.02) 60%, transparent);
}
.matrix-row:not(.head):hover::after {
  opacity: 1;
  animation: tier-shimmer 1.4s ease-in-out infinite;
}
@keyframes tier-shimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}
.matrix-tier {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.matrix-tier .sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.matrix-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.matrix-incs { color: rgba(255,255,255,0.7); line-height: 1.55; font-size: 13px; }
.matrix-priority {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.matrix-priority.first { color: var(--accent); }

/* Award priority diagram */
.priority-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 48px;
  background: var(--onyx);
  border: 1px solid rgba(200,162,74,0.25);
  padding: 40px 32px;
}
.priority-step { text-align: center; }
.priority-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.priority-tier {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.priority-pick { font-size: 12px; color: rgba(255,255,255,0.55); }
.priority-arrow { font-size: 24px; color: var(--accent); }

/* Form */
.inquiry-form {
  background: var(--onyx-2);
  border: 1px solid rgba(200,162,74,0.2);
  padding: 48px;
  max-width: 720px;
  margin: 56px auto 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--onyx);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 80px 40px;
}
.form-success .icon {
  width: 64px; height: 64px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--accent);
  font-size: 28px;
}
.form-success h3 { color: var(--white); margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.7); }

/* Sponsor logo wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(200,162,74,0.15);
  border: 1px solid rgba(200,162,74,0.15);
}
.logo-tile {
  background: var(--onyx);
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.logo-tile:hover { color: var(--accent); }

/* Tickets */
.ticket-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.ticket-card {
  background: var(--onyx-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ticket-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--onyx-2) 0%, var(--onyx) 100%);
}
.ticket-type {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ticket-price {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.ticket-price small { font-size: 18px; color: rgba(255,255,255,0.6); font-weight: 400; margin-left: 8px; }
.ticket-meta { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

.ticket-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--onyx);
  border: 1px solid rgba(200,162,74,0.2);
  margin: 24px 0;
}
.counter-controls { display: flex; align-items: center; gap: 12px; }
.counter-btn {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid rgba(200,162,74,0.4);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.counter-btn:hover { background: var(--accent); color: var(--accent-text); }
.counter-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.counter-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  min-width: 28px;
  text-align: center;
}
.counter-total {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

/* Cart sheet */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  backdrop-filter: blur(6px);
}
.cart-sheet {
  background: var(--onyx);
  border: 1px solid var(--accent);
  max-width: 560px;
  width: 100%;
  padding: 48px;
  position: relative;
}
.cart-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  cursor: pointer;
  width: 36px; height: 36px;
}
.cart-line {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.cart-line.total {
  border-bottom: none;
  padding-top: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* Council */
.council-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.path-card {
  background: var(--onyx-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
  cursor: pointer;
  transition: all 0.3s;
}
.path-card:hover, .path-card.selected {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--onyx-2) 0%, var(--onyx) 100%);
}
.path-card.selected { box-shadow: inset 0 0 0 1px var(--accent); }
.path-letter {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.path-card h3 { margin: 16px 0 12px; }
.path-formula {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 16px 0 12px;
}

/* Past page */
.year-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(200,162,74,0.2);
  margin-top: 40px;
}
.year-tab {
  padding: 18px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.year-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* Honorees page filter */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 48px 0;
}
.cat-filter button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 12px 22px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.cat-filter button:hover { border-color: var(--accent); color: var(--accent); }
.cat-filter button.active { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }

.honoree-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Press */
.media-kit-card {
  background: var(--onyx-2);
  border: 1px solid rgba(200,162,74,0.2);
  padding: 48px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.facts-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid rgba(200,162,74,0.2);
}
.facts-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  gap: 24px;
}
.facts-list .k {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* Quote */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.quotes.single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.quotes.single .quote-card { padding: 16px 0 16px 36px; }
.quotes.single .quote-card blockquote { font-size: clamp(20px, 2vw, 26px); line-height: 1.5; }
.quote-card {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 28px;
}
.quote-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  margin: 0 0 20px;
  color: var(--white);
}
.quote-card cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Cinzel', serif;
}

/* Hero photo plate — real 2025 class photo as backdrop */
.hero-photo-plate {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.78) 0%, rgba(10,10,11,0.55) 40%, rgba(10,10,11,0.92) 100%),
    url('assets/gala-2025/class-stage.jpg') center/cover no-repeat;
}
.hero-photo-plate::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,11,0.45) 70%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 960px) {
  .topnav-links { display: none; }
  .topnav-cta .btn { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .sticky-mobile { display: grid; }
  body { padding-bottom: 80px; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: none; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid rgba(200,162,74,0.15); }

  .night-grid, .tier-grid, .honoree-cats, .honoree-sample-grid,
  .past-gallery, .three-col, .ticket-cards, .council-paths,
  .honoree-grid, .quotes { grid-template-columns: 1fr; }
  .night-grid { gap: 32px; }
  .night-grid::before { display: none; }
  .night-step:not(:last-child) { border-right: none; border-bottom: 1px dashed rgba(42,42,45,0.2); padding-bottom: 32px; }

  .honoree-cats { gap: 32px; }
  .honoree-sample-grid { grid-template-columns: repeat(2, 1fr); }
  .honoree-grid { grid-template-columns: repeat(2, 1fr); }
  .past-gallery { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .three-col { gap: 32px; }

  .matrix-row { grid-template-columns: 1fr; padding: 16px 0; }
  .matrix-row.head { display: none; }
  .matrix-row > div { padding: 6px 24px; }
  .matrix-row { padding: 20px 0; }

  .priority-diagram { grid-template-columns: 1fr; gap: 24px; }
  .priority-arrow { transform: rotate(90deg); }

  .form-row { grid-template-columns: 1fr; }

  .inquiry-form, .ticket-card, .path-card { padding: 32px 24px; }

  .section-pad { padding: 80px 0; }

  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .facts-list li { grid-template-columns: 1fr; gap: 4px; }

  .media-kit-card { grid-template-columns: 1fr; }

  .container, .container-narrow { padding: 0 20px; }
}
