/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #111111;
  --gold: #1CC8DE;
  --gold-light: #52D8EC;
  --gold-dark: #0FAFC4;
  --white: #ffffff;
  --off-white: #f0fafa;
  --gray-light: #dff0f2;
  --gray-mid: #8a8a8a;
  --gray-dark: #3a3a3a;
  --text: #1a1a1a;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Figtree', Helvetica, Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.12;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--light {
  background: var(--off-white);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: inherit;
  margin-bottom: 20px;
}

.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 620px;
  line-height: 1.7;
}

.section-sub--white { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.btn--outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: #1a2d45;
  color: var(--white);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 200, 222, 0.3);
  transition: background var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 56px;
  width: auto;
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 8px;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  margin-left: 16px;
}

.nav__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.nav__social-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.nav__social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__social a {
  display: flex;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.nav__social a:hover {
  color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/village.jpeg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.60) 60%, rgba(0,0,0,0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.0;
  letter-spacing: 0.01em;
}

.hero__title span {
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gold);
  padding: 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.68);
}

/* ===== MISSION SECTION ===== */
.mission {
  padding: 96px 0;
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mission__image {
  position: relative;
}

.mission__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.mission__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 4px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.mission__founded {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.mission__founded-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.mission__body p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

.mission__quote {
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  background: var(--off-white);
  border-radius: 0 3px 3px 0;
}

/* ===== VALUES ===== */
.values {
  padding: 80px 0;
  background: var(--navy);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px;
  border-top: 3px solid transparent;
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-top-color: var(--gold);
}

.value-card__number {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(28, 200, 222, 0.22);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.value-card__text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== SPORTS SECTION ===== */
.sports {
  padding: 80px 0;
  background: var(--off-white);
}

.sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.sport-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sport-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sport-card__body {
  padding: 28px;
}

.sport-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.sport-card__title {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.sport-card__text {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sport-card__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sport-card__link::after {
  content: '→';
  transition: transform var(--transition);
}
.sport-card:hover .sport-card__link::after {
  transform: translateX(4px);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--gold);
  padding: 64px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band__text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.cta-band__text p {
  color: rgba(0,0,0,0.68);
  font-size: 1rem;
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ===== IMPACT / TESTIMONIAL ===== */
.impact {
  padding: 80px 0;
  background: var(--white);
}

.impact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.impact__image {
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.impact__list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.impact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.impact__item-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.impact__item-text {
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: url('../images/about-story.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.65;
}

/* ===== DONATIONS PAGE ===== */
.donate-intro {
  padding: 80px 0;
}

.donate-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.donate-tiers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.donate-tier {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 22px 24px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.donate-tier:hover,
.donate-tier.selected {
  border-color: var(--gold);
  background: rgba(28, 200, 222, 0.06);
}

.donate-tier.featured {
  border-color: var(--gold);
  border-width: 2px;
}

.donate-tier__badge {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 2px;
}

.donate-tier__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.donate-tier__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
}

.donate-tier__amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-dark);
}

.donate-tier__text {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.55;
}

.donate-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--gray-light);
}

.donate-form h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.donate-form__sub {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 90px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#card-container {
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  background: var(--white);
}

.payment-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin: -3px 0 14px;
  line-height: 1.5;
}

.hidden {
  display: none !important;
}

/* ===== SUCCESS MODAL (donation / registration confirmation) ===== */
.success-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-modal {
  position: relative;
  background: var(--white);
  color: var(--navy);
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.success-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.5;
  cursor: pointer;
}

.success-modal__close:hover {
  opacity: 1;
}

.success-modal__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.success-modal h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.success-modal p {
  margin-bottom: 24px;
  color: #444;
  line-height: 1.5;
}

.wallet-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

#apple-pay-button,
#google-pay-button {
  flex: 1;
  height: 44px;
}

#apple-pay-button {
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: pay;
  -apple-pay-button-style: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

#apple-pay-button.unsupported {
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
  color: var(--gray-mid);
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.3;
  padding: 4px 8px;
  cursor: not-allowed;
}

.wallet-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.wallet-divider::before,
.wallet-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}

.form-error {
  min-height: 1.1em;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #c0392b;
}

