:root {
  --white: #ffffff;
  --page: #ffffff;
  --ice: #e3f2fa;
  --sky: #cfe6f4;
  --surface: #ffffff;
  --blue: #2a56b0;
  --blue-deep: #1b3f8b;
  --navy: #1b3f8b;
  --ink: #1b2c38;
  --muted: #5a7384;
  --line: #b7d4e6;
  --danger: #9b2c2c;
  --radius: 18px;
  --shadow: 0 1px 0 rgba(22, 52, 74, 0.06);
  --max: 1120px;
  --header: 76px;
  --serif: "Poppins", "Segoe UI", sans-serif;
  --sans: "Poppins", "Segoe UI", sans-serif;
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-deep); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }
.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 650;
  letter-spacing: 0.01em;
}
.brand-logo {
  height: 46px;
  width: auto;
  max-width: 220px;
}
.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  background: #ffbf00;
  border-radius: 12px;
  padding: 0.4rem 0.7rem;
}
.footer-logo-plate .brand-logo {
  mix-blend-mode: multiply;
  height: 44px;
  max-width: 210px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--blue); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary[aria-current="page"] { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-deep); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.95);
}
.btn-white { background: var(--white); color: var(--blue-deep); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  color: var(--navy);
}
.hero {
  background: var(--sky);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  color: var(--blue);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.85rem;
}
h1, h2, h3, .display {
  font-family: var(--sans);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin: 0 0 1rem; }
