*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--gold-dark); }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.15em; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: 1rem; top: -60px; background: var(--ink); color: var(--white); padding: .75rem 1.25rem; border-radius: var(--r-sm); z-index: 999; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
section.pad { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

.eyebrow { font-family: var(--font-display); font-size: clamp(.68rem, 2.6vw, .78rem); letter-spacing: .14em; text-transform: uppercase; color: var(--violet); font-weight: 400; display: inline-flex; flex-wrap: wrap; align-items: center; gap: .5rem; white-space: normal; }
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--gold); display: inline-block; }

h2, h3.display { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 4.4vw, 3.3rem); line-height: 1.02; letter-spacing: -.01em; margin-top: .6rem; color: var(--ink); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p.lede { margin-top: 1rem; font-size: 1rem; color: var(--ink-soft); font-family: var(--font-body); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.6rem; border-radius: var(--r-pill); font-weight: 700; font-size: .95rem; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease; white-space: nowrap; font-family: 'Roboto', sans-serif; }
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--violet); color: var(--white); }
.btn-primary:hover { background: var(--violet); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(112, 69, 155, 0.5); color: var(--white); }
.btn-outline { border-color: #10182B; color: #10182B; background: transparent; }
.btn-outline:hover { background: #10182B; color: var(--white); transform: translateY(-2px); }
.btn-outline.on-dark { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn-outline.on-dark:hover { background: var(--white); color: #10182B; }
.btn-ghost { color: var(--violet); padding: .5rem 0; border-radius: 0; }
.btn-ghost:hover { color: var(--gold-dark); }
.btn-sm { padding: .65rem 1.15rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* Header */
#site-header { position: sticky; top: 0; z-index: 200; background: rgba(245, 244, 249, 0.97); border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease; }
#site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 24px -18px rgba(16, 24, 43, 0.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
#primary-nav { display: flex; align-items: center; gap: 2rem; }
#primary-nav a { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; padding: .3rem 0; }
#primary-nav a:hover { color: var(--ink); }
#primary-nav a.btn-primary,
#primary-nav a.btn-primary:hover { color: var(--white); }
#primary-nav a.router-link-exact-active,
#primary-nav a[aria-current="page"] { color: var(--ink); }
#primary-nav a.router-link-exact-active::after,
#primary-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; background: var(--gold); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; background: none; border: none; padding: .4rem; color: #10182B; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  #primary-nav { position: fixed; inset: 76px 0 0 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem); gap: 0; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  #primary-nav.open { transform: translateX(0); }
  #primary-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  #primary-nav a.router-link-exact-active::after,
  #primary-nav a[aria-current="page"]::after { display: none; }
  .nav-cta-mobile { margin-top: 1.5rem; }
  .nav-right .btn-primary.desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 881px) { .nav-cta-mobile { display: none; } }

.nav-drop { position: relative; }
.nav-drop > summary { list-style: none; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .35rem; padding: .3rem 0; font-family: 'Roboto', sans-serif; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary:hover { color: var(--ink); }
.nav-drop > summary .chev { width: 11px; height: 11px; transition: transform .15s ease; }
.nav-drop[open] > summary .chev { transform: rotate(180deg); }
.nav-drop-menu { display: flex; flex-direction: column; }
@media (min-width: 881px) {
  #primary-nav .nav-drop-menu { position: absolute; top: 100%; left: 0; margin-top: .9rem; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-card); padding: .6rem; min-width: 210px; z-index: 250; }
  #primary-nav .nav-drop-menu a { display: block; padding: .7rem 1rem; border-radius: 8px; font-family: 'Roboto', sans-serif; color: var(--ink-soft); white-space: nowrap; font-weight: 600; font-size: .92rem; width: auto; box-sizing: border-box; }
  #primary-nav .nav-drop-menu a:hover { background: var(--chalk); color: var(--violet); }
  #primary-nav .nav-drop-menu a.router-link-exact-active,
  #primary-nav .nav-drop-menu a[aria-current="page"] { background: var(--chalk); color: var(--violet); }
  #primary-nav .nav-drop-menu a::after { display: none; }
}
@media (max-width: 880px) {
  .nav-drop-menu { padding-left: 1rem; gap: .25rem; }
  .nav-drop-menu a { padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-drop[open] > summary { border-bottom: none; }
  .nav-drop > summary { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; width: 100%; justify-content: space-between; box-sizing: border-box; }
}

/* Hero */
.hero { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero-copy .eyebrow { color: var(--violet); }
.hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 8.5vw, 66px); line-height: 1.05; letter-spacing: -.015em; margin-top: .75rem; width: 545px; max-width: 100%; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--violet); }
.hero p.sub { margin-top: 1.25rem; font-size: 1rem; color: var(--ink); max-width: 46ch; font-family: 'Roboto', sans-serif; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-micro { margin-top: 1.1rem; font-family: 'Roboto', sans-serif; font-size: .82rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.hero-micro .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: minmax(0, 1fr); } }

.board { background: linear-gradient(180deg, var(--violet), var(--ink)); border-radius: var(--r-lg); padding: clamp(1.15rem, 4vw, 1.6rem); box-shadow: var(--shadow-lg); position: relative; }
.board::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); padding: 1px; background: linear-gradient(135deg, rgba(232, 166, 59, .55), rgba(107, 63, 160, .35) 40%, transparent 70%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.board-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.board-title { font-family: var(--font-display); color: var(--white); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.board-live { display: flex; align-items: center; gap: .4rem; font-family: var(--font-display); color: var(--white); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.board-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.board-row { display: flex; flex-direction: column; gap: .3rem; padding: .85rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.board-tag { display: inline-flex; align-self: flex-start; font-family: var(--font-display); font-size: .78rem; font-weight: 400; padding: .2rem .55rem; border-radius: 5px; margin-bottom: .15rem; }
.board-tag.bball { background: rgba(232, 166, 59, .18); color: var(--gold); }
.board-tag.vball { background: rgba(107, 63, 160, .28); color: #C9AEEA; }
.board-tag.jr { background: #C098C633; color: #C098C6; }
.board-when { font-family: 'Roboto', sans-serif; color: var(--white); font-weight: 600; font-size: 1rem; }
.board-what { color: #B9C0D6; font-size: .92rem; font-family: 'Roboto', sans-serif; }
.board-where { display: flex; align-items: center; gap: .35rem; color: #8890A8; font-size: .8rem; font-family: 'Roboto', sans-serif; }
.board-where .icon { width: .95em; height: .95em; }
.board-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.board-countdown { font-family: var(--font-display); font-size: .8rem; color: #B9C0D6; min-width: 0; }
.board-countdown b { color: #C098C6; font-family: 'Roboto', sans-serif; }
.board-link { color: var(--white); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: .35rem; font-family: 'Roboto', sans-serif; flex-shrink: 0; }
.board-link:hover { color: var(--white); }
@media (max-width: 460px) { .board-foot { flex-direction: column; align-items: flex-start; gap: .7rem; } }

/* Marquee */
.marquee-wrap { background: var(--ink); overflow: hidden; padding: .85rem 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 2.5rem; padding-left: 2.5rem; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: scroll-left 32s linear infinite; }
  .marquee-wrap:hover .marquee-track { animation-play-state: paused; }
}
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-family: var(--font-display); font-size: .85rem; letter-spacing: .08em; color: #C7CCE0; display: inline-flex; align-items: center; gap: 2.5rem; text-transform: uppercase; }
.marquee-item .sep { color: var(--violet); }

/* Programs */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 980px) { .programs-grid { grid-template-columns: 1fr; } }
.pcard { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard-media { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--violet), var(--ink)); }
.pcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pcard-badge { position: absolute; top: .9rem; left: .9rem; background: #C098C6; color: var(--ink); font-family: var(--font-display); font-size: .78rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .7rem; border-radius: var(--r-pill); }
.pcard-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.pcard-body h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; line-height: 1.05; color: var(--ink); }
.pcard-meta { display: flex; flex-direction: column; gap: .45rem; }
.pcard-meta li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--ink-soft); font-family: 'Roboto', sans-serif; }
.pcard-meta .icon { width: 1.05em; height: 1.05em; color: var(--violet); flex-shrink: 0; }
.pattern-row { display: flex; gap: .4rem; }
.day-chip { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: .78rem; font-weight: 400; background: var(--chalk); color: #B9BBC8; }
.day-chip.on { background: var(--violet-light); color: var(--violet); }
.day-chip.on.game { background: var(--violet); color: var(--white); opacity: .5; }
.pcard-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-top: auto; padding-top: .25rem; }
.pcard-price span { display: block; font-size: 13px; color: var(--ink-soft); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; font-family: var(--font-display); }
.pcard-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.pcard-actions .btn { flex: 1; justify-content: center; }

/* Weekly rhythm */
.rhythm-panel { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: clamp(1.5rem, 3vw, 2.5rem); }
.rhythm-table { display: grid; grid-template-columns: 110px repeat(5, 1fr); gap: .6rem; align-items: center; }
.rhythm-table .rt-head { font-family: var(--font-display); font-size: .78rem; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); text-align: center; padding-bottom: .5rem; }
.rhythm-table .rt-label { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.rt-cell { border-radius: var(--r-sm); padding: .7rem .4rem; text-align: center; font-size: .9rem; font-weight: 300; font-family: var(--font-display); background: var(--chalk); color: #C3C5D2; }
.rt-cell.skills { background: var(--violet-light); color: var(--violet); }
.rt-cell.team { background: #E9EAF2; color: var(--ink); }
.rt-cell.game { background: var(--violet); color: var(--white); opacity: .5; }
.rhythm-divider { grid-column: 1/-1; height: 1px; background: var(--line); margin: .35rem 0; }
.rhythm-jr-note { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .75rem; font-size: .92rem; color: var(--ink-soft); flex-wrap: wrap; font-family: 'Roboto', sans-serif; }
.rhythm-jr-note b { color: var(--ink); }
.rhythm-legend { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: .8rem; color: var(--ink-soft); font-family: 'Roboto', sans-serif; }
.rhythm-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; }
@media (max-width: 700px) {
  .rhythm-table { grid-template-columns: 70px repeat(5, 1fr); gap: .35rem; }
  .rt-cell { padding: .5rem .2rem; font-size: .62rem; }
  .rhythm-table .rt-label { font-size: .95rem; }
}

/* Mission */
.mission-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .mission-wrap { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .mindful-teaser-grid { grid-template-columns: 1fr !important; }
  .mindful-teaser-grid > * { grid-column: 1 !important; grid-row: auto !important; }
  .mindful-teaser-image { margin-top: 1.25rem; }
}
.mission-wrap p.lede { margin-top: 1.25rem; color: var(--ink-soft); font-size: 1rem; max-width: 52ch; font-family: 'Roboto', sans-serif; }
.mission-video { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16/9; align-self: center; position: relative; z-index: 0; isolation: isolate; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--white); border-radius: var(--r-md); padding: 1.4rem; box-shadow: var(--shadow-card); }
.pillar .icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: var(--violet-light); color: var(--violet); display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.pillar .icon-wrap .icon { width: 1.3em; height: 1.3em; }
.pillar h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.pillar p { font-size: .88rem; color: var(--ink-soft); font-family: var(--font-body), sans-serif; }

/* Families / trust */
.families-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .families-wrap { grid-template-columns: 1fr; } }
.trust-list { display: flex; flex-direction: column; gap: 1.25rem; }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.trust-check { width: 30px; height: 30px; border-radius: 50%; background: var(--violet); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
.trust-check .icon { width: 1em; height: 1em; stroke-width: 2.5; }
.trust-item h4 { font-family: 'Roboto', sans-serif; font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.trust-item p { font-size: .92rem; color: var(--ink-soft); margin-top: .2rem; font-family: 'Roboto', sans-serif; }

/* Initiatives */
.init-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .init-grid { grid-template-columns: 1fr; } }
.init-card { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--ink-2), var(--ink)); }
.init-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease, transform .3s ease; }
.init-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16, 24, 43, 0.92) 10%, rgba(16, 24, 43, 0.15) 60%); }
.init-content { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; z-index: 1; }
.init-content .eyebrow { color: #C098C6; }
.init-content .eyebrow::before { background: var(--white); }
.init-content h3 { font-family: var(--font-display); color: var(--white); font-size: 1.55rem; font-weight: 600; margin-top: .5rem; }
.init-content p { color: #C7CCE0; font-size: .88rem; margin-top: .5rem; font-family: 'Roboto', sans-serif; }

/* Testimonials */
.testi-carousel { max-width: 920px; margin: 0 auto; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; }
.testi-page { flex: 0 0 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .testi-page { grid-template-columns: 1fr; } }
.testi-controls { display: flex; align-items: center; justify-content: center; margin-top: 1.75rem; }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: #DAD7E8; cursor: pointer; padding: 0; }
.testi-dot.active { background: var(--violet); }
.testi-card { background: var(--white); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-card); display: flex; gap: 1.1rem; }
.avatar { position: relative; width: 58px; height: 58px; border-radius: 50%; background: var(--violet-light); flex-shrink: 0; overflow: hidden; }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.avatar-fallback { position: absolute; inset: 0; margin: auto; width: 55%; height: 55%; color: var(--violet); }
.testi-quote { font-size: .95rem; color: var(--ink); position: relative; font-family: 'Roboto', sans-serif; }
.testi-who { margin-top: .75rem; display: flex; align-items: center; gap: .5rem; font-size: .82rem; }
.testi-who .name { font-weight: 800; font-family: 'Roboto', sans-serif; }
.testi-who .team { font-family: var(--font-display); color: var(--violet); background: var(--violet-light); padding: .1rem .5rem; border-radius: var(--r-pill); font-size: .72rem; font-weight: 600; }

/* Get involved */
.involved-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (max-width: 900px) { .involved-wrap { grid-template-columns: 1fr; } }
.involved-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1/1; background: linear-gradient(150deg, var(--violet), var(--ink)); box-shadow: var(--shadow-card); }
.involved-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.involved-ways { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.way-pill { font-size: .9rem; font-weight: 400; font-family: 'Roboto', sans-serif; background: var(--white); border: 1px solid var(--line); padding: .5rem 1rem; border-radius: var(--r-pill); }

/* Donate band */
.donate-band { padding: clamp(2rem, 5vw, 3.5rem); display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, .7fr); gap: 2rem; align-items: center; color: var(--white); }
@media (max-width: 800px) { .donate-band { grid-template-columns: 1fr; text-align: left; } }
.donate-band .eyebrow { color: #C098C6; }
.donate-band .eyebrow::before { background: var(--white); }
.donate-band h2 { color: var(--white); max-width: 15ch; }
.donate-band p.lede { color: #DED2EE; margin-top: 1rem; max-width: 60ch; font-family: 'Roboto', sans-serif; }
.donate-cta { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; align-items: center; }
.donate-note { font-family: var(--font-display); font-size: 1rem; color: #C9B7E0; text-align: center; }

/* Final CTA */
.final-cta { background: var(--violet); border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; top: -30%; right: -10%; width: 60%; height: 160%; background: radial-gradient(circle, rgba(192, 152, 198, 0.28), transparent 65%); }
@media (max-width: 800px) { .final-cta::before { top: -40%; right: -45%; width: 140%; height: 180%; background: radial-gradient(circle, rgba(192, 152, 198, 0.16), transparent 72%); }}
.final-cta h2 { color: var(--white); position: relative; }
.final-cta.compact h2 { font-size: 2.3rem; }
.final-cta p { color: rgba(185, 192, 214, 1); margin-top: 1rem; font-size: 1.05rem; position: relative; font-family: 'Roboto', sans-serif; }
.final-cta .hero-ctas { justify-content: center; position: relative; margin-top: 2rem; }
.final-cta .btn-primary { background: var(--white); color: #010101; }
.final-cta .btn-primary:hover { box-shadow: 0 14px 30px -12px rgba(112, 69, 155, 0.5); }

/* Footer */
#site-footer { background: var(--ink); color: #B9C0D6; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-tagline { margin-top: .9rem; font-size: .88rem; max-width: 30ch; font-family: 'Roboto', sans-serif; }
@media (max-width: 520px) { .footer-tagline { max-width:66ch; } }
.footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; font-weight: 400; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .9rem; color: #B9C0D6; font-family: 'Roboto', sans-serif; }
.footer-col a:hover { color: var(--white); }
.footer-address { font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; font-family: 'Roboto', sans-serif; }
.footer-visit-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-visit-links a { font-size: .9rem; color: #B9C0D6; font-family: 'Roboto', sans-serif; }
.footer-visit-links a:hover { color: var(--white); }
.social-row { display: flex; gap: .6rem; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.18); color: #B9C0D6; }
.social-icon:hover { border-color: var(--violet); color: var(--violet); }
.social-icon .icon { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: .8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-family: 'Roboto', sans-serif; }
.footer-bottom a { color: var(--white); }
.footer-bottom a:hover { color: var(--violet); }

/* Scroll to top */
.to-top-btn { position: fixed; right: 1.5rem; bottom: 1.5rem; width: 48px; height: 48px; border-radius: 50%; background: var(--violet); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-lg); z-index: 60; transition: opacity .25s ease, transform .25s ease, background .2s ease; }
.to-top-btn:hover { background: #010101; }
.to-top-btn .icon { width: 22px; height: 22px; }
@media (max-width: 600px) { .to-top-btn { right: 1rem; bottom: 1rem; width: 44px; height: 44px; } }

/* Shared view header */
.sched-header { padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem); }
.sched-header .section-head { max-width: 680px; }
.tab-list { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }
.tab-btn { font-family: var(--font-display); font-weight: 400; font-size: 1rem; letter-spacing: .03em; padding: .75rem 1.4rem; border-radius: var(--r-pill); background: var(--white); border: 2px solid var(--line); color: var(--ink-soft); transition: all .15s ease; }
.tab-btn .tab-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: .5rem; background: currentColor; opacity: .4; }
.tab-btn[aria-selected="true"] { background: #10182B; border-color: #10182B; color: var(--white); }
.tab-btn[aria-selected="true"] .tab-dot { background: var(--gold); opacity: 1; }
.tab-btn:hover:not([aria-selected="true"]) { border-color: var(--violet); color: var(--violet); }
.sched-panel { padding-bottom: clamp(3rem, 6vw, 5rem); }

/* Schedule */
.info-strip { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.info-stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 2.75rem); }
@media (max-width: 640px) { .info-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; } }
.info-stat .icon-wrap { width: 36px; height: 36px; border-radius: 9px; background: var(--violet-light); color: var(--violet); display: flex; align-items: center; justify-content: center; margin-bottom: .55rem; }
.info-stat .icon-wrap .icon { width: 1.2em; height: 1.2em; }
.info-stat .label { font-family: var(--font-display); font-size: .8rem; font-weight: 300; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.info-stat .value { font-weight: 800; font-size: 1.02rem; margin-top: .15rem; font-family: 'Roboto', sans-serif; }
.countdown-chip { display: inline-flex; align-items: center; gap: .6rem; background: #10182B; color: var(--white); font-family: var(--font-display); font-size: 1rem; padding: .7rem 1.2rem; border-radius: var(--r-pill); margin-bottom: 1.5rem; }
.countdown-chip b { color: var(--gold); font-size: 1.05rem; }
.countdown-chip .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); flex-shrink: 0; }
.week-board { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 900px) { .week-board { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } }
@media (max-width: 560px) { .week-board { grid-template-columns: 1fr; } }
.day-card { background: var(--white); border-radius: var(--r-md); padding: 1.25rem 1rem; box-shadow: var(--shadow-card); text-align: center; border-top: 4px solid var(--line); }
.day-card.skills { border-top-color: #c098c6; }
.day-card.team { border-top-color: var(--ink); }
.day-card.game { border-top-color: var(--violet); background: linear-gradient(180deg, #E4D1E7, var(--white) 60%); }
.day-card .dname { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; line-height: 1; }
.day-card .ddate { font-family: var(--font-display); font-weight: 300; font-size: .8rem; color: var(--ink-soft); margin-top: .3rem; }
.day-card .dtype { margin-top: .9rem; font-weight: 800; font-size: .85rem; font-family: 'Roboto', sans-serif; }
.day-card.game .dtype, .day-card.skills .dtype { color: var(--violet); }
.day-card .ddesc { font-size: .78rem; color: var(--ink-soft); margin-top: .35rem; line-height: 1.4; font-family: 'Roboto', sans-serif; }
.day-card.off { opacity: .55; }
.day-card.off .dtype { color: #B9BBC8; }
.sched-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 860px) { .sched-lower { grid-template-columns: 1fr; } }
.panel-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: clamp(1.5rem, 3vw, 2rem); }
.panel-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 1.1rem; }
.date-list { display: flex; flex-direction: column; }
.date-row { display: flex; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--line); }
.date-row:first-child { border-top: none; }
.date-badge { font-family: var(--font-display); font-size: .8rem; font-weight: 400; background: var(--chalk); color: var(--ink); border-radius: 8px; padding: .4rem .55rem; text-align: center; flex-shrink: 0; height: fit-content; line-height: 1.3; display: inline-block; width: auto; min-width: 54px; white-space: nowrap; }
.date-row h5 { font-weight: 800; font-size: .92rem; font-family: 'Roboto', sans-serif; }
.date-row p { font-size: .8rem; color: var(--ink-soft); margin-top: .15rem; font-family: 'Roboto', sans-serif; }
.date-game-list { margin: .35rem 0 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: .2rem; font-size: .8rem; color: var(--ink-soft); list-style: disc; font-family: 'Roboto', sans-serif; }
.date-game-list li { display: list-item; }
table.standings { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.standings th { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; font-size: .7rem; color: var(--ink-soft); text-align: left; padding-bottom: .75rem; border-bottom: 2px solid var(--line); }
table.standings td { padding: .75rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
table.standings td.num { font-family: var(--font-display); color: var(--ink-soft); }
table.standings th:not(:first-child), table.standings td:not(:first-child) { text-align: center; }
.empty-state { text-align: center; padding: 2rem 1rem; }
.empty-state .icon-wrap { width: 52px; height: 52px; border-radius: 50%; background: var(--chalk); color: var(--violet); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.empty-state .icon-wrap .icon { width: 1.5em; height: 1.5em; }
.empty-state h5 { font-weight: 800; font-size: 1rem; font-family: 'Roboto', sans-serif; }
.empty-state p { font-size: .85rem; color: var(--ink-soft); margin-top: .4rem; max-width: 32ch; margin-left: auto; margin-right: auto; font-family: 'Roboto', sans-serif; }
.jr-recap { display: flex; flex-direction: column; gap: 1rem; }
.jr-recap-row { display: flex; gap: .9rem; align-items: flex-start; }
.jr-recap-row .icon-wrap { width: 34px; height: 34px; border-radius: 9px; background: var(--violet-light); color: var(--violet); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.jr-recap-row .icon-wrap .icon { width: 1.1em; height: 1.1em; }
.jr-recap-row h5 { font-weight: 800; font-size: .92rem; font-family: 'Roboto', sans-serif; }
.jr-recap-row p { font-size: .83rem; color: var(--ink-soft); margin-top: .15rem; font-family: 'Roboto', sans-serif; }

#top, #programs, #mission, #get-involved, #contact, .faq-category { scroll-margin-top: 96px; }

/* Gallery */
.jump-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }
.jump-pill { font-family: var(--font-display); font-weight: 400; font-size: 1rem; padding: .6rem 1.15rem; border-radius: var(--r-pill); background: var(--white); border: 2px solid var(--line); color: var(--ink-soft); transition: all .15s ease; }
.jump-pill:hover { border-color: var(--violet); color: var(--violet); }
.jump-pill.active { background: var(--violet); border-color: var(--violet); color: #FFFFFF; }
.gallery-grid { column-count: 3; column-gap: 1.25rem; }
@media (max-width: 820px) { .gallery-grid { column-count: 2; } }
@media (max-width: 520px) { .gallery-grid { column-count: 1; } }
.gallery-tile { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; margin-bottom: 1.25rem; break-inside: avoid; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-tile.tall { aspect-ratio: 3/4; }
.gallery-tile.square { aspect-ratio: 1/1; }
.gallery-tile-placeholder { width: 100%; height: 100%; background: var(--chalk); display: flex; align-items: center; justify-content: center; color: #C3C5D2; }
.gallery-tile-placeholder .icon { width: 2em; height: 2em; }

/* FAQ */
.faq-category { margin-bottom: 2.75rem; }
.faq-category:last-child { margin-bottom: 0; }
.faq-cat-label { font-family: var(--font-display); font-size: .8rem; font-weight: 400; text-transform: uppercase; letter-spacing: .1em; color: var(--violet); margin-bottom: .75rem; padding-bottom: .75rem; border-bottom: 2px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-category .faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; font-weight: 700; font-size: 1rem; font-family: 'Roboto', sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--violet); }
.faq-item .chev { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: transparent; color: #010101; display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease, color .2s ease; }
.faq-item .chev .icon { width: .85em; height: .85em; }
.faq-item[open] .chev { transform: rotate(45deg); background: #70459B; color: #FFFFFF; }
.faq-item .faq-answer { margin: 0 0 1.5rem; color: var(--ink-soft); font-size: .94rem; max-width: 100ch; line-height: 1.6; font-family: 'Roboto', sans-serif; }
.faq-answer a, .faq-answer a:hover { font-weight: 700; color: var(--violet); }
.panel-card .faq-item:first-of-type { border-top: none; }
.panel-card .faq-item:last-of-type { border-bottom: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* Awards */
.awards-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px) { .awards-intro-grid { grid-template-columns: 1fr; } }
.award-back { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-body); font-weight: 600; font-size: .82rem; color: var(--ink-soft); background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 1.25rem; font-family: 'Roboto', sans-serif; }
.award-back:hover { color: var(--violet); }
.award-back .icon { width: 16px; height: 16px; transform: rotate(180deg); }
.roster-heading { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 2.5rem 0 1.25rem; }
.roster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6rem; }
@media (max-width: 900px) { .roster-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .roster-grid { grid-template-columns: repeat(2, 1fr); } }
.roster-card { text-align: center; }
.roster-photo { border-radius: 50%; aspect-ratio: 1/1; width: 100%; overflow: hidden; box-shadow: var(--shadow-card); background: var(--chalk); }
.roster-photo img { width: 100%; height: 100%; object-fit: cover; }
.roster-photo.placeholder { border: 2px dashed var(--ink-soft); box-shadow: none; opacity: .7; display: flex; align-items: center; justify-content: center; color: #C3C5D2; }
.roster-photo.placeholder .icon { width: 1.8em; height: 1.8em; }
.player-name-label { font-family: var(--font-display), sans-serif !important; font-weight: 500 !important; font-size: 0.9rem !important; color: var(--ink-soft) !important; text-transform: uppercase !important; letter-spacing: normal !important; margin-top: .75rem; }
.roster-card span { display: block; font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--ink-soft); margin-top: .15rem; text-transform: uppercase; letter-spacing: .04em; }
.roster-jersey { font-weight: 700; color: #70459B !important; }
.award-team-split { display: grid; grid-template-columns: 3fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 800px) { .award-team-split { grid-template-columns: 1fr; } }
.awards-player-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
@media (max-width: 640px) { .awards-player-grid { grid-template-columns: 1fr; } }
.award-cowinner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 480px) { .award-cowinner-grid { grid-template-columns: 1fr; } }
/* Staff */
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .staff-grid { grid-template-columns: 1fr; } }
.staff-card { background: var(--white); border: none; border-radius: var(--r-lg); padding: 2rem 1.25rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; font: inherit; }
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.staff-photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin-bottom: 1.1rem; box-shadow: var(--shadow-card); flex-shrink: 0; background: var(--violet-light); }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card h5 { margin: 0 0 .3rem; font-size: 0.85rem; font-family: 'Roboto', sans-serif; font-weight: 700; color: var(--ink-soft); }
.staff-card span { font-size: .85rem; color: var(--ink-soft); font-family: 'Roboto', sans-serif; }
.staff-detail-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (max-width: 760px) { .staff-detail-wrap { grid-template-columns: 1fr; } }
.staff-detail-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/5; background: var(--violet-light); }
.staff-detail-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Mindful Mondays */
.mm-photo-slider { position: relative; border-radius: var(--r-md); overflow: hidden; margin: 1.5rem 0; box-shadow: var(--shadow-card); background: var(--ink); }
.mm-photo-frame { aspect-ratio: 16/9; }
.mm-photo-frame img { width: 100%; height: 100%; object-fit: contain; }
.mm-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .92); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-card); color: #010101; }
.mm-slider-arrow.left { left: 12px; }
.mm-slider-arrow.right { right: 12px; }
.mm-slider-arrow .icon { width: 20px; height: 20px; }
.mm-photo-counter { position: absolute; bottom: 12px; right: 12px; background: rgba(1, 1, 1, .6); color: #fff; font-family: var(--font-mono); font-size: .72rem; padding: .3rem .65rem; border-radius: var(--r-pill); }
.mm-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 820px) { .mm-pillar-grid { grid-template-columns: 1fr; } }
.mm-pillar-card { padding: 0 1.5rem; border-left: 1px solid var(--line); }
.mm-pillar-card:first-child { border-left: none; padding-left: 0; }
@media (max-width: 820px) { .mm-pillar-card { border-left: none; padding-left: 0; } }
.mm-pillar-num { width: 32px; height: 32px; border-radius: 8px; background: var(--violet-light); color: var(--violet); font-family: var(--font-display); font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.mm-pillar-title { color: #010101; font-size: 1.05rem; font-weight: 600; margin: 0 0 .5rem; font-family: var(--font-display); }
.mm-pillar-point { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 .5rem; font-family: 'Roboto', sans-serif; }
.mm-pillar-point:last-child { margin-bottom: 0; }
.mm-journal { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; align-items: stretch; margin-top: 3rem; }
@media (max-width: 760px) { .mm-journal { grid-template-columns: 1fr; } }
.mm-journal-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); max-height: 386px; }
.mm-journal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) { .mm-journal-photo { height: 320px; } }
.mm-journal-body { background: var(--violet-light); border-radius: var(--r-lg); padding: 2rem 2.25rem; position: relative; overflow: hidden; }
.mm-journal-icon { width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--violet); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.mm-journal-icon .icon { width: 24px; height: 24px; }
.mm-journal-eyebrow { display: block; font-family: var(--font-display); font-weight: 400; font-size: .78rem; letter-spacing: .06em; color: var(--violet); margin-bottom: .5rem; }
.mm-journal-title { font-family: var(--font-display); color: #010101; font-size: 1.6rem; font-weight: 700; margin: 0; }
.mm-journal-divider { height: 1px; background: rgba(112, 69, 155, 0.18); margin: 1.25rem 0; }
.mm-journal-hint { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1.1rem; font-family: 'Roboto', sans-serif; font-size: 1.02rem; line-height: 1.5; color: var(--ink-soft); }
.mm-journal-hint:first-of-type { margin-top: 0; }
.mm-journal-hint .icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; color: var(--violet); }
.mm-journal-time { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border-radius: var(--r-pill); padding: .55rem 1.1rem; font-family: 'Roboto', sans-serif; font-size: .85rem; color: var(--violet); }
.mm-journal-time .icon { width: 15px; height: 15px; }
.mm-quote { position: relative; background: var(--violet); border-radius: var(--r-lg); padding: 3rem 2.5rem; text-align: center; overflow: hidden; }
.mm-quote-mark { position: absolute; font-family: var(--font-display); font-size: 6rem; line-height: 1; color: rgba(255, 255, 255, 0.22); }
.mm-quote-mark-open { top: .5rem; left: 1.5rem; }
.mm-quote-mark-close { bottom: -1.5rem; right: 1.5rem; }
.mm-quote-text { position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.2vw, 2.3rem); color: #fff; max-width: 640px; margin: 0 auto; line-height: 1.4; }
.mm-quote-author { display: block; position: relative; margin-top: 1.25rem; font-family: 'Roboto', sans-serif; color: rgba(255, 255, 255, 0.8); font-size: 1rem; }
@media (max-width: 600px) {
  .mm-quote { padding: 2.25rem 1.5rem; }
  .mm-quote-mark { font-size: 3.5rem; }
  .mm-quote-mark-open { top: .25rem; left: .75rem; }
  .mm-quote-mark-close { bottom: -.75rem; right: .75rem; }
}
.mm-homework-card { background: transparent; }
.mm-hw-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; }
.mm-hw-remember { display: flex; align-items: center; gap: .75rem; background: var(--violet-light); border-left: 3px solid var(--violet); border-radius: var(--r-sm); padding: 1rem 1.25rem; flex-wrap: wrap; }
.mm-hw-remember .icon { width: 20px; height: 20px; color: var(--violet); flex-shrink: 0; }
.mm-hw-remember-label { font-family: var(--font-display); font-weight: 400; font-size: .8rem; letter-spacing: .06em; color: var(--violet); }
.mm-hw-remember-text { font-family: 'Roboto', sans-serif; font-size: .9rem; color: var(--ink-soft); }
.mm-previous { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 1.5rem; }
.mm-previous-list { display: flex; flex-direction: column; margin-top: 1rem; border-top: 1px solid var(--line); }
.mm-previous-row { display: flex; align-items: center; gap: 1rem; padding: .85rem .5rem; border: none; border-bottom: 1px solid var(--line); background: none; width: 100%; text-align: left; cursor: pointer; border-radius: var(--r-sm); }
.mm-previous-row:hover { background: var(--chalk); }
.mm-previous-row.active { background: var(--violet-light); }
.mm-previous-thumb { width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.mm-previous-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mm-previous-text { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.mm-previous-label { font-weight: 600; color: #010101; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.mm-previous-desc { margin: 0; font-size: .82rem; color: var(--ink-soft); }
.mm-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 980px) { .mm-list-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mm-list-grid { grid-template-columns: 1fr; } }
.mm-list-card { background: var(--white); border: none; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; text-align: left; cursor: pointer; padding: 0; transition: transform .2s ease, box-shadow .2s ease; width: 100%; }
.mm-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mm-list-thumb { aspect-ratio: 16/10; position: relative; }
.mm-list-thumb img,
.mm-list-thumb .gallery-tile-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.mm-list-thumb img { object-fit: cover; }
.mm-list-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.mm-list-date-badge { display: inline-flex; align-items: center; align-self: flex-start; background: #EFE7F8; color: #70459B; font-family: var(--font-display); text-transform: none; font-weight: 400; font-size: .8rem; padding: .3rem .65rem; border-radius: 999px; }
.mm-list-title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: #010101; margin: 0; }
.mm-list-desc { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.5; flex: 1; font-family: 'Roboto', sans-serif; }
.mm-list-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .88rem; color: var(--violet); margin-top: .3rem; font-family: 'Roboto', sans-serif; }
.mm-list-link .icon { width: 16px; height: 16px; }

/* Terms */
.terms-doc { max-width: 760px; margin: 0 auto; }
.np-badge { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: .78rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; color: var(--violet); background: var(--violet-light); padding: .4rem .9rem; border-radius: var(--r-pill); margin-bottom: .9rem; }
.terms-doc h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin: 2.25rem 0 .9rem; }
.terms-doc h3:first-child { margin-top: 0; }
.terms-doc p { font-family: var(--font-body), sans-serif; font-size: .98rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: .9rem; }
.terms-doc ul { margin: 0 0 .9rem; padding-left: 1.25rem; list-style: disc; }
.terms-doc li { font-family: var(--font-body), sans-serif; font-size: .98rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: .5rem; }

/* Contact modal */
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .contact-field-row { grid-template-columns: 1fr; } }

[hidden] { display: none !important; }
