/* =========================================================================
   Amity School District 4J — Concept Site
   Concept design by ObsidianNW

   Table of contents
   -----------------
   1.  Tokens (color, type, motion)
   2.  Reset + base
   3.  Type primitives (display, eyebrow, lede, body)
   4.  Layout primitives (containers, dividers, ridges)
   5.  Navigation (masthead + mobile overlay)
   6.  Footer
   7.  Buttons + chips + cards
   8.  Hero — Warrior particle
   9.  Audience routing
   10. Bond reveal — cinematic
   11. Mission + tribal acknowledgment
   12. Events module + schools module
   13. High School page modules
   14. Enrollment page modules
   15. News & Events page modules
   16. Motion / reveal
   17. Responsive
   ========================================================================= */

/* 1. TOKENS ------------------------------------------------------------- */
:root {
  /* Brand */
  --amity-blue:  #0442BF;
  --amity-blue-bright: #1656d8;
  --amity-ink:   #0A1733;
  --amity-ink-2: #0F1E40; /* slightly lifted */
  --amity-steel: #3B5B91;
  --amity-paper: #F5F3EE;
  --amity-bone:  #E8E2D1;
  --amity-rally: #F4B53F;
  --amity-rally-deep: #C98B17;

  /* Type */
  --display: "Big Shoulders Display", "Big Shoulders", "Bebas Neue", system-ui, sans-serif;
  --serif:   "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans:    "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Sizing */
  --max:  1440px;
  --max-text: 760px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Focus */
  --focus: 0 0 0 2px var(--amity-ink), 0 0 0 4px var(--amity-rally);
}

/* 2. RESET + BASE ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--amity-paper);
  color: var(--amity-ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--amity-blue); }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--amity-rally);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  top: -100px; left: 12px;
  background: var(--amity-rally);
  color: var(--amity-ink);
  padding: 12px 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1000;
  transition: top 0.2s var(--ease-out);
}
.skip:focus { top: 12px; }

/* 3. TYPE PRIMITIVES ---------------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amity-steel);
  margin: 0 0 18px;
}
.eyebrow--rally { color: var(--amity-rally); }
.eyebrow--paper { color: var(--amity-bone); }

.display {
  font-family: var(--display);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.015em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.display-xl { font-size: clamp(58px, 9vw, 168px); }
.display-l  { font-size: clamp(44px, 6vw, 104px); line-height: 0.92; }
.display-m  { font-size: clamp(34px, 4.4vw, 72px); line-height: 0.95; font-weight: 800; }
.display-s  { font-size: clamp(24px, 2.4vw, 36px); font-weight: 700; line-height: 1.05; }

.heading {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}
.lede--big { font-size: clamp(22px, 2vw, 32px); }

.prose {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  max-width: 60ch;
  text-wrap: pretty;
}

.serif-quote {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

/* 4. LAYOUT PRIMITIVES -------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

.section { padding: clamp(72px, 10vw, 144px) 0; }
.section--ink   { background: var(--amity-ink); color: var(--amity-paper); }
.section--paper { background: var(--amity-paper); color: var(--amity-ink); }
.section--bone  { background: var(--amity-bone);  color: var(--amity-ink); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.section-head .display { letter-spacing: -0.02em; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}

/* Mountain-ridge divider (drawn inline-SVG via CSS, never decorative SVG hand-art beyond a silhouette) */
.ridge {
  display: block;
  width: 100%;
  height: 56px;
  color: var(--amity-steel);
  opacity: 0.22;
}
.ridge--bottom-of-ink { color: var(--amity-paper); opacity: 1; }
.ridge--bottom-of-paper { color: var(--amity-ink); opacity: 1; }

/* Locker-stripe accent — diagonal stripes pulled from the MS mural DNA */
.stripes {
  background-image: repeating-linear-gradient(
    115deg,
    var(--amity-blue) 0 14px,
    transparent 14px 22px,
    var(--amity-steel) 22px 26px,
    transparent 26px 40px,
    var(--amity-bone) 40px 44px,
    transparent 44px 70px
  );
}

/* Card top-stripe (locker color block echo) */
.top-stripe::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--amity-blue);
  width: 100%;
}

/* 5. NAVIGATION --------------------------------------------------------- */
.mast {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  color: var(--amity-paper);
  transition: background-color 0.3s var(--ease-out), padding 0.3s var(--ease-out), backdrop-filter 0.3s var(--ease-out);
}
.mast--scrolled {
  background: rgba(10, 23, 51, 0.88);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  padding: 12px var(--gutter);
  border-bottom: 1px solid rgba(245, 243, 238, 0.08);
}
.mast--dark { color: var(--amity-ink); }
.mast--dark.mast--scrolled { background: rgba(245, 243, 238, 0.92); border-bottom-color: rgba(10, 23, 51, 0.08); }

.mast__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.mast__brand-mark {
  width: 60px; height: 60px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.mast--scrolled .mast__brand-mark { width: 48px; height: 48px; transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out); }
.mast__brand-text {
  display: flex; flex-direction: column; line-height: 1;
  white-space: nowrap;
}
.mast__brand-text .one {
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
}
.mast__brand-text .two {
  font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.7; margin-top: 4px;
}

.mast__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.mast__link {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: inherit;
  position: relative;
  padding: 4px 0;
}
.mast__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--amity-rally);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
}
.mast__link:hover::after, .mast__link[aria-current="page"]::after { transform: scaleX(1); }

