/* ============================================
   SLYSSF — South Louisiana Youth Shooting Sports Foundation
   Master Stylesheet
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --navy: #1F3247;
  --navy-deep: #142233;
  --navy-soft: #2C4861;
  --gold: #A0875A;
  --gold-bright: #C4A465;
  --gold-soft: #D4B884;
  --cream: #F5F1EA;
  --cream-warm: #EFE8DA;
  --ink: #2A2520;
  --rule: #C9B98F;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(31, 50, 71, 0.06);
  --shadow-md: 0 6px 24px rgba(31, 50, 71, 0.10);
  --shadow-lg: 0 14px 50px rgba(31, 50, 71, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- TYPOGRAPHY --- */
.display { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.eyebrow.on-dark { color: var(--gold-soft); }

/* --- LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream); }
.section-cream-warm { background: var(--cream-warm); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy-deep { background: var(--navy-deep); color: var(--cream); }
.section-navy h2, .section-navy-deep h2 { color: var(--cream); }

.text-center { text-align: center; }

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 185, 143, 0.3);
  padding: 16px 0;
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid var(--gold);
}

.brand-mark svg { width: 36px; height: 36px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name, .brand-name-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand-name-2 { margin-top: 1px; }
.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links .donate-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  margin-left: 8px;
}
.nav-links .donate-cta:hover { background: var(--navy); color: var(--white) !important; }

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid var(--gold);
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); }
.btn-outline-light { background: transparent; color: var(--gold-soft); border-color: var(--gold-soft); }
.btn-outline-light:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* --- DECORATIVE ELEMENTS --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto;
  max-width: 320px;
}
.divider .line { flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.divider .star { color: var(--gold); font-size: 13px; }

.section-title {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-header p { font-size: 17px; max-width: 640px; margin: 0 auto; opacity: 0.85; }

/* --- HERO --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  color: var(--cream);
  padding: 130px 24px 140px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(160, 135, 90, 0.18), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(160, 135, 90, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  color: var(--cream);
  margin: 0 0 24px;
  font-weight: 500;
  line-height: 1.02;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero .sub {
  font-size: 19px;
  max-width: 720px;
  margin: 28px auto 44px;
  color: rgba(245, 241, 234, 0.88);
  font-weight: 300;
  line-height: 1.6;
}

/* Hero - compact for inner pages */
.hero-compact { padding: 100px 24px 90px; }
.hero-compact h1 { font-size: clamp(40px, 5vw, 64px); }

/* Crosshair decorative SVG */
.crosshair {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.crosshair::before, .crosshair::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.crosshair::before { top: 50%; left: -20px; right: -20px; height: 1px; transform: translateY(-50%); }
.crosshair::after { left: 50%; top: -20px; bottom: -20px; width: 1px; transform: translateX(-50%); }
.crosshair.top-left { top: -100px; left: -100px; }
.crosshair.bottom-right { bottom: -100px; right: -100px; }

/* --- CARDS --- */
.card {
  background: var(--white);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat-number.word {
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.85;
}

/* --- QUOTE --- */
.pullquote {
  text-align: center;
  padding: 80px 24px;
}
.pullquote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 16px;
  font-style: italic;
}
.pullquote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.42;
  font-weight: 400;
}
.pullquote-text strong { font-style: normal; font-weight: 600; color: var(--gold); }
.pullquote-attr {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  font-weight: 600;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 70px 24px 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-brand p { font-size: 14.5px; opacity: 0.75; line-height: 1.65; max-width: 380px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--cream);
  opacity: 0.8;
  font-size: 14.5px;
  transition: var(--transition);
}
.footer-col a:hover { opacity: 1; color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(212, 184, 132, 0.18);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}
.footer-bottom strong { color: var(--gold-soft); font-weight: 600; }

/* --- IMPACT GRID --- */
.impact-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.impact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(160, 135, 90, 0.15), transparent 60%);
}
.impact-content { position: relative; }

