/* ═══════════════════════════════════════════════════════════════
   Lotawana Live — styles.css
   Fonts loaded via <link> in each HTML file (Google Fonts)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design tokens ───────────────────────────────────────────── */
:root {
  /* Colors — sampled from the 2025 logo */
  --color-primary:       #1E2D47;
  --color-primary-dark:  #14213a;
  --color-accent:        #3EDCB3;
  --color-accent-dark:   #2bb896;
  --color-gold:          #F5C840;
  --color-cream:         #F8F5EE;
  --color-ink:           #1C1C2A;
  --color-surface:       #ffffff;
  --color-border:        rgba(30,45,71,.1);
  --color-muted:         #6b7280;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing (4/8/12/16/24/32/48/64/96) */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* Components */
  --radius:      10px;
  --radius-sm:   6px;
  --radius-full: 999px;
  --shadow-sm:   0 1px 6px rgba(30,45,71,.10);
  --shadow:      0 4px 24px rgba(30,45,71,.15);
  --shadow-lg:   0 8px 40px rgba(30,45,71,.22);

  --max-w: 1200px;
  --content-w: 800px;
  --nav-h: 80px;
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-cream);
}
img, video { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ─── Layout helpers ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--content-w); }

.section { padding-block: var(--sp-9); }
.section--sm { padding-block: var(--sp-7); }
.section--dark { background: var(--color-primary); color: #fff; }
.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-surface); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Typography ──────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
  display: block;
}
.section-label--gold { color: var(--color-gold); }
.section-label--muted { color: var(--color-muted); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary { background: var(--color-accent); color: var(--color-primary); }
.btn--primary:hover { background: #fff; color: var(--color-primary); }
.btn--outline-dark { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn--outline-dark:hover { background: var(--color-primary); color: #fff; }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--gold { background: var(--color-gold); color: var(--color-primary); }
.btn--gold:hover { background: #fff; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ─── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--sp-5);
  transition: background .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: var(--color-primary);
  box-shadow: var(--shadow);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; flex-shrink: 0; }
.nav-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  transition: color .2s;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-links a.active { color: var(--color-accent); }

.nav-donate {
  background: var(--color-accent);
  color: var(--color-primary) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: .85rem !important;
  text-shadow: none !important;
  transition: background .2s, transform .15s !important;
  margin-left: var(--sp-3);
}
.nav-donate:hover { background: #fff !important; transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav-mobile-drawer.open { transform: translateX(0); }
.nav-mobile-drawer a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile-drawer a:hover { color: var(--color-accent); }
.nav-mobile-drawer .btn { font-size: 1.1rem; }

/* ─── Hero (home) ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,45,71,.50) 0%,
    rgba(30,45,71,.28) 45%,
    rgba(30,45,71,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-5);
  max-width: 820px;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto var(--sp-5);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
  border: 3px solid rgba(255,255,255,.2);
}
.hero-title { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.5); margin-bottom: var(--sp-3); }
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--color-accent);
  margin-bottom: var(--sp-7);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-ctas { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce-hint 2.4s ease-in-out infinite;
}
@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ─── Sub-page hero (shorter) ────────────────────────────────── */
.hero--sub {
  min-height: 52vh;
  align-items: flex-end;
  padding-bottom: var(--sp-9);
}
.hero--sub .hero-title { font-size: clamp(2.5rem, 5vw, 4rem); }
.hero--sub .hero-tagline { font-size: clamp(1rem, 1.8vw, 1.2rem); margin-bottom: 0; }

/* ─── Season strip ────────────────────────────────────────────── */
.season-strip {
  background: var(--color-primary);
  color: var(--color-gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: .9rem var(--sp-5);
}

/* ─── Mission section ─────────────────────────────────────────── */
.mission {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  padding-block: var(--sp-9);
  padding-inline: var(--sp-5);
}
.mission p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--color-ink);
  line-height: 1.75;
}

/* ─── Section headings ────────────────────────────────────────── */
.section-head { margin-bottom: var(--sp-7); }
.section-head--center { text-align: center; }
.section-head h2 { color: var(--color-primary); }
.section-head p {
  margin-top: var(--sp-4);
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 60ch;
}
.section-head--center p { margin-inline: auto; }

/* ─── Tennis court progress ───────────────────────────────────── */
.courts-section { background: var(--color-surface); }

.progress-wrap {
  margin-block: var(--sp-6);
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-3);
}
.progress-raised {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}
.progress-raised span { font-size: 1rem; color: var(--color-muted); font-weight: 400; }
.progress-goal {
  font-size: .9rem;
  color: var(--color-muted);
}
.progress-bar-track {
  height: 14px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;                        /* animated via JS */
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: var(--radius-full);
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.progress-pct {
  margin-top: var(--sp-2);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  text-align: right;
}

.courts-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-block: var(--sp-6);
}
.courts-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.courts-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.courts-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(30,45,71,.8), transparent);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
}
.courts-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--color-primary);
  color: var(--color-cream);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}