.mast__cta {
  background: var(--amity-rally);
  color: var(--amity-ink);
  padding: 11px 20px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  transition: background-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.mast__cta:hover { background: #ffc758; color: var(--amity-ink); transform: translateY(-1px); }

.mast__burger {
  display: none;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 9px 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .mast__nav, .mast > .mast__cta { display: none; }
  .mast__burger { display: inline-block; }
}

/* Mobile overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--amity-ink);
  color: var(--amity-paper);
  display: none;
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.menu[aria-hidden="false"] {
  display: grid;
  opacity: 1;
}
.menu__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
}
.menu__close {
  background: transparent;
  border: 1px solid var(--amity-paper);
  color: var(--amity-paper);
  padding: 9px 14px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
}
.menu__list {
  list-style: none;
  margin: 0;
  padding: clamp(24px, 6vw, 64px) var(--gutter);
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  align-content: center;
}
.menu__list a {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--amity-paper);
}
.menu__list a:hover { color: var(--amity-rally); }
.menu__foot {
  padding: 18px var(--gutter);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amity-bone);
  border-top: 1px solid rgba(245,243,238,0.08);
}

/* 6. FOOTER ------------------------------------------------------------- */
.foot { background: var(--amity-ink); color: var(--amity-paper); }
.foot__banner {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(24px, 3vw, 40px);
  overflow: hidden;
}
.foot__banner .wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(120px, 26vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  color: var(--amity-blue);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  border-top: 1px solid rgba(245,243,238,0.08);
  border-bottom: 1px solid rgba(245,243,238,0.08);
}
.foot__col h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amity-bone);
  margin: 0 0 18px;
}
.foot__col p, .foot__col li { margin: 0 0 8px; }
.foot__col ul { list-style: none; padding: 0; margin: 0; }
.foot__col a:hover { color: var(--amity-rally); }
.foot__rule {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 20px var(--gutter);
  font-size: 12px;
  color: var(--amity-bone);
  letter-spacing: 0.04em;
}
.foot__rule .credit { font-style: italic; }
@media (max-width: 760px) {
  .foot__cols { grid-template-columns: 1fr; }
}

/* 7. BUTTONS / CHIPS / CARDS ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.btn--gold { background: var(--amity-rally); color: var(--amity-ink); }
.btn--gold:hover { background: #ffc758; color: var(--amity-ink); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--amity-paper);
  border: 1.5px solid currentColor;
  padding: 12.5px 20.5px;
}
.btn--ghost:hover { background: var(--amity-paper); color: var(--amity-ink); }
.btn--ink { background: var(--amity-ink); color: var(--amity-paper); }
.btn--ink:hover { background: var(--amity-blue); color: var(--amity-paper); }
.btn .arrow { font-family: var(--sans); font-weight: 700; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(245,243,238,0.08);
  border: 1px solid rgba(245,243,238,0.18);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.chip--ink   { background: var(--amity-ink); color: var(--amity-paper); border: 0; }
.chip--paper { background: var(--amity-paper); color: var(--amity-ink); border-color: rgba(10,23,51,0.1); }

.cat {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-block;
}
.cat--athl { color: var(--amity-rally); }
.cat--acad { color: var(--amity-blue); }
.cat--comm { color: var(--amity-steel); }
.cat--arts { color: #b66e2e; }
.cat--board { color: var(--amity-ink); }

/* 8. HERO — choreographed reveal (no particles) ---------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--amity-ink);
  color: var(--amity-paper);
  overflow: hidden;
  isolation: isolate;
}
/* soft halo behind the right-side warrior presence */
.hero::before {
  content: "";
  position: absolute;
  top: 50%; right: -16%;
  width: clamp(560px, 70vw, 1100px);
  height: clamp(560px, 88vh, 1100px);
  transform: translate(0, -50%);
  background: radial-gradient(ellipse at center, rgba(29,99,230,0.22) 0%, rgba(10,23,51,0) 60%);
  pointer-events: none;
  z-index: 0;
}
/* faint vignette */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

/* thin gold horizontal rule that draws across from the left */
.hero__rule {
  position: absolute;
  top: clamp(96px, 12vh, 140px);
  left: var(--gutter);
  right: clamp(40px, 8vw, 120px);
  height: 1px;
  background: var(--amity-rally);
  opacity: 0.35;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 0;
  animation: ruleIn 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}
@keyframes ruleIn { to { transform: scaleX(1); } }

/* Warrior — massive ghost presence on the right, face in the negative space */
.hero__warrior {
  position: absolute;
  top: 50%;
  right: clamp(-380px, -18vw, -160px);
  left: auto;
  transform: translate(0, -50%) scale(1.04);
  width: clamp(520px, 88vh, 1180px);
  height: clamp(520px, 88vh, 1180px);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  animation: warriorFade 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.hero__warrior-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  color: var(--amity-blue-bright);
  filter: none;
}
.hero__warrior-svg path { fill: currentColor; stroke: none; }
/* small gold caption beneath the warrior */
.hero__warrior-mark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--amity-rally);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  padding: 0 8%;
}
.hero__warrior-mark .rule {
  flex: 1;
  height: 1px;
  background: var(--amity-rally);
  opacity: 0.6;
}
.hero__warrior-mark .txt { flex: none; }

