/* ============================================
   BECKETT'S WORLD — styles
   Gold + Seahawks + Lacrosse theme
   Mobile-first responsive design
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Gold palette */
  --gold:         #FFD700;
  --gold-dark:    #E5B800;
  --gold-light:   #FFF3B0;
  --gold-glow:    rgba(255, 215, 0, 0.35);

  /* Seahawks palette */
  --sea-navy:     #002244;
  --sea-green:    #69BE28;
  --sea-gray:     #A5ACAF;

  /* Neutrals */
  --dark:         #0d1b2a;
  --dark-2:       #1a2e44;
  --white:        #ffffff;
  --off-white:    #f8f6ee;
  --text:         #1c2b3a;
  --text-muted:   #5a6a7a;

  /* Typography */
  --font-heading: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  3rem;
  --gap-xl:  5rem;

  /* Borders & shadows */
  --radius-sm:  0.75rem;
  --radius-md:  1.25rem;
  --radius-lg:  2rem;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px var(--gold-glow);
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: var(--gap-md);
}

.section {
  padding-block: var(--gap-xl);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--dark);
  margin: 0 auto var(--gap-sm);
  width: fit-content;
}

.section__title::after {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  margin-top: 0.4rem;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--gap-md);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.btn--primary {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--fundraiser {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn--fundraiser:hover {
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.55);
}

.btn--fundraiser-big {
  font-size: 1.2rem;
  padding: 1.1rem 2.5rem;
  margin-top: var(--gap-sm);
}

/* ---------- Card ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.15);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--gap-md);
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  transition: background var(--transition);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav__emoji { font-size: 1.5rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

.nav__links a {
  color: var(--sea-gray);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
}

.nav__links a:hover, .nav__links a:focus-visible {
  color: var(--gold);
  outline: none;
}

.nav__fundraiser-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--radius-lg) !important;
  font-weight: 800 !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--gap-sm) var(--gap-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav__links.is-open {
    max-height: 400px;
    padding: var(--gap-sm) var(--gap-md) var(--gap-md);
    border-bottom: 2px solid var(--gold);
  }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--gap-md) var(--gap-xl);
  background: linear-gradient(
    160deg,
    var(--dark) 0%,
    var(--sea-navy) 50%,
    #0d1f35 100%
  );
  overflow: hidden;
}

/* Decorative floating balls */
.hero__balls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float linear infinite;
}

.ball--lacrosse {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 35% 35%, var(--white), #ccc);
  top: 10%;
  left: -5%;
  animation-duration: 18s;
  animation-delay: 0s;
  opacity: 0.08;
}