.hero h1, h1.slogan {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: 700;
}
.lede { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }
.hero.hero-navy { background: var(--navy); border-bottom: 0; }
.hero.hero-navy .eyebrow,
.hero.hero-navy h1.slogan,
.hero.hero-navy .lede { color: #ffffff; }
.hero.hero-navy .btn-primary { background: var(--white); color: var(--navy); }
.hero.hero-navy .btn-primary:hover { background: #f4f8fc; color: var(--navy); }
.hero.hero-navy .btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.hero.hero-navy .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: var(--sky);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(transparent, rgba(22, 52, 74, 0.72));
  color: var(--white);
  font-size: 0.78rem;
}
section { padding: 4.2rem 0; }
.band { background: var(--ice); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 0.7rem; }
h3 { font-size: 1.35rem; margin: 0 0 0.45rem; }
body[data-page="home"] h1,
body[data-page="home"] h2 { font-family: "Times New Roman", Times, serif; }
.muted { color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 52, 74, 0.06);
}
.card .body { padding: 1.2rem 1.25rem 1.4rem; }
.card p { margin: 0.35rem 0 0.9rem; color: var(--muted); }
.shot { overflow: hidden; aspect-ratio: 4 / 3; background: var(--sky); }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.quote {
  font-family: var(--sans);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  max-width: 24ch;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.photo-frame { border-radius: 22px; overflow: hidden; min-height: 280px; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.program-art {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 0;
  background: var(--sky);
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.program-art img { width: 100%; height: 100%; object-fit: cover; }
.list-plain { padding-left: 1.1rem; color: var(--muted); }
.list-plain li { margin: 0.4rem 0; }
.cta {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 2.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.cta h2, .cta p { color: var(--white); }
.cta p { margin: 0.4rem 0 0; color: #d5e6f1; }
.partners { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.partner-group { margin-top: 2.2rem; }
.partner-group h3 { margin-bottom: 0.45rem; }
.partner-group .muted { margin: 0 0 1rem; max-width: 42rem; }
.pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  color: var(--navy);
}
.venmo-callout {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 1.75rem 0 2rem;
  padding: 1.45rem 1.5rem 1.6rem 1.7rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(27, 63, 139, 0.18);
}
.venmo-callout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: #ffbf00;
}
.venmo-brand { display: flex; align-items: center; gap: 0.65rem; margin: 0 0 0.85rem; }
.venmo-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #ffbf00;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}
.venmo-kicker, .article .venmo-callout .venmo-kicker {
  margin: 0;
  color: #ffbf00;
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
}
.venmo-callout h2 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  line-height: 1.3;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.venmo-handle, .article .venmo-callout .venmo-handle {
  margin: 0.15rem 0 0.7rem;
  font-family: var(--sans);
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  color: #ffbf00;
}
.venmo-handle a { color: #ffbf00; text-decoration: none; }
.venmo-handle a:hover, .venmo-handle a:focus-visible { color: #ffe27a; text-decoration: underline; }
.venmo-copy, .article .venmo-callout .venmo-copy {
  margin: 0 0 1.15rem;
  color: #d7e6f1;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 34rem;
}
.venmo-callout .btn-venmo {
  background: #ffbf00;
  color: var(--navy);
  width: fit-content;
  max-width: 100%;
  padding-inline: 1.2rem;
  white-space: nowrap;
}
.venmo-callout .btn-venmo:hover { background: #ffd34d; color: var(--navy); }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
}
label { display: block; font-size: 0.88rem; font-weight: 600; margin: 0.85rem 0 0.3rem; }
input, textarea, select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.notice {
  background: #fff7e8;
  border: 1px solid #ead7a6;
  color: #5c470d;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
}
.success {
  display: none;
  background: #e8f6ee;
  border: 1px solid #b7ddc5;
  color: #1d5a38;
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.success.show { display: block; }
.article { max-width: 44rem; }
.article p { color: var(--ink); }
.meta { color: var(--muted); font-size: 0.92rem; }
.site-footer {
  background: var(--navy);
  color: #d7e6f1;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer a { color: #eaf4fb; }
.site-footer h3 { color: var(--white); font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0.35rem 0; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #9fb6c6;
}
.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th { color: var(--muted); font-size: 0.82rem; font-weight: 650; }
@media (max-width: 900px) {
  .hero-grid, .split, .foot-grid, .cards { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: var(--header);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.2rem;
  }
  .nav-links.open { display: flex; }
  .cta { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .intro-overlay { display: none !important; }
}
.form-block { scroll-margin-top: calc(var(--header) + 1rem); }
.form-block + .form-block { margin-top: 2.5rem; }
.cal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 1.6rem;
  align-items: start;
}
.cal-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.1rem 1.15rem 1.4rem;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.85rem; }
.cal-head h2 { margin: 0; font-size: 1.35rem; color: var(--navy); }
.cal-head button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--navy);
  font-size: 1.2rem; cursor: pointer;
}
.cal-week {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px;
  color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day {
  min-height: 118px; border: 1px solid #e4eef6; border-radius: 10px;
  padding: 0.35rem 0.3rem 0.4rem; background: var(--white);
}
.cal-day.empty { background: #f7fbfd; border-color: transparent; }
.cal-day.past { opacity: 0.45; }
.cal-num { display: block; color: var(--navy); font-weight: 700; font-size: 0.82rem; margin-bottom: 0.25rem; }
.cal-shift {
  display: block; width: 100%; text-align: left; border: 1px solid #c5d8f0;
  background: #eef4fc; color: var(--navy); border-radius: 8px;
  padding: 0.28rem 0.32rem; margin: 0.18rem 0 0; font: inherit; font-size: 0.62rem; cursor: pointer;
}
.cal-shift strong { display: block; color: var(--blue); font-size: 0.62rem; }
.cal-shift.selected { background: var(--blue); color: var(--white); border-color: var(--blue); }
.cal-shift.selected strong { color: var(--white); }
.cal-shift.full { background: #d9e4f0; color: var(--muted); cursor: not-allowed; }
.cal-names { display: block; font-weight: 600; }
@media (max-width: 980px) { .cal-layout { grid-template-columns: 1fr; } }
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: rgb(45, 92, 152); color: #fff; overflow: hidden;
}
.intro-overlay.is-leaving { animation: intro-fade 0.6s ease forwards; }
.intro-skip {
  position: absolute; right: 1.2rem; bottom: 1.2rem; background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 999px; padding: 0.4rem 0.9rem;
  font: 600 0.82rem/1 var(--sans); cursor: pointer; z-index: 2;
}
.intro-lockup { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; width: min(92vw, 820px); }
.intro-stage { position: relative; width: 100%; aspect-ratio: 1024 / 399; }
.intro-fly { position: absolute; inset: 0; z-index: 3; }
.intro-overlay.is-ready .intro-fly { animation: intro-ccw 1.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.intro-frame { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; display: block; }
.intro-frame-star { z-index: 1; }
.intro-frame-lockup { z-index: 2; opacity: 0; }
.intro-overlay.is-ready .intro-frame-lockup { animation: intro-fadein 0.9s ease 2s both; }
.intro-slogan {
  margin: 0; font-family: "Times New Roman", Times, Georgia, serif; font-style: italic;
  font-size: clamp(1.05rem, 3.2vw, 1.55rem); font-weight: 500; color: #fff; letter-spacing: 0.02em; opacity: 0;
}
.intro-overlay.is-ready .intro-slogan { animation: intro-fadein 0.55s ease 2.95s forwards; }
@keyframes intro-ccw {
  0% { transform: rotate(135deg) translateX(min(52vw, 46vh)) rotate(-135deg); filter: blur(1.2px); }
  100% { transform: rotate(-225deg) translateX(0) rotate(225deg); filter: blur(0); }
}
@keyframes intro-fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes intro-fade { to { opacity: 0; visibility: hidden; } }
