:root {
  --purple: #5b2a86;
  --purple-dark: #35124f;
  --purple-soft: #eee7f6;
  --gold: #f0b429;
  --green: #347c58;
  --ink: #1f1a24;
  --muted: #61576a;
  --line: #ded6e6;
  --paper: #fffaf0;
  --white: #ffffff;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--purple); }
img { max-width: 100%; display: block; }
main:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--purple-dark);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(53, 18, 79, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 56px);
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand-mark { width: 42px; height: 58px; object-fit: contain; }
.brand-wordmark { width: min(244px, 42vw); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}
.site-nav a:hover { background: var(--purple-soft); }
.site-nav .language-link {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--purple-dark);
}
.site-nav .donate-link {
  background: var(--gold);
  color: var(--purple-dark);
}
.mobile-nav-only { display: none; }
.nav-toggle { display: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.quick-info-detail {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.5;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(53, 18, 79, 0.82), rgba(53, 18, 79, 0.42) 48%, rgba(53, 18, 79, 0.08)), url("assets/homepage.jpg") center / cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(255, 250, 240, 0));
}
.hero-copy {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 90px clamp(18px, 7vw, 84px);
  color: var(--white);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}
.hero .eyebrow {
  color: #ffe08a;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  line-height: 1.2;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); max-width: 10ch; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions, .password-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background: var(--purple);
  color: var(--white);
}
.button.secondary {
  background: var(--white);
  color: var(--purple-dark);
  border-color: var(--line);
}
.button.donation {
  background: var(--gold);
  color: var(--purple-dark);
}
.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -44px auto 0;
  width: min(1120px, calc(100% - 36px));
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.quick-info article {
  background: var(--white);
  padding: 24px;
}
.quick-info span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.quick-info strong {
  display: block;
  margin-top: 6px;
  font-size: 1.4rem;
}
.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 76px);
}
.split, .feature-grid, .pta-band, .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.section-copy {
  font-size: 1.08rem;
  color: var(--muted);
}
.mission-vision-section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.mission-vision-section .section-heading {
  margin-bottom: 28px;
}
.mission-vision-section .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
}
.mission-vision-grid article {
  max-width: 760px;
}
.mission-vision-grid h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}
.mission-vision-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.story-band {
  background: var(--purple-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-left: 0;
  padding-right: 0;
}
.story-card {
  padding: clamp(28px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.06);
}
.story-portrait {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 0.66fr);
  align-items: end;
  gap: 18px;
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.story-portrait img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 8px;
}
.story-portrait figcaption {
  color: #ffe08a;
  font-weight: 800;
}
.profile-section {
  background: var(--paper);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.profile-grid article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}