.ball--soccer {
  font-size: 7rem;
  top: 60%;
  right: -2%;
  animation-duration: 22s;
  animation-delay: -6s;
  opacity: 0.2;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ball--football {
  font-size: 5rem;
  top: 20%;
  right: 8%;
  animation-duration: 15s;
  animation-delay: -3s;
  opacity: 0.18;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0%   { transform: translateY(0px) rotate(0deg); }
  33%  { transform: translateY(-30px) rotate(120deg); }
  66%  { transform: translateY(15px) rotate(240deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

/* Hero content */
.hero__content { position: relative; z-index: 2; }

.hero__greeting {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--sea-gray);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 60px var(--gold-glow), 0 4px 0 var(--gold-dark);
  animation: shine 3s ease-in-out infinite alternate;
  letter-spacing: -0.02em;
}

@keyframes shine {
  0%  { text-shadow: 0 0 40px var(--gold-glow), 0 4px 0 var(--gold-dark); }
  100%{ text-shadow: 0 0 80px rgba(255,215,0,0.6), 0 4px 0 var(--gold-dark); }
}

.hero__tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: var(--sea-gray);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero__cta-group {
  display: flex;
  gap: var(--gap-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--sea-gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 2s 1.5s both;
}

.hero__arrow {
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--off-white); }

.about__grid {
  display: grid;
  gap: var(--gap-md);
  margin-top: var(--gap-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about__card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 5px solid var(--gold);
}

.about__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about__card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.about__card p { color: var(--text-muted); font-size: 1rem; }

.about__list {
  text-align: left;
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about__list li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =============================================
   SPORTS
   ============================================= */
.sports {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.sports .section__title { color: var(--gold); }

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

.sport__card {
  display: flex;
  flex-direction: column;
}

.sport__card--lacrosse  { border-top: 5px solid var(--gold); }
.sport__card--soccer    { border-top: 5px solid var(--sea-green); }
.sport__card--football  { border-top: 5px solid var(--sea-navy); }

.sport__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  font-size: 1rem;
}

.sport__image--lacrosse  { background: linear-gradient(135deg, var(--dark) 0%, #1a3350 100%); }
.sport__image--soccer    { background: linear-gradient(135deg, #1a3a1a 0%, #0d2b0d 100%); }
.sport__image--football  { background: linear-gradient(135deg, var(--sea-navy) 0%, #001533 100%); }

/* Lacrosse art */
.lacrosse-art {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lacrosse-stick {
  width: 8px;
  height: 120px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 60%, #8B6914 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
}

.lacrosse-stick::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 44px;
  border: 5px solid var(--gold);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
}

.lacrosse-stick--right { transform: scaleX(-1); }

.lacrosse-ball-art {
  font-size: 3.5rem;
  animation: spinBall 3s linear infinite;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

@keyframes spinBall {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Soccer art */
.soccer-art { text-align: center; }
.soccer-ball-big {
  font-size: 7rem;
  animation: rollBall 4s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

@keyframes rollBall {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50%       { transform: rotate(10deg) translateY(-10px); }
}

/* Football art */
.football-art { text-align: center; }
.football-ball-big {
  font-size: 7rem;
  animation: spiralBall 3s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

@keyframes spiralBall {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50%       { transform: rotate(15deg) translateY(-12px); }
}

/* Sport info */
.sport__info { padding: 1.75rem 1.5rem; }

.sport__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.sport__desc { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

.sport__facts { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.fact-pill {
  background: var(--gold-light);
  color: var(--dark);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* =============================================
   TEAM
   ============================================= */
.team { background: var(--off-white); }

.team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-md);
  max-width: 700px;
  margin: var(--gap-md) auto 0;
  border-top: 5px solid var(--sea-green);
}

@media (min-width: 600px) {
  .team__card { flex-direction: row; align-items: flex-start; }
}

.team__logo-area { flex-shrink: 0; }

.team__logo {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sea-navy) 0%, #003d80 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--sea-green);
  box-shadow: 0 0 30px rgba(105, 190, 40, 0.3);
}

.team__bird { font-size: 4rem; }

.team__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--sea-navy);
  margin-bottom: 0.5rem;
}

.team__colors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.color-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
}

.color-swatch--navy  { background: var(--sea-navy); }
.color-swatch--green { background: var(--sea-green); }
.color-swatch--gray  { background: var(--sea-gray); }

.team__desc { color: var(--text-muted); margin-bottom: 1.25rem; }

.team__player { margin-top: 0.5rem; }

.player__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--gold-light), #fff8d6);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.player__emoji { font-size: 2.5rem; }

.player__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  display: block;
}

.player__note {
  display: block;
  font-size: 0.85rem;
  color: var(--sea-navy);
  font-weight: 700;
}

.player__sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.gallery .section__title { color: var(--gold); }
.gallery .section__subtitle { color: var(--sea-gray); }

.gallery__grid {
  display: grid;
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Labels always visible on touch/mobile — no hover available */
@media (max-width: 699px) {
  .gallery__label {
    transform: translateY(0);
    font-size: 0.8rem;
    padding: 1.25rem 0.5rem 0.5rem;
  }
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__img { transform: scale(1.08); }

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem;
}

.gallery__placeholder-emoji { font-size: 3rem; }

.gallery__placeholder p {
  color: var(--sea-gray);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.gallery__placeholder small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 1.5rem 0.75rem 0.75rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery__item:hover .gallery__label { transform: translateY(0); }

/* =============================================
   FUN STUFF
   ============================================= */
.funstuff {
  background: linear-gradient(180deg, var(--off-white) 0%, #ece9dc 100%);
}

.fun__grid {
  display: grid;
  gap: var(--gap-md);
  margin-top: var(--gap-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.fun__card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 5px solid var(--gold);
}

.fun__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fun__card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.fun__card p { color: var(--text-muted); font-size: 1rem; }

/* ---- Ball Blitz Game ---- */
.game-section {
  margin-top: var(--gap-lg);
}

.game-header {
  text-align: center;
  margin-bottom: var(--gap-md);
}

.game-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.game-header__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.game-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
  max-width: 700px;
  margin-inline: auto;
  background: #0d1b2a;
}

#gameCanvas {
  display: block;
  width: 100%;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-start-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.game-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.game-how {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  color: var(--sea-gray);
  font-size: 0.95rem;
}

.game-newhigh {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.game-final-score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.game-best-label {
  color: var(--sea-gray);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.game-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 700px;
  margin-inline: auto;
  padding-inline: var(--gap-sm);
}

.game-ctrl-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  touch-action: none;
  flex-shrink: 0;
  transition: transform 0.1s ease, background 0.1s ease;
  box-shadow: var(--shadow-gold);
}

.game-ctrl-btn:active {
  transform: scale(0.88);
  background: var(--gold-dark);
}

.game-ctrl-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  flex: 1;
  line-height: 1.5;
}

/* =============================================
   FUNDRAISER
   ============================================= */
.fundraiser {
  background: linear-gradient(160deg, var(--sea-navy) 0%, #001a3a 100%);
  position: relative;
  overflow: hidden;
}

.fundraiser::before {
  content: '🏫';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.fundraiser__card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg) var(--gap-md);
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.12);
}

.fundraiser__icon {
  font-size: 4rem;
  margin-bottom: var(--gap-sm);
  animation: pulse 2s ease-in-out infinite;
}

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

.fundraiser__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold);
  margin-bottom: var(--gap-sm);
}

.fundraiser__desc {
  color: var(--sea-gray);
  font-size: 1.1rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

.fundraiser__stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  margin: 1rem 0;
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

.fundraiser__thanks {
  margin-top: 1.25rem;
  color: var(--sea-gray);
  font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: var(--gap-md);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__text {
  color: var(--sea-gray);
  font-size: 1rem;
  font-weight: 700;
}

.footer__sports {
  display: flex;
  gap: 1rem;
  font-size: 1.6rem;
}

.footer__subtext {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s;    opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: none; }

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__name { text-shadow: 0 4px 0 var(--gold-dark); }
}
