:root {
  --omm-blue: #2f50a3;
  --music-orange: #f68929;
  --flame-red: #ee3135;
  --learning-teal: #93d2c1;
  --giving-green: #00ae4d;
  --giving-lime: #e2e754;
  --mentorship-pink: #f391bc;
  --mentorship-purple: #a039b0;
  --ink: #111111;
  --muted: #555b67;
  --paper: #ffffff;
  --soft-teal: #e6f6f2;
  --soft-pink: #fde7f1;
  --soft-lime: #f6fad8;
  --warm: #fff4e6;
  --line: #dfe4ee;
  --shadow: 0 18px 45px rgba(47, 80, 163, 0.16);
  --radius: 8px;
  --content: 1180px;
  --font: "Area Normal", "Avenir Next", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--music-orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 22px rgba(17, 17, 17, 0.07);
}

.header-inner {
  position: relative;
  width: min(100% - 3rem, 1280px);
  margin: 0 auto;
  min-height: 78px;
  padding: 0.5rem 0;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 1.2rem;
}

.brand-mark {
  position: absolute;
  left: 0;
  top: 0.35rem;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 122px;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  filter: drop-shadow(0 10px 18px rgba(47, 80, 163, 0.14));
  transition: transform 180ms ease, filter 180ms ease;
}

.brand-mark img {
  width: auto;
  height: 112px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-mark {
  filter: drop-shadow(0 6px 12px rgba(17, 17, 17, 0.1));
  transform: translateY(-0.2rem) scale(0.74);
  transform-origin: top left;
}

.primary-nav {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 190ms ease;
}

.nav-item:hover img,
.nav-item.is-active img {
  transform: rotate(18deg) scale(1.08);
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 0;
  bottom: 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-item:hover::after,
.nav-item.is-active::after {
  transform: scaleX(1);
}

.nav-item--music {
  color: var(--music-orange);
}

.nav-item--learning {
  color: var(--omm-blue);
}

.nav-item--mentorship {
  color: var(--mentorship-purple);
}

.nav-item--giving {
  color: var(--giving-green);
}

.nav-item span {
  color: var(--ink);
}

.nav-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  background: var(--soft-lime);
  color: var(--omm-blue) !important;
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

.menu-toggle {
  grid-column: 2;
  display: none;
  justify-self: end;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: var(--omm-blue);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 0.72rem 0.9rem;
  font-weight: 800;
}

.menu-toggle__line {
  width: 24px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

.hero {
  width: min(100% - 3rem, 1280px);
  margin: 0 auto 5rem;
  background: var(--ink);
}

.pattern-strip {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  min-height: 46px;
  margin-left: 126px;
  overflow: hidden;
}

.pattern-strip img {
  width: 100%;
  height: 46px;
  object-fit: contain;
  padding: 5px;
}

.pattern-strip img:nth-child(1),
.pattern-strip img:nth-child(2),
.pattern-strip img:nth-child(3),
.pattern-strip img:nth-child(10),
.pattern-strip img:nth-child(11) {
  background: var(--learning-teal);
}

.pattern-strip img:nth-child(4),
.pattern-strip img:nth-child(5),
.pattern-strip img:nth-child(6),
.pattern-strip img:nth-child(12),
.pattern-strip img:nth-child(13) {
  background: var(--mentorship-pink);
}

.pattern-strip img:nth-child(7),
.pattern-strip img:nth-child(8),
.pattern-strip img:nth-child(9),
.pattern-strip img:nth-child(14),
.pattern-strip img:nth-child(15) {
  background: var(--giving-lime);
}

.hero-media {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0) 38%, rgba(17, 17, 17, 0.78) 100%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.52) 0%, rgba(17, 17, 17, 0) 48%);
}

.hero-media img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: center 48%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-top: -260px;
  padding: 0 3.4rem 3.4rem;
  color: var(--paper);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 0.85rem;
  color: var(--omm-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--giving-lime);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 1.1rem 0 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.donation-copy .button {
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--music-orange);
  color: var(--ink);
  border-color: var(--music-orange);
}

.button--secondary {
  margin-left: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.72);
}