.profile-grid p {
  color: var(--muted);
}
.facilities-section {
  background: var(--white);
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.facility-grid figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  min-height: 300px;
}
.facility-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}
.facility-grid figcaption {
  position: absolute;
  inset: 12px 12px auto;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(31, 26, 36, 0.12);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
  font-weight: 800;
  line-height: 1.25;
}
.library-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.library-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}
.library-feature p {
  margin-bottom: 0;
  color: var(--muted);
}
.check-list, .date-list {
  padding-left: 20px;
}
.check-list li, .date-list li { margin: 10px 0; }
.panel, .password-panel, .family-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 18px 40px rgba(53, 18, 79, 0.08);
}
.date-list span {
  color: var(--green);
  font-weight: 800;
}
.pta-band {
  background: var(--purple-soft);
  align-items: center;
}
.donation-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.donation-actions p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}
.donate-hero {
  background: var(--purple-dark);
}
.donate-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  background: var(--white);
}
.donate-form-panel {
  width: 100%;
  min-width: 0;
  min-height: 540px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(53, 18, 79, 0.1);
}
.donate-form-panel givebutter-widget {
  display: block;
  width: 100%;
  min-height: 480px;
}
.donate-details {
  display: grid;
  gap: 30px;
  padding-top: 12px;
}
.donate-details h2 {
  max-width: 13ch;
}
.donate-details p {
  color: var(--muted);
  font-size: 1.05rem;
}
.donate-goal {
  margin: 18px 0 12px;
}
.donate-goal strong {
  color: var(--purple-dark);
  font-size: 1.1em;
  font-weight: 800;
}
.donate-programs {
  margin: 16px 0 20px;
  padding-left: 22px;
  color: var(--muted);
}
.donate-programs li {
  margin: 8px 0;
}
.donate-detail-block {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.donate-detail-block p {
  margin-bottom: 10px;
}
.donate-detail-block > h3 {
  margin-bottom: 18px;
}
.giving-method {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.giving-method h4 {
  margin: 0 0 8px;
  color: var(--purple-dark);
  font-size: 1.12rem;
}
.giving-method address {
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
  line-height: 1.45;
}
.giving-method ul {
  margin: 10px 0 14px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.giving-method li {
  margin: 5px 0;
}
.giving-method-button {
  margin-top: 4px;
}
.donate-other-support {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.donate-other-support .section-heading {
  max-width: 760px;
}
.donate-other-support .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.support-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.support-link-grid article {
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line);
}
.support-link-grid article:not(:nth-child(3n + 1)) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.support-link-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}
.support-link-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.involvement-section {
  background: var(--white);
}
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.involvement-grid article {
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
}
.involvement-grid p {
  color: var(--muted);
}
.involvement-actions {
  margin-top: 22px;
}
.involvement-actions .button {
  flex: 0 0 auto;
}
.traditions-section {
  background: var(--paper);
}
.tradition-carousel {
  display: grid;
  gap: 14px;
}
.tradition-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.tradition-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.tradition-controls button:hover,
.tradition-controls button:focus-visible {
  color: var(--white);
  background: var(--purple);
}
.tradition-reel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--purple) var(--purple-soft);
}
.tradition-card {
  overflow: hidden;
  flex: 0 0 clamp(230px, 24vw, 285px);
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(53, 18, 79, 0.07);
}

.tradition-media {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line);
  background: var(--purple-soft);
}

.tradition-media picture,
.tradition-media picture > img,
.tradition-photo-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: var(--purple-soft);
}

.tradition-media picture > img.tradition-graphic {
  object-fit: contain;
  background: var(--white);
}

.tradition-photo-placeholder {
  display: grid;
  place-items: center;
}
.tradition-photo-placeholder img {
  width: 48px;
  height: auto;
  opacity: 0.26;
  filter: saturate(0.6);
}
.tradition-card-content {
  min-height: 0;
  padding: 12px 14px;
}
.tradition-when {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}
.tradition-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.15;
}
.tradition-card-content > p:not(.tradition-when) {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}
.tradition-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 2px;
}
.tradition-dots button {
  width: 11px;
  height: 11px;
  border: 1px solid var(--purple);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.tradition-dots button[aria-current="true"] {
  background: var(--purple);
  transform: scale(1.22);
}
.store-section {
  background: var(--paper);
}
.store-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(53, 18, 79, 0.08);
}
.store-panel p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
}
.not-found-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.subhero {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 76px);
  background: var(--purple-dark);
  color: var(--white);
}
.subhero > div {
  width: min(880px, 100%);
}
.subhero .eyebrow {
  color: #ffe08a;
}
.subhero h1 {
  max-width: none;
}
.subhero p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.15rem;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 24px;
  max-width: 100%;
  min-width: 0;
}
.calendar-card, .steps-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 18px 40px rgba(53, 18, 79, 0.08);
}
.calendar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.calendar-actions {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  justify-items: start;
}
.calendar-actions p {
  margin: 0;
  color: var(--muted);
}
code {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.92em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.steps-panel strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}
iframe {
  width: 100%;
  max-width: 100%;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--white);
}
.family-calendar-frame {
  min-height: 520px;
  margin-top: 16px;
}
.academic-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.academic-calendar article {
  background: var(--white);
  padding: clamp(18px, 3vw, 28px);
}
.academic-calendar span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.academic-calendar strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}
.academic-calendar p {
  color: var(--muted);
}
.academic-source {
  margin-top: 24px;
}
.calendar-source-note,
.calendar-family-note {
  max-width: 78rem;
  margin: 0 0 12px;
  color: var(--muted);
}
.calendar-source-note {
  font-size: 0.96rem;
  font-style: italic;
}
.calendar-family-note {
  margin-bottom: 22px;
}
.steps {
  margin: 0;
  padding: 24px 24px 24px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.notice {
  margin: 16px 0;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: #fff6d7;
  color: var(--ink);
  font-weight: 700;
}
.families-section {
  background: #f7f1fb;
}
input, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfc3dc;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: var(--white);
}
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.honey-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.password-row input { flex: 1 1 220px; }
.resource-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.resource-tabs button {
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 12px 16px;
  background: var(--white);
  font-weight: 900;
  font-size: clamp(0.96rem, 0.45vw + 0.86rem, 1.08rem);
  line-height: 1.15;
  color: var(--purple-dark);
  cursor: pointer;
}
.resource-tabs button[aria-selected="true"] {
  background: var(--purple);
  color: var(--white);
}
.resource-panel { display: none; }
.resource-panel.is-active { display: block; }
.resource-panel h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.resource-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fffdf8;
}