.courts-coming-soon svg { opacity: .3; }

.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-block: var(--sp-6);
}
.phase-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  background: var(--color-cream);
}
.phase-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}
.phase-card .phase-cost {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: var(--sp-3);
}
.phase-card p { font-size: .875rem; color: var(--color-muted); line-height: 1.6; }

/* ─── What-we-do cards ────────────────────────────────────────── */
.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.event-card:hover .event-card-img { transform: scale(1.04); }
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,45,71,.9) 0%, rgba(30,45,71,.3) 55%, transparent 100%);
}
.event-card-body {
  position: relative;
  z-index: 2;
  padding: var(--sp-6);
  color: #fff;
}
.event-card-body .section-label { color: var(--color-accent); margin-bottom: var(--sp-2); }
.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.event-card-body p { font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: var(--sp-5); line-height: 1.6; }
.event-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-accent);
  font-weight: 600;
  font-size: .9rem;
}

/* ─── Gallery grid ────────────────────────────────────────────── */
.gallery-section { background: var(--color-primary); }
.gallery-section .section-head h2 { color: #fff; }
.gallery-section .section-label { color: var(--color-gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: rgba(255,255,255,.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,45,71,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(30,45,71,.35); }
.gallery-item-overlay svg { opacity: 0; transition: opacity .3s; color: #fff; }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* Featured items span more cells */
.gallery-item--wide  { grid-column: span 2; }
.gallery-item--tall  { grid-row: span 2; }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }

/* ─── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,20,35,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  color: rgba(255,255,255,.7);
  font-size: 1.75rem;
  line-height: 1;
  padding: var(--sp-2);
  transition: color .2s;
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.65);
  background: rgba(30,45,71,.5);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: color .2s, background .2s;
  z-index: 5;
}
.lightbox-prev:hover, .lightbox-next:hover { color: #fff; background: var(--color-primary); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

/* ─── Sponsors ────────────────────────────────────────────────── */
.sponsors-grid {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-7);
}
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  border-radius: var(--radius);
  background: rgba(30,45,71,.06);
  border: 1px solid var(--color-border);
  padding: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: .9rem;
  text-align: center;
}
.sponsor-logo--featured {
  width: 240px;
  height: 120px;
  border-color: var(--color-accent);
  background: rgba(62,220,179,.06);
  font-size: 1rem;
}

/* ─── Newsletter ──────────────────────────────────────────────── */
.newsletter-section { background: var(--color-primary); }
.newsletter-section .section-head h2 { color: #fff; }
.newsletter-section .section-label { color: var(--color-gold); }
.newsletter-section .section-head p { color: rgba(255,255,255,.7); }

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: .8rem 1.1rem;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input[type="email"]:focus { border-color: var(--color-accent); }

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.65);
  padding-block: var(--sp-8);
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-8);
}
.footer-brand .nav-logo-img { margin-bottom: var(--sp-4); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 28ch; }
.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-bottom {
  max-width: var(--max-w);
  margin: var(--sp-7) auto 0;
  padding: var(--sp-5) var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: var(--sp-4);
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--color-accent); }

/* ─── Concert lineup cards ────────────────────────────────────── */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.lineup-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform .2s, box-shadow .2s;
}
.lineup-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.lineup-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--color-primary); }
.lineup-card-img img { width: 100%; height: 100%; object-fit: cover; }
.lineup-card-body { padding: var(--sp-5); }
.lineup-card-date {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--sp-3);
}
.lineup-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}
.lineup-card-body .genre {
  font-size: .875rem;
  color: var(--color-muted);
  margin-bottom: var(--sp-3);
}
.lineup-card-venue {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8rem;
  color: var(--color-muted);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border);
}

/* ─── Past lineups (stacked years) ───────────────────────────── */
.past-lineups { margin-top: var(--sp-9); }
.past-year { margin-bottom: var(--sp-7); }
.past-year-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  border-left: 4px solid var(--color-accent);
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.past-show-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.past-show {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.past-show-date {
  flex-shrink: 0;
  width: 90px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.4;
  padding-top: 2px;
}
.past-show-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}
.past-show-info p { font-size: .85rem; color: var(--color-muted); margin-top: 2px; }

/* ─── Venues callout ──────────────────────────────────────────── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.venue-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--sp-5);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.venue-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.venue-card h4::before { content: '📍'; font-size: .9rem; }
.venue-card p { font-size: .875rem; color: var(--color-muted); line-height: 1.6; }

/* ─── FAQ accordion ───────────────────────────────────────────── */
.faq-list { margin-top: var(--sp-6); max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--color-accent-dark); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent-dark);
  transition: transform .25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  font-size: .95rem;
  color: var(--color-muted);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: var(--sp-5); }
