.interior-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--navy);
  color: var(--white);
}

.text-page-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.text-page-hero-inner { padding-block: clamp(78px, 8vw, 112px); }

.text-page-hero h1 {
  max-width: 980px;
  margin-bottom: 32px;
  font-size: clamp(3.8rem, 7vw, 6rem);
}

.text-page-hero-inner > p {
  max-width: 680px;
  margin-bottom: 0;
  color: #d8dced;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.interior-hero-copy {
  align-self: center;
  padding: clamp(84px, 9vw, 132px) max(52px, calc((100vw - var(--max)) / 2));
  padding-right: clamp(48px, 6vw, 92px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.breadcrumbs a { text-underline-offset: 4px; }
.breadcrumbs span:last-child { color: #d8dced; }

.interior-hero h1 {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 7vw, 6rem);
}

.interior-hero-compact-title h1 { font-size: clamp(3.35rem, 5vw, 4.6rem); }

.interior-hero-copy > p {
  max-width: 570px;
  margin-bottom: 0;
  color: #d8dced;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.interior-hero-photo {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
}

.interior-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.interior-hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: calc(100% - 32px);
  padding: 13px 22px;
  background: var(--paper);
  color: var(--ink);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(270px, 34%) 1fr;
  gap: clamp(56px, 8vw, 112px);
  padding-block: clamp(92px, 10vw, 144px);
}

.section-context,
.shared-section-heading > p {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-intro h2,
.shared-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  text-wrap: balance;
}

.about-lead { max-width: 760px; }

.about-lead > p {
  margin-bottom: 24px;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.about-lead > p:first-child {
  color: var(--ink);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.45;
}

.interior-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-top: 44px;
}

.impact-section {
  padding-block: clamp(84px, 8vw, 116px);
  background: var(--blue);
  color: var(--white);
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(270px, 34%) 1fr;
  gap: clamp(56px, 8vw, 112px);
}

.impact-section .shared-section-heading > p { color: var(--yellow); }
.impact-section .shared-section-heading { align-self: start; }

.impact-ledger { border-top: 1px solid rgba(255, 255, 255, .62); }

.impact-ledger article {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) 1fr;
  gap: 44px;
  padding: 30px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.impact-ledger h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.35rem;
}

.impact-ledger ul { margin: 0; padding: 0; list-style: none; }

.impact-ledger li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: #eef3fa;
}

.impact-ledger li:last-child { margin-bottom: 0; }
.impact-ledger li::before { content: "—"; position: absolute; left: 0; color: var(--yellow); }

.community-story { padding-block: clamp(84px, 9vw, 124px); }

.community-story > .shared-section-heading {
  display: grid;
  grid-template-columns: 36% 1fr;
  margin-bottom: 54px;
}

.community-story > .shared-section-heading h2 { grid-column: 2; max-width: 720px; }

.photo-story {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 28px;
}

.photo-story figure { min-width: 0; margin: 0; }
.photo-story-featured { grid-row: 1 / 3; }

.photo-frame {
  position: relative;
  height: calc(100% - 38px);
  min-height: 300px;
  overflow: hidden;
  background: var(--line);
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-story-featured .photo-frame { min-height: 660px; }

.photo-story figcaption {
  margin-top: 13px;
  color: var(--slate);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.board-directory { padding-block: clamp(84px, 9vw, 124px); }

.board-directory-intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, .72fr);
  align-items: end;
  gap: clamp(56px, 9vw, 120px);
  margin-bottom: 68px;
}

.board-directory-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
}

.board-directory-intro p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.roster-columns {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(54px, 8vw, 108px);
}

.roster-columns section > h3 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.roster-list { margin: 0; border-top: 2px solid var(--ink); }