.button--secondary:hover {
  background: var(--paper);
  color: var(--ink);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.section {
  padding: 5.5rem 1.5rem;
  scroll-margin-top: 150px;
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 4rem;
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 690px;
  font-size: 3.2rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p:first-child,
.narrative-panel p:first-of-type,
.donation-copy p:first-of-type {
  margin-top: 0;
}

.section--why {
  background: linear-gradient(90deg, var(--soft-teal) 0 34%, #fff 34% 100%);
}

.section--about {
  background: var(--paper);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 4.5rem;
  align-items: center;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel--portrait {
  aspect-ratio: 5 / 4;
}

.image-panel--warm {
  aspect-ratio: 4 / 5;
}

.narrative-panel p,
.donation-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}

.impact-list div {
  min-height: 150px;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: var(--paper);
}

.impact-list dt {
  color: var(--omm-blue);
  font-size: 1.3rem;
  font-weight: 900;
}

.impact-list dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section--programs {
  background: var(--soft-pink);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.program-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  align-items: start;
}

.program-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.program-card__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.program-card__body {
  padding: 2.2rem;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.36rem 0.55rem;
  border-radius: var(--radius);
  background: var(--warm);
  color: var(--music-orange);
}

.program-card h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.1;
}

.program-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  border-bottom: 3px solid var(--mentorship-purple);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.program-details {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.program-details ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.program-next {
  display: grid;
  gap: 1rem;
}

.future-link {
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease;
}

.future-link:hover {
  transform: translateY(-2px);
}

.future-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.future-link--learning {
  border-left: 7px solid var(--learning-teal);
}

.future-link--mentorship {
  border-left: 7px solid var(--mentorship-pink);
}

.future-link--giving {
  border-left: 7px solid var(--giving-green);
}

.section--donation {
  background: linear-gradient(90deg, var(--soft-lime) 0 42%, var(--paper) 42% 100%);
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 4rem;
  align-items: center;
}

.donation-copy {
  max-width: 680px;
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.donation-amounts button {
  min-width: 96px;
  min-height: 48px;
  border: 2px solid var(--giving-green);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.donation-amounts button:hover,
.donation-amounts button.is-selected {
  background: var(--giving-lime);
  transform: translateY(-2px);
}

.pledge-note {
  min-height: 2.8rem;
  font-weight: 800;
}

.section--zeffy {
  background: var(--soft-lime);
}

.zeffy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 4rem;
  align-items: start;
}

.zeffy-layout p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.zeffy-layout .button {
  margin-top: 1.2rem;
}

.zeffy-panel {
  overflow: hidden;
  border: 2px solid var(--giving-green);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.zeffy-panel__bar {
  display: flex;
  gap: 0.42rem;
  padding: 0.8rem;
  background: var(--giving-green);
}

.zeffy-panel__bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--giving-lime);
}

.zeffy-embed-shell {
  min-height: 720px;
  padding: 0;
  background: var(--paper);
}

.zeffy-embed-host,
.zeffy-embed-fallback {
  min-height: 720px;
}

.zeffy-embed-host:empty {
  min-height: 0;
}

.zeffy-embed-host iframe,
.zeffy-embed-fallback iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.section--interest {
  background: var(--omm-blue);
  color: var(--paper);
}

.interest-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.section--interest .section-kicker,
.section--interest p {
  color: rgba(255, 255, 255, 0.88);
}

.interest-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.interest-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 900;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  color: var(--ink);
  background: #fff;
}

.interest-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--omm-blue);
  font-weight: 900;
}

.section--newsletter {
  background: var(--soft-teal);
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.newsletter-copy p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.newsletter-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
}

.newsletter-frame {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  background: var(--soft-teal);
}

.newsletter-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.site-footer {
  padding: 3.2rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  width: 90px;
  background: var(--paper);
  border-radius: 50%;
  padding: 0.35rem;
}

.footer-inner p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--paper);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.page-hero {
  width: min(100% - 3rem, 1280px);
  min-height: 460px;
  margin: 0 auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--omm-blue);
  color: var(--paper);
}

.page-hero__copy {
  max-width: 900px;
  padding: 5.2rem 3.2rem;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.page-hero .button {
  margin-top: 1.6rem;
}

.page-hero--why {
  background:
    linear-gradient(90deg, rgba(47, 80, 163, 0.94), rgba(47, 80, 163, 0.68)),
    url("assets/photos/omm-website-hero-000.jpg") center 42% / cover;
}

.page-hero--about {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.22)),
    url("assets/photos/student-closeup.jpg") center 46% / cover;
}

.page-hero--programs {
  background:
    linear-gradient(90deg, rgba(160, 57, 176, 0.82), rgba(160, 57, 176, 0.28)),
    url("assets/photos/group-violins.jpg") center 36% / cover;
}

.page-hero--donate {
  background:
    linear-gradient(90deg, rgba(0, 174, 77, 0.88), rgba(0, 174, 77, 0.28)),
    url("assets/photos/cello-portrait.jpg") center 50% / cover;
}

.page-hero--blog {
  background:
    linear-gradient(90deg, rgba(246, 137, 41, 0.9), rgba(47, 80, 163, 0.54)),
    url("assets/photos/omm-website-hero-000.jpg") center 62% / cover;
}