/* --- FEATURED BANQUET CALLOUT --- */
.feature-callout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.feature-callout-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  position: relative;
  min-height: 380px;
}
.feature-callout-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(160, 135, 90, 0.25), transparent 60%);
}
.fc-eyebrow { position: relative; color: var(--gold-soft); font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.fc-title { position: relative; font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 44px); color: var(--cream); margin-bottom: 12px; font-weight: 500; line-height: 1.1; }
.fc-title em { color: var(--gold-soft); font-style: italic; }
.fc-date { position: relative; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold-soft); font-style: italic; }
.feature-callout-body { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.feature-callout-body p { font-size: 16.5px; margin-bottom: 28px; color: var(--ink); line-height: 1.7; }

/* --- TEAM CARDS --- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-banner {
  height: 140px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.team-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(160, 135, 90, 0.3), transparent 60%);
}
.team-banner h3 {
  position: relative;
  color: var(--cream);
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.team-body { padding: 24px 24px 28px; }
.team-body p { font-size: 14.5px; color: var(--ink); opacity: 0.85; line-height: 1.6; }

/* --- SPONSOR LOGOS GRID --- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.sponsor-logo {
  background: var(--white);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  transition: var(--transition);
}
.sponsor-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* --- TIER CARDS (banquet) --- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.tier-card {
  background: var(--white);
  padding: 40px 30px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-top: 4px solid var(--gold-bright);
  transform: translateY(-12px);
}
.tier-card.featured:hover { transform: translateY(-16px); }
.tier-card.featured .tier-name, .tier-card.featured .tier-price { color: var(--gold-soft); }
.tier-card.featured ul li { color: rgba(245, 241, 234, 0.9); border-color: rgba(245, 241, 234, 0.12); }
.tier-card.featured ul li::before { color: var(--gold-soft); }
.tier-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}
.tier-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--navy); font-weight: 600; margin-bottom: 6px; }
.tier-price { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--gold); font-weight: 600; margin-bottom: 24px; line-height: 1; }
.tier-price span { font-size: 17px; color: var(--ink); opacity: 0.6; font-weight: 400; }
.tier-card.featured .tier-price span { color: var(--cream); opacity: 0.7; }
.tier-card ul { list-style: none; flex-grow: 1; }
.tier-card ul li {
  padding: 9px 0 9px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  border-bottom: 1px solid rgba(31, 50, 71, 0.06);
}
.tier-card ul li:last-child { border-bottom: none; }
.tier-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 10px;
}

/* --- INDIVIDUAL TICKETS STRIP --- */
.tickets-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 40px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.tickets-strip h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; color: var(--cream); }
.tickets-strip .eyebrow { color: var(--gold-soft); margin-bottom: 8px; font-size: 11px; }
.tickets-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ticket-option { text-align: center; border-left: 1px solid rgba(212, 184, 132, 0.3); padding-left: 24px; }
.ticket-option:first-child { border-left: none; padding-left: 0; }
.ticket-option .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; font-weight: 600; }
.ticket-option .price { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--cream); font-weight: 500; }

/* --- SPONSOR TIERS --- */
.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sponsor-tier {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--rule);
  transition: var(--transition);
}
.sponsor-tier:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sponsor-tier .label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.sponsor-tier h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.sponsor-tier .amount { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.sponsor-tier p { font-size: 14.5px; color: var(--ink); opacity: 0.85; line-height: 1.6; }

/* --- FEATURES ICONS GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 40px;
}
.feature-item { text-align: center; padding: 16px; }
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  background: var(--white);
}
.feature-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 23px; color: var(--navy); font-weight: 600; margin-bottom: 10px; }
.feature-item p { font-size: 14.5px; color: var(--ink); opacity: 0.85; line-height: 1.6; }

/* --- DETAILS GRID --- */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}
.detail-item { text-align: center; }
.detail-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--gold-soft); margin-bottom: 12px; }
.detail-item p { font-size: 16px; line-height: 1.6; color: rgba(245, 241, 234, 0.88); }
.detail-item p .sub { font-size: 13.5px; opacity: 0.7; display: block; margin-top: 4px; }

/* --- TAX NOTICE --- */
.tax-notice {
  background: var(--cream-warm);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tax-notice p { font-size: 14px; color: var(--ink); max-width: 820px; margin: 0 auto; line-height: 1.6; }
.tax-notice strong { color: var(--navy); }

/* --- FORM (Netlify Forms) --- */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(160, 135, 90, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 14px; justify-self: center; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .feature-callout { grid-template-columns: 1fr; }
  .feature-callout-image { min-height: 280px; }
  .feature-callout-body { padding: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .tickets-strip { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero { padding: 90px 20px 100px; }
  .hero-compact { padding: 70px 20px 60px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    border-bottom: 1px solid var(--rule);
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.open a { padding: 14px 20px; text-align: center; }
  .nav-links.open .donate-cta { margin: 8px 0 0; }
  .mobile-menu-btn { display: flex; }
  .tickets-options { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .ticket-option { padding-left: 12px; }
  .ticket-option .price { font-size: 26px; }
  .tier-card.featured { transform: none; }
  .tier-card.featured:hover { transform: translateY(-4px); }
  .crosshair { display: none; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-name, .brand-name-2 { font-size: 15px; }
  .brand-sub { font-size: 8.5px; }
}

@media (max-width: 480px) {
  .tickets-options { grid-template-columns: 1fr; }
  .ticket-option { border-left: none; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(212, 184, 132, 0.3); }
  .ticket-option:first-child { padding-top: 0; border-top: none; }
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out backwards; }
.fade-up-delay-1 { animation: fadeUp 0.8s ease-out 0.15s backwards; }
.fade-up-delay-2 { animation: fadeUp 0.8s ease-out 0.3s backwards; }
.fade-up-delay-3 { animation: fadeUp 0.8s ease-out 0.45s backwards; }

/* --- UTILITIES --- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* --- CLUB DETAIL PAGES --- */
.club-hero-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.club-image-frame {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  background: var(--white);
  padding: 8px;
}
.club-intro {
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.club-content { max-width: 860px; margin: 0 auto; }
.club-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--navy);
  font-weight: 600;
  margin: 44px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.club-content h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 28px 0 12px;
}
.club-content p { font-size: 16px; line-height: 1.75; color: var(--ink); margin-bottom: 16px; }
.club-list { list-style: none; margin: 0 0 16px; }
.club-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
}
.club-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--gold);
  font-size: 12px;
}
.club-list li strong { color: var(--navy); }
.club-list .sub-list { margin-top: 6px; }
.club-list .sub-list li { padding-left: 26px; font-size: 14.5px; opacity: 0.9; }
.club-list .sub-list li::before { content: '·'; font-size: 18px; top: 4px; }

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 16px;
}
.fb-link:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fb-link svg { width: 22px; height: 22px; flex-shrink: 0; }

.club-fact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 0 auto;
  max-width: 860px;
}
.club-fact {
  background: var(--cream);
  padding: 28px 20px;
  text-align: center;
}
.club-fact .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.club-fact .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.club-card-link { cursor: pointer; }
.club-card-link .team-body .learn-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* --- SPONSOR LOGO IMAGES --- */
.sponsor-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.95);
  transition: var(--transition);
}
.sponsor-logo:hover img { filter: saturate(1.1); }