.roster-list > div {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(150px, .9fr) 1.1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.roster-list dt {
  color: var(--slate);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.roster-list dd {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.roster-vacant dd { color: var(--blue); font-style: italic; }

.board-photo-section {
  padding-block: clamp(90px, 10vw, 138px);
  background: var(--yellow);
  color: var(--navy);
}

.board-photo-layout {
  display: grid;
  grid-template-columns: minmax(260px, 31%) 1fr;
  align-items: start;
  gap: clamp(56px, 8vw, 110px);
}

.board-photo-layout h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.board-photo-layout > div > p {
  max-width: 360px;
  margin-bottom: 0;
  font-weight: 600;
}

.board-photo-layout figure { margin: 0; }

.board-photo-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--navy);
}

.board-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.board-photo-layout figcaption {
  margin-top: 13px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-connect {
  display: grid;
  grid-template-columns: minmax(300px, 38%) 1fr;
  gap: clamp(58px, 9vw, 122px);
  padding-block: clamp(96px, 11vw, 150px);
}

.social-connect header h2,
.important-links header h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.social-connect header p,
.important-links header p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.social-channel-list { border-top: 2px solid var(--ink); }

.social-channel-list > a {
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(145px, .8fr) 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.social-channel-list strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.social-channel-list > a > span:nth-child(2) { color: var(--slate); }
.social-channel-list > a > span:last-child { color: var(--blue); font-size: .76rem; font-weight: 700; letter-spacing: .05em; }
.social-channel-list > a:hover strong { color: var(--blue); }

.social-highlights {
  padding-block: clamp(96px, 11vw, 150px);
  background: var(--blue);
  color: var(--white);
}

.social-highlights-layout {
  display: grid;
  grid-template-columns: minmax(270px, 31%) 1fr;
  align-items: start;
  gap: clamp(58px, 8vw, 108px);
}

.social-highlights header h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}

.social-highlights header p {
  margin-bottom: 40px;
  color: #e4ebf5;
  line-height: 1.75;
  text-wrap: pretty;
}

.social-highlight-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.social-highlight-images figure { min-width: 0; margin: 0; }

.social-highlight-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.social-highlight-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.social-highlight-frame:hover img { transform: scale(1.025); }

.social-highlight-images figcaption {
  margin-top: 14px;
  color: #e4ebf5;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.important-links {
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  gap: clamp(58px, 9vw, 122px);
  padding-block: clamp(96px, 11vw, 150px);
}

.important-link-list { border-top: 2px solid var(--ink); }

.important-link-list > a {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.important-link-list strong { font-size: 1.08rem; }
.important-link-list span { color: var(--blue); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.important-link-list > a:hover strong { color: var(--blue); }

.resource-index {
  display: grid;
  grid-template-columns: minmax(290px, 35%) 1fr;
  gap: clamp(58px, 9vw, 122px);
  padding-block: clamp(84px, 9vw, 124px);
}

.resource-index > header h2 {
  margin-bottom: 30px;
  font-size: clamp(3.1rem, 5vw, 5.1rem);
}

.resource-index > header p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.resource-index-list { border-top: 2px solid var(--ink); }

.resource-index-list > a {
  min-height: 160px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.resource-index-list > a > span:first-child {
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.resource-index-list > a > span:nth-child(2) { display: grid; gap: 12px; }

.resource-index-list strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
}

.resource-index-list small {
  max-width: 520px;
  color: var(--slate);
  font-size: .94rem;
  line-height: 1.6;
}

.resource-index-list > a > span:last-child {
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.resource-index-list > a:hover strong { color: var(--blue); }

.route-directory {
  display: grid;
  grid-template-columns: minmax(280px, 32%) 1fr;
  gap: clamp(56px, 8vw, 108px);
  padding-block: clamp(80px, 8vw, 116px);
}

.route-directory > header h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.route-directory > header p {
  max-width: 410px;
  color: var(--slate);
  line-height: 1.72;
}

.route-directory-list { border-top: 2px solid var(--ink); }

.route-directory-list article {
  display: grid;
  grid-template-columns: 130px minmax(210px, .7fr) 1fr;
  gap: 28px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.route-directory-list article > p:first-child {
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.route-directory-list h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 400;
}

.route-directory-list article > p:not(:first-child),
.route-directory-list article > a {
  grid-column: 3;
}

.route-directory-list article > p:not(:first-child) {
  margin-bottom: 0;
  color: var(--slate);
  line-height: 1.7;
}

.route-directory-list article > a { justify-self: start; }
.wellness-directory-list article { grid-template-columns: 105px minmax(260px, .9fr) minmax(250px, 1fr); }
.wellness-directory-list h3 { font-size: clamp(1.55rem, 2.15vw, 2.15rem); }
.route-directory-followup { grid-column: 2; margin: 34px 0 0; color: var(--slate); }
.route-directory-followup a { color: var(--blue); font-weight: 700; }

.student-recognition { padding-bottom: clamp(94px, 10vw, 142px); }
.student-recognition > header { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(300px, .62fr); align-items: end; gap: 64px; margin-bottom: 54px; }
.student-recognition > header h2 { max-width: 720px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.student-recognition > header p { max-width: 520px; margin: 0; color: var(--slate); line-height: 1.72; }
.student-recognition-photos { display: grid; grid-template-columns: .82fr 1.18fr; gap: 4px; }
.student-recognition-photos figure { position: relative; min-height: 650px; margin: 0; overflow: hidden; background: var(--navy); }
.student-recognition-photos img { object-fit: cover; }
.student-recognition-photos figure:first-child img { object-position: 50% 48%; }
.student-recognition-photos figure:last-child img { object-position: 50% 38%; }
.student-recognition-photos figcaption { position: absolute; right: 0; bottom: 0; display: flex; align-items: baseline; gap: 20px; padding: 15px 20px; background: var(--paper); color: var(--ink); }
.student-recognition-photos figcaption strong { font-family: var(--font-display), Georgia, serif; font-size: 1rem; font-weight: 400; }
.student-recognition-photos figcaption span { color: var(--blue); font-size: .63rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.reflections-feature { scroll-margin-top: 32px; padding-block: clamp(94px, 10vw, 142px); background: var(--blue); color: var(--white); }
.reflections-feature-layout { display: grid; grid-template-columns: minmax(440px, 1.05fr) minmax(360px, .75fr); align-items: center; gap: clamp(62px, 9vw, 126px); }
.reflections-feature figure { position: relative; min-height: 610px; margin: 0; overflow: hidden; background: var(--navy); }
.reflections-feature figure img { object-fit: cover; object-position: center; }
.reflections-feature figcaption { position: absolute; left: 0; bottom: 0; padding: 14px 20px; background: var(--paper); color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.reflections-context { margin-bottom: 22px; color: var(--yellow); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.reflections-feature h2 { margin-bottom: 26px; font-size: clamp(3.1rem, 5vw, 5rem); }
.reflections-feature h3 { margin-bottom: 26px; color: var(--yellow); font-family: var(--font-display), Georgia, serif; font-size: clamp(1.45rem, 2.3vw, 2rem); font-weight: 400; }
.reflections-feature div > p:not(.reflections-context) { max-width: 580px; color: #e4ebf5; line-height: 1.72; }
.reflections-feature .quiet-link { display: inline-block; margin-top: 16px; color: var(--white); }

.programs-next-step { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(360px, .72fr); align-items: start; gap: clamp(58px, 9vw, 122px); padding-block: clamp(88px, 9vw, 126px); }
.programs-next-step h2 { max-width: 740px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.programs-next-step > div > p { max-width: 560px; color: var(--slate); font-size: 1.05rem; line-height: 1.72; }
.programs-next-step nav { display: grid; gap: 18px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--ink); }
.programs-next-step nav a { justify-self: start; }

.volunteer-openings { padding-block: clamp(80px, 8vw, 116px); }
.volunteer-openings > header { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(300px, .65fr); align-items: end; gap: 70px; margin-bottom: 48px; }
.volunteer-openings > header h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.volunteer-openings > header p { max-width: 480px; margin: 0; color: var(--slate); line-height: 1.72; }
.volunteer-opening-list { border-top: 2px solid var(--ink); }
.volunteer-opening-list article { scroll-margin-top: 30px; display: grid; grid-template-columns: 190px 1fr; gap: clamp(42px, 7vw, 94px); padding: 48px 0 54px; border-bottom: 1px solid var(--line); }
.volunteer-opening-date { display: grid; align-content: start; margin: 0; }
.volunteer-opening-date span, .volunteer-opening-date small, .volunteer-opening-audience { font-size: .69rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.volunteer-opening-date span, .volunteer-opening-audience { color: var(--blue); }
.volunteer-opening-date strong { margin-block: 4px; font-family: var(--font-display), Georgia, serif; font-size: 3.4rem; font-weight: 400; line-height: 1; }
.volunteer-opening-date small { color: var(--slate); }
.volunteer-opening-audience { margin-bottom: 14px; }
.volunteer-opening-list h3 { margin-bottom: 18px; font-family: var(--font-display), Georgia, serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; }
.volunteer-opening-list article > div > p:not(.volunteer-opening-audience) { max-width: 760px; color: var(--slate); font-size: 1rem; line-height: 1.72; }
.volunteer-opening-list .button { margin-top: 18px; }

.volunteer-guide { padding-block: clamp(92px, 10vw, 136px); background: var(--blue); color: var(--white); }
.volunteer-guide-layout { display: grid; grid-template-columns: minmax(300px, .72fr) 1fr; gap: clamp(58px, 9vw, 122px); }
.volunteer-guide header > p { margin-bottom: 22px; color: var(--yellow); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.volunteer-guide h2 { margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.volunteer-guide-steps { border-top: 1px solid rgba(255,255,255,.6); }
.volunteer-guide-steps article { display: grid; grid-template-columns: minmax(190px, .72fr) 1fr; gap: 40px; padding: 30px 0 34px; border-bottom: 1px solid rgba(255,255,255,.32); }
.volunteer-guide-steps h3 { margin: 0; color: var(--yellow); font-size: 1.28rem; }
.volunteer-guide-steps p { margin: 0; color: #e4ebf5; line-height: 1.7; }

.volunteer-contact { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(340px, .68fr); align-items: end; gap: clamp(60px, 9vw, 122px); padding-block: clamp(94px, 10vw, 136px); }
.volunteer-contact h2 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3rem, 5vw, 5rem); }
.volunteer-contact > div:first-child p, .volunteer-contact > div:last-child p { color: var(--slate); line-height: 1.72; }
.volunteer-contact > div:last-child p { margin: 24px 0 0; font-size: .9rem; }
.volunteer-contact > div:last-child p a { color: var(--blue); font-weight: 700; }

.events-volunteer-callout { padding-block: clamp(82px, 9vw, 116px); background: var(--blue); color: var(--white); }
.events-volunteer-callout-inner { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(360px, .7fr); align-items: end; gap: clamp(56px, 9vw, 120px); }
.events-volunteer-callout h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.events-volunteer-callout p { max-width: 540px; color: #e4ebf5; line-height: 1.72; }
.events-volunteer-callout .button { margin-top: 16px; }

.governance-principles, .contact-boundaries { padding-block: clamp(92px, 10vw, 136px); background: var(--blue); color: var(--white); }
.governance-principles-layout, .contact-boundaries-layout { display: grid; grid-template-columns: minmax(300px, .72fr) 1fr; gap: clamp(58px, 9vw, 122px); }
.governance-principles h2, .contact-boundaries h2 { margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.governance-principles-layout > div, .contact-boundaries-layout > div { border-top: 1px solid rgba(255,255,255,.6); }
.governance-principles article { display: grid; grid-template-columns: minmax(190px, .7fr) 1fr; gap: 40px; padding: 30px 0 34px; border-bottom: 1px solid rgba(255,255,255,.32); }
.governance-principles h3 { margin: 0; color: var(--yellow); font-size: 1.25rem; }
.governance-principles article p, .contact-boundaries header p, .contact-boundaries dd { margin-bottom: 0; color: #e4ebf5; line-height: 1.7; }
.governance-contact { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(360px, .7fr); align-items: end; gap: clamp(58px, 9vw, 122px); padding-block: clamp(92px, 10vw, 132px); }
.governance-contact h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.governance-contact p { color: var(--slate); line-height: 1.72; }
.governance-contact .button { margin-top: 16px; }

.contact-boundaries header p { max-width: 520px; margin-top: 28px; }
.contact-boundaries dl { margin: 0; }
.contact-boundaries dl > div { display: grid; grid-template-columns: minmax(170px, .55fr) 1fr; gap: 38px; padding: 26px 0 30px; border-bottom: 1px solid rgba(255,255,255,.32); }
.contact-boundaries dt { color: var(--yellow); font-weight: 700; }
.contact-boundaries dd { margin: 0; }
.contact-boundaries .quiet-link { display: inline-block; margin-top: 28px; color: var(--white); }

.policy-content { max-width: 980px; padding-block: clamp(84px, 9vw, 126px); }
.policy-content section { display: grid; grid-template-columns: minmax(250px, .55fr) 1fr; gap: clamp(36px, 6vw, 78px); padding: 36px 0 42px; border-top: 1px solid var(--ink); }
.policy-content section:last-child { border-bottom: 1px solid var(--ink); }
.policy-content h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.12; }
.policy-content p { margin: 0; color: var(--slate); line-height: 1.78; }
.policy-content a { color: var(--blue); font-weight: 700; overflow-wrap: anywhere; }

.favorites-directory { padding-block: clamp(88px, 9vw, 128px); }

.favorites-directory-intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, .72fr);
  align-items: end;
  gap: clamp(56px, 9vw, 120px);
  margin-bottom: clamp(64px, 7vw, 88px);
}

.favorites-directory-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.15rem, 5.4vw, 5.25rem);
}

.favorites-directory-intro > div:last-child > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.alphabet-jump {
  display: flex;
  flex-wrap: wrap;
  border-block: 1px solid var(--line);
}

.alphabet-jump a {
  min-width: 70px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
}

.alphabet-jump a:hover { background: var(--navy); color: var(--white); }

.favorites-register { border-top: 2px solid var(--ink); }

.favorites-group {
  scroll-margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(180px, 24%) 1fr;
  gap: clamp(42px, 7vw, 94px);
  padding: 46px 0 58px;
  border-bottom: 1px solid var(--line);
}

.favorites-group > header h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.favorites-group > header p {
  margin: 0;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.favorites-group ul { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }

.favorites-group li { border-bottom: 1px solid var(--line); }
.favorites-group li:last-child { border-bottom: 0; }

.favorites-group li > a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 2px;
  text-decoration: none;
}

.favorites-group li > a > span:first-child {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.35;
}

.favorites-group li > a > span:last-child {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.favorites-group li > a:hover > span:first-child { color: var(--blue); }

.workshop-program { padding-block: clamp(88px, 9vw, 128px); }

.workshop-program-intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, .72fr);
  align-items: end;
  gap: clamp(56px, 9vw, 120px);
  margin-bottom: clamp(64px, 7vw, 88px);
}

.workshop-program-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: .18em;
  font-size: clamp(2.75rem, 4.15vw, 4.35rem);
  white-space: nowrap;
}

.workshop-program-intro > div:last-child > p {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.workshop-flyer-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 14px;
  border-block: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.workshop-flyer-link span { color: var(--blue); font-size: .72rem; letter-spacing: .06em; }
.workshop-flyer-link:hover { color: var(--blue); }

.workshop-ledger { border-top: 2px solid var(--ink); }

.workshop-row {
  display: grid;
  grid-template-columns: 150px minmax(280px, .85fr) 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.workshop-row time {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  align-items: end;
  column-gap: 10px;
}

.workshop-row time > span {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workshop-row time > strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-family: var(--font-display), Georgia, serif;
  font-size: 3.7rem;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .82;
}

.workshop-row time > small {
  grid-column: 1;
  color: var(--slate);
  font-size: .69rem;
  font-weight: 700;
  white-space: nowrap;
}

.workshop-row h3 {
  margin: 0 0 18px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
}

.workshop-location {
  margin-bottom: 0;
  color: var(--slate);
  font-size: .82rem;
  line-height: 1.55;
}

.workshop-location span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workshop-row > p {
  max-width: 560px;
  margin: 0;
  color: var(--slate);
  line-height: 1.72;
  text-wrap: pretty;
}

.workshop-note { padding-block: clamp(90px, 10vw, 138px); background: var(--yellow); color: var(--navy); }

.workshop-note-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, .72fr);
  align-items: end;
  gap: clamp(56px, 9vw, 120px);
}

.workshop-note h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(3rem, 5vw, 5rem); }

.workshop-note-inner > div:first-child > p {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.workshop-note-inner > div:last-child > p { margin-bottom: 16px; font-size: 1.04rem; font-weight: 600; line-height: 1.65; }
.workshop-note-inner > div:last-child > p:last-child { margin-bottom: 0; }
.workshop-note a { min-height: 44px; display: inline-flex; align-items: center; text-underline-offset: 4px; }

.events-feature { display: grid; grid-template-columns: minmax(300px, .8fr) 1fr; gap: clamp(56px, 8vw, 104px); padding-block: clamp(80px, 8vw, 116px); }
.events-feature header > p, .street-fair header > p:first-child, .release-schedule header > p:first-child { margin-bottom: 24px; color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.events-feature h2, .street-fair h2, .release-schedule h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5rem); }
.events-feature > div > p { max-width: 700px; color: var(--slate); font-size: 1.03rem; line-height: 1.75; }
.events-feature .events-lead { color: var(--ink); font-family: var(--font-display), Georgia, serif; font-size: clamp(1.45rem, 2.3vw, 2.15rem); line-height: 1.45; }
.events-feature .button { margin-top: 22px; }
.events-calendar { padding-bottom: clamp(80px, 8vw, 112px); }
.street-fair { padding-block: clamp(96px, 11vw, 146px); background: var(--blue); color: var(--white); }
.street-fair-layout { display: grid; grid-template-columns: minmax(300px, .8fr) 1fr; gap: clamp(56px, 9vw, 122px); }
.street-fair header > p:first-child { color: var(--yellow); }
.street-fair header > p:last-child { margin-top: 28px; color: #e4ebf5; font-weight: 700; }
.street-fair-layout > div > p, .street-fair li { color: #e4ebf5; line-height: 1.7; }
.street-fair ul { margin: 30px 0 34px; padding: 0; border-top: 1px solid rgba(255,255,255,.45); list-style: none; }
.street-fair li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.release-schedule { display: grid; grid-template-columns: minmax(300px, .8fr) 1fr; gap: clamp(56px, 8vw, 104px); padding-block: clamp(80px, 8vw, 116px); }
.release-schedule header > p:last-child { max-width: 440px; margin-top: 28px; color: var(--slate); }
.release-schedule dl { margin: 0; border-top: 2px solid var(--ink); }
.release-schedule dl > div { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.release-schedule dt { font-family: var(--font-display), Georgia, serif; font-size: 1.25rem; }
.release-schedule dd { margin: 0; color: var(--blue); font-weight: 700; }

.counselor-note { background: var(--yellow); color: var(--navy); }

.counselor-note-inner {
  display: grid;
  grid-template-columns: 170px minmax(340px, 1fr) minmax(300px, .8fr);
  align-items: start;
  gap: clamp(42px, 6vw, 84px);
  padding-block: clamp(72px, 8vw, 108px);
}

.counselor-note-inner > p:first-child {
  margin: 5px 0 0;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.65;
  text-transform: uppercase;
}

.counselor-note blockquote {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.28;
}

.counselor-note-inner > div > p { margin-bottom: 16px; font-size: 1rem; font-weight: 600; line-height: 1.7; }
.counselor-note-inner > div > p:last-child { margin-bottom: 0; }

.health-guide {
  display: grid;
  grid-template-columns: minmax(190px, 22%) 1fr;
  align-items: start;
  gap: clamp(58px, 9vw, 122px);
  padding-block: clamp(104px, 12vw, 164px);
}

.health-chapters { min-width: 0; }

.health-index { position: sticky; top: 30px; border-top: 2px solid var(--ink); }

.health-index > p {
  margin: 0;
  padding: 18px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.health-index nav { display: grid; }

.health-index a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}

.health-index a::after { content: "↓"; color: var(--blue); }
.health-index a:hover { color: var(--blue); }

.health-guide-intro { max-width: 840px; margin-bottom: clamp(84px, 10vw, 130px); }

.health-guide-intro > p:first-child {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.health-guide-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5.3vw, 5.4rem);
}

.health-guide-intro > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.75;
}

.health-chapter { scroll-margin-top: 30px; padding: 70px 0 82px; border-top: 2px solid var(--ink); }
.health-chapter:first-of-type { padding-top: 0; border-top: 0; }

.health-chapter > h2 {
  max-width: 870px;
  margin-bottom: 34px;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  line-height: 1.05;
}

.health-chapter > h3 {
  margin: 44px 0 22px;
  color: var(--blue);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.health-chapter > p {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--slate);
  font-size: 1.01rem;
  line-height: 1.78;
  text-wrap: pretty;
}

.health-chapter > p.health-lead {
  color: var(--ink);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.5;
}

.health-table-wrap { margin-block: 44px 12px; overflow-x: auto; border-top: 2px solid var(--ink); }
.health-table-wrap table { width: 100%; border-collapse: collapse; }
.health-table-wrap th, .health-table-wrap td { padding: 20px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.health-table-wrap thead th { color: var(--blue); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.health-table-wrap tbody th { width: 36%; font-family: var(--font-display), Georgia, serif; font-size: 1.04rem; font-weight: 400; }
.health-table-wrap td { color: var(--slate); line-height: 1.65; }

.health-points { margin: 34px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.health-points li { position: relative; min-height: 64px; padding: 19px 20px 19px 34px; border-bottom: 1px solid var(--line); color: var(--slate); line-height: 1.65; }
.health-points li::before { content: "—"; position: absolute; left: 2px; color: var(--blue); }
.health-points strong { color: var(--ink); }

.health-action-ledger { margin: 38px 0 0; border-top: 2px solid var(--ink); }
.health-action-ledger > div { display: grid; grid-template-columns: minmax(180px, .7fr) 1fr; gap: 40px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.health-action-ledger dt { font-family: var(--font-display), Georgia, serif; font-size: 1.15rem; }
.health-action-ledger dd { margin: 0; color: var(--slate); line-height: 1.65; }

.health-age-bands { margin-top: 46px; border-top: 2px solid var(--ink); }
.health-age-bands > article { display: grid; grid-template-columns: minmax(180px, .58fr) 1fr; gap: 44px; padding: 38px 0 46px; border-bottom: 1px solid var(--line); }
.health-age-bands h3 { margin: 0; font-family: var(--font-display), Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.health-age-bands article > p { grid-column: 1; margin: 10px 0 0; color: var(--slate); font-size: .84rem; line-height: 1.6; }
.health-age-bands dl { grid-column: 2; grid-row: 1 / 3; margin: 0; }
.health-age-bands dl > div { padding: 0 0 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.health-age-bands dl > div:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.health-age-bands dt { margin-bottom: 7px; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.health-age-bands dd { margin: 0; color: var(--slate); line-height: 1.65; }

.health-myths { margin-top: 54px; padding: 38px 42px 42px; background: var(--navy); color: var(--white); }
.health-myths h3 { margin-bottom: 30px; color: var(--yellow); font-family: var(--font-display), Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.health-myths > div { display: grid; grid-template-columns: minmax(220px, .72fr) 1fr; gap: 34px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .32); }
.health-myths strong { font-family: var(--font-display), Georgia, serif; font-size: 1.08rem; font-weight: 400; line-height: 1.45; }
.health-myths p { margin: 0; color: #d8dced; line-height: 1.65; }

.health-help { padding-block: clamp(90px, 10vw, 138px); background: var(--blue); color: var(--white); }
.health-help-inner { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(360px, .72fr); align-items: end; gap: clamp(56px, 9vw, 120px); }
.health-help-inner > div:first-child > p { margin-bottom: 24px; color: var(--yellow); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.health-help h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(3rem, 5vw, 5rem); }
.health-help-inner > div:last-child > p { margin-bottom: 18px; color: #e5edf7; font-size: 1.02rem; line-height: 1.72; }
.health-help nav { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .55); }
.health-help nav a { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .3); color: var(--white); font-weight: 700; text-decoration: none; }
.health-help nav a span { color: var(--yellow); }

.school-health-story { display: grid; grid-template-columns: minmax(440px, 1.1fr) minmax(330px, .7fr); align-items: center; gap: clamp(58px, 9vw, 118px); padding-bottom: clamp(94px, 10vw, 142px); }
.school-health-story figure { position: relative; min-height: 560px; margin: 0; overflow: hidden; background: var(--navy); }
.school-health-story figure img { object-fit: cover; object-position: center; }
.school-health-story > div > p:first-child { margin-bottom: 22px; color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.school-health-story h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4.5vw, 4.6rem); }
.school-health-story > div > p:not(:first-child) { color: var(--slate); line-height: 1.72; }
.school-health-story .quiet-link { display: inline-block; margin-top: 18px; }

.health-hub-support { padding-block: clamp(90px, 10vw, 138px); background: var(--blue); color: var(--white); }
.health-hub-support-inner { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(360px, .7fr); align-items: end; gap: clamp(58px, 9vw, 120px); }
.health-hub-support h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.health-hub-support p { max-width: 570px; color: #e5edf7; font-size: 1.02rem; line-height: 1.72; }
.health-hub-support .button { margin-top: 20px; }

.annual-events { padding-block: clamp(80px, 8vw, 116px); }
.annual-events-heading { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(300px, .65fr); align-items: end; gap: 70px; margin-bottom: 52px; }
.annual-events-heading h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); }
.annual-events-heading p { max-width: 480px; margin: 0; color: var(--slate); }
.annual-event { display: grid; grid-template-columns: minmax(290px, .62fr) minmax(480px, 1fr); gap: clamp(48px, 7vw, 92px); align-items: center; padding-block: 46px; border-top: 1px solid var(--ink); }
.annual-event:last-child { border-bottom: 1px solid var(--ink); }
.annual-event-reverse > div { grid-column: 2; grid-row: 1; }
.annual-event-reverse > figure { grid-column: 1; grid-row: 1; }
.annual-event-label { margin-bottom: 18px; color: var(--blue); font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.annual-event h3 { margin-bottom: 20px; font-size: clamp(2.4rem, 4vw, 4rem); }
.annual-event > div > p:not(.annual-event-label) { max-width: 540px; color: var(--slate); }
.annual-event figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; background: var(--navy); }
.annual-event figure > img, .annual-event-photo-pair span img { object-fit: cover; }
.annual-event-photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.annual-event-photo-pair span { position: relative; min-height: 360px; }

@media (hover: none) {
  .social-highlight-frame:hover img { transform: none; }
}

@media (max-width: 1080px) {
  .interior-hero { grid-template-columns: 44% 56%; }
  .interior-hero-copy { padding-left: 32px; padding-right: 36px; }
  .about-intro, .impact-layout { gap: 56px; }
  .board-directory-intro, .roster-columns, .board-photo-layout { gap: 52px; }
  .social-connect, .social-highlights-layout, .important-links { gap: 52px; }
  .resource-index { gap: 52px; }
}

@media (max-width: 820px) {
  .interior-hero { display: flex; min-height: 0; flex-direction: column; }
  .interior-hero-copy { padding: 72px 24px 66px; }
  .breadcrumbs { margin-bottom: 34px; }
  .interior-hero h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .interior-hero-compact-title h1,
  .interior-hero-mobile-compact-title h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .interior-hero-photo { min-height: 390px; }
  .interior-hero-photo figcaption { left: 0; right: auto; }
  .text-page-hero { min-height: 0; }
  .text-page-hero-inner { padding-block: 76px 82px; }
  .text-page-hero h1 { font-size: clamp(3.35rem, 15vw, 4.8rem); }
  .about-intro, .impact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-intro { padding-block: 84px; }
  .impact-section { padding-block: 84px; }
  .impact-ledger article { grid-template-columns: 1fr; gap: 18px; }
  .community-story { padding-block: 88px; }
  .community-story > .shared-section-heading { display: block; margin-bottom: 48px; }
  .photo-story { grid-template-columns: 1fr; grid-template-rows: none; gap: 36px; }
  .photo-story-featured { grid-row: auto; }
  .photo-frame, .photo-story-featured .photo-frame { height: 380px; min-height: 0; }
  .board-directory { padding-block: 84px; }
  .board-directory-intro, .roster-columns, .board-photo-layout { grid-template-columns: 1fr; }
  .board-directory-intro { gap: 32px; margin-bottom: 64px; }
  .roster-columns { gap: 58px; }
  .roster-list > div { grid-template-columns: minmax(125px, .8fr) 1.2fr; gap: 18px; }
  .board-photo-section { padding-block: 84px; }
  .board-photo-layout { gap: 44px; }
  .board-photo-frame { min-height: 270px; }
  .social-connect, .social-highlights-layout, .important-links { grid-template-columns: 1fr; }
  .social-connect, .important-links { padding-block: 84px; }
  .social-connect { gap: 52px; }
  .social-channel-list > a { grid-template-columns: 1fr auto; gap: 8px 18px; }
  .social-channel-list > a > span:nth-child(2) { grid-column: 1; }
  .social-channel-list > a > span:last-child { grid-column: 2; grid-row: 1 / 3; }
  .social-highlights { padding-block: 84px; }
  .social-highlights-layout { gap: 52px; }
  .social-highlight-images { grid-template-columns: 1fr 1fr; gap: 16px; }
  .important-links { gap: 48px; }
  .important-link-list > a { align-items: flex-start; flex-direction: column; gap: 10px; }
  .resource-index { grid-template-columns: 1fr; gap: 50px; padding-block: 88px; }
  .resource-index-list > a { min-height: 0; grid-template-columns: 1fr auto; gap: 12px 20px; padding: 28px 0; }
  .resource-index-list > a > span:first-child { grid-column: 1 / -1; }
  .resource-index-list > a > span:nth-child(2) { grid-column: 1; }
  .resource-index-list > a > span:last-child { grid-column: 2; align-self: start; padding-top: 5px; }
  .route-directory { grid-template-columns: 1fr; gap: 48px; padding-block: 88px; }
  .route-directory-list article { grid-template-columns: 1fr; gap: 12px; }
  .wellness-directory-list article { grid-template-columns: 1fr; }
  .route-directory-list article > p:not(:first-child), .route-directory-list article > a { grid-column: 1; }
  .route-directory-followup { grid-column: 1; }
  .student-recognition > header, .school-health-story { grid-template-columns: 1fr; gap: 44px; }
  .health-hub-support-inner { grid-template-columns: 1fr; gap: 42px; }
  .student-recognition-photos { grid-template-columns: 1fr; }
  .student-recognition-photos figure { min-height: 520px; }
  .student-recognition-photos figcaption { left: 0; right: auto; align-items: flex-start; flex-direction: column; gap: 2px; }
  .school-health-story figure { min-height: 440px; }
  .reflections-feature-layout, .programs-next-step { grid-template-columns: 1fr; gap: 48px; }
  .reflections-feature figure { min-height: 450px; }
  .volunteer-openings > header, .volunteer-guide-layout, .volunteer-contact, .events-volunteer-callout-inner { grid-template-columns: 1fr; gap: 44px; }
  .volunteer-opening-list article { grid-template-columns: 1fr; gap: 28px; }
  .volunteer-guide-steps article { grid-template-columns: 1fr; gap: 12px; }
  .governance-principles-layout, .contact-boundaries-layout, .governance-contact { grid-template-columns: 1fr; gap: 44px; }
  .governance-principles article, .contact-boundaries dl > div, .policy-content section { grid-template-columns: 1fr; gap: 12px; }
  .favorites-directory { padding-block: 88px; }
  .favorites-directory-intro { grid-template-columns: 1fr; gap: 34px; margin-bottom: 68px; }
  .alphabet-jump a { flex: 1 1 33.333%; }
  .favorites-group { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 56px; }
  .favorites-group > header { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
  .favorites-group li > a { min-height: 64px; gap: 18px; }
  .favorites-group li > a > span:last-child { font-size: .68rem; }
  .workshop-program { padding-block: 88px; }
  .workshop-program-intro, .workshop-note-inner { grid-template-columns: 1fr; gap: 38px; }
  .workshop-program-intro { margin-bottom: 68px; }
  .workshop-program-intro h2 { display: grid; gap: 0; font-size: clamp(3.35rem, 15vw, 4.7rem); white-space: normal; }
  .workshop-heading-separator { display: none; }
  .workshop-row { grid-template-columns: 72px 1fr; gap: 18px; padding: 34px 0 38px; }
  .workshop-row time { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
  .workshop-row time > strong { font-size: 2.85rem; line-height: .95; }
  .workshop-row > div { grid-column: 2; }
  .workshop-row > p { grid-column: 2; }
  .workshop-note { padding-block: 84px; }
  .events-feature, .street-fair-layout, .release-schedule { grid-template-columns: 1fr; gap: 44px; }
  .events-feature, .release-schedule { padding-block: 84px; }
  .events-calendar { padding-bottom: 88px; }
  .annual-events-heading, .annual-event { grid-template-columns: 1fr; gap: 38px; }
  .annual-events-heading { margin-bottom: 42px; }
  .annual-event-reverse > div, .annual-event-reverse > figure { grid-column: 1; grid-row: auto; }
  .annual-event figure, .annual-event-photo-pair span { min-height: 320px; }
  .counselor-note-inner { grid-template-columns: 1fr; gap: 30px; padding-block: 68px; }
  .counselor-note blockquote { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .health-guide { grid-template-columns: 1fr; gap: 76px; padding-block: 88px; }
  .health-index { position: static; }
  .health-index nav { grid-template-columns: repeat(2, 1fr); }
  .health-index a:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }
  .health-index a:nth-child(even) { padding-left: 16px; }
  .health-guide-intro { margin-bottom: 84px; }
  .health-chapter { padding: 58px 0 68px; }
  .health-chapter > h2 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
  .health-table-wrap { max-width: 100%; margin-right: 0; }
  .health-table-wrap table { min-width: 0; table-layout: fixed; }
  .health-table-wrap th, .health-table-wrap td { padding: 16px 10px; overflow-wrap: anywhere; }
  .health-action-ledger > div { grid-template-columns: 1fr; gap: 9px; }
  .health-age-bands > article { grid-template-columns: 1fr; gap: 10px; }
  .health-age-bands article > p, .health-age-bands dl { grid-column: 1; grid-row: auto; }
  .health-age-bands dl { margin-top: 24px; }
  .health-myths { padding: 32px 24px 36px; }
  .health-myths > div { grid-template-columns: 1fr; gap: 13px; }
  .health-help { padding-block: 84px; }
  .health-help-inner { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 420px) {
  .interior-hero-copy { padding: 60px 20px 56px; }
  .breadcrumbs { min-height: 44px; margin-bottom: 26px; flex-wrap: wrap; }
  .breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; }
  .interior-hero h1 { font-size: clamp(2.9rem, 14vw, 3.65rem); }
  .interior-hero-compact-title h1,
  .interior-hero-mobile-compact-title h1 { font-size: clamp(2.35rem, 11.5vw, 3rem); }
  .interior-hero-photo { min-height: 320px; }
  .text-page-hero-inner { padding-block: 62px 68px; }
  .text-page-hero h1 { font-size: clamp(2.85rem, 14vw, 3.65rem); }
  .about-intro, .impact-section, .community-story, .board-directory,
  .social-connect, .important-links, .social-highlights, .resource-index,
  .route-directory, .favorites-directory, .workshop-program,
  .events-feature, .release-schedule, .health-guide { padding-block: 68px; }
  .shared-section-heading h2, .board-directory-intro h2,
  .social-connect header h2, .important-links header h2,
  .route-directory > header h2, .student-recognition > header h2,
  .programs-next-step h2, .volunteer-openings > header h2,
  .volunteer-contact h2, .events-volunteer-callout h2,
  .governance-contact h2, .workshop-note h2,
  .health-help h2, .health-hub-support h2,
  .annual-events-heading h2 { font-size: clamp(2.45rem, 12.5vw, 3.35rem); }
  .events-feature h2, .street-fair h2, .release-schedule h2 { font-size: clamp(2.45rem, 12.5vw, 3.35rem); overflow-wrap: anywhere; }
  .roster-list > div { grid-template-columns: 1fr; gap: 5px; padding-block: 18px; }
  .roster-list dt { font-size: .7rem; }
  .social-highlight-images { grid-template-columns: 1fr; gap: 28px; }
  .route-directory-list article { padding-block: 28px 32px; }
  .student-recognition-photos figure { min-height: 390px; }
  .reflections-feature figure { min-height: 380px; }
  .alphabet-jump a { flex-basis: 50%; min-height: 48px; }
  .favorites-group > header { align-items: flex-start; flex-direction: column; gap: 4px; }
  .workshop-program-intro h2 { font-size: clamp(2.75rem, 14vw, 3.45rem); }
  .workshop-row { grid-template-columns: 62px 1fr; gap: 14px; }
  .workshop-row time > strong { font-size: 2.35rem; }
  .annual-event-photo-pair { grid-template-columns: 1fr; }
  .annual-event figure, .annual-event-photo-pair span { min-height: 280px; }
  .health-guide { gap: 56px; }
  .health-index nav { grid-template-columns: 1fr; }
  .health-index a:nth-child(odd), .health-index a:nth-child(even) { min-height: 48px; padding-inline: 0; border-right: 0; }
  .health-guide-intro { margin-bottom: 64px; }
  .health-chapter { padding: 48px 0 58px; }
  .health-chapter > h2 { font-size: clamp(2.35rem, 11.5vw, 3rem); }
  .health-table-wrap th, .health-table-wrap td { padding: 14px 8px; font-size: .84rem; }
  .health-myths { padding-inline: 20px; }
  .school-health-story figure { min-height: 340px; }
}