@keyframes warriorFade {
  to { opacity: 0.32; transform: translate(0, -50%) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__warrior { opacity: 0.32; transform: translate(0, -50%); animation: none; }
  .hero__rule { transform: scaleX(1); animation: none; }
}

.hero__overlay {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(120px, 14vh, 170px) var(--gutter) clamp(60px, 8vw, 100px);
  min-height: 100vh;
  max-width: var(--max);
  margin: 0 auto;
}
.hero__eyebrow {
  display: block;
  color: var(--amity-rally);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  animation: heroFade 0.7s var(--ease-out) 0.5s forwards;
}

/* Headline — line-by-line clip reveal, bottom-up */
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 8.8vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-transform: uppercase;
  max-width: min(58vw, 920px);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em; /* prevents descender clipping */
}
.hero__title .line.alt .line__inner { color: var(--amity-rally); }
.hero__title .line__inner {
  display: block;
  transform: translateY(105%);
  white-space: nowrap;
  animation: lineRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__title .line:nth-child(1) .line__inner { animation-delay: 0.75s; }
.hero__title .line:nth-child(2) .line__inner { animation-delay: 0.92s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: 1.12s; }
.hero__title .line:nth-child(4) .line__inner { animation-delay: 1.29s; }
@keyframes lineRise { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__title .line__inner { transform: none; animation: none; }
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.85vw, 26px);
  line-height: 1.5;
  max-width: 54ch;
  color: var(--amity-bone);
  margin: 0 0 32px;
  opacity: 0;
  animation: heroFade 0.8s var(--ease-out) 1.85s forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(12px);
  animation: heroRise 0.8s var(--ease-out) 2.1s forwards;
}
@keyframes heroFade { to { opacity: 1; } }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(24px, 4vw, 40px);
  z-index: 4;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amity-bone);
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
  animation: heroFade 0.8s var(--ease-out) 2.1s forwards;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--amity-rally), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 50% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; } }

@media (max-width: 860px) {
  .hero__title {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 80px);
  }
  .hero__sub {
    font-size: clamp(16px, 4.2vw, 20px);
  }
  /* mobile: warrior becomes a quiet rising presence in the bottom-right
     corner, out of the text's path; face visible above the lower edge */
  .hero__warrior {
    top: auto;
    bottom: -12%;
    left: auto;
    right: -22%;
    transform: translate(0, 0) scale(1);
    width: clamp(320px, 88vw, 520px);
    height: clamp(320px, 88vw, 520px);
    opacity: 0.18;
    animation: none;
  }
  /* halo also moves to the bottom-right so depth follows the warrior */
  .hero::before {
    top: auto;
    bottom: -20%;
    right: -28%;
    left: auto;
    transform: none;
    width: clamp(420px, 95vw, 700px);
    height: clamp(420px, 95vw, 700px);
  }
  /* tighter vertical rhythm so the hero isn't cavernous on mobile */
  .hero__overlay {
    padding: clamp(96px, 18vh, 140px) var(--gutter) clamp(120px, 18vh, 180px);
    min-height: auto;
  }
  .hero {
    min-height: 92vh;
  }
}

/* 9. AUDIENCE ROUTING --------------------------------------------------- */
.audience {
  background: var(--amity-paper);
  padding: clamp(64px, 8vw, 120px) 0;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10,23,51,0.12);
  border-left: 1px solid rgba(10,23,51,0.12);
}
.audience__card {
  position: relative;
  display: block;
  padding: clamp(28px, 3vw, 44px);
  min-height: 280px;
  background: var(--amity-paper);
  color: var(--amity-ink);
  border-right: 1px solid rgba(10,23,51,0.12);
  border-bottom: 1px solid rgba(10,23,51,0.12);
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
  text-decoration: none;
  overflow: hidden;
}
.audience__card:hover { background: var(--amity-ink); color: var(--amity-paper); }
.audience__card:hover .audience__arrow { color: var(--amity-rally); transform: translateX(8px); }
.audience__num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--amity-steel);
  text-transform: uppercase;
}
.audience__card:hover .audience__num { color: var(--amity-bone); }
.audience__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 16px 0 14px;
  max-width: 9ch;
}
.audience__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  max-width: 32ch;
  margin: 0;
}
.audience__arrow {
  position: absolute;
  right: clamp(20px, 2.4vw, 36px);
  bottom: clamp(20px, 2.4vw, 36px);
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--amity-blue);
  transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
@media (max-width: 980px) { .audience__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .audience__grid { grid-template-columns: 1fr; } }

