@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Nunito:wght@400;600;700;800&family=Caveat:wght@700&display=swap');

:root {
  --red: #C21529;
  --red-dark: #8B0F1E;
  --red-hover: #A8111F;
  --black: #111111;
  --text: #242424;
  --text-muted: #636363;
  --bg-light: #F7F3F1;
  --bg-white: #FFFFFF;
  --border: #DDD5D2;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.07);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  padding-top: var(--nav-h);
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--black);
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.accent { font-family: var(--font-accent); color: var(--red); font-size: 1.35em; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-light); }
.section--dark { background: var(--black); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1.02rem; max-width: 580px; margin: 0 auto; }
.divider { height: 4px; width: 44px; background: var(--red); border-radius: 2px; margin: 14px auto; }
.divider--left { margin-left: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--black);
  z-index: 1000;
  display: flex; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__logo:hover { text-decoration: none; }
.nav__logo-badge {
  width: 40px; height: 40px; background: var(--red); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.nav__logo-words strong {
  display: block; color: #fff; font-family: var(--font-heading);
  font-size: 0.92rem; font-weight: 700; line-height: 1.2;
}
.nav__logo-words span {
  display: block; color: #999; font-size: 0.72rem;
  font-family: var(--font-body); font-weight: 400;
}
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__links a {
  color: #ccc; text-decoration: none; padding: 6px 13px;
  border-radius: 6px; font-size: 0.88rem; font-weight: 700;
  font-family: var(--font-body); transition: all var(--transition); white-space: nowrap;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.nav__links a.active { color: #fff; background: var(--red); }
.nav__links .nav-cta {
  background: var(--red) !important; color: #fff !important;
  border-radius: 20px !important; padding: 7px 16px !important; margin-left: 6px;
}
.nav__links .nav-cta:hover { background: var(--red-hover) !important; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

@media (max-width: 880px) {
  .nav__links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--black); flex-direction: column; padding: 10px 0 18px;
    gap: 0; border-top: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 24px; border-radius: 0; width: 100%; }
  .nav__links .nav-cta { border-radius: 0 !important; margin-left: 0; }
  .nav__burger { display: flex; }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #C21529 0%, #7E0C19 45%, #111 100%);
  padding: 92px 0 76px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 85%, rgba(255,255,255,0.04) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.06) 0%, transparent 55%);
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.hero__eyebrow {
  font-family: var(--font-accent); font-size: 1.45rem;
  color: rgba(255,255,255,0.78); margin-bottom: 10px; display: block;
}
.hero h1 { color: #fff; margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 34px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero--sm { padding: 54px 0 50px; }
.hero--sm h1 { font-size: clamp(1.55rem, 4vw, 2.35rem); margin-bottom: 8px; }
.hero--sm p { font-size: 1rem; margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.94rem; font-weight: 800;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  color: #fff; text-decoration: none;
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(194,21,41,0.38);
}
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--outline:hover {
  background: rgba(255,255,255,0.1); border-color: #fff;
  color: #fff; text-decoration: none;
}
.btn--dark { background: transparent; color: var(--red); border-color: var(--red); }
.btn--dark:hover { background: var(--red); color: #fff; text-decoration: none; }
.btn--lg { padding: 15px 34px; font-size: 1.02rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Quick-nav cards (home) ---- */
.quick-nav { margin-top: -38px; position: relative; z-index: 2; padding-bottom: 0; }
.quick-nav .container { padding-bottom: 0; }
.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quick-card {
  background: #fff; border-radius: 12px; padding: 28px 20px;
  text-align: center; box-shadow: 0 4px 22px rgba(0,0,0,0.13);
  text-decoration: none; color: inherit; display: block;
  transition: all var(--transition); border-top: 4px solid var(--red);
}
.quick-card:hover {
  transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.17);
  text-decoration: none; color: inherit;
}
.quick-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.quick-card h3 { font-size: 1.02rem; margin-bottom: 5px; color: var(--black); }
.quick-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ---- Event items ---- */
.event-list { list-style: none; }
.event-item {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.event-item:last-child { border-bottom: none; }
.event-date { flex-shrink: 0; text-align: center; width: 56px; }
.event-date__mo {
  display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff; background: var(--red);
  border-radius: 5px 5px 0 0; padding: 3px 5px;
}
.event-date__day {
  display: block; font-size: 1.7rem; font-weight: 900;
  font-family: var(--font-heading); color: var(--black);
  background: var(--bg-light); border-radius: 0 0 5px 5px;
  padding: 1px 5px; line-height: 1.15;
}
.event-info { flex: 1; min-width: 0; }
.event-info h4 { margin-bottom: 3px; font-size: 0.98rem; }
.event-info p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 2px 8px; border-radius: 20px; margin-bottom: 5px;
}
.tag--spirit  { background: #FFF3CD; color: #7A5900; }
.tag--game    { background: #D0DCF5; color: #1A3580; }
.tag--comp    { background: #F8D7DA; color: #721C24; }
.tag--rehearsal { background: #E2E3E5; color: #3A3D42; }
.tag--fundraiser { background: #D4EDDA; color: #155724; }
.tag--meeting { background: #E8D5F5; color: #5A2A8B; }
.tag--camp    { background: #FFE4D6; color: #8B3A00; }
.tag--educator { background: #D5E8D4; color: #1A5C1A; }
.tag--perf    { background: #D1ECF1; color: #0C5460; }

/* ---- Calendar ---- */
.cal-wrap { max-width: 680px; margin: 0 auto; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-header h3 { font-size: 1.25rem; }
.cal-btn {
  background: none; border: 2px solid var(--border); border-radius: 8px;
  width: 38px; height: 38px; cursor: pointer; font-size: 1rem;
  color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cal-btn:hover { border-color: var(--red); color: var(--red); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-weekday {
  text-align: center; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); padding: 8px 0;
}
.cal-cell {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; border-radius: 7px; font-size: 0.88rem;
  font-weight: 700; position: relative; cursor: default;
  transition: background var(--transition); padding: 2px;
}
.cal-cell.empty { }
.cal-cell.other-month { color: #ccc; }
.cal-cell.normal { color: var(--text); }
.cal-cell.normal:hover { background: var(--bg-light); }
.cal-cell.today { background: var(--red); color: #fff; }
.cal-cell.has-event { background: rgba(194,21,41,0.09); color: var(--red); cursor: pointer; }
.cal-cell.has-event:hover { background: rgba(194,21,41,0.16); }
.cal-cell.today.has-event { background: var(--red); color: #fff; }
.cal-dot {
  display: none; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; margin-top: 2px; opacity: 0.6;
}
.has-event .cal-dot, .today .cal-dot { display: block; }
.today .cal-dot { background: rgba(255,255,255,0.7); }

/* popup */
.cal-popup {
  display: none; position: absolute; z-index: 50;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 14px 18px; width: 230px;
  left: 50%; transform: translateX(-50%);
  top: calc(100% + 7px); text-align: left;
  pointer-events: none;
}
.cal-popup.show { display: block; }
.cal-popup h5 { font-size: 0.87rem; font-family: var(--font-heading); margin-bottom: 3px; color: var(--black); }
.cal-popup p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 11px 15px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem;
  color: var(--text); background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(194,21,41,0.1); }
textarea.form-control { resize: vertical; min-height: 115px; }

/* ---- Contact cards ---- */
.contact-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px 24px; box-shadow: var(--shadow); text-align: center;
}
/*.contact-card__avatar {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 14px;
}*/
.contact-card__avatar {
  width: 66px; height: 0px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 14px;
}
.contact-card h4 { margin-bottom: 3px; }
.contact-card .role {
  color: var(--red); font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--red); }

/* ---- Support options ---- */
.support-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 38px 32px; box-shadow: var(--shadow);
  text-align: center; border-top: 4px solid var(--red);
}
.support-box__icon { font-size: 2.8rem; margin-bottom: 18px; }
.support-box h3 { margin-bottom: 10px; }
.support-box p { color: var(--text-muted); margin-bottom: 22px; font-size: 0.94rem; }
.price { font-size: 2.6rem; font-weight: 900; font-family: var(--font-heading); color: var(--red); line-height: 1; }
.price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 22px; margin-top: 2px; }

/* ---- Accordion ---- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; background: none; border: none; padding: 20px 26px;
  text-align: left; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-family: var(--font-heading); font-size: 0.98rem; font-weight: 700;
  color: var(--black); transition: background var(--transition);
}
.accordion-btn:hover { background: var(--bg-light); }
.accordion-btn.open { color: var(--red); background: var(--bg-light); }
.acc-icon { font-size: 1.1rem; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.accordion-btn.open .acc-icon { transform: rotate(45deg); color: var(--red); }
.accordion-panel { display: none; padding: 0 26px 22px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }
.accordion-panel.open { display: block; }
.accordion-panel h5 { font-family: var(--font-heading); font-size: 0.88rem; color: var(--black); margin: 14px 0 5px; }
.accordion-panel ul { padding-left: 1.4em; }
.accordion-panel ul li { margin-bottom: 5px; }
.accordion-panel a { color: var(--red); }

/* ---- Board members ---- */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.board-card {
  background: #fff; border-radius: var(--radius); padding: 22px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.board-initial {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-light); border: 3px solid var(--red);
  color: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 12px;
}
.board-card h4 { font-size: 0.92rem; margin-bottom: 3px; }
.board-card .role { font-size: 0.76rem; color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---- Stats bar ---- */
.stat-item { text-align: center; padding: 24px 16px; }
.stat-num { font-size: 2.8rem; font-weight: 900; font-family: var(--font-heading); color: var(--red); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ---- Doc list ---- */
.doc-list { list-style: none; }
.doc-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.doc-list li:last-child { border-bottom: none; }
.doc-icon { font-size: 1.5rem; flex-shrink: 0; }
.doc-name { font-weight: 700; font-size: 0.93rem; color: var(--black); display: block; margin-bottom: 1px; }
.doc-desc { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Notice ---- */
.notice {
  background: rgba(194,21,41,0.06); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin-bottom: 22px;
}
.notice p { margin: 0; font-size: 0.9rem; }
.notice strong { color: var(--red); }

/* ---- Inline tip ---- */
.tip {
  background: #FFFBF0; border: 1px solid #F5E08A;
  border-radius: var(--radius); padding: 14px 18px; margin-top: 18px;
}
.tip p { margin: 0; font-size: 0.88rem; color: #6B5000; }

/* ---- Mission section ---- */
.mission-quote {
  font-family: var(--font-accent); font-size: 1.8rem; color: var(--red);
  line-height: 1.4; margin-bottom: 20px;
}

/* ---- Footer ---- */
.footer { background: #0C0C0C; color: rgba(255,255,255,0.6); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer__brand strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.footer__brand p { font-size: 0.85rem; line-height: 1.65; max-width: 270px; color: rgba(255,255,255,0.5); }
.foot-head {
  font-family: var(--font-body); font-size: 0.73rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 9px; }
.foot-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.foot-links a:hover { color: #fff; text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; text-decoration: none; transition: all var(--transition);
}
.social-btn:hover { background: var(--red); color: #fff; text-decoration: none; }

/* ---- Filter bar (calendar page) ---- */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.filter-btn {
  cursor: pointer; border: 2px solid transparent;
  font-family: var(--font-body); background: none;
  transition: all 0.18s ease;
}
.filter-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.filter-btn.active {
  border-color: currentColor;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transform: translateY(-1px);
  font-weight: 800;
}
.filter-bar.filters-dimmed .filter-btn:not(.active) { opacity: 0.35; }
.filter-clear {
  display: none; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  background: none; border: 1px dashed var(--border); border-radius: 20px;
  padding: 3px 12px; cursor: pointer; font-family: var(--font-body);
  transition: all 0.18s; text-transform: uppercase; letter-spacing: 0.04em;
}
.filter-clear:hover { color: var(--red); border-color: var(--red); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .quick-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand p { max-width: 100%; }
  .hero { padding: 68px 0 58px; }
  .hero p { font-size: 1rem; }
  .hero__btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .quick-cards { grid-template-columns: 1fr; }
  .cal-cell { font-size: 0.8rem; }
  .support-box { padding: 28px 20px; }
}