/* --- DARK-BACKGROUND SPONSOR LOGOS --- */
.sponsor-logo.dark-tile {
  background: #000;
  border-color: #000;
}

/* --- HERO WITH BACKGROUND PHOTO --- */
.hero.has-photo {
  background: none;
}
.hero.has-photo .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.has-photo .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero.has-photo .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,34,51,0.88) 0%, rgba(20,34,51,0.72) 50%, rgba(31,50,71,0.80) 100%);
}
.hero.has-photo .hero-content { z-index: 2; }
.hero.has-photo::before { z-index: 1; }

/* --- FEATURE CALLOUT WITH PHOTO --- */
.feature-callout-image.has-photo { padding: 0; }
.feature-callout-image.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-callout-image.has-photo .fc-overlay {
  position: relative;
  z-index: 2;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(20,34,51,0.86) 0%, rgba(20,34,51,0.66) 100%);
}
@media (max-width: 900px) {
  .feature-callout-image.has-photo .fc-overlay { padding: 40px 30px; }
}

/* --- TIER CARD CHECKOUT BUTTONS --- */
.tier-card .btn,
.sponsor-tier .btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px 20px;
  font-size: 12px;
}
.tier-card.featured .btn-primary { background: var(--gold-bright); }
.tier-card.featured .btn-primary:hover { background: var(--gold-soft); }

/* ticket strip buttons */
.ticket-option .btn {
  margin-top: 14px;
  padding: 10px 14px;
  font-size: 10.5px;
  width: 100%;
}
.ticket-buy-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12.5px;
  color: var(--gold-soft);
  margin-top: 4px;
  opacity: 0.85;
}

/* --- TEXT-BASED SPONSOR LOGO (placeholder until logo file arrives) --- */
.sponsor-logo.text-tile {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  padding: 24px 18px;
}

/* --- UCB BLUE BRAND TILE --- */
.sponsor-logo.ucb-tile {
  background: #0057B8;
  border-color: #0057B8;
}

/* --- PORTRAIT-ORIENTATION CLUB PHOTO --- */
.club-image-frame.portrait {
  max-width: 560px;
}
.club-image-frame.portrait .club-hero-image {
  max-height: 700px;
  object-fit: contain;
  background: var(--cream);
}

/* --- STATS GRID — 5 ITEM (3 TOP / 2 BOTTOM) --- */
.stats-grid.five-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 30px;
}
.stats-grid.five-stats .stat-item:nth-child(1),
.stats-grid.five-stats .stat-item:nth-child(2),
.stats-grid.five-stats .stat-item:nth-child(3) {
  grid-column: span 2;
}
.stats-grid.five-stats .stat-item:nth-child(4) {
  grid-column: 2 / span 2;
}
.stats-grid.five-stats .stat-item:nth-child(5) {
  grid-column: 4 / span 2;
}
@media (max-width: 800px) {
  .stats-grid.five-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid.five-stats .stat-item:nth-child(1),
  .stats-grid.five-stats .stat-item:nth-child(2),
  .stats-grid.five-stats .stat-item:nth-child(3),
  .stats-grid.five-stats .stat-item:nth-child(4),
  .stats-grid.five-stats .stat-item:nth-child(5) {
    grid-column: span 1;
  }
}

/* --- BROCHURE PAGE --- */
.brochure-display {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.brochure-display img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- MAILING ADDRESS BLOCK --- */
.mail-check-block {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 32px 30px;
  max-width: 620px;
  margin: 30px auto 0;
  text-align: center;
}
.mail-check-block .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.mail-check-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.mail-check-block p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 10px;
}
.mail-check-block .address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  margin: 18px 0 6px;
  line-height: 1.3;
}
.mail-check-block .payable {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 16px;
}
