:root {
  --maroon: #6f2632;
  --maroon-dark: #511921;
  --cream: #f7f2eb;
  --ink: #181717;
  --text: #232323;
  --muted: #676767;
  --line: #e6ddd2;
  --white: #fff;
  --shadow: 0 20px 50px rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--cream); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.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; }
.site-header {
  position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; background: rgba(24,23,23,.82); backdrop-filter: blur(12px); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { font-weight: 800; letter-spacing: .02em; }
#section-jump {
  padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: var(--white);
}
.hero { position: relative; min-height: 92vh; display: grid; place-items: center; overflow: hidden; background: var(--ink); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)); }
.hero-content { position: relative; text-align: center; color: var(--white); width: min(1100px, 92vw); padding: 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; opacity: .9; margin-bottom: 10px; font-size: .9rem; }
.hero h1 { margin: 0 0 10px; font-size: clamp(2.8rem, 8vw, 6rem); line-height: .95; font-weight: 900; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.35rem); max-width: 720px; margin: 0 auto 26px; opacity: .96; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 18px; font-weight: 700; cursor: pointer; border: none;
}
.button.light { background: var(--white); color: var(--ink); }
.button.outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.55); }
.button.dark { background: var(--maroon); color: var(--white); }
.button.ghost { background: transparent; color: var(--maroon-dark); border: 1px solid var(--line); }
.button.block { width: 100%; }
.section { padding: 80px 20px; }
.narrow { width: min(1100px, 94vw); margin: 0 auto; }
.section h2 { margin-top: 0; font-size: clamp(2rem, 4vw, 3rem); color: var(--maroon-dark); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 850px; }
.about-grid, .roster-grid { display: grid; gap: 18px; margin-top: 28px; }
.about-grid { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.info-card, .roster-card, .donation-card, .contact-box {
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow);
}
.info-card h3, .roster-card h3 { margin-top: 0; color: var(--maroon-dark); }
.roster-grid { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.roster-card ul { margin: 0; padding-left: 18px; }
.roster-card li { margin: 10px 0; }
.donate-section { background: linear-gradient(180deg, rgba(111,38,50,.06), rgba(111,38,50,.02)); }
.donation-wrap { display: grid; gap: 22px; grid-template-columns: 1.05fr .95fr; align-items: start; margin-top: 28px; }
.donation-card { max-width: 560px; }
.stack > * + * { margin-top: 12px; }
label { display: grid; gap: 8px; font-weight: 600; }
input {
  width: 100%; padding: 14px 14px; border-radius: 14px; border: 1px solid #d5c8bc; background: #fff; font-size: 1rem;
}
.small-note { color: var(--muted); font-size: .95rem; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hidden { display: none !important; }
.error { color: #9f1d1d; font-weight: 700; }
.summary { background: #faf6f0; border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.site-footer { padding: 26px 20px 46px; text-align: center; color: var(--muted); }
@media (max-width: 900px) {
  .donation-wrap { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; gap: 10px; align-items: stretch; }
  #section-jump { width: 100%; }
}