/* 10. BOND REVEAL ------------------------------------------------------- */
.bond { background: var(--amity-ink); color: var(--amity-paper); }
.bond__intro {
  padding: clamp(80px, 12vw, 160px) var(--gutter) clamp(40px, 5vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
}
.bond__intro .display {
  font-size: clamp(54px, 9vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.028em;
  max-width: 14ch;
}
.bond__intro .lede { max-width: 58ch; margin-top: 28px; color: var(--amity-bone); }

.panorama {
  position: relative;
  width: 100%;
  height: clamp(420px, 80vh, 820px);
  overflow: hidden;
  background: #000;
}
.panorama__img {
  position: absolute; inset: -8% 0 -8% 0;
  width: 100%; height: 116%;
  object-fit: cover;
  will-change: transform;
}
.panorama__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,23,51,0.4) 0%, transparent 30%, transparent 70%, rgba(10,23,51,0.85) 100%);
  pointer-events: none;
}
.panorama__caption {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(28px, 4vw, 56px);
  max-width: min(620px, 80vw);
  color: var(--amity-paper);
  z-index: 2;
}
.panorama__caption .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 80px);
  color: var(--amity-rally);
  line-height: 1;
  display: block;
}
.panorama__caption .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amity-bone);
  margin-top: 14px;
  display: block;
}
.panorama__caption h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.panorama__caption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  margin: 0;
  color: var(--amity-bone);
}
.panorama__corner {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: var(--gutter);
  text-align: right;
  z-index: 2;
}
.panorama__corner .small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amity-bone);
}
.panorama__corner .meta {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-top: 6px;
  text-transform: uppercase;
}

.bond__outro {
  padding: clamp(80px, 10vw, 144px) var(--gutter);
  text-align: left;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.bond__outro .display { max-width: 14ch; }
.bond__outro .meta {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--amity-bone);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(245,243,238,0.18);
  padding-top: 24px;
}
@media (max-width: 880px) { .bond__outro { grid-template-columns: 1fr; } }

/* 11. MISSION + TRIBAL ACKNOWLEDGMENT ---------------------------------- */
.mission {
  background: var(--amity-paper);
  padding: clamp(96px, 14vw, 200px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission__inner {
  max-width: 880px;
  margin: 0 auto;
}
.mission__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--amity-ink);
  text-wrap: balance;
  margin: 28px 0 56px;
}
.mission__tag {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--amity-blue);
  text-wrap: balance;
}

.acknow {
  background: var(--amity-ink);
  color: var(--amity-paper);
  padding: clamp(96px, 12vw, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.acknow__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.acknow__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amity-rally);
  padding-top: 14px;
  border-top: 1px solid rgba(244,181,63,0.4);
}
.acknow__body p:first-of-type {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  color: var(--amity-paper);
  text-wrap: balance;
}
.acknow__body p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--amity-bone);
  max-width: 56ch;
}
.acknow__since {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amity-rally);
}
@media (max-width: 760px) { .acknow__inner { grid-template-columns: 1fr; } }

/* 12. EVENTS + SCHOOLS MODULE (homepage) ------------------------------- */
.week { background: var(--amity-paper); padding: clamp(72px, 8vw, 120px) 0; }
.week__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
@media (max-width: 980px) { .week__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .week__grid { grid-template-columns: 1fr; } }

.event-card {
  position: relative;
  background: #fff;
  background: var(--amity-paper);
  border: 1px solid rgba(10,23,51,0.12);
  padding: 26px 26px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: 260px;
  text-decoration: none;
  color: var(--amity-ink);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.event-card:hover { transform: translateY(-3px); border-color: var(--amity-ink); background: var(--amity-bone); color: var(--amity-ink); }
.event-card__date {
  display: flex; align-items: baseline; gap: 8px;
}
.event-card__day {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--amity-blue);
}
.event-card__mo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.event-card__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.event-card__meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--amity-steel);
  display: flex; flex-direction: column; gap: 4px;
  letter-spacing: 0.02em;
}
.event-card__meta strong { color: var(--amity-ink); font-weight: 700; }

.schools {
  background: var(--amity-ink);
  color: var(--amity-paper);
}
.schools__head {
  padding: clamp(80px, 10vw, 144px) var(--gutter) clamp(32px, 4vw, 48px);
  max-width: var(--max);
  margin: 0 auto;
}
.schools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.school {
  position: relative;
  display: block;
  height: clamp(380px, 50vh, 560px);
  overflow: hidden;
  color: var(--amity-paper);
  text-decoration: none;
  isolation: isolate;
}
.school__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  z-index: 0;
}
.school--no-img {
  background: linear-gradient(180deg, var(--amity-blue) 0%, var(--amity-ink) 100%);
}
.school__placeholder {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(115deg, rgba(245,243,238,0.05) 0 30px, transparent 30px 80px),
    linear-gradient(180deg, var(--amity-blue) 0%, var(--amity-ink) 100%);
}
.school__placeholder svg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  opacity: 0.08;
}
.school__placeholder svg path { fill: var(--amity-paper); }
.school__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,23,51,0.0) 30%, rgba(10,23,51,0.85) 100%);
  z-index: 1;
}
.school__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
}
.school__acronym {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--amity-rally);
  text-transform: uppercase;
}
.school__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 8px 0 6px;
}
.school__grades {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--amity-bone);
  margin: 0 0 14px;
}
.school__link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amity-paper);
  border-top: 1px solid rgba(245,243,238,0.2);
  padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%;
}
.school__link span { margin-left: auto; transition: transform 0.25s var(--ease-out); }
.school:hover .school__img { transform: scale(1.04); }
.school:hover .school__link span { transform: translateX(6px); color: var(--amity-rally); }
@media (max-width: 880px) { .schools__grid { grid-template-columns: 1fr; } }

