*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }

:root {
  --navy: #091623;
  --navy-2: #102131;
  --navy-3: #162b40;
  --gold: #c8922a;
  --gold-2: #e8b44d;
  --cream: #f2ede4;
  --white: #ffffff;
  --muted: #98a8bb;
  --border: rgba(200, 146, 42, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --max: 1240px;
  --nav-h: 82px;
}

body {
  background:
    radial-gradient(circle at top right, rgba(200,146,42,0.11), transparent 28%),
    radial-gradient(circle at bottom left, rgba(22,43,64,0.55), transparent 30%),
    linear-gradient(180deg, #08131f 0%, #091623 55%, #0c1a2a 100%);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

main, footer, nav, .announcement-bar { position: relative; z-index: 1; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.35), transparent);
  opacity: 0.8;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}

.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(200,146,42,0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.24);
}

.btn-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.btn:hover .btn-icon { transform: translateX(2px); }

.officer-bio-btn { margin-top: 12px; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 105;
  min-height: 42px;
  background: linear-gradient(90deg, rgba(200,146,42,0.95), rgba(232,180,77,0.95));
  color: #091623;
  border-bottom: 1px solid rgba(9,22,35,0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* NAV */
nav {
  position: -webkit-sticky;
  position: sticky;
  top: 42px;
  z-index: 104;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9,22,35,0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

nav.scrolled { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #445466;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(9,22,35,0.12);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-menu-btn span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-menu-btn span:nth-child(1) { transform: translateY(-6px); }
.nav-menu-btn span:nth-child(2) { transform: translateY(0); }
.nav-menu-btn span:nth-child(3) { transform: translateY(6px); }
.nav-menu-btn.open span:nth-child(1) { transform: rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: rotate(-45deg); }

/* HERO */
.hero { padding: 72px 0 60px; overflow: hidden; }

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 6% 10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200,146,42,0.18), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7.4vw, 116px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-title .accent { color: var(--gold); }

.hero-desc {
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.hero-proof-card {
  padding: 20px 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-proof-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-proof-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-visual-stack {
  position: relative;
  width: min(100%, 560px);
  max-width: 100%;
  height: 100%;
  margin-left: auto;
}

.hero-photo-card {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(200,146,42,0.16);
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s ease;
}

.hero-photo-card:hover img { transform: scale(1.08); }

.hero-panel {
  position: absolute;
  left: 24px;
  bottom: 34px;
  width: min(88%, 330px);
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(9,22,35,0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200,146,42,0.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-panel p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-panel-meta { display: grid; gap: 8px; }

.hero-panel-meta div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  gap: 12px;
}

.hero-panel-meta span { color: var(--muted); }
.hero-panel-meta strong { color: var(--cream); font-weight: 500; }

/* IMPACT BAND */
.impact-band { padding: 56px 0 0; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.impact-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}

.impact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.impact-card p { color: var(--muted); font-size: 14px; }

.impact-card .pill { margin-bottom: 12px; }

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.event-card {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(200,146,42,0.16);
  background: #0d1e2c;
  box-shadow: 0 22px 60px rgba(0,0,0,0.26);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.34);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,22,35,0.04), rgba(9,22,35,0.28) 30%, rgba(9,22,35,0.88) 100%);
  z-index: 1;
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.event-card:hover img { transform: scale(1.06); }

.event-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px;
}

.event-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.event-kind {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 10px;
}

.event-desc {
  color: rgba(242,237,228,0.86);
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 15px;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.event-meta-item {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
}

.event-meta-label {
  display: block;
  color: rgba(242,237,228,0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  margin-bottom: 6px;
}

.event-meta-value { color: var(--white); font-size: 14px; line-height: 1.35; }

/* LEADERSHIP */
.officers-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.leadership-feature {
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.leadership-feature-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  min-height: 100%;
}

.leadership-feature img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.leadership-feature-copy { padding: 34px; }

.leadership-feature-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
}

.leadership-role {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.leadership-feature-copy p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }

.leadership-secondary { display: grid; gap: 18px; }

.officer-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.officer-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(200,146,42,0.28);
}

.officer-mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 18px;
}

.officer-mini h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.officer-mini p { color: var(--muted); font-size: 13px; }

/* DONATE */
.donate-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.donate-callout {
  border-radius: 32px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(200,146,42,0.12), transparent 30%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.donate-callout::after {
  content: "Support";
  position: absolute;
  right: -6px;
  bottom: -28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  color: rgba(200,146,42,0.05);
  letter-spacing: 0.04em;
  pointer-events: none;
}

.donate-callout p { color: var(--muted); max-width: 560px; margin-bottom: 18px; }

.impact-points { display: grid; gap: 14px; margin: 24px 0 30px; }

.impact-point {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.impact-point strong { color: var(--white); font-weight: 700; }

.trust-dot {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 6px rgba(200,146,42,0.1);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: stretch;
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 240px;
}

.tier-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 50px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.tier-card h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.tier-card p { color: var(--muted); font-size: 14px; }

/* BINGO */
.bingo-shell {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 24px;
  align-items: stretch;
}

.bingo-card, .bingo-side {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.bingo-card { padding: 34px; }

.days-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 22px;
}

.days-row span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200,146,42,0.14);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(9,22,35,0.44);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.schedule-row:last-child { border-bottom: none; padding-bottom: 0; }

.schedule-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; }

.schedule-value {
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.location-card {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(9,22,35,0.44);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.location-card svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.location-card small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.location-card a {
  color: var(--white);
  text-decoration-color: rgba(200,146,42,0.4);
  text-underline-offset: 3px;
}

.location-sub { color: var(--muted); font-size: 13px; margin-top: 4px; font-style: italic; }

.bingo-side { display: grid; grid-template-rows: 1.1fr 0.9fr; }

.bingo-photo { min-height: 300px; position: relative; overflow: hidden; }

.bingo-photo img { width: 100%; height: 100%; object-fit: cover; }

.bingo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,22,35,0.1), rgba(9,22,35,0.5));
}

.bingo-info { padding: 28px; display: grid; gap: 16px; }

.expect-list { list-style: none; padding: 0; display: grid; gap: 12px; }

.expect-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(9,22,35,0.42);
  color: var(--muted);
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* TOUR */
.tour-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.tour-copy, .tour-media-wrap {
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.tour-copy { padding: 34px; }

.tour-quickfacts { display: grid; gap: 12px; margin-top: 22px; }

.tour-quickfacts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 13px;
}

.tour-quickfacts strong { color: var(--white); font-weight: 500; }

.tour-media-wrap { aspect-ratio: 16 / 10; box-shadow: var(--shadow); }

.tour-media-wrap iframe { width: 100%; height: 100%; border: 0; }

/* CONTACT */
.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy, .contact-form-wrap {
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 34px;
}

.contact-copy p { color: var(--muted); margin-bottom: 26px; }

.contact-list { display: grid; gap: 16px; margin-bottom: 28px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(9,22,35,0.38);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

.contact-item small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-item div, .contact-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.contact-note { color: var(--muted); font-size: 13px; }

/* FORM */
form { display: grid; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field { display: grid; gap: 8px; }

.field label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(200,146,42,0.16);
  background: rgba(9,22,35,0.6);
  color: var(--cream);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(200,146,42,0.55);
  background: rgba(9,22,35,0.78);
  transform: translateY(-1px);
}

.field select option { background: #102131; }

.field textarea { min-height: 140px; resize: vertical; }

.form-submit-btn { border: none; cursor: pointer; }

.form-disclaimer { color: var(--muted); font-size: 12px; }
.form-disclaimer a { color: var(--gold); text-decoration: none; }

.form-status { display: none; padding: 14px 16px; border-radius: 18px; font-size: 13px; }
.form-status.show { display: block; }
.form-status.success { background: rgba(57,165,96,0.12); color: #bde7c7; border: 1px solid rgba(57,165,96,0.24); }

/* FOOTER */
footer { padding: 56px 0 42px; background: #06101a; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  margin-bottom: 34px;
}

.footer-brand p { color: var(--muted); max-width: 420px; margin-top: 18px; font-size: 14px; }

.footer-title {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; display: grid; gap: 10px; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.revealed > * { opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.revealed > *:nth-child(2) { transition-delay: 0.10s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.20s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.30s; }

/* Ensure revealed elements never remain invisible on mobile */
@media (max-width: 920px) {
  [data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .stagger > * {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* COUNT-UP */
.count-up { transition: color 0.3s ease; }
.count-up.counting { color: var(--gold-2); }

@keyframes countPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.count-up.done {
  animation: countPulse 0.4s ease forwards;
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .hero-shell,
  .officers-layout,
  .donate-shell,
  .bingo-shell,
  .tour-shell,
  .contact-shell { grid-template-columns: 1fr; }

  .impact-grid,
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-visual { min-height: 560px; }
  .hero-title { max-width: 100%; }
  .hero-panel { left: 20px; }
}

@media (max-width: 920px) {
  .announcement-bar .container { padding: 8px 0; line-height: 1.4; }
  nav { top: 42px; }
  .nav-actions .btn { display: none; }
  .nav-menu-btn { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: calc(42px + var(--nav-h));
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(9,22,35,0.08);
    box-shadow: 0 24px 48px rgba(0,0,0,0.14);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links li { list-style: none; }
  .nav-links a { display: block; padding: 12px 14px; border-radius: 16px; }
  .nav-links a:hover { background: rgba(9,22,35,0.05); }

  .hero-proof,
  .impact-grid,
  .events-grid,
  .event-meta,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }

  .section-header-split,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 42px; }
  .hero-title {
    font-size: clamp(38px, 11vw, 64px);
    max-width: 100%;
    line-height: 0.92;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .hero-visual { min-height: 380px; }
  .hero-panel { position: relative; left: auto; bottom: auto; width: auto; margin: 16px; }
  .hero-copy { padding: 24px 0; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.12em; padding: 8px 12px; margin-bottom: 18px; }
  .hero-desc { font-size: 14px; margin-bottom: 20px; }
  .hero-proof { gap: 10px; margin: 24px 0; }
  .hero-proof-card { padding: 14px 12px; }
  .hero-proof-value { font-size: 26px; }

  /* Section headers */
  .section-title { font-size: clamp(36px, 9vw, 56px); }
  .section-header-split { gap: 16px; }

  /* ── EVENTS — static flow layout on mobile ── */
  .event-card {
    /* Switch from overlay to stacked flow */
    position: relative;
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  /* Image: fixed height at top, not absolute */
  .event-card img {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center 30%;
  }

  /* Remove the dark gradient overlay — not needed in flow layout */
  .event-card::after { display: none; }

  /* Content: static, flows below image, dark bg for readability */
  .event-content {
    position: static;
    background: rgba(9, 22, 35, 0.96);
    padding: 20px 18px 22px;
    border-radius: 0 0 30px 30px;
  }

  .event-title { font-size: 32px; line-height: 1; margin-bottom: 8px; }
  .event-desc { font-size: 13px; margin-bottom: 14px; line-height: 1.6; }

  /* Show all 3 meta items stacked */
  .event-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .event-meta-item:nth-child(2),
  .event-meta-item:nth-child(3) { display: block; }
  .event-meta-item { padding: 10px 12px 9px; border-radius: 12px; }

  /* ── LEADERSHIP ── */
  /* President card — match officer-mini layout exactly */
  .leadership-feature {
    border-radius: 24px;
  }
  .leadership-feature-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .leadership-feature img {
    width: 100%;
    height: 280px; /* fallback for Safari < 15 */
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: unset;
    object-fit: cover;
    object-position: 50% 25%;
    border-radius: 0;
  }
  .leadership-feature-copy { padding: 16px 18px 20px; }
  .leadership-feature-copy h3 { font-size: 20px; }

  /* ── OFFICER MINI — proper face crop ── */
  .officer-mini {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .officer-mini img {
    width: 100%;
    height: 280px; /* fallback for Safari < 15 */
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 25%;
    border-radius: 22px 22px 0 0;
  }
  .officer-mini > div {
    padding: 16px 18px 20px;
  }
  .officer-mini h4 { font-size: 20px; }

  /* ── BINGO ── */
  .bingo-card { padding: 24px 20px; }
  .bingo-side { grid-template-rows: auto auto; }
  .bingo-photo { min-height: 200px; }
  .bingo-info { padding: 20px; }

  /* ── TIERS / IMPACT ── */
  .announcement-bar .container { font-size: 11px; letter-spacing: 0.06em; }
  .impact-grid, .tiers { grid-template-columns: 1fr; }
  .tier-card { min-height: unset; padding: 20px 18px; }

  /* ── TOUR ── */
  .tour-copy { padding: 22px 20px; }

  /* ── CONTACT ── */
  .contact-copy, .contact-form-wrap { padding: 22px 20px; }

  /* ── FOOTER ── */
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], .stagger > * { opacity: 1 !important; transform: none !important; }
}


/* ══════════════════════════════════════════
   BIO LIGHTBOX — simple display:none toggle
   ══════════════════════════════════════════ */

/* Backdrop */
.bio-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 12, 20, 0.88);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Show state — JS adds this class */
.bio-overlay.is-open {
  display: flex;
}

/* The card */
.bio-box {
  position: relative;
  background: #0f2031;
  border: 1px solid rgba(200, 146, 42, 0.22);
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

/* Scrollbar styling */
.bio-box::-webkit-scrollbar { width: 6px; }
.bio-box::-webkit-scrollbar-track { background: transparent; }
.bio-box::-webkit-scrollbar-thumb { background: rgba(200,146,42,0.3); border-radius: 3px; }

/* Close button — top right corner */
.bio-close {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px 0;
  background: #0f2031;
  z-index: 2;
}

.bio-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #f2ede4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.bio-close-btn:hover {
  background: rgba(200, 146, 42, 0.18);
  border-color: rgba(200, 146, 42, 0.45);
}

/* Inner layout: photo + text */
.bio-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.bio-photo {
  border-radius: 0 0 0 20px;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.bio-text {
  padding: 24px 30px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.bio-body p {
  color: #98a8bb;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 10px;
}

.bio-body p:last-child { margin-bottom: 0; }

.bio-cta {
  margin-top: 6px;
}

/* Mobile: stack photo on top */
@media (max-width: 580px) {
  .bio-inner {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    border-radius: 0;
    max-height: 220px;
  }

  .bio-photo img {
    min-height: 220px;
    max-height: 220px;
  }

  .bio-text {
    padding: 20px 20px 28px;
  }

  .bio-name { font-size: 24px; }
}