.resource-grid .guide-map-section {
  grid-column: 1 / -1;
}

.guide-map {
  width: min(100%, 760px);
  margin: 0 auto;
}

.guide-map img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.guide-map figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.partner-callout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}
.partner-logo {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
}
.partner-callout h4 {
  margin: 0 0 6px;
}
.partner-callout p {
  margin: 0;
  color: var(--muted);
}
.resource-grid ul {
  margin: 0;
  padding-left: 18px;
}
.announcements-list {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}
.announcement-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}
.announcement-item.is-expired {
  background: #f0edf3;
  color: #766d7f;
  opacity: 0.72;
}
.announcement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.announcement-meta span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.poster-preview {
  display: block;
  width: min(100%, 360px);
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(45, 21, 70, 0.08);
}
.poster-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 460px;
  object-fit: contain;
  background: var(--white);
}
.announcement-copy {
  display: grid;
  gap: 14px;
}
.announcement-copy section {
  display: grid;
  gap: 6px;
}
.announcement-copy h4 {
  margin: 0;
  font-size: 1.12rem;
}
.announcement-copy p {
  margin: 0;
  color: var(--muted);
}
.announcement-item.is-expired .announcement-copy p {
  color: #766d7f;
}
.events-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
}
.family-events-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 18px;
  align-items: start;
  margin: 18px 0;
}
.event-feed-panel,
.event-calendar-panel {
  min-width: 0;
}
.event-calendar-panel {
  position: sticky;
  top: 98px;
}
.event-feed-panel > h4,
.event-calendar-panel > h4 {
  margin-bottom: 10px;
}
.event-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}
.event-item .poster-preview {
  width: 100%;
  max-width: 300px;
}
.event-item .poster-preview img {
  max-height: 380px;
}
.event-item h4 {
  margin: 4px 0 8px;
  font-size: 1.12rem;
}
.event-date {
  margin: 0;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.event-location,
.event-description {
  margin: 8px 0 0;
  color: var(--muted);
}
.event-description {
  max-width: 76ch;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.empty-state {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
}
.staff-directory-section {
  margin: 22px 0;
}
.staff-directory-section h4 {
  margin: 0 0 12px;
}
.staff-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  align-items: stretch;
}
.staff-card {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}
.staff-card h5 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}
.staff-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.staff-class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.staff-class-meta span {
  padding: 3px 7px;
  border-radius: 4px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 0.78rem;
  font-weight: 900;
}
.staff-email {
  margin-top: auto !important;
  padding-top: 5px;
}
.room-rep-grid,
.spotlight-grid,
.antojitos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.room-rep-card,
.spotlight-card,
.antojitos-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}
.room-rep-card {
  padding: 16px;
}
.room-rep-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.room-rep-card header span,
.spotlight-date,
.antojitos-date {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.room-rep-card header h4 {
  margin: 3px 0 0;
}
.room-rep-card header strong {
  white-space: nowrap;
  color: var(--purple);
}
.room-rep-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.room-rep-card li {
  display: grid;
  gap: 2px;
}
.room-rep-card li a,
.room-rep-card li em {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.88rem;
}
.spotlight-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
}
.spotlight-card > a {
  min-height: 250px;
  background: var(--purple-soft);
}
.spotlight-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.spotlight-card > div,
.antojitos-copy {
  padding: 16px;
}
.spotlight-card h4,
.spotlight-card p,
.antojitos-copy h4,
.antojitos-copy p {
  margin: 0 0 8px;
}
.antojitos-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 0.55fr);
  align-items: start;
}
.antojitos-item .poster-preview {
  width: 100%;
  height: 100%;
  min-height: 260px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.antojitos-item .poster-preview img {
  height: 100%;
  max-height: 420px;
}
.antojitos-item.is-historical {
  opacity: 0.58;
  background: #f0edf3;
}
.antojitos-order-link {
  margin-top: 8px;
}
.contact-section {
  display: block;
}
.contact-section > div {
  max-width: 760px;
}
.site-footer {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 44px 18px;
  color: var(--white);
  background: var(--purple-dark);
}
.site-footer img {
  width: 54px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-footer a { color: #ffe08a; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 224, 138, 0.52);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.social-link svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link:hover {
  background: rgba(255, 224, 138, 0.12);
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    min-height: 78px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    padding: 0;
    color: var(--purple-dark);
    cursor: pointer;
  }
  .nav-toggle-icon {
    position: relative;
    display: grid;
    gap: 5px;
    width: 22px;
  }
  .nav-toggle-icon span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }
  .nav-toggle.is-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(53, 18, 79, 0.16);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .mobile-nav-only { display: block; }
  .site-nav a {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 1rem;
  }
  .hero { min-height: 620px; }
  .hero-media { background-position: 62% center; }
  .hero-copy { margin-bottom: 70px; }
  .quick-info, .story-band, .split, .mission-vision-grid, .feature-grid, .pta-band, .donate-page, .calendar-layout, .family-events-layout, .contact-section, .facility-grid, .library-feature, .academic-calendar {
    grid-template-columns: 1fr;
  }
  .event-calendar-panel {
    position: static;
  }
  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-portrait {
    grid-template-columns: 1fr;
  }
  .involvement-grid {
    grid-template-columns: 1fr 1fr;
  }
  .support-link-grid {
    grid-template-columns: 1fr;
  }
  .support-link-grid article,
  .support-link-grid article:not(:nth-child(3n + 1)) {
    padding: 18px 0;
    border-left: 0;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .resource-tabs {
    gap: 8px;
  }
  .resource-tabs button {
    flex: 1 1 150px;
    padding: 12px 14px;
  }
  .partner-callout {
    grid-template-columns: 1fr;
  }
  .store-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .calendar-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .quick-info { margin-top: 0; width: 100%; border-left: 0; border-right: 0; }
  iframe { min-height: 420px; }
}

@media (max-width: 520px) {
  .brand-wordmark { width: 184px; }
  .brand-mark { width: 34px; height: 48px; }
  .hero-copy { width: calc(100% - 28px); margin-left: 14px; }
  .hero-actions .button, .password-row .button { width: 100%; }
  .hero .eyebrow { font-size: 1.08rem; }
  .involvement-actions .button { width: auto; max-width: 100%; }
  .section { padding-left: 16px; padding-right: 16px; }
  .calendar-layout, .calendar-card, .steps-panel, iframe {
    width: 100%;
    min-width: 0;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .involvement-grid {
    grid-template-columns: 1fr;
  }
  .tradition-card {
    flex-basis: min(72vw, 280px);
  }
  .tradition-controls {
    justify-content: flex-start;
  }
  .resource-tabs button {
    flex-basis: calc(50% - 4px);
  }
  .spotlight-card,
  .antojitos-item {
    grid-template-columns: 1fr;
  }
  .spotlight-card > a {
    max-height: 420px;
  }
  .antojitos-item .poster-preview {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