.form-notice {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 14px;
  line-height: 1.55;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.amount-btn {
  padding: 10px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  background: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

/* ===== BOOSTER CLUB ===== */
.booster-benefits {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 32px;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.benefit-card__title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-card__title::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-card__text {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

.booster-tiers {
  padding: 80px 0;
  background: var(--navy);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.tier-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.tier-card:hover,
.tier-card.highlighted {
  border-color: var(--gold);
  background: rgba(28,200,222,0.08);
}

.tier-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.tier-card__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.tier-card__price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.tier-card__period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.tier-card__perks {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-card__perks li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.tier-card__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.booster-join {
  padding: 80px 0;
  background: var(--off-white);
}

.booster-join__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.booster-join__aside h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.booster-join__aside p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--navy);
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 80px 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-story__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.about-story__body h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.about-story__body p {
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 18px;
}

.timeline {
  padding: 80px 0;
  background: var(--off-white);
}

.timeline__list {
  position: relative;
  margin-top: 52px;
  padding-left: 36px;
}

.timeline__list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -42px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}

.timeline__year {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline__title {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 0.93rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

.timeline__link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-decoration: none;
}

.timeline__link:hover {
  text-decoration: underline;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  background: #ffffff;
  border-radius: 4px;
  padding: 6px 10px;
  display: block;
  margin-bottom: 14px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer__social-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  display: flex;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__social a:hover {
  color: var(--gold);
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-note {
  color: rgba(255,255,255,0.35);
}

.footer__nonprofit {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 960px) {
  /* Remove backdrop-filter so site-header stops being a containing block
     for fixed-position children (Chrome/Safari behaviour) */
  .site-header {
    backdrop-filter: none;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 24px;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav__links.open { display: flex; background-color: #ffffff; }
  .nav__links a { font-size: 1.2rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .mission__grid { grid-template-columns: 1fr; }
  .mission__image { display: none; }
  .values__grid { grid-template-columns: 1fr; gap: 2px; }
  .impact__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }

  .donate-intro__grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .booster-join__grid { grid-template-columns: 1fr; }

  .about-story__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero__actions { flex-direction: column; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .amount-options { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===== COLOR REVERSAL: dark body / white accent sections ===== */

body {
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
}

.section-title { color: rgba(255, 255, 255, 0.95); }
.section-sub   { color: rgba(255, 255, 255, 0.62); }

/* --- Header: flip to white --- */
.site-header {
  background: rgba(255, 255, 255, 0.97);
}
.nav__links a {
  color: rgba(0, 0, 0, 0.72);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-dark);
}
.nav__social-label {
  color: rgba(0, 0, 0, 0.55);
}
.nav__social a {
  color: rgba(0, 0, 0, 0.72);
}
.nav__social a:hover {
  color: var(--gold-dark);
}
.nav__toggle span {
  background: #111111;
}
.nav__logo-img {
  background: transparent;
  padding: 2px 0;
}

/* Mobile drawer: dark text */
@media (max-width: 960px) {
  .nav__links a {
    color: rgba(0, 0, 0, 0.80);
  }
  .nav__links a:hover,
  .nav__links a.active {
    color: var(--gold-dark);
  }
  .nav__social {
    margin-top: 12px;
  }
  .nav__social-label {
    color: rgba(0, 0, 0, 0.60);
  }
  .nav__social a {
    color: rgba(0, 0, 0, 0.80);
  }
}

/* --- btn--navy: white button works on dark body and cyan band --- */
.btn--navy {
  background: #ffffff;
  color: #111111;
}
.btn--navy:hover {
  background: #f0f0f0;
  color: #111111;
}

/* --- Mission section (default dark body) --- */
.mission__body p {
  color: rgba(255, 255, 255, 0.78);
}
.mission__quote {
  background: #1e1e1e;
  color: rgba(255, 255, 255, 0.88);
}
.mission__founded {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

/* --- VALUES: dark → WHITE --- */
.values { background: #f5f5f5; }
.values .section-title--white  { color: #111111; }
.values .section-sub--white    { color: rgba(0, 0, 0, 0.62); }
.values .section-label         { color: var(--gold-dark); }
.value-card                    { background: rgba(0, 0, 0, 0.04); }
.value-card:hover              { background: rgba(0, 0, 0, 0.08); }
.value-card__number            { color: rgba(28, 200, 222, 0.28); }
.value-card__title             { color: #111111; }
.value-card__text              { color: rgba(0, 0, 0, 0.64); }

/* --- Sports section (off-white → dark, inherits body) --- */
.sports { background: #1a1a1a; }
.sport-card {
  background: #242424;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.sport-card__title { color: #ffffff; }
.sport-card__text  { color: rgba(255, 255, 255, 0.65); }

/* --- Impact section (white → dark body) --- */
.impact { background: #111111; }
.impact__item-text { color: rgba(255, 255, 255, 0.72); }

/* --- Page-hero: dark → WHITE (force overrides inline styles) --- */
.page-hero { background: #f5f5f5 !important; }
.page-hero::before { opacity: 0.06; }
.page-hero__title  { color: #111111 !important; }
.page-hero__sub    { color: rgba(0, 0, 0, 0.60); }
.page-hero .section-label { color: var(--gold-dark); }

/* --- Register page-hero: opt back out of the white override above --- */
.page-hero--dark { background: var(--navy) !important; }
.page-hero--dark::before { opacity: 1; }
.page-hero--dark .page-hero__title { color: var(--white) !important; }
.page-hero--dark .page-hero__sub   { color: rgba(255, 255, 255, 0.72); }
.page-hero--dark .section-label    { color: var(--gold); }

/* --- About-story headings (on dark body, may have inline color: var(--navy)) --- */
.about-story__body h2,
.about-story__body .section-title { color: #ffffff !important; }
.about-story__body h3  { color: #ffffff !important; }
.about-story__body p   { color: rgba(255, 255, 255, 0.76); }

/* --- Timeline (white background, dark text) --- */
.timeline { background: #ffffff; }
.timeline .section-title { color: #111111; }
.timeline .section-label { color: var(--gold-dark); }
.timeline__title { color: #111111; }
.timeline__text  { color: rgba(0, 0, 0, 0.64); }
.timeline__dot   { border-color: #ffffff; }
.timeline__list::before {
  background: linear-gradient(to bottom, var(--gold), rgba(0, 0, 0, 0.12));
}

/* --- Donate tiers (dark body) --- */
.donate-tier {
  border-color: rgba(255, 255, 255, 0.14);
}
.donate-tier:hover,
.donate-tier.selected {
  border-color: var(--gold);
  background: rgba(28, 200, 222, 0.07);
}
.donate-tier__name { color: rgba(255, 255, 255, 0.90); }
.donate-tier__text { color: rgba(255, 255, 255, 0.52); }

/* --- Donate form (dark bg) --- */
.donate-form {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.10);
}
.donate-form h2       { color: #ffffff; }
.donate-form__sub     { color: rgba(255, 255, 255, 0.52); }
.form-group label     { color: rgba(255, 255, 255, 0.78); }
.form-group input,
.form-group select,
.form-group textarea  {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.30); }
#card-container {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.14);
}
.payment-disclaimer { color: rgba(255, 255, 255, 0.38); }
.wallet-divider { color: rgba(255, 255, 255, 0.38); }
.wallet-divider::before,
.wallet-divider::after { background: rgba(255, 255, 255, 0.14); }
.form-notice { color: rgba(255, 255, 255, 0.38); }
.amount-btn {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}
.amount-btn:hover,
.amount-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #111111;
}

/* --- Light sections stay white, with dark text --- */
.section--light {
  background: #f5f5f5;
}
.section--light .section-label { color: var(--gold-dark); }
.section--light .section-title { color: #111111; }
.section--light .section-sub   { color: rgba(0, 0, 0, 0.62); }

/* --- Benefit cards (dark body) --- */
.benefit-card {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.10);
}
.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.50);
}
.benefit-card__title { color: #ffffff; }
.benefit-card__text  { color: rgba(255, 255, 255, 0.64); }

/* --- Booster tiers: dark → WHITE --- */
.booster-tiers { background: #f5f5f5; }
.booster-tiers .section-label        { color: var(--gold-dark); }
.booster-tiers .section-title--white { color: #111111; }
.booster-tiers .section-sub--white   { color: rgba(0, 0, 0, 0.60); }
.tier-card {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}
.tier-card:hover,
.tier-card.highlighted {
  background: rgba(28, 200, 222, 0.07);
  border-color: var(--gold);
}
.tier-card__name   { color: #111111; }
.tier-card__price  { color: var(--gold-dark); }
.tier-card__period { color: rgba(0, 0, 0, 0.48); }
.tier-card__perks li { color: rgba(0, 0, 0, 0.70); }

/* --- Booster join / contact aside (off-white → dark) --- */
.booster-join { background: #1a1a1a; }
.booster-join__aside h3 { color: #ffffff; }
.booster-join__aside p  { color: rgba(255, 255, 255, 0.70); }
.contact-info__value,
.contact-info__value a  { color: rgba(255, 255, 255, 0.88) !important; }

/* --- Footer: dark → WHITE --- */
.site-footer {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.62);
}
.footer__grid { border-bottom-color: rgba(0, 0, 0, 0.10); }
.footer__brand p     { color: rgba(0, 0, 0, 0.52); }
.footer__col h4      { color: var(--gold-dark); }
.footer__social-label { color: var(--gold-dark); }
.footer__links a     { color: rgba(0, 0, 0, 0.52); }
.footer__links a:hover { color: var(--gold-dark); }
.footer__social a    { color: rgba(0, 0, 0, 0.52); }
.footer__social a:hover { color: var(--gold-dark); }
.footer__bottom      { color: rgba(0, 0, 0, 0.38); }
.footer__bottom-note { color: rgba(0, 0, 0, 0.38); }
.footer__nonprofit   { color: var(--gold-dark); }
.footer__logo-img    { background: transparent; padding: 0; }

/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
  background: #000;
  user-select: none;
}

.slideshow__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slideshow__slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.50);
  border: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}

.slideshow__btn:hover { background: rgba(0, 0, 0, 0.82); }
.slideshow__btn--prev { left: 14px; }
.slideshow__btn--next { right: 14px; }

.slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slideshow__dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

@media (max-width: 600px) {
  .slideshow__slide img { height: 240px; }
  .slideshow__btn { width: 36px; height: 36px; }
}

/* ===== EVENTS PAGE ===== */
.events {
  padding: 72px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.event-card {
  background: #1e1e1e;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
}

.event-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-card__img--contain {
  object-fit: contain;
  background: #000000;
}

.event-card__credit {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
  padding: 4px 12px 0;
}

.event-card__credit a {
  color: rgba(255,255,255,0.5);
}

.event-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.event-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.event-card__tag--soon {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

.event-card__date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.event-card__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 20px;
}

.event-card__facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.event-card__facts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.event-card__facts li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.event-card__facts a {
  color: var(--gold);
}

.event-card__subfacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.event-card__subfacts li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.event-card__subfacts li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.event-card__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.event-card__link::after {
  content: '→';
  transition: transform var(--transition);
}

.event-card:hover .event-card__link::after {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ===== HUB QUICK NAV (Booster Club page) ===== */
.hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hub-nav__link {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  padding: 8px 18px;
  transition: all var(--transition);
}

.hub-nav__link:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

/* ===== SCHOOL DONATION CARDS ===== */
.school-donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.school-donate-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 32px;
  transition: all var(--transition);
}

.school-donate-card:hover {
  border-color: var(--gold);
  background: rgba(28, 200, 222, 0.06);
}

.school-donate-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.school-donate-card__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  flex-shrink: 0;
}

.school-donate-card__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #111111;
  letter-spacing: 0.02em;
}

.school-donate-card__meta {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.school-donate-card__text {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.64);
  line-height: 1.6;
  margin-bottom: 22px;
}

.school-donate-card__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.school-amount-btn {
  flex: 1 1 64px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  background: #ffffff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: #111111;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.school-amount-btn:hover,
.school-amount-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #111111;
}

.school-donate-card__btn {
  width: 100%;
  text-align: center;
}

.school-donate-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.55);
}

/* ===== SPONSOR / PARTNER CARDS ===== */
.section--white {
  background: #ffffff;
}

.section--light .section-label,
.section--white .section-label { color: var(--gold-dark); }
.section--light .section-title,
.section--white .section-title { color: #111111; }
.section--light .section-sub,
.section--white .section-sub   { color: rgba(0, 0, 0, 0.62); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 24px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition);
}

a.partner-card:hover {
  border-color: var(--gold);
  background: rgba(28, 200, 222, 0.06);
  transform: translateY(-3px);
}

.partner-card__logo-wrap {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px;
  flex-shrink: 0;
}

.partner-card__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card__logo-wrap--initial {
  background: rgba(28, 200, 222, 0.10);
  border: none;
}

.partner-card__logo-wrap--dark {
  background: var(--navy);
  border: none;
}

.partner-card__initial {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
  white-space: nowrap;
}

.partner-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: #111111;
  line-height: 1.25;
}

.partner-card__meta {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.5;
}

.partner-card__link-label {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ===== DONATION IMPACT STAT ===== */
.donation-stat {
  max-width: 420px;
  margin: 40px auto 0;
  text-align: center;
  padding: 26px 32px;
  background: var(--gold);
  border-radius: 4px;
}

.donation-stat__number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.donation-stat__label {
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.68);
}