.feature-grid,
.directory-grid,
.blog-grid,
.partner-layout,
.people-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-tile,
.directory-card,
.blog-card,
.people-panel,
.partner-panel {
  min-height: 220px;
  padding: 1.35rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-tile h3,
.directory-card h3,
.blog-card h3,
.people-panel h3,
.partner-panel h3,
.article-stack h3 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.feature-tile p,
.directory-card p,
.blog-card p,
.people-panel p,
.partner-panel p,
.article-stack p,
.program-lead p {
  color: var(--muted);
}

.section--why-deep {
  background: var(--soft-teal);
}

.source-list {
  display: grid;
  gap: 0.75rem;
}

.source-list a {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--omm-blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  color: var(--paper);
}

.cta-band p {
  max-width: 680px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.section--people,
.section--partners,
.section--article-list,
.section--blog-preview {
  background: var(--soft-pink);
}

.people-grid,
.partner-layout {
  grid-template-columns: repeat(3, 1fr);
}

.placeholder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.placeholder-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
}

.program-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.impact-list--compact {
  grid-template-columns: repeat(3, 1fr);
}

.directory-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pill-list,
.clean-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-list li {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--soft-teal);
  color: var(--omm-blue);
  font-weight: 900;
}

.clean-list {
  display: grid;
  gap: 0.55rem;
}

.clean-list li {
  padding-left: 1rem;
  border-left: 4px solid var(--giving-green);
  color: var(--muted);
}

.tag--learning {
  color: var(--omm-blue);
  background: var(--soft-teal);
}

.tag--giving {
  color: var(--giving-green);
  background: var(--soft-lime);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-stack {
  display: grid;
  gap: 1rem;
}

.article-stack article {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--paper);
}

.text-link--inline {
  text-decoration: none;
}

@media (max-width: 1120px) {
  .header-inner {
    width: min(100% - 2rem, 1280px);
    grid-template-columns: 98px 1fr;
    min-height: 72px;
  }

  .brand-mark {
    width: 82px;
    height: 102px;
  }

  .brand-mark img {
    height: 94px;
  }

  .primary-nav {
    gap: 0.75rem;
  }

  .nav-item {
    font-size: 0.9rem;
  }

  .nav-item img {
    width: 30px;
    height: 30px;
  }

  .nav-item::after {
    left: 38px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .section h2 {
    font-size: 2.6rem;
  }

  .program-feature,
  .donation-layout,
  .zeffy-layout,
  .newsletter-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid--four,
  .directory-grid,
  .blog-grid,
  .people-grid,
  .partner-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-next {
    grid-template-columns: repeat(3, 1fr);
  }

  .donation-layout .image-panel {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
    width: min(100% - 1.4rem, 1280px);
    grid-template-columns: 82px 1fr;
    padding: 0.45rem 0;
  }

  .brand-mark {
    top: 0.3rem;
    width: 70px;
    height: 86px;
  }

  .brand-mark img {
    height: 78px;
  }

  .site-header.is-scrolled .brand-mark {
    transform: translateY(-0.1rem) scale(0.78);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.3rem);
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item {
    min-height: 54px;
    padding: 0.45rem;
    font-size: 0.88rem;
  }

  .nav-item img {
    width: 34px;
    height: 34px;
  }

  .nav-spark {
    width: 34px;
    height: 26px;
  }

  .hero {
    width: min(100% - 1.4rem, 1280px);
    margin-bottom: 3rem;
  }

  .pattern-strip {
    grid-template-columns: repeat(8, 1fr);
    margin-left: 88px;
  }

  .pattern-strip img:nth-child(n + 9) {
    display: none;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media img {
    height: 620px;
    object-position: 50% 42%;
  }

  .hero-copy {
    margin-top: -245px;
    padding: 0 1.4rem 2rem;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .button--secondary {
    margin-left: 0;
    margin-top: 0.7rem;
  }

  .section {
    padding: 4rem 1rem;
    scroll-margin-top: 76px;
  }

  .section-grid,
  .split-section,
  .program-card,
  .interest-layout,
  .program-lead,
  .cta-band__inner,
  .zeffy-layout,
  .newsletter-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-frame {
    min-height: 226px;
  }

  .section h2 {
    font-size: 2.05rem;
  }

  .section--why,
  .section--donation {
    background: var(--paper);
  }

  .impact-list,
  .program-next,
  .feature-grid--four,
  .directory-grid,
  .blog-grid,
  .people-grid,
  .partner-layout,
  .impact-list--compact {
    grid-template-columns: 1fr;
  }

  .page-hero {
    width: min(100% - 1.4rem, 1280px);
    min-height: 420px;
  }

  .page-hero__copy {
    padding: 3.2rem 1.25rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .program-card__media img {
    min-height: 280px;
  }

  .program-card__body,
  .interest-form {
    padding: 1.2rem;
  }

  .zeffy-embed-shell,
  .zeffy-embed-host,
  .zeffy-embed-fallback,
  .zeffy-embed-host iframe,
  .zeffy-embed-fallback iframe {
    min-height: 760px;
  }

  .zeffy-embed-host:empty {
    min-height: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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