/* 13. HIGH SCHOOL PAGE -------------------------------------------------- */
.hs-hero {
  position: relative;
  min-height: 88vh;
  color: var(--amity-paper);
  overflow: hidden;
  isolation: isolate;
}
.hs-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hs-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,23,51,0.45) 0%, transparent 40%, rgba(10,23,51,0.92) 100%);
}
.hs-hero__inner {
  position: relative; z-index: 2;
  min-height: 88vh;
  display: grid; grid-template-rows: 1fr auto;
  padding: clamp(140px, 16vh, 200px) var(--gutter) clamp(40px, 5vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.hs-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(50px, 7.6vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: 14px 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.hs-hero .lede { max-width: 50ch; color: var(--amity-bone); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,243,238,0.18);
  padding-top: 24px;
  margin-top: clamp(40px, 6vw, 80px);
}
.stat {
  padding: 10px 14px 6px 0;
  border-right: 1px solid rgba(245,243,238,0.18);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--amity-rally);
}
.stat__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amity-bone);
  margin-top: 8px;
}
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 24px; } }

.feature-stack { padding: 0; }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.feature__img {
  position: relative;
  overflow: hidden;
}
.feature__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature__body {
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.feature--ink   { background: var(--amity-ink); color: var(--amity-paper); }
.feature--ink .eyebrow { color: var(--amity-rally); }
.feature--paper { background: var(--amity-paper); }
.feature--bone  { background: var(--amity-bone); }
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  margin: 14px 0 22px;
  max-width: 14ch;
}
.feature p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  max-width: 50ch;
  margin: 0 0 20px;
}
.feature ul {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.feature ul li {
  font-family: var(--display); font-weight: 700;
  text-transform: uppercase; font-size: 16px; letter-spacing: 0.04em;
  border-top: 1px solid currentColor; padding-top: 8px;
  opacity: 0.92;
}
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; }
  .feature__img { min-height: 320px; }
}

.bell {
  background: var(--amity-paper);
  padding: clamp(72px, 9vw, 128px) 0;
}
.bell__grid {
  display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .bell__grid { grid-template-columns: 1fr; } }
.bell__timeline {
  display: grid;
  gap: 4px;
}
.bell__row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,23,51,0.1);
}
.bell__time {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--amity-blue);
  letter-spacing: 0.02em;
}
.bell__period {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bell__dur {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--amity-steel);
}
.bell__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 20px 0 28px;
}
.bell__chips .chip { background: var(--amity-bone); border: 0; color: var(--amity-ink); }
.bell__chips .chip--live { background: var(--amity-rally); color: var(--amity-ink); }

.athletics {
  background: var(--amity-bone);
  padding: clamp(72px, 9vw, 128px) 0;
}
.athletics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .athletics__grid { grid-template-columns: 1fr; } }
.athlete-card {
  background: var(--amity-paper);
  padding: 24px;
  display: grid; gap: 14px;
  border-left: 4px solid var(--amity-blue);
}
.athlete-card .sport {
  font-family: var(--sans); font-weight: 500; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--amity-rally-deep);
}
.athlete-card h3 {
  font-family: var(--display); font-weight: 800;
  text-transform: uppercase; font-size: 26px; line-height: 1; margin: 0;
}
.athlete-card .when {
  font-family: var(--display); font-weight: 700;
  font-size: 20px; color: var(--amity-blue); letter-spacing: 0.02em;
}
.athlete-card .where {
  font-family: var(--sans); font-size: 14px; color: var(--amity-steel);
}

.principal {
  background: var(--amity-ink);
  color: var(--amity-paper);
  padding: clamp(80px, 10vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.principal__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.principal blockquote {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
  color: var(--amity-paper);
}
.principal cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amity-rally);
}
.principal__art {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(245,243,238,0.18);
}
.principal__art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .principal__inner { grid-template-columns: 1fr; } .principal__art { aspect-ratio: 4/3; } }