.faq-answer a { color: var(--color-accent-dark); }

/* ─── Weekend schedule (Lotasmoke) ───────────────────────────── */
.schedule-day { margin-bottom: var(--sp-7); }
.schedule-day-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-cream);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-gold);
  margin-bottom: var(--sp-4);
}
.schedule-row {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--color-border);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-time {
  flex-shrink: 0;
  width: 120px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--color-muted);
}
.schedule-event { font-size: .95rem; color: var(--color-ink); }
.schedule-event strong { color: var(--color-primary); }

/* ─── Categories (BBQ) ────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.category-card {
  text-align: center;
  padding: var(--sp-5);
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.category-card .icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.category-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}
.category-card p { font-size: .8rem; color: var(--color-muted); margin-top: var(--sp-1); }

/* ─── Lotasmoke history ───────────────────────────────────────── */
.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.history-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--sp-5);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.history-card-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: .15;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.history-card h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}
.history-card p { font-size: .875rem; color: var(--color-muted); line-height: 1.6; }

/* ─── Donate page ─────────────────────────────────────────────── */
.donate-venmo {
  text-align: center;
  padding: var(--sp-9);
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--color-accent);
  max-width: 500px;
  margin-inline: auto;
}
.donate-venmo .venmo-handle {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-block: var(--sp-4);
}
.donate-venmo .qr-placeholder {
  width: 180px;
  height: 180px;
  background: var(--color-cream);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: var(--sp-5) auto;
  color: var(--color-muted);
  font-size: .8rem;
  text-align: center;
  gap: var(--sp-2);
}
.donate-qr-note { font-size: .75rem; color: var(--color-muted); margin-top: var(--sp-3); }

.donate-ways {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.donate-way {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--sp-5);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.donate-way h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}
.donate-way p { font-size: .9rem; color: var(--color-muted); line-height: 1.6; }
.donate-way address { font-style: normal; font-size: .9rem; color: var(--color-ink); line-height: 1.8; margin-top: var(--sp-2); }

/* ─── About page ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.team-card {
  text-align: center;
  padding: var(--sp-5);
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.team-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  margin: 0 auto var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.team-card h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--color-primary); }
.team-card p  { font-size: .8rem; color: var(--color-muted); margin-top: 2px; }

.board-list { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-5); }
.board-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.board-item-name { font-weight: 600; color: var(--color-primary); }
.board-item-title { font-size: .85rem; color: var(--color-muted); }

.divisions-list { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-5); }
.division-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-cream);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: .9rem;
}
.division-name { font-weight: 600; color: var(--color-primary); min-width: 220px; }
.division-lead { color: var(--color-muted); }

/* ─── Scroll animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-logo { width: 120px; height: 120px; }

  .courts-images { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .event-cards { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--wide  { grid-column: span 2; }
  .gallery-item--tall  { grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-7); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .past-show { flex-direction: column; gap: var(--sp-2); }
  .past-show-date { width: auto; }

  .board-item { flex-direction: column; align-items: flex-start; gap: var(--sp-1); }

  .lightbox-prev { left: var(--sp-3); }
  .lightbox-next { right: var(--sp-3); }
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .donate-options-grid { grid-template-columns: 1fr !important; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .lineup-grid { grid-template-columns: 1fr; }
}

/* ─── Year tabs (Lotasmoke results) ──────────────────────────── */
.year-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--sp-7);
}
.year-tab {
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.year-tab:hover { color: var(--color-primary); }
.year-tab.active { color: var(--color-primary); border-bottom-color: var(--color-accent); }

.year-panel { display: none; }
.year-panel.active { display: block; }

.results-year-headline {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
  padding: var(--sp-5);
  background: var(--color-cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-gold);
}
.results-year-headline h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}
.results-year-headline p { font-size: .875rem; color: var(--color-muted); line-height: 1.6; }
.results-champion {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.results-champion span { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent-dark); display: block; margin-bottom: 2px; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.results-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.results-card-header {
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.results-card-header.party { background: var(--color-gold); color: var(--color-primary); }
.results-list {
  list-style: none;
  padding: var(--sp-2) 0;
}
.results-list li {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: .875rem;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
}
.results-list li:last-child { border-bottom: none; }
.results-list li:first-child { font-weight: 700; color: var(--color-primary); }
.results-place {
  flex-shrink: 0;
  width: 18px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-muted);
}
.results-list li:first-child .results-place { color: var(--color-gold); font-size: .85rem; }

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr 1fr; }
  .year-tab { padding: var(--sp-3) var(--sp-4); font-size: 1rem; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .hero-scroll { animation: none; }
}