.quick-links { background: var(--amity-paper); padding: clamp(72px, 9vw, 120px) 0; }
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10,23,51,0.12);
  border-left: 1px solid rgba(10,23,51,0.12);
}
.qlink {
  display: block;
  padding: 28px;
  background: var(--amity-paper);
  border-right: 1px solid rgba(10,23,51,0.12);
  border-bottom: 1px solid rgba(10,23,51,0.12);
  color: var(--amity-ink);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
  min-height: 168px;
  position: relative;
  text-decoration: none;
}
.qlink h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 22px; line-height: 1; letter-spacing: -0.005em; margin: 0 0 12px;
}
.qlink p { font-family: var(--sans); font-size: 13.5px; color: var(--amity-steel); margin: 0; max-width: 22ch; }
.qlink::after {
  content: "→";
  position: absolute; right: 18px; bottom: 18px;
  font-family: var(--display); font-weight: 700; font-size: 22px;
  color: var(--amity-blue);
  transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.qlink:hover { background: var(--amity-ink); color: var(--amity-paper); }
.qlink:hover p { color: var(--amity-bone); }
.qlink:hover::after { color: var(--amity-rally); transform: translateX(4px); }
@media (max-width: 980px) { .quick-links__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .quick-links__grid { grid-template-columns: 1fr; } }

.cta-banner {
  position: relative;
  color: var(--amity-paper);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 12vw, 180px) var(--gutter);
}
.cta-banner__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(0.9);
  z-index: 0;
}
.cta-banner__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,23,51,0.85), rgba(10,23,51,0.9));
}
.cta-banner__inner { position: relative; z-index: 2; max-width: 920px; }
.cta-banner h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(48px, 7vw, 120px); line-height: 0.9;
  letter-spacing: -0.022em; text-transform: uppercase; margin: 14px 0 28px;
  text-wrap: balance;
}
.cta-banner__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* 14. ENROLLMENT PAGE --------------------------------------------------- */
.enr-hero { position: relative; color: var(--amity-paper); overflow: hidden; min-height: 90vh; isolation: isolate; }
.enr-hero__img { position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; z-index:0; }
.enr-hero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,23,51,0.35) 0%, transparent 30%, rgba(10,23,51,0.94) 100%); }
.enr-hero__inner {
  position: relative; z-index: 2;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(140px, 16vh, 200px) var(--gutter) clamp(40px, 5vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.enr-hero h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(58px, 9vw, 168px); line-height: 0.88;
  letter-spacing: -0.025em; text-transform: uppercase;
  margin: 14px 0 24px;
}
.enr-hero .lede { max-width: 38ch; color: var(--amity-bone); margin-bottom: 32px; }

.boundary { background: var(--amity-paper); padding: clamp(72px, 9vw, 128px) 0; }
.boundary__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .boundary__inner { grid-template-columns: 1fr; } }
.boundary__form {
  background: var(--amity-bone);
  padding: clamp(28px, 3vw, 44px);
  border-left: 4px solid var(--amity-blue);
}
.boundary__field {
  display: flex; gap: 0; align-items: stretch;
  margin: 18px 0 18px;
}
.boundary__field input {
  flex: 1;
  padding: 16px 18px;
  font-family: var(--sans); font-size: 16px;
  border: 1px solid var(--amity-ink);
  background: var(--amity-paper);
  color: var(--amity-ink);
  border-right: 0;
}
.boundary__field input:focus { outline: 2px solid var(--amity-rally); outline-offset: -2px; }
.boundary__field button {
  padding: 14px 22px;
  border: 1px solid var(--amity-ink);
  background: var(--amity-ink);
  color: var(--amity-paper);
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.boundary__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.boundary__chips .chip { background: var(--amity-paper); border-color: rgba(10,23,51,0.18); color: var(--amity-ink); }

.steps { background: var(--amity-ink); color: var(--amity-paper); padding: clamp(80px, 10vw, 144px) 0; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.steps__grid::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 96px;
  height: 1px;
  background: rgba(245,243,238,0.18);
}
.step { padding: 0 24px 0 0; }
.step__num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(72px, 8vw, 140px); line-height: 1;
  letter-spacing: -0.04em;
  color: var(--amity-blue-bright);
}
.step__line { width: 28px; height: 4px; background: var(--amity-rally); margin: 22px 0; }
.step__title {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; line-height: 1; letter-spacing: -0.005em;
  text-transform: uppercase; margin: 0 0 12px;
}
.step__desc {
  font-family: var(--sans); font-size: 14.5px; color: var(--amity-bone);
  line-height: 1.55; max-width: 28ch; margin: 0;
}
@media (max-width: 880px) {
  .steps__grid { grid-template-columns: 1fr; gap: 32px; }
  .steps__grid::before { display: none; }
}

.why { background: var(--amity-paper); padding: clamp(80px, 10vw, 144px) 0; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10,23,51,0.12);
}
.why__cell {
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 32px) clamp(28px, 3vw, 40px) 0;
  border-right: 1px solid rgba(10,23,51,0.12);
  border-bottom: 1px solid rgba(10,23,51,0.12);
}
.why__cell:last-child { border-right: 0; }
.why__num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(48px, 5vw, 88px); line-height: 1;
  letter-spacing: -0.02em;
  color: var(--amity-blue);
}
.why__cell p {
  font-family: var(--sans); font-size: 15px; line-height: 1.55;
  color: var(--amity-ink); max-width: 28ch; margin: 16px 0 0;
}
@media (max-width: 980px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why__grid { grid-template-columns: 1fr; } }

.family-quote { background: var(--amity-bone); padding: clamp(80px, 10vw, 144px) 0; }
.family-quote__inner { max-width: 900px; margin: 0 auto; text-align: left; }
.family-quote blockquote {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: clamp(24px, 3vw, 44px); line-height: 1.35;
  letter-spacing: -0.01em; margin: 28px 0; text-wrap: balance;
}
.family-quote cite {
  font-family: var(--sans); font-style: normal;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amity-steel);
}

/* 15. NEWS PAGE --------------------------------------------------------- */
.news-hero {
  background: var(--amity-ink);
  color: var(--amity-paper);
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 16vh, 200px) 0 clamp(48px, 6vw, 80px);
}
.news-hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.news-hero h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(52px, 8vw, 132px); line-height: 0.9;
  letter-spacing: -0.022em; text-transform: uppercase;
  margin: 14px 0 18px; max-width: 16ch; text-wrap: balance;
}
.news-hero .lede { max-width: 56ch; color: var(--amity-bone); }
.news-hero__warrior {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 56%;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
}
.news-hero__warrior path { fill: var(--amity-paper); }

.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.filter-chip {
  background: transparent;
  border: 1px solid rgba(245,243,238,0.28);
  color: var(--amity-paper);
  padding: 9px 16px;
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.filter-chip:hover { background: rgba(245,243,238,0.08); }
.filter-chip[aria-pressed="true"] { background: var(--amity-rally); color: var(--amity-ink); border-color: var(--amity-rally); }

.week-feature { background: var(--amity-paper); padding: clamp(72px, 9vw, 128px) 0; }
.week-feature__grid {
  display: grid; gap: 24px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}
@media (max-width: 880px) { .week-feature__grid { grid-template-columns: 1fr; } }
.feature-event {
  position: relative;
  color: var(--amity-paper);
  overflow: hidden;
  min-height: 520px;
  isolation: isolate;
}
.feature-event img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.feature-event__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,23,51,0.3) 30%, rgba(10,23,51,0.92) 100%);
}
.feature-event__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(28px, 3vw, 44px);
}
.feature-event h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 3.8vw, 56px); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.015em;
  margin: 10px 0 14px; max-width: 18ch;
}
.feature-event .when { font-family: var(--display); font-weight: 700; font-size: 18px; }

.minor-stack { display: grid; gap: 16px; align-content: start; }
.minor-event {
  background: var(--amity-bone);
  padding: 22px;
  display: grid; grid-template-columns: 76px 1fr; gap: 16px;
  align-items: start;
}
.minor-event__date {
  background: var(--amity-ink); color: var(--amity-paper);
  padding: 14px 8px;
  text-align: center;
  font-family: var(--display); font-weight: 900; line-height: 1;
}
.minor-event__date .d { font-size: 28px; }
.minor-event__date .m { font-size: 12px; letter-spacing: 0.12em; margin-top: 4px; display: block; }
.minor-event h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 22px; line-height: 1.05; margin: 6px 0 6px; letter-spacing: -0.005em;
}
.minor-event p { font-family: var(--sans); font-size: 13.5px; color: var(--amity-steel); margin: 0; }

.calendar { background: var(--amity-bone); padding: clamp(72px, 9vw, 128px) 0; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid rgba(10,23,51,0.18);
  border-left: 1px solid rgba(10,23,51,0.18);
}
.cal-day {
  background: var(--amity-paper);
  padding: 16px 14px;
  min-height: 220px;
  border-right: 1px solid rgba(10,23,51,0.18);
  border-bottom: 1px solid rgba(10,23,51,0.18);
  display: flex; flex-direction: column; gap: 8px;
}
.cal-day--today { background: var(--amity-paper); position: relative; }
.cal-day--today::after {
  content: "TODAY"; position: absolute; top: 14px; right: 14px;
  background: var(--amity-rally); color: var(--amity-ink);
  font-family: var(--display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.16em; padding: 3px 6px;
}
.cal-day__name {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amity-steel);
}
.cal-day__num {
  font-family: var(--display); font-weight: 800;
  font-size: 36px; line-height: 1;
  letter-spacing: -0.02em;
}
.cal-day--today .cal-day__num { color: var(--amity-blue); border-bottom: 2px solid var(--amity-rally); padding-bottom: 4px; display: inline-block; }
.cal-event {
  font-family: var(--sans); font-size: 12px;
  line-height: 1.3; padding: 6px 8px;
  border-left: 3px solid var(--amity-blue);
  background: rgba(4, 66, 191, 0.06);
}
.cal-event--athl { border-color: var(--amity-rally-deep); background: rgba(244,181,63,0.12); }
.cal-event--comm { border-color: var(--amity-steel); background: rgba(59,91,145,0.08); }
.cal-event--arts { border-color: #b66e2e; background: rgba(182,110,46,0.08); }
.cal-event--board { border-color: var(--amity-ink); background: rgba(10,23,51,0.06); }
.cal-event strong { font-weight: 700; display: block; }
.cal-event em { font-style: normal; color: var(--amity-steel); font-size: 11px; }
.cal-more { font-family: var(--sans); font-size: 11px; color: var(--amity-steel); letter-spacing: 0.08em; text-transform: uppercase; margin-top: auto; }
@media (max-width: 1100px) {
  .cal-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
}

.news-grid-wrap { background: var(--amity-paper); padding: clamp(80px, 10vw, 144px) 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.news-card {
  display: block; color: var(--amity-ink); text-decoration: none;
  border-top: 1px solid var(--amity-ink);
  padding-top: 16px;
  transition: transform 0.3s var(--ease-out);
}
.news-card:hover { transform: translateY(-2px); color: var(--amity-ink); }
.news-card h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(22px, 1.9vw, 28px); line-height: 1.05;
  letter-spacing: -0.005em; margin: 12px 0 12px;
  text-wrap: balance;
}
.news-card p {
  font-family: var(--serif); font-weight: 400;
  font-size: 16px; line-height: 1.5;
  color: var(--amity-ink); margin: 0 0 14px;
  max-width: 42ch;
}
.news-card .meta {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amity-steel);
}
.news-card--feature {
  grid-column: span 2; grid-row: span 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px;
  border-top: 0; padding-top: 0;
  background: var(--amity-ink); color: var(--amity-paper);
}
.news-card--feature:hover { color: var(--amity-paper); }
.news-card--feature .feat-img {
  min-height: 280px; position: relative; overflow: hidden;
}
.news-card--feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-card--feature .feat-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.news-card--feature h3 { font-size: clamp(28px, 2.6vw, 40px); }
.news-card--feature p { color: var(--amity-bone); }
@media (max-width: 980px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--feature { grid-column: span 2; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card--feature { grid-column: span 1; grid-template-columns: 1fr; }
}

.scoreboard { background: var(--amity-ink); color: var(--amity-paper); padding: clamp(80px, 10vw, 144px) 0; }
.scoreboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 880px) { .scoreboard__grid { grid-template-columns: 1fr; } }
.score-col h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 22px; letter-spacing: 0.02em; margin: 0 0 20px;
  border-bottom: 2px solid var(--amity-rally); padding-bottom: 12px;
}
.score-row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,243,238,0.12);
}
.score-row .sport { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amity-bone); }
.score-row .opp { font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.1; text-transform: uppercase; margin-top: 4px; }
.score-row .date { font-family: var(--sans); font-size: 12px; color: var(--amity-bone); margin-top: 4px; }
.score-row .num { font-family: var(--display); font-weight: 900; font-size: 30px; line-height: 1; letter-spacing: -0.02em; }
.score-row .num em { font-style: normal; opacity: 0.4; font-size: 18px; }
.score-row .wl {
  display: inline-block;
  padding: 3px 8px; font-family: var(--display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.1em; margin-left: 6px;
}
.score-row .wl--w { background: var(--amity-rally); color: var(--amity-ink); }
.score-row .wl--l { background: rgba(245,243,238,0.16); color: var(--amity-paper); }
.score-row .time { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1; color: var(--amity-rally); }

.subscribe { background: var(--amity-paper); padding: clamp(80px, 10vw, 144px) 0; }
.subscribe__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .subscribe__grid { grid-template-columns: 1fr; } }
.sub-card {
  background: var(--amity-paper);
  border: 1px solid var(--amity-ink);
  padding: 28px;
  display: grid; gap: 14px; align-content: start;
  min-height: 220px;
}
.sub-card h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 24px; margin: 0;
}
.sub-card p { font-family: var(--sans); font-size: 14.5px; color: var(--amity-steel); margin: 0; }
.sub-card .btn { justify-self: start; padding: 10px 14px; font-size: 13px; }

/* 16. MOTION / REVEAL -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal[data-revealed="true"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* 17. RESPONSIVE TWEAKS ------------------------------------------------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__title { letter-spacing: -0.02em; }
  .mast__brand-text .two { display: none; }
}

/* 18. PRINT -------------------------------------------------------------
   Strip animations, dark backgrounds, hover states. Render every page as
   a clean black-on-white document for board packets, meeting handouts,
   and PDF exports. */
@media print {
  :root {
    --amity-ink:   #000;
    --amity-paper: #fff;
    --amity-bone:  #f1ede0;
    --amity-blue:  #002b8a;
    --amity-blue-bright: #003fcc;
    --amity-steel: #2a3f6a;
    --amity-rally: #8a5800;
  }
  html, body {
    background: #fff !important;
    color: #000 !important;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* Hide chrome that doesn't belong on paper */
  .mast,
  .mast__cta,
  .mast__burger,
  .menu,
  .hero__scroll,
  .hero__rule,
  .filter-row,
  .news-hero__warrior,
  .skip,
  .foot__banner { display: none !important; }

  /* Reflow hero — no fullscreen, no warrior overlay */
  .hero {
    min-height: auto;
    background: #fff;
    color: #000;
    page-break-after: always;
    overflow: visible;
  }
  .hero::before, .hero::after { display: none; }
  .hero__warrior { position: static; transform: none; width: 200px; height: 200px; margin: 0 0 24px; clip-path: none; }
  .hero__warrior-svg { color: #002b8a; filter: none; }
  .hero__overlay {
    position: static;
    min-height: auto;
    padding: 24pt 0;
    max-width: none;
  }
  .hero__title, .hero__title .alt {
    color: #000 !important;
    font-size: 36pt !important;
  }
  .hero__title .line__inner { color: #000 !important; }
  .hero__title .alt .line__inner { color: #002b8a !important; }
  .hero__sub { color: #333 !important; font-size: 13pt !important; }

  /* Dark sections render light on paper */
  .section--ink, .bond, .acknow, .schools, .news-hero, .principal,
  .steps, .scoreboard, .cta-banner, .hs-hero {
    background: #fff !important;
    color: #000 !important;
  }
  .section--ink *, .bond *, .acknow *, .schools *, .news-hero *,
  .principal *, .steps *, .scoreboard *, .cta-banner *, .hs-hero * {
    color: #000 !important;
  }

  /* Headings that were inverted */
  .eyebrow, .eyebrow--rally, .eyebrow--paper { color: #2a3f6a !important; }
  .display, .heading { color: #000 !important; }
  .display .alt, .hero__title .alt { color: #002b8a !important; }

  /* Buttons render as outlined labels */
  .btn, .mast__cta {
    background: transparent !important;
    color: #000 !important;
    border: 1pt solid #000 !important;
    padding: 6pt 10pt !important;
  }

  /* Section breaks help reading + page boundaries */
  section { page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100% !important; height: auto !important; page-break-inside: avoid; }

  /* Show link URLs after anchors so paper readers see them */
  main a[href^="http"]::after,
  main a[href^="mailto:"]::after,
  main a[href^="tel:"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    font-weight: 400;
    color: #555;
  }

  /* Footer becomes a small attribution block */
  .foot {
    background: #fff !important;
    color: #000 !important;
    border-top: 1pt solid #000;
    padding: 12pt 0;
  }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 12pt; padding: 12pt 0; }
  .foot__rule .credit { font-style: italic; }

  @page {
    margin: 0.75in;
  }
}
