@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/poppins-400.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/poppins-500.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/poppins-600.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/poppins-700.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/poppins-800.ttf") format("truetype");
}

:root {
  --blue: #172f80;
  --blue-dark: #172f80;
  --blue-mid: #172f80;
  --blue-soft: rgba(23, 47, 128, 0.1);
  --red: #db1f26;
  --red-dark: #b8121b;
  --yellow: #ffd447;
  --white: #ffffff;
  --cream: #f7f1e4;
  --main-section-bg: #f0ebd0;
  --ink: #111936;
  --muted: #5f6680;
  --shadow: 0 24px 70px rgba(23, 47, 128, 0.22);
  --shadow-lift: 0 32px 86px rgba(23, 47, 128, 0.28);
  --radius-button: 14px;
  --radius-field: 12px;
  --radius-card: 18px;
  --radius-large: 24px;
  --header-height: clamp(120px, 13vh, 150px);
  --header-height-scrolled: 78px;
  --header-padding-y: clamp(32px, 4vh, 48px);
  --header-padding-y-scrolled: 12px;
  --logo-width: clamp(116px, 9.5vw, 150px);
  --logo-width-scrolled: clamp(92px, 6.8vw, 116px);
  --header-logo-height: clamp(98px, 10vh, 132px);
  --header-logo-height-scrolled: 102px;
  --hero-gap: clamp(0.95rem, 1.7vw, 1.35rem);
  --donation-bar-padding: clamp(0.9rem, 1.5vw, 1.15rem);
  --heading-font: "Montaser Arabic Bold", "Poppins", Arial, sans-serif;
  --body-font: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height-scrolled) + 20px);
}

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

body.modal-open {
  overflow: hidden;
}

body.modal-open .site-header {
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

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

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease-out,
    visibility 0s linear 220ms;
}

.donation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(23, 47, 128, 0.94),
      rgba(23, 47, 128, 0.82),
      rgba(219, 31, 38, 0.72)
    ),
    rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 220ms ease-out;
}

.donation-modal.is-open .modal-backdrop {
  opacity: 1;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(600px, 1.3fr);
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 240ms ease-out,
    transform 240ms ease-out,
    box-shadow 220ms ease;
}

.donation-modal.is-open .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.donation-modal.is-open .modal-panel:hover {
  box-shadow: 0 42px 112px rgba(0, 0, 0, 0.48);
  transform: translateY(-6px) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 12px 30px rgba(23, 47, 128, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--white);
  background: #172f80;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 16px 36px rgba(23, 47, 128, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.modal-brand {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(145deg, var(--blue-dark), var(--blue));
}

.modal-logo {
  width: min(300px, 100%);
}

.modal-content {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(1.05rem, 2vw, 1.65rem);
  padding: clamp(3rem, 6vw, 4.8rem) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.modal-content > * {
  width: min(100%, 650px);
}

.modal-eyebrow {
  margin: 0;
  color: var(--red);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.modal-headline {
  color: var(--blue-dark);
  max-width: none;
  font-size: clamp(1.75rem, 2.55vw, 2.75rem);
  font-weight: 900;
  line-height: 1.06;
  text-transform: none;
}

.modal-headline-line {
  display: block;
}

.modal-amounts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.modal-amounts a {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 2px solid rgba(23, 47, 128, 0.08);
  border-radius: var(--radius-button);
  font-weight: 500;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.modal-amounts a:hover {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 32px rgba(219, 31, 38, 0.22);
  transform: translateY(-5px);
}

.modal-amounts a:last-child {
  grid-column: span 2;
}

.modal-disclaimer {
  margin: -0.35rem 0 0;
  color: rgba(17, 25, 54, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.modal-primary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.2rem;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.modal-primary:hover,
.modal-primary:focus-visible {
  color: #b31b23;
  transform: translateX(3px);
}

.modal-primary span:last-child {
  font-size: 1.3em;
  font-weight: 900;
  line-height: 1;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header.static-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(90deg, rgba(23, 47, 128, 0.92), rgba(23, 47, 128, 0.84));
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-container {
  min-height: var(--header-height);
  padding-top: var(--header-padding-y);
  padding-bottom: var(--header-padding-y);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.25rem, 4.5vw, 5rem);
  transition: min-height 200ms ease;
  transition-property: min-height, padding-top, padding-bottom;
}

.site-header.is-scrolled .header-container,
.site-header.is-menu-open .header-container,
.site-header.static-header .header-container {
  min-height: var(--header-height-scrolled);
  padding-top: var(--header-padding-y-scrolled);
  padding-bottom: var(--header-padding-y-scrolled);
}

.brand {
  width: var(--logo-width);
  flex: 0 0 auto;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, width;
}

.site-header.is-scrolled .brand,
.site-header.is-menu-open .brand,
.site-header.static-header .brand {
  width: var(--logo-width-scrolled);
}

.logo-crop {
  position: relative;
  display: block;
  aspect-ratio: 6396 / 5600;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  left: -7.4%;
  top: -20.5%;
  display: block;
  width: 115%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.brand .logo-crop {
  width: 100%;
  height: auto;
  max-height: none;
  transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: max-height;
}

.site-header.is-scrolled .brand .logo-crop,
.site-header.is-menu-open .brand .logo-crop,
.site-header.static-header .brand .logo-crop {
  max-height: none;
}

.brand .logo-crop img {
  height: auto;
  max-height: none;
}

.site-header.is-scrolled .brand .logo-crop img,
.site-header.is-menu-open .brand .logo-crop img,
.site-header.static-header .brand .logo-crop img {
  max-height: none;
}

@media (min-width: 769px) {
  .site-header {
    transition:
      background-color 380ms ease-in-out,
      background 380ms ease-in-out,
      box-shadow 380ms ease-in-out,
      border-color 380ms ease-in-out,
      backdrop-filter 380ms ease-in-out,
      opacity 380ms ease-in-out,
      transform 380ms ease-in-out;
  }

  .header-container {
    transition:
      min-height 380ms ease-in-out,
      padding-top 380ms ease-in-out,
      padding-bottom 380ms ease-in-out;
  }

  .brand {
    transition:
      width 380ms ease-in-out,
      transform 380ms ease-in-out,
      opacity 320ms ease-in-out;
  }

  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand {
    transform: translateY(70px);
  }

  .site-header.is-scrolled .brand,
  .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    transform: translateY(0);
  }

  .home-page
    .site-header:not(.is-scrolled):not(.is-menu-open)
    .brand
    .logo-crop
    img {
    transform: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.55rem, 3vw, 3.6rem);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.nav-label-mobile {
  display: none;
}

.nav-donate {
  min-width: 178px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-button);
  font-size: 0.96rem;
  box-shadow: 0 8px 20px rgba(230, 35, 45, 0.25);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.nav-donate:hover,
.nav-donate:focus-visible {
  background: var(--red-dark);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 26px rgba(230, 35, 45, 0.34);
  transform: translateY(-2px);
}

.mobile-header-donate {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(23, 47, 128, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-button);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--blue-dark);
  border-top: clamp(10px, 1.2vw, 18px) solid var(--main-section-bg);
  border-right: clamp(10px, 1.2vw, 18px) solid var(--main-section-bg);
  border-left: clamp(10px, 1.2vw, 18px) solid var(--main-section-bg);
  border-radius: clamp(24px, 3vw, 46px);
  background-clip: padding-box;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  inset: 0;
  background: var(--blue-dark);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  display: none;
}

.hero-bg::after {
  display: none;
  background: none;
  filter: none;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
  transform: none;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(
      104deg,
      rgba(23, 47, 128, 0.7) 0%,
      rgba(23, 47, 128, 0.52) 42%,
      rgba(23, 47, 128, 0.28) 70%,
      rgba(23, 47, 128, 0.14) 100%
    ),
    linear-gradient(90deg, rgba(23, 47, 128, 0.22), rgba(23, 47, 128, 0.04));
  mix-blend-mode: normal;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(100vw, 1360px);
  background: linear-gradient(
    90deg,
    rgba(23, 47, 128, 0.66) 0%,
    rgba(23, 47, 128, 0.54) 34%,
    rgba(23, 47, 128, 0.3) 58%,
    rgba(23, 47, 128, 0.1) 78%,
    rgba(23, 47, 128, 0) 100%
  );
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.72) 68%,
    rgba(0, 0, 0, 0.22) 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.72) 68%,
    rgba(0, 0, 0, 0.22) 86%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--header-height) + clamp(1rem, 2.2vh, 2rem));
  padding-bottom: clamp(5rem, 8vh, 6.5rem);
}

.hero-content {
  width: min(860px, 100%);
  text-align: left;
  text-shadow: none;
}

.hero-copy {
  width: 100%;
}

.hero-side-image {
  display: none;
}

.hero-side-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 981px) {
  .hero-side-image {
    position: absolute;
    top: 57%;
    right: clamp(-16rem, -13vw, -7rem);
    z-index: -1;
    width: clamp(600px, 58vw, 980px);
    display: block;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .home-page.page-loading .hero-side-image {
    transform: translate(48px, -50%);
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  width: 100%;
  max-width: none;
  color: var(--white);
  font-size: clamp(2.65rem, 3.85vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.hero h1 span {
  display: block;
}

.hero h1 .headline-mobile {
  display: none;
}

.hero h1 .headline-desktop {
  display: block;
}

.headline-desktop span {
  white-space: nowrap;
}

.headline-final {
  display: inline-block;
}

.headline-rule {
  width: 100%;
  height: clamp(6px, 0.65vw, 10px);
  margin: clamp(0.85rem, 1.4vw, 1.15rem) 0 clamp(0.95rem, 1.6vw, 1.25rem);
  background: var(--red);
  box-shadow: 0 0 28px rgba(219, 31, 38, 0.34);
}

.hero-copy > p {
  width: 100%;
  margin: 0 0 var(--hero-gap);
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.08rem, 1.18vw, 1.18rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero-donation {
  width: 100%;
  margin-top: clamp(1.35rem, 2.6vw, 2.1rem);
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-large);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-donation-header {
  margin-bottom: clamp(0.85rem, 1.35vw, 1.05rem);
  padding-bottom: clamp(0.55rem, 0.85vw, 0.75rem);
  border-bottom: 1px solid rgba(23, 47, 128, 0.12);
  text-align: left;
}

.hero-donation-label {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
}

.hero-donation .donate-amounts {
  margin-top: 0;
}

.hero-donation .donate-amounts a {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: rgba(23, 47, 128, 0.08);
  border-radius: var(--radius-button);
  box-shadow: none;
}

.hero-donation .donate-disclaimer {
  width: 100%;
  margin-top: 0.75rem;
  color: rgba(17, 25, 54, 0.74);
  text-shadow: none;
}

.actblue-express-mark {
  width: 18px;
  height: 16px;
  display: inline-block;
  margin: 0 0.18rem;
  background: transparent !important;
  border: none;
  object-fit: contain;
  vertical-align: -2px;
}

.hero-form {
  width: min(720px, 100%);
  display: grid;
  gap: 0.7rem;
  margin-top: clamp(1.05rem, 2vw, 1.55rem);
}

.hero-logo {
  display: none;
}

.hero-scroll-cue {
  position: absolute;
  right: 50%;
  bottom: clamp(1.25rem, 3vh, 2rem);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--white);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateX(50%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: scrollCueFloat 2400ms ease-in-out infinite;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  background: var(--white);
  border-color: var(--white);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateX(50%) translateY(-3px);
}

.hero-scroll-cue span {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

@keyframes scrollCueFloat {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(-6px);
  }
}

@keyframes scrollCueMobile {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(5px);
  }
}

.home-page.page-loading .purpose-grid,
.home-page.page-loading .vision-section > .container,
.home-page.page-loading .leadership-grid {
  opacity: 0;
  transform: translateY(16px);
}

.home-page.page-loading .hero-copy,
.home-page.page-loading .hero-donation,
.home-page.page-loading .hero-side-image,
.home-page.page-loading .hero-scroll-cue {
  opacity: 0;
  transform: translateY(18px);
}

.home-page .site-header,
.home-page .hero-content,
.home-page .hero-scroll-cue,
.home-page .purpose-grid,
.home-page .vision-section > .container,
.home-page .leadership-grid {
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 220ms ease;
}

.home-page .hero-copy,
.home-page .hero-donation,
.home-page .hero-side-image {
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.home-page .hero-copy {
  transition-delay: 360ms;
}

.home-page .hero-donation {
  transition-delay: 520ms;
}

.home-page .hero-side-image {
  transition-delay: 620ms;
}

.home-page .hero-scroll-cue {
  transition-delay: 700ms;
}

.home-page .hero-bg,
.home-page .hero-overlay {
  transition: opacity 520ms ease;
}

.home-page .swipe-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.home-page .swipe-reveal-left {
  transform: translate3d(-32px, 22px, 0);
}

.home-page .swipe-reveal-right {
  transform: translate3d(32px, 22px, 0);
}

.home-page .swipe-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-page .purpose-grid.swipe-reveal.is-revealed:hover,
.home-page .leadership-grid.swipe-reveal.is-revealed:hover {
  transform: translateY(-6px);
}

.home-page .leadership-grid.swipe-reveal.is-revealed:hover {
  box-shadow: 0 26px 68px rgba(23, 47, 128, 0.16);
}

.form-row {
  display: grid;
  gap: 0.7rem;
}

.form-row-three {
  grid-template-columns: 1fr 1fr 0.82fr;
}

.form-row-two {
  grid-template-columns: 1fr 1fr;
}

.hero-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-field);
  outline: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(23, 47, 128, 0.18);
}

.hero-form input::placeholder {
  color: #535b72;
}

.hero-submit {
  min-height: 54px;
  color: var(--white);
  background: var(--blue-dark);
  background-image: none;
  border: 0;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(23, 47, 128, 0.3);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hero-submit:hover {
  transform: translateY(-5px);
  background: #172f80;
  box-shadow: 0 22px 44px rgba(23, 47, 128, 0.36);
}

.donate-band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height-scrolled) + 20px);
  padding: clamp(3rem, 5.8vw, 5.25rem) 0;
  color: var(--white);
  background: var(--blue-dark);
}

.donate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.58fr);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donate-band .eyebrow {
  margin-bottom: clamp(0.55rem, 1vw, 0.8rem);
  color: var(--white);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.donate-copy {
  text-align: left;
}

.donate-copy-inner {
  width: min(100%, 740px);
  display: grid;
  justify-items: start;
  gap: 0;
}

.donate-copy h2,
.section-copy h2,
.contact-grid h2 {
  color: inherit;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 1;
}

.donate-copy h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.3rem, 3.45vw, 3.7rem);
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.donate-copy h2 span {
  display: block;
}

.donate-copy p,
.section-copy p,
.contact-grid p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.donate-copy p {
  width: min(620px, 100%);
  margin: clamp(0.8rem, 1.35vw, 1.05rem) 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.5;
}

.donate-amounts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(1.35rem, 2.1vw, 1.75rem);
}

.donate-amounts a {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 500;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.donate-amounts a:hover,
.donate-amounts a:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(219, 31, 38, 0.3);
  transform: translateY(-5px);
}

.donate-amounts a:last-child {
  grid-column: span 2;
}

.donate-disclaimer {
  width: min(100%, 680px);
  margin: clamp(0.7rem, 1.1vw, 0.9rem) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.donate-image {
  align-self: stretch;
  min-height: 360px;
  max-height: 500px;
  border: 4px solid var(--red);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.donate-image:hover {
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.38);
  transform: translateY(-6px);
}

.donate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.mobile-portrait-photo {
  display: none;
}

.purpose-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height-scrolled) + 20px);
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(1.1rem, 2vw, 1.75rem);
  background: var(--main-section-bg);
}

.contact-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height-scrolled) + 20px);
  padding: clamp(1.1rem, 2vw, 1.75rem) 0 clamp(3rem, 5.5vw, 4.75rem);
  background: var(--main-section-bg);
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  align-items: stretch;
  padding: clamp(0.9rem, 1.7vw, 1.2rem);
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.purpose-grid:hover {
  box-shadow: none;
  transform: translateY(-6px);
}

.purpose-image {
  min-height: clamp(320px, 30vw, 430px);
  border-radius: calc(var(--radius-large) - 8px);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(23, 47, 128, 0.16);
}

.purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.purpose-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  max-width: none;
  margin-left: 0;
  padding: clamp(2rem, 3.7vw, 3.25rem);
  color: var(--white);
  text-align: left;
  background: var(--blue-dark);
  border-left: 7px solid var(--red);
  border-radius: calc(var(--radius-large) - 8px);
  box-shadow: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--blue-dark);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-grid::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--red);
}

.contact-grid > * {
  position: relative;
  z-index: 1;
}

.contact-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(1.7rem, 3.4vw, 3rem);
  color: var(--white);
  text-align: left;
}

.contact-copy .eyebrow {
  margin-bottom: clamp(0.65rem, 1vw, 0.85rem);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 640px;
  color: var(--white);
  font-size: clamp(2.65rem, 4.3vw, 4.7rem);
  line-height: 0.98;
  text-transform: none;
}

.contact-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: clamp(0.95rem, 1.35vw, 1.15rem) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.52;
}

.purpose-copy .eyebrow {
  margin-bottom: clamp(0.9rem, 1.5vw, 1.2rem);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(2.1rem, 3.2vw, 3.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.purpose-copy .eyebrow::after {
  display: block;
  width: clamp(74px, 8vw, 118px);
  height: 5px;
  margin-top: clamp(0.7rem, 1vw, 0.95rem);
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.purpose-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 0;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.58;
}

.purpose-copy p:not(.eyebrow) + p {
  margin-top: 1rem;
}

.vision-section {
  position: relative;
  padding: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(2rem, 4vw, 3.25rem);
  background: var(--main-section-bg);
}

.vision-section > .container {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    var(--blue-dark);
  border-left: 7px solid var(--red);
  border-radius: var(--radius-large);
  box-shadow: 0 20px 58px rgba(23, 47, 128, 0.1);
}

.vision-header {
  width: min(860px, 100%);
  margin: 0 auto clamp(1.6rem, 3vw, 2.35rem);
  text-align: center;
}

.vision-header .eyebrow {
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.vision-header h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(2.35rem, 4.6vw, 4.65rem);
  font-weight: 900;
  line-height: 1;
}

.vision-header p {
  margin: clamp(0.85rem, 1.4vw, 1.1rem) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.62;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.35rem);
}

.vision-carousel-controls {
  display: none;
}

.vision-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(23, 47, 128, 0.08);
  border-top: 5px solid var(--red);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 46px rgba(23, 47, 128, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.vision-card:hover,
.vision-card:focus-within {
  border-color: rgba(219, 31, 38, 0.24);
  box-shadow: 0 26px 62px rgba(23, 47, 128, 0.14);
  transform: translateY(-6px);
}

.vision-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
}

.vision-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.05rem, 1.32vw, 1.28rem);
  font-weight: 800;
  line-height: 1.18;
}

.vision-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.leadership-section {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.4rem) 0 clamp(2rem, 4vw, 3.25rem);
  background: var(--main-section-bg);
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
  padding: clamp(0.9rem, 1.7vw, 1.2rem);
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: 0 20px 58px rgba(23, 47, 128, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.leadership-grid:hover {
  box-shadow: 0 26px 68px rgba(23, 47, 128, 0.16);
  transform: translateY(-6px);
}

.leadership-image {
  align-self: start;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 470px;
  border-radius: calc(var(--radius-large) - 8px);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(23, 47, 128, 0.16);
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leadership-figure {
  align-self: start;
  display: grid;
  gap: 0.75rem;
}

.leadership-copy {
  align-self: start;
  display: grid;
  align-content: center;
  padding: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--white);
  background: var(--blue-dark);
  border-left: 7px solid var(--red);
  border-radius: calc(var(--radius-large) - 8px);
}

.leadership-label {
  margin: 0;
  min-height: 0;
  height: 118px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    var(--blue-dark);
  border-left: 5px solid var(--red);
  border-radius: calc(var(--radius-large) - 10px);
  box-shadow: 0 18px 42px rgba(23, 47, 128, 0.16);
  font-size: clamp(1.08rem, 1.48vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.leadership-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(2.3rem, 4.1vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.leadership-bio {
  width: min(760px, 100%);
  margin-top: clamp(1rem, 1.8vw, 1.45rem);
}

.leadership-bio p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.64;
}

.leadership-bio p + p {
  margin-top: 1rem;
}

.leadership-toggle {
  display: none;
}

.contact-email-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.85rem, 1.3vw, 1.1rem);
  align-content: center;
  min-height: clamp(210px, 18vw, 280px);
  padding: clamp(1.25rem, 2.6vw, 2rem);
  color: var(--blue-dark);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 241, 228, 0.96)
    ),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top: 7px solid var(--red);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transition: none;
}

.contact-email-card p {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-email-link {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.1rem;
  color: var(--white);
  overflow-wrap: anywhere;
  text-align: center;
  background: var(--blue-dark);
  border: 2px solid rgba(23, 47, 128, 0.08);
  border-radius: var(--radius-button);
  box-shadow: 0 16px 34px rgba(23, 47, 128, 0.22);
  font-size: clamp(0.95rem, 1.28vw, 1.14rem);
  font-weight: 500;
  line-height: 1.2;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(219, 31, 38, 0.22);
  transform: translateY(-5px);
}

.contact-email-card .contact-mailing-address {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(23, 47, 128, 0.04);
  border: 1px solid rgba(23, 47, 128, 0.18);
  border-radius: var(--radius-field);
  outline: none;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(23, 47, 128, 0.34);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(219, 31, 38, 0.12);
  background: var(--white);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(219, 31, 38, 0.24);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-5px);
  background: var(--red-dark);
  box-shadow: 0 22px 44px rgba(219, 31, 38, 0.3);
}

.back-to-top {
  position: fixed;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  z-index: 26;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--blue-dark);
  background: #efb12d;
  box-shadow: 0 12px 28px rgba(239, 177, 45, 0.32);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-main {
  background: var(--cream);
}

.privacy-hero {
  padding: calc(var(--header-height-scrolled) + clamp(4rem, 8vw, 6rem)) 0
    clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  background: var(--blue-dark);
}

.privacy-hero h1 {
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 1;
  text-transform: none;
}

.privacy-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-updated {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.privacy-content-section {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--white);
  border-left: 7px solid var(--red);
  border-radius: var(--radius-large);
  box-shadow: 0 20px 58px rgba(23, 47, 128, 0.12);
}

.privacy-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-content h2 {
  margin: 2rem 0 0.65rem;
  color: var(--blue-dark);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.2;
  text-transform: none;
}

.privacy-content h2:first-of-type {
  margin-top: 2.2rem;
}

.site-footer {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  color: var(--white);
  background: var(--blue-dark);
}

@media (min-width: 981px) {
  .site-footer {
    border-right: clamp(10px, 1.2vw, 18px) solid var(--main-section-bg);
    border-bottom: clamp(10px, 1.2vw, 18px) solid var(--main-section-bg);
    border-left: clamp(10px, 1.2vw, 18px) solid var(--main-section-bg);
    border-radius: 0 0 clamp(24px, 3vw, 46px) clamp(24px, 3vw, 46px);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.72rem;
  text-align: center;
}

.footer-logo {
  grid-row: auto;
  width: clamp(132px, 12vw, 168px);
  margin-bottom: 0.1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.95rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer nav a {
  position: relative;
  padding-bottom: 0.34rem;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
}

.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.footer-contact .contact-email-link {
  min-height: 0;
  display: inline;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.footer-contact span {
  display: inline;
  color: var(--white);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.footer-contact .contact-email-link:hover,
.footer-contact .contact-email-link:focus-visible {
  color: var(--white);
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  transform: none;
}

.disclaimer,
.disclaimer-note {
  justify-self: center;
  width: fit-content;
  max-width: 62ch;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  line-height: 1.38;
  text-align: center;
}

.disclaimer {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
}

@media (max-width: 1080px) {
  .hero-content {
    width: min(820px, 100%);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 4.1vw, 3.5rem);
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-grid {
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
    gap: clamp(1rem, 2vw, 1.45rem);
  }

  .leadership-image {
    max-height: 410px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  :root {
    --header-height: 82px;
    --header-height-scrolled: 82px;
    --header-padding-y: 0;
    --header-padding-y-scrolled: 0;
    --logo-width: clamp(150px, 22vw, 190px);
    --logo-width-scrolled: clamp(150px, 22vw, 190px);
    --header-logo-height: 70px;
    --header-logo-height-scrolled: 70px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 18px);
  }

  .container {
    max-width: none;
    padding-right: clamp(2rem, 6vw, 3.5rem);
    padding-left: clamp(2rem, 6vw, 3.5rem);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    min-height: var(--header-height);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%),
      rgba(23, 47, 128, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    position: relative;
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 144px;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-toggle {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-grid;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .brand,
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: var(--logo-width);
    max-height: var(--header-logo-height);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    width: 100%;
    max-height: var(--header-logo-height);
    overflow: visible;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    position: static;
    width: 100%;
    max-height: var(--header-logo-height);
    object-fit: contain;
    transform: none;
  }

  .mobile-header-donate {
    position: relative;
    inset: auto;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.05rem;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: clamp(2rem, 6vw, 3.5rem);
    left: clamp(2rem, 6vw, 3.5rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.7rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
      rgba(23, 47, 128, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-shadow: none;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .nav-donate {
    width: 100%;
    min-width: 0;
    margin-top: 0.5rem;
    padding: 0.85rem 1.2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    inset: -48px 0;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        104deg,
        rgba(23, 47, 128, 0.98) 0%,
        rgba(23, 47, 128, 0.9) 47%,
        rgba(23, 47, 128, 0.72) 100%
      ),
      linear-gradient(180deg, rgba(23, 47, 128, 0.08), rgba(23, 47, 128, 0.44));
  }

  .hero-layout {
    min-height: auto;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + clamp(3.25rem, 7vh, 5.25rem));
    padding-bottom: clamp(5.25rem, 8vh, 6.5rem);
  }

  .hero-content {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.15rem, 2.3vh, 1.7rem);
  }

  .hero h1 {
    width: min(100%, 720px);
    font-size: clamp(3rem, 6.1vw, 4rem);
    line-height: 1.02;
  }

  .headline-desktop span {
    white-space: normal;
  }

  .headline-rule {
    width: min(100%, 720px);
    height: 8px;
    margin: 1rem 0 1.1rem;
  }

  .hero-copy > p {
    width: min(100%, 680px);
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    line-height: 1.52;
  }

  .hero-donation {
    width: min(100%, 680px);
    margin-top: 0.25rem;
    padding: 1rem;
  }

  .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-donation .donate-amounts a {
    min-height: 56px;
    padding: 0.8rem 0.7rem;
    font-size: 0.98rem;
  }

  .hero-donation .donate-amounts a:last-child {
    grid-column: span 3;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.72rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-scroll-cue {
    bottom: 1.25rem;
  }

  .purpose-section {
    padding: clamp(2.6rem, 5vw, 3.6rem) 0 clamp(1.5rem, 3vw, 2rem);
  }

  .vision-section,
  .leadership-section {
    padding: clamp(1.8rem, 3.8vw, 2.75rem) 0;
  }

  .contact-section {
    padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(2.8rem, 5vw, 3.8rem);
  }

  .purpose-grid,
  .contact-grid {
    width: min(100%, 900px);
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    margin-inline: auto;
  }

  .purpose-copy,
  .contact-copy {
    padding: clamp(1.7rem, 4vw, 2.5rem);
  }

  .purpose-image {
    min-height: 0;
    aspect-ratio: 16 / 7;
    max-height: 340px;
  }

  .purpose-image img,
  .leadership-image img {
    object-fit: cover;
  }

  .vision-section > .container {
    width: calc(100% - clamp(4rem, 12vw, 7rem));
    padding: clamp(1.35rem, 3vw, 2rem);
  }

  .vision-header {
    margin-bottom: 1.5rem;
  }

  .vision-header h2 {
    font-size: clamp(2.7rem, 6vw, 3.8rem);
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .vision-card {
    min-height: 220px;
    padding: 1.25rem;
  }

  .leadership-grid {
    width: min(100%, 900px);
    grid-template-columns: minmax(230px, 0.38fr) minmax(0, 0.62fr);
    gap: 1rem;
    margin-inline: auto;
    padding: 1rem;
  }

  .leadership-image {
    aspect-ratio: 4 / 5;
    max-height: 360px;
  }

  .leadership-label {
    height: 86px;
    white-space: normal;
  }

  .leadership-copy {
    padding: clamp(1.6rem, 3.5vw, 2.35rem);
  }

  .leadership-copy h2 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  }

  .leadership-bio p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .contact-copy h2 {
    max-width: 620px;
    font-size: clamp(2.6rem, 6vw, 3.8rem);
  }

  .contact-email-card {
    min-height: 0;
    padding: clamp(1.35rem, 3vw, 1.9rem);
  }

  .contact-email-link {
    width: min(100%, 560px);
    justify-self: center;
  }

  .site-footer {
    padding: 2rem 0;
  }

  .footer-grid {
    grid-template-columns: minmax(140px, 0.24fr) minmax(0, 1fr);
    gap: 0.9rem 1.5rem;
  }

  .footer-logo {
    width: 150px;
  }

  .site-footer nav,
  .footer-contact {
    justify-content: flex-end;
  }

  .disclaimer {
    max-width: 620px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 92px;
    --header-height-scrolled: 72px;
    --header-padding-y: 18px;
    --header-padding-y-scrolled: 10px;
    --logo-width: 128px;
    --logo-width-scrolled: 104px;
    --header-logo-height: 90px;
    --header-logo-height-scrolled: 74px;
  }

  .menu-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      background 180ms ease,
      border-color 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
  }

  .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    margin: 0;
    background: var(--white);
    border-radius: 999px;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    background: rgba(23, 47, 128, 0.95);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: clamp(1.5rem, 5vw, 5.5rem);
    left: clamp(1.5rem, 5vw, 5.5rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.7rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
      rgba(23, 47, 128, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(8px) scale(1);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-shadow: none;
    transition:
      background 160ms ease,
      color 160ms ease,
      transform 160ms ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
    transform: none;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .nav-donate {
    margin-top: 0.5rem;
    min-width: 0;
    width: 100%;
    padding: 0.85rem 1.2rem;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .modal-brand {
    min-height: auto;
    padding: 2rem 4rem 2rem 2rem;
  }

  .modal-logo {
    width: min(240px, 80%);
    margin-left: 22px;
  }

  .modal-content {
    padding: clamp(2.1rem, 5.6vw, 3rem);
  }

  .modal-content > * {
    width: 100%;
  }

  .modal-headline {
    max-width: 100%;
  }

  .modal-primary {
    align-self: center;
    justify-content: center;
    margin-inline: auto;
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

  .donate-grid,
  .purpose-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    padding: clamp(1rem, 3vw, 1.35rem);
  }

  .contact-copy {
    padding: clamp(1.2rem, 4vw, 2rem);
  }

  .contact-copy h2 {
    font-size: clamp(2.35rem, 6vw, 3.25rem);
  }

  .contact-copy {
    order: -1;
  }

  .purpose-copy {
    max-width: none;
    padding: clamp(1.8rem, 5vw, 2.8rem);
  }

  .purpose-image {
    min-height: clamp(260px, 50vw, 380px);
  }

  .donate-copy-inner {
    width: min(100%, 760px);
  }

  .donate-copy h2 {
    font-size: clamp(2.45rem, 7vw, 4rem);
  }

  .donate-image {
    min-height: clamp(320px, 58vw, 440px);
    max-height: 460px;
  }
}

/* Final mobile heading cleanup: no decorative underlines in compact sections. */
@media (max-width: 980px) {
  .purpose-copy .eyebrow::after,
  .leadership-copy h2::after,
  .leadership-label::before {
    content: none !important;
    display: none !important;
  }
}

/* Final Meet Raja shadow removal. */
.leadership-section .leadership-grid,
.leadership-section .leadership-grid:hover {
  box-shadow: none !important;
}


/* Final desktop hero override: center the slogan to the donation panel frame. */
@media (min-width: 981px) {
  .home-page .hero-content {
    width: min(100%, 750px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    transform: translateY(-42px) !important;
  }

  .home-page .hero-copy {
    width: min(100%, 750px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(245px, 20vw, 360px) !important;
    max-width: clamp(245px, 20vw, 360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    top: -42px;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: min(100%, 750px) !important;
    max-width: 750px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule,
  .home-page .hero-copy > p,
  .home-page .hero-donation {
    width: min(100%, 750px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-page .hero-donation {
    justify-self: center !important;
    margin-top: clamp(0.6rem, 1vw, 0.85rem) !important;
  }
}

/* Final desktop hero recovery: restore the one-line slogan and tighter left stack. */
@media (min-width: 981px) {
  .home-page .hero-layout {
    min-height: auto !important;
    margin-bottom: clamp(-0.65rem, -1.2vh, -0.35rem) !important;
    align-items: start !important;
  }

  .home-page .hero-content {
    transform: translateY(clamp(-92px, -7.8vh, -54px)) !important;
  }

  .home-page .hero-copy {
    align-items: center !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(260px, 19vw, 350px) !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(2rem, 2.45vw, 2.72rem) !important;
    line-height: 0.98 !important;
    white-space: nowrap !important;
  }

  .home-page .hero h1 .headline-desktop,
  .home-page .hero h1 .headline-final {
    display: inline-block !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule {
    width: min(100%, 750px) !important;
    height: clamp(6px, 0.52vw, 8px) !important;
    margin: clamp(0.42rem, 0.7vw, 0.62rem) 0 clamp(0.45rem, 0.72vw, 0.64rem) !important;
  }

  .home-page .hero-copy > p {
    width: min(100%, 750px) !important;
    font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
  }

  .home-page .hero-donation {
    width: min(100%, 750px) !important;
    margin-top: clamp(0.6rem, 1vw, 0.85rem) !important;
    padding: clamp(0.72rem, 1.05vw, 0.92rem) !important;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.55rem, 0.85vw, 0.75rem) !important;
    padding-bottom: clamp(0.45rem, 0.7vw, 0.6rem) !important;
  }

  .home-page .hero-donation .donate-amounts {
    gap: clamp(0.5rem, 0.8vw, 0.7rem) !important;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: 54px !important;
    padding: 0.72rem !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: 0.55rem !important;
  }
}

/* Final desktop donation panel: exact mobile-style amount grid and buttons. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-column-nav {
    display: none !important;
  }

  .home-page .hero-donation {
    width: min(100%, 640px) !important;
    max-width: 640px !important;
    padding: clamp(1.15rem, 1.75vw, 1.55rem) !important;
    background: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    border-radius: var(--radius-large) !important;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32) !important;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.85rem, 1.35vw, 1.05rem) !important;
    padding-bottom: clamp(0.55rem, 0.85vw, 0.75rem) !important;
    border-bottom: 1px solid rgba(23, 47, 128, 0.12) !important;
    text-align: left !important;
  }

  .home-page .hero-donation-label {
    margin: 0 !important;
    color: var(--blue-dark) !important;
    font-size: clamp(1.02rem, 1.05vw, 1.16rem) !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-transform: none !important;
    white-space: normal !important;
  }

  .home-page .hero-donation .donate-amounts {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(0.62rem, 1vw, 0.8rem) !important;
    margin-top: 0 !important;
  }

  .home-page .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a,
  body.home-page .hero .hero-donation .donate-amounts a,
  body.home-page .hero .hero-donation .donate-amounts a:visited {
    min-width: 0 !important;
    min-height: clamp(50px, 5.4vh, 58px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.72rem 0.8rem !important;
    color: var(--blue-dark) !important;
    background: var(--blue-soft) !important;
    border: 2px solid rgba(23, 47, 128, 0.12) !important;
    border-radius: var(--radius-button) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 2px 0 rgba(23, 47, 128, 0.08) !important;
    font-size: clamp(1rem, 1.08vw, 1.16rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-amounts a:hover,
  .home-page .hero-donation .donate-amounts a:focus-visible {
    color: var(--white) !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
    box-shadow: 0 14px 28px rgba(219, 31, 38, 0.22) !important;
    transform: translateY(-2px) !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    width: 100% !important;
    margin-top: 0.75rem !important;
    color: rgba(17, 25, 54, 0.74) !important;
    font-size: clamp(0.78rem, 0.74vw, 0.9rem) !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    text-shadow: none !important;
  }
}

/* Desktop hero reset: clean rebuilt landing layout. Keep mobile/tablet rules untouched. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 1000 !important;
    height: 88px !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(23, 47, 128, 0.12) !important;
    box-shadow: 0 14px 34px rgba(17, 25, 54, 0.12) !important;
    backdrop-filter: blur(18px);
    transform: none !important;
  }

  .home-page .eon-nav {
    width: min(100% - 56px, 1360px) !important;
    height: 100% !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: clamp(1.8rem, 3vw, 3.5rem) !important;
    padding: 0 !important;
  }

  .home-page .eon-menu-toggle,
  .home-page .eon-mobile-menu {
    display: none !important;
  }

  .home-page .eon-nav-logo {
    width: clamp(150px, 12vw, 214px) !important;
    display: flex !important;
    align-items: center !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .home-page .eon-nav-logo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .home-page .eon-desktop-menu {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.25rem, 2.2vw, 2.7rem) !important;
  }

  .home-page .eon-desktop-menu a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    color: var(--blue-dark) !important;
    font-size: clamp(0.88rem, 0.85vw, 1rem) !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .home-page .eon-desktop-menu a:hover,
  .home-page .eon-desktop-menu a:focus-visible {
    color: var(--red) !important;
  }

  .home-page .eon-nav-donate {
    min-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 1.45rem !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border: 2px solid var(--red) !important;
    border-radius: 999px !important;
    box-shadow: 0 16px 30px rgba(219, 31, 38, 0.22) !important;
    font-size: clamp(0.9rem, 0.9vw, 1.03rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .home-page .eon-nav-donate:hover,
  .home-page .eon-nav-donate:focus-visible {
    background: #b8161d !important;
    border-color: #b8161d !important;
    transform: translateY(-1px);
  }

  .home-page .hero {
    min-height: 100svh !important;
    height: auto !important;
    padding: calc(88px + clamp(1.6rem, 3.2vh, 3rem)) 0
      clamp(2rem, 3.8vh, 3.8rem) !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    color: var(--white) !important;
    background:
      radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 30%),
      linear-gradient(135deg, #17317f 0%, #1f439e 48%, #14296f 100%) !important;
  }

  .home-page .hero-bg,
  .home-page .hero-overlay,
  .home-page .scroll-cue {
    display: none !important;
  }

  .home-page .hero-layout {
    position: relative !important;
    z-index: 2 !important;
    width: min(100% - 64px, 1360px) !important;
    min-height: calc(100svh - 132px) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(520px, 0.98fr) minmax(420px, 0.9fr) !important;
    align-items: center !important;
    gap: clamp(2.4rem, 5vw, 5.2rem) !important;
    padding: 0 !important;
  }

  .home-page .hero-content {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: clamp(1.15rem, 2.2vh, 1.8rem) !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .home-page .hero-copy {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(250px, 20vw, 360px) !important;
    max-width: 100% !important;
    margin: 0 0 clamp(1.1rem, 2vh, 1.65rem) !important;
    display: block !important;
    transform: none !important;
  }

  .home-page .hero-copy > .eon-hero-logo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    max-width: 10.6ch !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(4.25rem, 6.25vw, 7.4rem) !important;
    font-weight: 900 !important;
    line-height: 0.88 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-transform: none !important;
    white-space: normal !important;
  }

  .home-page .headline-desktop,
  .home-page .headline-final {
    display: inline !important;
    white-space: normal !important;
  }

  .home-page .headline-mobile {
    display: none !important;
  }

  .home-page .headline-rule {
    width: min(100%, 560px) !important;
    height: clamp(8px, 1.1vh, 12px) !important;
    margin: clamp(1rem, 2vh, 1.6rem) 0 0 !important;
    background: var(--red) !important;
    border-radius: 999px !important;
  }

  .home-page .hero-copy > p {
    display: none !important;
  }

  .home-page .hero-donation {
    width: min(100%, 640px) !important;
    max-width: 640px !important;
    margin: 0 !important;
    padding: clamp(1.25rem, 2.2vw, 1.85rem) !important;
    color: var(--blue-dark) !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 24px !important;
    box-shadow: 0 26px 60px rgba(10, 20, 55, 0.24) !important;
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin: 0 0 clamp(0.95rem, 1.8vh, 1.35rem) !important;
    padding: 0 0 clamp(0.85rem, 1.5vh, 1.1rem) !important;
    border-bottom: 1px solid rgba(23, 47, 128, 0.13) !important;
  }

  .home-page .hero-donation-label {
    max-width: 46ch !important;
    margin: 0 !important;
    color: var(--blue-dark) !important;
    font-size: clamp(1.1rem, 1.2vw, 1.35rem) !important;
    font-weight: 700 !important;
    line-height: 1.34 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-transform: none !important;
  }

  .home-page .hero-donation .donate-amounts {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(0.72rem, 1.25vw, 0.95rem) !important;
  }

  .home-page .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a,
  body.home-page .hero .hero-donation .donate-amounts a,
  body.home-page .hero .hero-donation .donate-amounts a:visited {
    min-width: 0 !important;
    min-height: clamp(58px, 6.2vh, 74px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.78rem 0.9rem !important;
    color: var(--blue-dark) !important;
    background: var(--blue-soft) !important;
    border: 2px solid rgba(23, 47, 128, 0.12) !important;
    border-radius: 14px !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 10px 24px rgba(23, 47, 128, 0.1) !important;
    font-size: clamp(1.1rem, 1.25vw, 1.35rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-amounts a:hover,
  .home-page .hero-donation .donate-amounts a:focus-visible {
    color: var(--white) !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
    box-shadow: 0 16px 30px rgba(219, 31, 38, 0.24) !important;
    transform: translateY(-2px) !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin: clamp(0.95rem, 1.7vh, 1.25rem) 0 0 !important;
    color: rgba(23, 47, 128, 0.78) !important;
    font-size: clamp(0.8rem, 0.8vw, 0.95rem) !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .home-page .hero-donation .actblue-express-mark {
    color: #2255b8 !important;
    font-weight: 800 !important;
  }

  .home-page .hero-side-image {
    position: relative !important;
    inset: auto !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    padding: 0 !important;
    pointer-events: none !important;
    transform: none !important;
  }

  .home-page .hero-column-nav {
    display: none !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 650px) !important;
    max-height: min(72svh, 720px) !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    filter: drop-shadow(0 30px 45px rgba(8, 18, 48, 0.26));
    transform: none !important;
  }
}

@media (min-width: 981px) and (max-width: 1240px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-nav {
    width: min(100% - 40px, 1160px) !important;
    gap: 1.3rem !important;
  }

  .home-page .eon-desktop-menu {
    gap: 1.2rem !important;
  }

  .home-page .hero-layout {
    width: min(100% - 44px, 1160px) !important;
    grid-template-columns: minmax(475px, 1fr) minmax(360px, 0.82fr) !important;
    gap: 2rem !important;
  }

  .home-page .hero h1 {
    font-size: clamp(3.55rem, 5.25vw, 5.45rem) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(220px, 18vw, 285px) !important;
  }

  .home-page .hero-donation {
    max-width: 580px !important;
  }

  .home-page .hero-donation-label {
    font-size: clamp(1.02rem, 1.15vw, 1.16rem) !important;
  }

  .home-page .hero-donation .donate-amounts a,
  body.home-page .hero .hero-donation .donate-amounts a {
    min-height: 56px !important;
    font-size: clamp(1rem, 1.1vw, 1.15rem) !important;
  }
}

/* FINAL OVERRIDE: desktop landing page rebuilt from scratch. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-header {
    height: 86px !important;
    min-height: 86px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page .eon-nav {
    width: min(100% - clamp(3rem, 5vw, 5.5rem), 1420px) !important;
    min-height: 86px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.35rem, 2vw, 2.25rem) !important;
    margin-inline: auto !important;
    padding: 0 !important;
  }

  .home-page .eon-menu-toggle,
  .home-page .eon-nav-logo,
  .home-page .hero-bg,
  .home-page .hero-overlay,
  .home-page .hero-scroll-cue,
  .home-page .hero-column-nav {
    display: none !important;
  }

  .home-page .eon-desktop-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.25rem, 1.9vw, 2.15rem) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .home-page .eon-desktop-menu a {
    color: var(--white) !important;
    font-size: clamp(0.86rem, 0.86vw, 1rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .home-page .eon-nav-donate {
    min-width: 158px !important;
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 1.65rem !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 36px rgba(219, 31, 38, 0.24) !important;
    font-size: clamp(0.86rem, 0.86vw, 1rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
  }

  .home-page .hero {
    min-height: 100svh !important;
    overflow: hidden !important;
    border-width: clamp(14px, 1.25vw, 20px) !important;
    border-radius: clamp(26px, 2.25vw, 38px) !important;
    background:
      radial-gradient(circle at 82% 35%, rgba(255, 255, 255, 0.08), transparent 34%),
      linear-gradient(90deg, #172f80 0%, #1d368d 48%, #152c78 100%) !important;
  }

  .home-page .hero-layout {
    width: min(100% - clamp(3.5rem, 6vw, 6.25rem), 1420px) !important;
    min-height: 100svh !important;
    display: grid !important;
    grid-template-columns: minmax(590px, 0.56fr) minmax(360px, 0.44fr) !important;
    gap: clamp(2.25rem, 4.5vw, 5rem) !important;
    align-items: center !important;
    justify-content: center !important;
    margin-inline: auto !important;
    padding-top: 92px !important;
    padding-bottom: clamp(1.4rem, 3vh, 2.4rem) !important;
  }

  .home-page .hero-content {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: left !important;
    transform: none !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(260px, 21vw, 360px) !important;
    max-width: clamp(260px, 21vw, 360px) !important;
    display: block !important;
    margin: 0 0 clamp(1.15rem, 2.4vh, 1.85rem) !important;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(2.05rem, 2.85vw, 3.45rem) !important;
    line-height: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule {
    width: 100% !important;
    height: clamp(8px, 0.86vw, 12px) !important;
    margin: clamp(0.72rem, 1.35vh, 1rem) 0 clamp(1rem, 1.8vh, 1.35rem) !important;
    background: var(--red) !important;
    box-shadow: none !important;
  }

  .home-page .hero-copy > p {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(1rem, 1.9vh, 1.35rem) !important;
    color: var(--blue-dark) !important;
    background: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 80px rgba(5, 13, 48, 0.26) !important;
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin: 0 0 clamp(0.7rem, 1.25vh, 0.95rem) !important;
    padding: 0 0 clamp(0.62rem, 1.05vh, 0.82rem) !important;
    border-bottom: 1px solid rgba(23, 47, 128, 0.12) !important;
  }

  .home-page .hero-donation-label {
    max-width: 64ch !important;
    margin: 0 !important;
    color: var(--blue-dark) !important;
    font-size: clamp(0.98rem, 1vw, 1.14rem) !important;
    font-weight: 500 !important;
    line-height: 1.34 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .home-page .hero-donation .donate-amounts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(0.58rem, 1.05vh, 0.82rem) !important;
  }

  .home-page .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a:visited {
    min-height: clamp(54px, 5.7vh, 68px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.8rem 0.95rem !important;
    opacity: 1 !important;
    color: var(--blue-dark) !important;
    background: #eef2fb !important;
    background-image: none !important;
    border: 2px solid #c9d2e8 !important;
    border-radius: 13px !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 8px 18px rgba(23, 47, 128, 0.08) !important;
    text-shadow: none !important;
    font-size: clamp(1rem, 1vw, 1.15rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .home-page .hero-donation .donate-amounts a::before,
  .home-page .hero-donation .donate-amounts a::after {
    display: none !important;
    content: none !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-amounts a:hover,
  .home-page .hero-donation .donate-amounts a:focus-visible {
    color: var(--white) !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
    transform: translateY(-2px) !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    display: block !important;
    margin-top: clamp(0.62rem, 1.1vh, 0.86rem) !important;
    color: rgba(17, 25, 54, 0.74) !important;
    font-size: clamp(0.74rem, 0.74vw, 0.84rem) !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 2 !important;
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 560px) !important;
    max-height: min(66svh, 660px) !important;
    display: block !important;
    object-fit: contain !important;
  }
}

@media (min-width: 981px) and (max-width: 1240px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(94vw, 1160px) !important;
    grid-template-columns: minmax(520px, 0.58fr) minmax(320px, 0.42fr) !important;
    gap: clamp(1.35rem, 2.7vw, 2.4rem) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(210px, 18vw, 285px) !important;
    max-width: clamp(210px, 18vw, 285px) !important;
  }

  .home-page .hero h1 {
    font-size: clamp(1.78rem, 2.36vw, 2.52rem) !important;
  }

  .home-page .hero-donation-label {
    font-size: clamp(0.92rem, 1vw, 1.05rem) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 460px) !important;
    max-height: min(58svh, 540px) !important;
  }
}

/* Ref.png desktop landing rebuild: direct blue-field hero, no overlap. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-header .eon-desktop-menu,
  .home-page .eon-header .eon-nav-donate,
  .home-page .hero-scroll-cue {
    display: none !important;
  }

  .home-page .hero {
    min-height: 100svh !important;
    display: grid !important;
    overflow: hidden !important;
    border-width: clamp(14px, 1.25vw, 22px) !important;
    border-radius: clamp(28px, 2.4vw, 40px) !important;
    background: var(--blue-dark) !important;
  }

  .home-page .hero-layout {
    width: min(100% - clamp(4rem, 6vw, 6.5rem), 1360px) !important;
    min-height: calc(100svh - clamp(28px, 2.5vw, 44px)) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.6fr) minmax(360px, 0.4fr) !important;
    gap: clamp(2.2rem, 4.2vw, 4.8rem) !important;
    align-items: center !important;
    justify-content: center !important;
    margin-inline: auto !important;
    padding: clamp(2.2rem, 4vh, 3.4rem) 0 !important;
  }

  .home-page .hero-content {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    color: var(--white) !important;
    text-align: left !important;
    transform: none !important;
  }

  .home-page .hero-copy {
    width: 100% !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(300px, 26vw, 430px) !important;
    max-width: clamp(300px, 26vw, 430px) !important;
    margin: 0 auto clamp(1.5rem, 3vh, 2.4rem) !important;
    display: block !important;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(2.35rem, 3.28vw, 3.92rem) !important;
    line-height: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule {
    width: 100% !important;
    height: clamp(8px, 0.85vw, 12px) !important;
    margin: clamp(0.85rem, 1.4vh, 1.15rem) 0
      clamp(0.7rem, 1.2vh, 1rem) !important;
    background: var(--red) !important;
    box-shadow: none !important;
  }

  .home-page .hero-copy > p {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--white) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin: 0 0 clamp(1rem, 2vh, 1.35rem) !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .home-page .hero-donation-label {
    max-width: 100% !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(1.28rem, 1.65vw, 1.7rem) !important;
    font-weight: 400 !important;
    line-height: 1.32 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .home-page .hero-donation .donate-amounts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(0.75rem, 1.25vw, 1.25rem) clamp(1rem, 1.7vw, 1.45rem) !important;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(46px, 5.2vh, 60px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.72rem 1rem !important;
    color: #111111 !important;
    background: var(--white) !important;
    border: 0 !important;
    border-radius: 11px !important;
    box-shadow: none !important;
    font-size: clamp(1.02rem, 1.16vw, 1.26rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-amounts a:hover,
  .home-page .hero-donation .donate-amounts a:focus-visible {
    color: var(--white) !important;
    background: var(--red) !important;
    transform: translateY(-2px) !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    display: none !important;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 2 !important;
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: clamp(2rem, 4vh, 3rem) !important;
    align-self: center !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .home-page .hero-column-nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.1rem, 1.75vw, 2rem) !important;
  }

  .home-page .hero-column-nav a {
    min-height: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    color: var(--white) !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: clamp(0.94rem, 1.04vw, 1.18rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .home-page .hero-column-nav .donate-trigger {
    min-height: clamp(56px, 6vh, 66px) !important;
    padding: 0 clamp(2rem, 3vw, 3rem) !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border-radius: 13px !important;
    font-size: clamp(1.2rem, 1.35vw, 1.55rem) !important;
  }

  .home-page .hero-column-nav a:hover,
  .home-page .hero-column-nav a:focus-visible {
    color: var(--white) !important;
    text-decoration: underline !important;
    text-underline-offset: 0.25em !important;
  }

  .home-page .hero-column-nav .donate-trigger:hover,
  .home-page .hero-column-nav .donate-trigger:focus-visible {
    text-decoration: none !important;
    background: var(--red-dark) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 540px) !important;
    max-height: min(58svh, 560px) !important;
    display: block !important;
    align-self: flex-end !important;
    object-fit: contain !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(94vw, 1180px) !important;
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr) !important;
    gap: clamp(1.4rem, 2.8vw, 2.4rem) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(230px, 22vw, 320px) !important;
    max-width: clamp(230px, 22vw, 320px) !important;
  }

  .home-page .hero h1 {
    font-size: clamp(1.9rem, 2.6vw, 2.7rem) !important;
  }

  .home-page .hero-donation-label {
    font-size: clamp(1.08rem, 1.36vw, 1.32rem) !important;
  }

  .home-page .hero-column-nav {
    gap: clamp(0.75rem, 1.25vw, 1.25rem) !important;
  }

  .home-page .hero-column-nav a {
    font-size: clamp(0.82rem, 0.94vw, 1rem) !important;
  }

  .home-page .hero-column-nav .donate-trigger {
    min-height: 52px !important;
    padding: 0 clamp(1.4rem, 2.3vw, 2.2rem) !important;
    font-size: clamp(1rem, 1.1vw, 1.22rem) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 440px) !important;
  }
}

/* Clean desktop landing reset: final source of truth for the PC hero. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-header {
    height: 82px !important;
    min-height: 82px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page.is-scrolled .eon-header,
  body.is-scrolled .home-page .eon-header,
  .home-page .eon-header.is-scrolled {
    background: rgba(23, 47, 128, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 12px 28px rgba(7, 18, 58, 0.16) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  }

  .home-page .eon-nav {
    width: min(100% - 4rem, 1440px) !important;
    min-height: 82px !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 2rem !important;
    align-items: center !important;
    margin-inline: auto !important;
    padding: 0 !important;
  }

  .home-page .eon-menu-toggle,
  .home-page .eon-nav-logo {
    display: none !important;
  }

  .home-page .eon-desktop-menu {
    grid-column: 2 !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: clamp(1.35rem, 2.2vw, 2.4rem) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .home-page .eon-desktop-menu a {
    color: var(--white) !important;
    font-size: clamp(0.86rem, 0.88vw, 1rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
  }

  .home-page .eon-nav-donate {
    grid-column: 3 !important;
    min-width: 154px !important;
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 1.55rem !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 38px rgba(219, 31, 38, 0.22) !important;
    font-size: clamp(0.86rem, 0.88vw, 1rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
  }

  .home-page .hero {
    min-height: 100svh !important;
    display: grid !important;
    overflow: hidden !important;
    border-width: clamp(14px, 1.35vw, 22px) !important;
    border-radius: clamp(26px, 2.4vw, 38px) !important;
    background:
      radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.08), transparent 31%),
      linear-gradient(90deg, #172f80 0%, #1c3385 48%, #142a73 100%) !important;
  }

  .home-page .hero-bg,
  .home-page .hero-overlay,
  .home-page .hero-scroll-cue,
  .home-page .hero-column-nav {
    display: none !important;
  }

  .home-page .hero-layout {
    width: min(100% - clamp(4rem, 7vw, 7rem), 1440px) !important;
    min-height: 100svh !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.57fr) minmax(0, 0.43fr) !important;
    gap: clamp(2.5rem, 5vw, 5.5rem) !important;
    align-items: center !important;
    justify-content: center !important;
    margin-inline: auto !important;
    padding-top: 92px !important;
    padding-bottom: clamp(1.6rem, 3vh, 2.6rem) !important;
  }

  .home-page .hero-content {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: left !important;
    transform: none !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(260px, 23vw, 390px) !important;
    max-width: clamp(260px, 23vw, 390px) !important;
    display: block !important;
    margin: 0 0 clamp(1.4rem, 2.8vh, 2.15rem) !important;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(2.25rem, 3.18vw, 3.8rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule {
    width: 100% !important;
    height: clamp(8px, 0.9vw, 12px) !important;
    margin: clamp(0.72rem, 1.4vh, 1.05rem) 0
      clamp(0.86rem, 1.6vh, 1.18rem) !important;
    background: var(--red) !important;
    box-shadow: none !important;
  }

  .home-page .hero-copy > p {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--white) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin: 0 0 clamp(1rem, 1.9vh, 1.38rem) !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .home-page .hero-donation-label {
    max-width: 100% !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(1.18rem, 1.55vw, 1.62rem) !important;
    font-weight: 400 !important;
    line-height: 1.32 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .home-page .hero-donation .donate-amounts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(0.72rem, 1.25vw, 1.1rem) clamp(1rem, 1.8vw, 1.45rem) !important;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(46px, 5.3vh, 60px) !important;
    padding: 0.72rem 1rem !important;
    color: #101010 !important;
    background: var(--white) !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 24px rgba(7, 18, 58, 0.12) !important;
    font-size: clamp(1rem, 1.1vw, 1.22rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-amounts a:hover,
  .home-page .hero-donation .donate-amounts a:focus-visible {
    color: var(--white) !important;
    background: var(--red) !important;
    transform: translateY(-2px) !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    display: block !important;
    margin-top: clamp(0.58rem, 1.1vh, 0.82rem) !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: clamp(0.72rem, 0.74vw, 0.84rem) !important;
    line-height: 1.28 !important;
    text-align: left !important;
  }

  .home-page .hero-donation .actblue-express-mark {
    filter: none !important;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 2 !important;
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 560px) !important;
    max-height: min(64svh, 640px) !important;
    display: block !important;
    object-fit: contain !important;
  }
}

@media (min-width: 981px) and (max-width: 1240px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(94vw, 1160px) !important;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr) !important;
    gap: clamp(1.5rem, 3vw, 2.5rem) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(220px, 21vw, 300px) !important;
    max-width: clamp(220px, 21vw, 300px) !important;
  }

  .home-page .hero h1 {
    font-size: clamp(1.82rem, 2.48vw, 2.65rem) !important;
  }

  .home-page .hero-donation-label {
    font-size: clamp(1.02rem, 1.3vw, 1.28rem) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 440px) !important;
    max-height: min(56svh, 520px) !important;
  }
}

/* Desktop landing hard reset: cohesive hero with proper nav and donation panel. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-header {
    height: 86px !important;
    min-height: 86px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page .eon-nav {
    width: min(100% - clamp(3rem, 5vw, 5.5rem), 1420px) !important;
    min-height: 86px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.35rem, 2vw, 2.25rem) !important;
    margin-inline: auto !important;
    padding: 0 !important;
  }

  .home-page .eon-menu-toggle,
  .home-page .eon-nav-logo {
    display: none !important;
  }

  .home-page .eon-desktop-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.25rem, 1.9vw, 2.15rem) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .home-page .eon-desktop-menu a {
    color: var(--white) !important;
    font-size: clamp(0.86rem, 0.86vw, 1rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .home-page .eon-nav-donate {
    min-width: 158px !important;
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 1.65rem !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 36px rgba(219, 31, 38, 0.24) !important;
    font-size: clamp(0.86rem, 0.86vw, 1rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
  }

  .home-page .hero {
    min-height: 100svh !important;
    overflow: hidden !important;
    border-width: clamp(14px, 1.25vw, 20px) !important;
    border-radius: clamp(26px, 2.25vw, 38px) !important;
    background:
      radial-gradient(circle at 82% 35%, rgba(255, 255, 255, 0.08), transparent 34%),
      linear-gradient(90deg, #172f80 0%, #1d368d 48%, #152c78 100%) !important;
  }

  .home-page .hero-bg,
  .home-page .hero-overlay,
  .home-page .hero-scroll-cue,
  .home-page .hero-column-nav {
    display: none !important;
  }

  .home-page .hero-layout {
    width: min(100% - clamp(3.5rem, 6vw, 6.25rem), 1420px) !important;
    min-height: 100svh !important;
    display: grid !important;
    grid-template-columns: minmax(590px, 0.56fr) minmax(360px, 0.44fr) !important;
    gap: clamp(2.25rem, 4.5vw, 5rem) !important;
    align-items: center !important;
    justify-content: center !important;
    margin-inline: auto !important;
    padding-top: 92px !important;
    padding-bottom: clamp(1.4rem, 3vh, 2.4rem) !important;
  }

  .home-page .hero-content {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: left !important;
    transform: none !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(260px, 21vw, 360px) !important;
    max-width: clamp(260px, 21vw, 360px) !important;
    display: block !important;
    margin: 0 0 clamp(1.15rem, 2.4vh, 1.85rem) !important;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    margin: 0 !important;
    color: var(--white) !important;
    font-size: clamp(2.05rem, 2.85vw, 3.45rem) !important;
    line-height: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule {
    width: 100% !important;
    height: clamp(8px, 0.86vw, 12px) !important;
    margin: clamp(0.72rem, 1.35vh, 1rem) 0 clamp(1rem, 1.8vh, 1.35rem) !important;
    background: var(--red) !important;
    box-shadow: none !important;
  }

  .home-page .hero-copy > p {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(1rem, 1.9vh, 1.35rem) !important;
    color: var(--blue-dark) !important;
    background: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 80px rgba(5, 13, 48, 0.26) !important;
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin: 0 0 clamp(0.7rem, 1.25vh, 0.95rem) !important;
    padding: 0 0 clamp(0.62rem, 1.05vh, 0.82rem) !important;
    border-bottom: 1px solid rgba(23, 47, 128, 0.12) !important;
  }

  .home-page .hero-donation-label {
    max-width: 64ch !important;
    margin: 0 !important;
    color: var(--blue-dark) !important;
    font-size: clamp(0.98rem, 1vw, 1.14rem) !important;
    font-weight: 500 !important;
    line-height: 1.34 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .home-page .hero-donation .donate-amounts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(0.58rem, 1.05vh, 0.82rem) !important;
  }

  .home-page .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a:visited {
    min-height: clamp(54px, 5.7vh, 68px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.8rem 0.95rem !important;
    opacity: 1 !important;
    color: var(--blue-dark) !important;
    background: #eef2fb !important;
    background-image: none !important;
    border: 2px solid #c9d2e8 !important;
    border-radius: 13px !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 8px 18px rgba(23, 47, 128, 0.08) !important;
    text-shadow: none !important;
    font-size: clamp(1rem, 1vw, 1.15rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .home-page .hero-donation .donate-amounts a::before,
  .home-page .hero-donation .donate-amounts a::after {
    display: none !important;
    content: none !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-amounts a:hover,
  .home-page .hero-donation .donate-amounts a:focus-visible {
    color: var(--white) !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
    transform: translateY(-2px) !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    display: block !important;
    margin-top: clamp(0.62rem, 1.1vh, 0.86rem) !important;
    color: rgba(17, 25, 54, 0.74) !important;
    font-size: clamp(0.74rem, 0.74vw, 0.84rem) !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 2 !important;
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 560px) !important;
    max-height: min(66svh, 660px) !important;
    display: block !important;
    object-fit: contain !important;
  }
}

@media (min-width: 981px) and (max-width: 1240px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(94vw, 1160px) !important;
    grid-template-columns: minmax(520px, 0.58fr) minmax(320px, 0.42fr) !important;
    gap: clamp(1.35rem, 2.7vw, 2.4rem) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(210px, 18vw, 285px) !important;
    max-width: clamp(210px, 18vw, 285px) !important;
  }

  .home-page .hero h1 {
    font-size: clamp(1.78rem, 2.36vw, 2.52rem) !important;
  }

  .home-page .hero-donation-label {
    font-size: clamp(0.92rem, 1vw, 1.05rem) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 460px) !important;
    max-height: min(58svh, 540px) !important;
  }
}

/* Final desktop donation button contrast lock. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero .hero-donation .donate-amounts a,
  .home-page .hero .hero-donation .donate-amounts a:visited {
    opacity: 1 !important;
    color: #111111 !important;
    background-color: #ffffff !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .home-page .hero .hero-donation .donate-amounts a:hover,
  .home-page .hero .hero-donation .donate-amounts a:focus-visible {
    color: #ffffff !important;
    background-color: var(--red) !important;
  }
}

/* Authoritative desktop landing hero: written-spec two-column layout. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .eon-header .eon-desktop-menu,
  .home-page .eon-header .eon-nav-donate {
    display: none !important;
  }

  .home-page .hero-scroll-cue {
    display: none !important;
  }

  .home-page .hero {
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .home-page .hero-layout {
    width: min(92vw, 1500px) !important;
    min-height: 100svh !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr) !important;
    gap: clamp(1.75rem, 3.5vw, 4.5rem) !important;
    align-items: center !important;
    justify-content: center !important;
    margin-inline: auto !important;
    padding-top: calc(var(--header-height) + clamp(1rem, 2.4vh, 2rem)) !important;
    padding-bottom: clamp(1rem, 2.4vh, 2rem) !important;
  }

  .home-page .hero-content {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    transform: none !important;
  }

  .home-page .hero-copy {
    width: 100% !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(220px, 16vw, 320px) !important;
    max-width: clamp(220px, 16vw, 320px) !important;
    margin: 0 auto clamp(0.85rem, 1.55vh, 1.25rem) !important;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: 100% !important;
    margin: 0 auto !important;
    font-size: clamp(2rem, 2.55vw, 3.55rem) !important;
    line-height: 0.98 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .home-page .headline-rule {
    width: 100% !important;
    height: clamp(8px, 1vh, 12px) !important;
    margin: clamp(0.7rem, 1.25vh, 1rem) auto
      clamp(0.9rem, 1.55vh, 1.25rem) !important;
  }

  .home-page .hero-copy > p {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(0.95rem, 1.85vh, 1.35rem) !important;
    border-radius: 22px !important;
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.64rem, 1.2vh, 0.92rem) !important;
    padding-bottom: clamp(0.58rem, 1.05vh, 0.8rem) !important;
  }

  .home-page .hero-donation-label {
    max-width: 68ch !important;
    margin-inline: auto !important;
    font-size: clamp(0.98rem, 1vw, 1.16rem) !important;
    line-height: 1.35 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(0.58rem, 1vh, 0.82rem) !important;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(56px, 5.7vh, 72px) !important;
    padding: 0.78rem 0.9rem !important;
    font-size: clamp(0.98rem, 0.96vw, 1.14rem) !important;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: clamp(0.58rem, 1.05vh, 0.82rem) !important;
    font-size: clamp(0.8rem, 0.78vw, 0.92rem) !important;
    line-height: 1.32 !important;
    text-align: left !important;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 2 !important;
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: clamp(1.1rem, 2vh, 1.75rem) !important;
    align-self: center !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .home-page .hero-column-nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(0.55rem, 1vw, 0.95rem) !important;
  }

  .home-page .hero-column-nav a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.76rem clamp(0.72rem, 0.95vw, 1.05rem) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
    font-size: clamp(0.8rem, 0.82vw, 0.96rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
  }

  .home-page .hero-column-nav a:hover,
  .home-page .hero-column-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .home-page .hero-column-nav .donate-trigger {
    padding-inline: clamp(1rem, 1.35vw, 1.4rem) !important;
    background: var(--red) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 620px) !important;
    max-height: min(62svh, 660px) !important;
    display: block !important;
    align-self: center !important;
    object-fit: contain !important;
  }
}

@media (min-width: 981px) and (max-width: 1300px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(94vw, 1200px) !important;
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr) !important;
    gap: clamp(1.25rem, 2.4vw, 2rem) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(190px, 15vw, 250px) !important;
    max-width: clamp(190px, 15vw, 250px) !important;
  }

  .home-page .hero h1 {
    font-size: clamp(1.75rem, 2.35vw, 2.55rem) !important;
  }

  .home-page .hero-donation {
    padding: clamp(0.82rem, 1.6vh, 1.05rem) !important;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(50px, 5.1vh, 60px) !important;
  }

  .home-page .hero-side-image img {
    width: min(100%, 520px) !important;
    max-height: min(56svh, 540px) !important;
  }
}

/* Final phone landscape sections: match the mobile portrait design and sizing. */
@media (max-width: 932px) and (orientation: landscape) {
  .purpose-section,
  .leadership-section {
    padding: clamp(1.7rem, 7vw, 2.6rem) 0 !important;
  }

  .purpose-grid,
  .leadership-grid {
    width: min(100%, 680px) !important;
    margin-inline: auto !important;
    gap: 0.75rem !important;
    padding: 0.75rem !important;
    border-radius: 18px !important;
  }

  .purpose-grid {
    grid-template-columns: 1fr !important;
  }

  .purpose-image {
    min-height: clamp(190px, 48vw, 280px) !important;
    max-height: none !important;
    border-radius: 13px !important;
  }

  .purpose-copy {
    padding: clamp(1.3rem, 5vw, 1.8rem) !important;
    border-left-width: 5px !important;
    border-radius: 13px !important;
  }

  .purpose-copy .eyebrow {
    font-size: clamp(1.85rem, 8vw, 2.55rem) !important;
    line-height: 1.05 !important;
  }

  .purpose-copy p:not(.eyebrow) {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .leadership-grid {
    display: grid !important;
    grid-template-areas:
      "leadership-title"
      "leadership-profile"
      "leadership-bio"
      "leadership-toggle" !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    color: var(--white) !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
      var(--blue-dark) !important;
    border-left: 5px solid var(--red) !important;
  }

  .leadership-copy {
    display: contents !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .leadership-copy h2 {
    grid-area: leadership-title !important;
    width: 100% !important;
    font-size: clamp(1.9rem, 5.6vw, 2.75rem) !important;
    line-height: 1.02 !important;
    text-align: center !important;
  }

  .leadership-figure {
    grid-area: leadership-profile !important;
    width: min(100%, 340px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    justify-self: center !important;
    justify-items: center !important;
    margin-top: clamp(0.9rem, 3vw, 1.2rem) !important;
    padding: 0.5rem !important;
    background: var(--white) !important;
    border-radius: 15px !important;
  }

  .leadership-image {
    width: 100% !important;
    height: clamp(155px, 38vw, 225px) !important;
    max-height: 225px !important;
    aspect-ratio: auto !important;
    border-radius: 11px 11px 0 0 !important;
    box-shadow: none !important;
  }

  .leadership-label {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0.7rem 0.75rem 0.65rem !important;
    display: block !important;
    color: var(--blue-dark) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: none !important;
    font-size: clamp(0.94rem, 2.8vw, 1.08rem) !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .leadership-bio {
    grid-area: leadership-bio !important;
    position: relative !important;
    width: 100% !important;
    max-height: 9.4rem !important;
    margin-top: clamp(0.9rem, 3vw, 1.15rem) !important;
    padding-top: clamp(0.85rem, 2.6vw, 1rem) !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: 90rem !important;
    overflow: visible !important;
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(0.9rem, 1.55vw, 1rem) !important;
    line-height: 1.48 !important;
    text-align: left !important;
  }

  .leadership-toggle {
    grid-area: leadership-toggle !important;
    min-width: 124px !important;
    min-height: 44px !important;
    margin-top: 0.9rem !important;
    display: inline-flex !important;
    justify-self: end !important;
  }
}

/* Final mobile Meet Raja accent: match the red left rule used by nearby sections. */
@media (max-width: 767px) {
  .leadership-section .leadership-grid {
    border-left: 5px solid var(--red) !important;
  }
}

/* Remove Meet Raja outer shadow so adjacent sections share the same background. */
.leadership-section .leadership-grid,
.leadership-section .leadership-grid:hover {
  box-shadow: none !important;
}

/* Absolute final Priorities pass: match Meet Raja/Who We Are width and blue panel. */
.vision-section {
  padding: clamp(2rem, 4vw, 3.4rem) 0 clamp(2.4rem, 5vw, 4rem);
  background: var(--main-section-bg);
}

.vision-section > .container {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--container-max));
  padding: clamp(0.9rem, 1.7vw, 1.2rem);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(17, 25, 54, 0.2),
    0 0 0 1px rgba(23, 47, 128, 0.06);
}

.vision-header,
.priority-accordion {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
    linear-gradient(145deg, #172f80 0%, #203d98 100%);
  border-left: 7px solid var(--red);
}

.vision-header {
  margin-bottom: 0;
  padding: clamp(1.5rem, 3vw, 2.45rem) clamp(1.35rem, 3vw, 2.35rem) 0;
  text-align: left;
  border-radius: calc(var(--radius-large) - 8px) calc(var(--radius-large) - 8px)
    0 0;
}

.vision-header h2 {
  width: fit-content;
  color: var(--white);
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.vision-header h2::after {
  display: block;
  width: clamp(74px, 8vw, 118px);
  height: 5px;
  margin-top: clamp(0.7rem, 1vw, 0.95rem);
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.priority-accordion {
  display: block;
  padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.35rem, 3vw, 2.35rem)
    clamp(1.2rem, 2.7vw, 2rem);
  overflow: visible;
  border-radius: 0 0 calc(var(--radius-large) - 8px)
    calc(var(--radius-large) - 8px);
  box-shadow: none;
}

.priority-item,
.priority-item:hover,
.priority-item:focus-within,
.priority-item.is-open {
  display: block;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--red);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.priority-item:last-child {
  border-bottom: 2px solid var(--red);
}

.priority-icon {
  display: none;
}

.priority-trigger,
.priority-item.is-open .priority-trigger,
.priority-item:not(.is-open) .priority-trigger {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: clamp(0.8rem, 2vw, 1.35rem);
  align-items: center;
  padding: clamp(1rem, 1.9vw, 1.35rem) 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.priority-title,
.priority-item.is-open .priority-title,
.priority-item:not(.is-open) .priority-title {
  color: var(--white);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: normal;
}

.priority-panel p {
  max-width: 78ch;
  margin: 0;
  padding: 0 clamp(2.8rem, 5vw, 4.2rem) clamp(1.15rem, 2vw, 1.45rem) 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.66;
}

.priority-toggle-icon,
.priority-item.is-open .priority-toggle-icon,
.priority-item:not(.is-open) .priority-toggle-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  background: transparent;
  border: 0;
}

.priority-toggle-icon::before,
.priority-toggle-icon::after,
.priority-item.is-open .priority-toggle-icon::before,
.priority-item.is-open .priority-toggle-icon::after,
.priority-item:not(.is-open) .priority-toggle-icon::before,
.priority-item:not(.is-open) .priority-toggle-icon::after {
  width: 19px;
  height: 2px;
  background: var(--red);
}

@media (max-width: 768px) {
  .vision-section > .container {
    width: min(100% - 1.2rem, 680px);
    padding: 0.72rem;
    border-radius: 18px;
  }

  .vision-header {
    padding: 1rem 0.9rem 0;
    border-left-width: 5px;
    border-radius: 14px 14px 0 0;
  }

  .vision-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .priority-accordion {
    padding: 0.35rem 0.9rem 0.95rem;
    border-left-width: 5px;
    border-radius: 0 0 14px 14px;
  }

  .priority-trigger,
  .priority-item.is-open .priority-trigger,
  .priority-item:not(.is-open) .priority-trigger {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 0.7rem;
    padding: 0.88rem 0;
  }

  .priority-title,
  .priority-item.is-open .priority-title,
  .priority-item:not(.is-open) .priority-title {
    font-size: clamp(1.04rem, 5vw, 1.35rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .priority-panel p {
    max-width: none;
    padding: 0 0 0.98rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

/* Final Priorities alignment: Meet Raja-style blue panel inside shared white card. */
.vision-section {
  padding: clamp(2rem, 4vw, 3.4rem) 0 clamp(2.4rem, 5vw, 4rem);
  background: var(--main-section-bg);
}

.vision-section > .container {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--container-max));
  padding: clamp(0.9rem, 1.7vw, 1.2rem);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(17, 25, 54, 0.2),
    0 0 0 1px rgba(23, 47, 128, 0.06);
}

.vision-header,
.priority-accordion {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
    linear-gradient(145deg, #172f80 0%, #203d98 100%);
  border-left: 7px solid var(--red);
}

.vision-header {
  margin-bottom: 0;
  padding: clamp(1.5rem, 3vw, 2.45rem) clamp(1.35rem, 3vw, 2.35rem) 0;
  text-align: left;
  border-radius: calc(var(--radius-large) - 8px) calc(var(--radius-large) - 8px)
    0 0;
}

.vision-header h2 {
  width: fit-content;
  color: var(--white);
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.vision-header h2::after {
  display: block;
  width: clamp(74px, 8vw, 118px);
  height: 5px;
  margin-top: clamp(0.7rem, 1vw, 0.95rem);
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.priority-accordion {
  display: block;
  padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.35rem, 3vw, 2.35rem)
    clamp(1.2rem, 2.7vw, 2rem);
  overflow: visible;
  border-radius: 0 0 calc(var(--radius-large) - 8px)
    calc(var(--radius-large) - 8px);
  box-shadow: none;
}

.priority-item,
.priority-item:hover,
.priority-item:focus-within,
.priority-item.is-open {
  display: block;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--red);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.priority-item:last-child {
  border-bottom: 2px solid var(--red);
}

.priority-icon {
  display: none;
}

.priority-trigger,
.priority-item.is-open .priority-trigger,
.priority-item:not(.is-open) .priority-trigger {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: clamp(0.8rem, 2vw, 1.35rem);
  align-items: center;
  padding: clamp(1rem, 1.9vw, 1.35rem) 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.priority-title,
.priority-item.is-open .priority-title,
.priority-item:not(.is-open) .priority-title {
  color: var(--white);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: normal;
}

.priority-panel p {
  max-width: 78ch;
  margin: 0;
  padding: 0 clamp(2.8rem, 5vw, 4.2rem) clamp(1.15rem, 2vw, 1.45rem) 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.66;
}

.priority-toggle-icon,
.priority-item.is-open .priority-toggle-icon,
.priority-item:not(.is-open) .priority-toggle-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  background: transparent;
  border: 0;
}

.priority-toggle-icon::before,
.priority-toggle-icon::after,
.priority-item.is-open .priority-toggle-icon::before,
.priority-item.is-open .priority-toggle-icon::after,
.priority-item:not(.is-open) .priority-toggle-icon::before,
.priority-item:not(.is-open) .priority-toggle-icon::after {
  width: 19px;
  height: 2px;
  background: var(--red);
}

@media (max-width: 768px) {
  .vision-section > .container {
    width: min(100% - 1.2rem, 680px);
    padding: 0.72rem;
    border-radius: 18px;
  }

  .vision-header {
    padding: 1rem 0.9rem 0;
    border-left-width: 5px;
    border-radius: 14px 14px 0 0;
  }

  .vision-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .priority-accordion {
    padding: 0.35rem 0.9rem 0.95rem;
    border-left-width: 5px;
    border-radius: 0 0 14px 14px;
  }

  .priority-trigger,
  .priority-item.is-open .priority-trigger,
  .priority-item:not(.is-open) .priority-trigger {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 0.7rem;
    padding: 0.88rem 0;
  }

  .priority-title,
  .priority-item.is-open .priority-title,
  .priority-item:not(.is-open) .priority-title {
    font-size: clamp(1.04rem, 5vw, 1.35rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .priority-panel p {
    max-width: none;
    padding: 0 0 0.98rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

/* Final iPad/tablet portrait Meet Raja: match tablet landscape structure. */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .leadership-section {
    padding: clamp(1.3rem, 2.2vw, 1.9rem) 0 clamp(2.4rem, 5vw, 5rem);
    background: var(--main-section-bg);
  }

  .leadership-grid {
    width: 100% !important;
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) !important;
    grid-template-areas: none !important;
    gap: clamp(0.85rem, 1.8vw, 1.15rem);
    align-items: stretch;
    justify-items: stretch;
    padding: clamp(0.9rem, 1.7vw, 1.2rem);
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
    border-radius: 24px;
    box-shadow:
      0 34px 90px rgba(17, 25, 54, 0.2),
      0 0 0 1px rgba(23, 47, 128, 0.06);
    transform: none;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-figure {
    grid-area: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    justify-self: stretch !important;
    justify-items: stretch;
    align-self: stretch;
    align-content: stretch;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadership-image {
    align-self: stretch;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      0 18px 46px rgba(23, 47, 128, 0.16),
      0 0 0 1px rgba(23, 47, 128, 0.08);
  }

  .leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .leadership-label {
    display: none;
  }

  .leadership-copy {
    display: grid;
    grid-area: auto;
    width: auto !important;
    min-width: 0;
    justify-self: stretch !important;
    align-self: stretch;
    align-content: center;
    padding: clamp(1.25rem, 2.4vw, 1.85rem);
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
      linear-gradient(145deg, #172f80 0%, #203d98 100%);
    border-left: 6px solid var(--red);
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(23, 47, 128, 0.14);
  }

  .leadership-copy h2 {
    grid-area: auto;
    width: fit-content;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1;
    text-align: left;
  }

  .leadership-copy h2::after {
    display: block !important;
    width: clamp(74px, 8vw, 118px);
    height: 5px;
    margin: clamp(0.7rem, 1vw, 0.95rem) 0 0;
    content: "" !important;
    background: var(--red);
    border-radius: 999px;
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    grid-area: auto;
    width: 100%;
    max-height: none;
    margin-top: clamp(0.9rem, 1.7vw, 1.2rem);
    padding-top: 0;
    overflow: visible;
    border-top: 0;
  }

  .leadership-bio::after {
    content: none;
    display: none;
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(0.82rem, 1.42vw, 0.94rem);
    line-height: 1.46;
    text-align: left;
  }

  .leadership-bio p + p {
    margin-top: 0.72rem;
  }

  .leadership-toggle {
    display: none !important;
  }
}

/* Final tablet-landscape Meet Raja width: align with Priorities section width. */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) {
  .leadership-grid {
    width: calc(100% - clamp(4rem, 12vw, 7rem));
    margin-right: auto;
    margin-left: auto;
  }
}

/* Final iPad/tablet portrait Meet Raja: match tablet landscape structure. */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .leadership-section {
    padding: clamp(1.3rem, 2.2vw, 1.9rem) 0 clamp(2.4rem, 5vw, 5rem);
    background: var(--main-section-bg);
  }

  .leadership-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
    grid-template-areas: none;
    gap: clamp(0.85rem, 1.8vw, 1.15rem);
    align-items: stretch;
    justify-items: stretch;
    padding: clamp(0.9rem, 1.7vw, 1.2rem);
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
    border-radius: 24px;
    box-shadow:
      0 34px 90px rgba(17, 25, 54, 0.2),
      0 0 0 1px rgba(23, 47, 128, 0.06);
    transform: none;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-figure {
    grid-area: auto;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    justify-self: stretch;
    justify-items: stretch;
    align-self: stretch;
    align-content: stretch;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadership-image {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      0 18px 46px rgba(23, 47, 128, 0.16),
      0 0 0 1px rgba(23, 47, 128, 0.08);
  }

  .leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .leadership-label {
    display: none;
  }

  .leadership-copy {
    display: grid;
    grid-area: auto;
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
    align-content: center;
    padding: clamp(1.25rem, 2.4vw, 1.85rem);
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
      linear-gradient(145deg, #172f80 0%, #203d98 100%);
    border-left: 6px solid var(--red);
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(23, 47, 128, 0.14);
  }

  .leadership-copy h2 {
    grid-area: auto;
    width: fit-content;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1;
    text-align: left;
  }

  .leadership-copy h2::after {
    display: block !important;
    width: clamp(74px, 8vw, 118px);
    height: 5px;
    margin: clamp(0.7rem, 1vw, 0.95rem) 0 0;
    content: "" !important;
    background: var(--red);
    border-radius: 999px;
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    grid-area: auto;
    width: 100%;
    max-height: none;
    margin-top: clamp(0.9rem, 1.7vw, 1.2rem);
    padding-top: 0;
    overflow: visible;
    border-top: 0;
  }

  .leadership-bio::after {
    content: none;
    display: none;
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(0.82rem, 1.42vw, 0.94rem);
    line-height: 1.46;
    text-align: left;
  }

  .leadership-bio p + p {
    margin-top: 0.72rem;
  }

  .leadership-toggle {
    display: none !important;
  }
}

/* Final tablet-landscape landing lock: mirror iPad portrait hero behavior. */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) {
  :root {
    --header-height: 84px;
    --header-height-scrolled: 84px;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.is-menu-open {
    min-height: var(--header-height) !important;
    background: rgba(23, 47, 128, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 28px rgba(7, 18, 58, 0.16) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  }

  .eon-nav {
    min-height: var(--header-height) !important;
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) auto !important;
    gap: 1rem;
    align-items: center;
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  }

  .eon-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex !important;
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(120px, 18vw, 150px);
    height: 64px;
    margin: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) scale(0.94);
  }

  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, -50%);
  }

  .eon-nav-logo img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .eon-nav-donate {
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0.78rem 1.1rem !important;
    font-size: 0.78rem;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-page .hero {
    min-height: 100svh;
    overflow: hidden;
    border-radius: clamp(22px, 3vw, 36px);
  }

  .home-page .hero-layout {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + clamp(0.85rem, 2vh, 1.3rem));
    padding-bottom: clamp(1rem, 2.2vh, 1.8rem);
    transform: none !important;
  }

  .home-page .hero-content {
    width: min(100%, 720px);
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none !important;
    gap: clamp(0.8rem, 1.8vh, 1.15rem);
    align-items: stretch;
    margin: 0 auto;
    text-align: center;
    transform: none !important;
  }

  .home-page .hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: auto;
    width: clamp(170px, 22vw, 240px);
    max-width: clamp(170px, 22vw, 240px);
    margin: 0 0 clamp(0.55rem, 1.3vh, 0.85rem);
    align-self: center;
    transform: none !important;
  }

  .home-page .hero h1 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1.85rem, 3.1vw, 2.7rem);
    line-height: 1.04;
    text-align: center;
    white-space: nowrap;
  }

  .home-page .hero h1 .headline-desktop {
    display: none;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: nowrap;
  }

  .home-page .headline-rule {
    width: min(100%, 620px);
    height: 7px;
    margin: clamp(0.55rem, 1.2vh, 0.8rem) auto 0;
  }

  .home-page .hero-copy > p,
  .home-page .hero-side-image,
  .home-page .hero-scroll-cue {
    display: none !important;
  }

  .home-page .hero-donation {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: clamp(0.9rem, 1.8vw, 1.15rem);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    transform: none !important;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.65rem, 1.3vh, 0.85rem);
    padding-bottom: clamp(0.55rem, 1.1vh, 0.75rem);
    text-align: left;
  }

  .home-page .hero-donation-label {
    max-width: 58ch;
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.12rem);
    line-height: 1.34;
    letter-spacing: 0;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(0.55rem, 1.1vw, 0.78rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: 52px !important;
    padding: 0.72rem;
    font-size: 0.96rem;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1 !important;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: 0.65rem;
    font-size: 0.8rem;
    line-height: 1.32;
    text-align: left;
  }
}

/* Tablet landscape should use the same Meet Raja structure as desktop. */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .leadership-section {
    padding: clamp(1.3rem, 2.2vw, 1.9rem) 0 clamp(2.4rem, 5vw, 5rem);
    background: var(--main-section-bg);
  }

  .leadership-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
    grid-template-areas: none;
    gap: clamp(0.9rem, 1.8vw, 1.4rem);
    align-items: stretch;
    justify-items: stretch;
    padding: clamp(0.9rem, 1.7vw, 1.2rem);
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
    border-radius: 24px;
    box-shadow:
      0 34px 90px rgba(17, 25, 54, 0.2),
      0 0 0 1px rgba(23, 47, 128, 0.06);
    transform: none;
  }

  .leadership-copy {
    display: grid;
    grid-area: auto;
    align-self: stretch;
    align-content: center;
    padding: clamp(2rem, 3.6vw, 3.2rem);
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
      linear-gradient(145deg, #172f80 0%, #203d98 100%);
    border-left: 6px solid var(--red);
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(23, 47, 128, 0.14);
  }

  .leadership-copy h2 {
    grid-area: auto;
    width: fit-content;
    font-size: clamp(2.7rem, 4.6vw, 4.8rem);
    line-height: 1;
    text-align: left;
  }

  .leadership-copy h2::after {
    display: block !important;
    width: clamp(74px, 8vw, 118px);
    height: 5px;
    margin: clamp(0.7rem, 1vw, 0.95rem) 0 0;
    content: "" !important;
    background: var(--red);
    border-radius: 999px;
  }

  .leadership-figure {
    grid-area: auto;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    justify-self: stretch;
    justify-items: stretch;
    align-self: stretch;
    align-content: stretch;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadership-image {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      0 18px 46px rgba(23, 47, 128, 0.16),
      0 0 0 1px rgba(23, 47, 128, 0.08);
  }

  .leadership-image img {
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
  }

  .leadership-label {
    display: none;
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    grid-area: auto;
    width: min(840px, 100%);
    max-height: none;
    margin-top: clamp(1rem, 1.7vw, 1.35rem);
    padding-top: 0;
    overflow: visible;
    border-top: 0;
  }

  .leadership-bio::after {
    content: none;
    display: none;
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(0.94rem, 1.02vw, 1.06rem);
    line-height: 1.58;
    text-align: left;
  }

  .leadership-bio p + p {
    margin-top: 0.85rem;
  }

  .leadership-toggle {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 980px) and (orientation: portrait) {
  :root {
    --header-height: 82px;
    --header-height-scrolled: 82px;
    --header-padding-y: 0;
    --header-padding-y-scrolled: 0;
    --logo-width: clamp(150px, 22vw, 190px);
    --logo-width-scrolled: clamp(150px, 22vw, 190px);
    --header-logo-height: 70px;
    --header-logo-height-scrolled: 70px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    min-height: var(--header-height);
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 144px;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand,
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    grid-column: 2;
    justify-self: center;
    width: var(--logo-width);
    max-height: var(--header-logo-height);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    width: 100%;
    max-height: var(--header-logo-height);
    overflow: visible;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    position: static;
    width: 100%;
    max-height: var(--header-logo-height);
    object-fit: contain;
    transform: none;
  }

  .mobile-header-donate {
    display: inline-flex;
  }

  .hero-layout {
    min-height: auto;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + clamp(3.25rem, 7vh, 5.25rem));
    padding-bottom: clamp(5.25rem, 8vh, 6.5rem);
  }

  .hero-content {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.15rem, 2.3vh, 1.7rem);
  }

  .hero h1 {
    width: min(100%, 720px);
    font-size: clamp(3rem, 6.1vw, 4rem);
    line-height: 1.02;
  }

  .headline-desktop span {
    white-space: normal;
  }

  .hero-donation {
    width: min(100%, 680px);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1.25rem, 5vw, 1.5rem);
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-bg {
    inset: -36px 0;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        100deg,
        rgba(23, 47, 128, 0.98) 0%,
        rgba(23, 47, 128, 0.9) 50%,
        rgba(23, 47, 128, 0.72) 100%
      ),
      linear-gradient(180deg, rgba(23, 47, 128, 0.18), rgba(23, 47, 128, 0.62));
  }

  .hero-layout {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + clamp(1.25rem, 4.8vh, 3rem));
    padding-bottom: clamp(4.2rem, 13vw, 5rem);
  }

  .hero-content {
    width: 100%;
    min-height: calc(100svh - var(--header-height) - clamp(2.6rem, 7vh, 4rem));
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: clamp(0.42rem, 1.2vh, 0.82rem);
    text-shadow: none;
  }

  .home-page .site-header:not(.is-menu-open):not(.is-scrolled) .brand {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(1.12);
  }

  .home-page .site-header .brand {
    transition:
      opacity 360ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      width 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, width;
  }

  .hero-logo {
    width: clamp(220px, 24vw, 300px);
    display: block;
    margin: clamp(0.92rem, 2.8vh, 1.25rem) 0 clamp(0.6rem, 1.7vh, 0.88rem);
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.26));
    transition:
      opacity 360ms ease,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 360ms ease;
    will-change: opacity, transform, filter;
  }

  .hero-logo img {
    transform: none;
  }

  .home-page.is-scrolled .hero-logo {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px) scale(0.72);
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0));
  }

  .hero h1 {
    max-width: none;
    margin-top: clamp(0.38rem, 1.2vh, 0.68rem);
    font-size: clamp(1.58rem, 5.9vw, 2.35rem);
    line-height: 1.04;
  }

  .hero h1 .headline-desktop {
    display: none;
  }

  .hero h1 .headline-mobile {
    display: block;
  }

  .headline-mobile span {
    display: block;
    white-space: nowrap;
  }

  .headline-mobile span:last-child {
    margin-top: 0.18rem;
    font-size: inherit;
    line-height: inherit;
  }

  .headline-rule {
    width: min(100%, 680px);
    height: 5px;
    margin: clamp(0.7rem, 1.45vh, 0.98rem) 0 clamp(0.8rem, 1.9vh, 1.15rem);
  }

  .hero-copy > p {
    width: 100%;
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .hero-donation {
    margin-top: clamp(0.72rem, 1.8vh, 1rem);
    margin-bottom: 2.05rem;
    padding: 0.68rem 0.68rem 0.58rem;
    border-radius: 14px;
  }

  .hero-donation-header {
    margin-bottom: 0.65rem;
    padding-bottom: 0.58rem;
  }

  .hero-donation-label {
    font-size: 0.84rem;
    letter-spacing: 0.11em;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.56rem;
    line-height: 1.24;
  }

  .hero-scroll-cue {
    position: absolute;
    right: 50%;
    bottom: clamp(0.45rem, 1.6vh, 0.75rem);
    width: 38px;
    height: 38px;
    animation: scrollCueMobile 1900ms ease-in-out infinite;
    transform: translateX(50%);
  }

  .hero-scroll-cue:hover,
  .hero-scroll-cue:focus-visible {
    transform: translateX(50%) translateY(-2px);
  }

  .hero-scroll-cue span {
    width: 9px;
    height: 9px;
  }

  .hero-form {
    gap: 0.58rem;
    margin-top: clamp(1.35rem, 4.5vh, 2.15rem);
    padding: 0.5rem;
    background: rgba(23, 47, 128, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .form-row {
    gap: 0.58rem;
  }

  .form-row-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-form input {
    min-width: 0;
  }

  .form-row-three input:nth-child(3) {
    grid-column: 1 / -1;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .hero-form input,
  .hero-submit {
    min-height: 46px;
    border-radius: 9px;
  }

  .hero-form input {
    padding: 0.6rem 0.74rem;
    border-width: 1px;
    font-size: 0.88rem;
    box-shadow: 0 5px 12px rgba(23, 47, 128, 0.09);
  }

  .hero-submit {
    min-height: 46px;
    font-size: 0.88rem;
    box-shadow: 0 9px 20px rgba(23, 47, 128, 0.2);
  }

  .donate-band {
    padding: clamp(2.1rem, 8vw, 3rem) 0;
  }

  .donate-grid {
    gap: 1.25rem;
  }

  .donate-band .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .donate-copy h2 {
    font-size: clamp(2rem, 7.4vw, 2.7rem);
    line-height: 1.02;
    white-space: normal;
  }

  .donate-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    margin-top: 1rem;
  }

  .hero-donation .donate-amounts {
    margin-top: 0;
  }

  .donate-amounts a {
    min-height: 50px;
    padding: 0.7rem 0.6rem;
    border-radius: 9px;
    font-size: 0.9rem;
  }

  .donate-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.78rem;
  }

  .donate-image {
    min-height: 220px;
    max-height: 280px;
    border-width: 3px;
    border-radius: 16px;
  }

  .donate-image img {
    object-position: center 72%;
  }

  .purpose-section,
  .vision-section,
  .leadership-section,
  .contact-section {
    padding: clamp(1.7rem, 7vw, 2.6rem) 0;
  }

  .purpose-grid,
  .leadership-grid,
  .contact-grid {
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 18px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .leadership-figure {
    width: min(100%, 420px);
  }

  .purpose-copy {
    padding: clamp(1.3rem, 5vw, 1.8rem);
    border-left-width: 5px;
    border-radius: 13px;
  }

  .purpose-copy .eyebrow {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .purpose-copy p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .purpose-image {
    min-height: clamp(190px, 48vw, 280px);
    border-radius: 13px;
  }

  .vision-header {
    margin-bottom: 1.35rem;
  }

  .vision-header h2 {
    font-size: clamp(2.05rem, 8vw, 2.8rem);
  }

  .vision-header p {
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .vision-card {
    min-height: 0;
    gap: 0.68rem;
    padding: clamp(1rem, 4vw, 1.25rem);
    border-radius: 14px;
  }

  .vision-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .vision-card h3 {
    font-size: 1.02rem;
  }

  .vision-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .leadership-image {
    width: min(100%, 420px);
    aspect-ratio: 16 / 10;
    max-height: 300px;
    border-radius: 13px;
  }

  .leadership-copy {
    padding: clamp(1.35rem, 5vw, 1.9rem);
    border-left-width: 5px;
    border-radius: 13px;
  }

  .leadership-copy h2 {
    font-size: clamp(2.05rem, 8vw, 2.8rem);
  }

  .leadership-bio {
    margin-top: 0.9rem;
  }

  .leadership-bio p {
    font-size: 0.94rem;
    line-height: 1.54;
  }

  .contact-copy {
    padding: 1.1rem 0.85rem;
  }

  .contact-copy .eyebrow {
    font-size: 0.9rem;
  }

  .contact-copy h2 {
    font-size: clamp(2rem, 7vw, 2.65rem);
  }

  .contact-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .contact-email-card {
    padding: 1rem;
    border-radius: 14px;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 0.72rem 0.85rem;
    border-radius: 10px;
  }

  label {
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 84px;
    --header-height-scrolled: 68px;
    --header-padding-y: 14px;
    --header-padding-y-scrolled: 9px;
    --logo-width: 114px;
    --logo-width-scrolled: 94px;
    --header-logo-height: 82px;
    --header-logo-height-scrolled: 68px;
  }

  .hero-layout {
    justify-content: flex-start;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + clamp(0.85rem, 3.4vh, 1.8rem));
    padding-bottom: 1rem;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 2.35rem);
    row-gap: clamp(0.38rem, 1.2vh, 0.75rem);
  }

  .hero-logo {
    width: clamp(152px, 41vw, 182px);
    margin-top: clamp(0.55rem, 2.2vh, 1rem);
    margin-bottom: clamp(1.2rem, 3.4vh, 1.75rem);
  }

  .hero h1 {
    margin-top: clamp(0.7rem, 2.4vh, 1.3rem);
    font-size: clamp(1.8rem, 7.4vw, 2.55rem);
    line-height: 1.04;
  }

  .headline-mobile span:last-child {
    font-size: inherit;
  }

  .headline-rule {
    width: 100%;
  }

  .hero-copy > p {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero-donation {
    margin-top: clamp(0.9rem, 2.7vh, 1.2rem);
  }

  .purpose-section {
    padding: clamp(2.5rem, 10vw, 3.75rem) 0 clamp(0.9rem, 4vw, 1.4rem);
  }

  .vision-section {
    padding: clamp(1.55rem, 7vw, 2.35rem) 0 clamp(1.1rem, 5vw, 1.7rem);
  }

  .leadership-section {
    padding: clamp(1rem, 4vw, 1.45rem) 0 clamp(1rem, 4vw, 1.45rem);
  }

  .purpose-copy {
    padding: clamp(1.6rem, 7vw, 2.25rem);
    border-left-width: 5px;
  }

  .purpose-image {
    min-height: clamp(220px, 62vw, 320px);
  }

  .purpose-copy .eyebrow {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .purpose-copy p:not(.eyebrow) {
    font-size: 1.03rem;
    text-align: left;
  }

  .leadership-image {
    width: min(100%, 360px);
    max-height: 240px;
  }

  .leadership-label {
    min-height: 92px;
    padding: 1rem 1.1rem;
    font-size: clamp(0.94rem, 2.5vw, 1.06rem);
    letter-spacing: 0;
  }

  .leadership-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .leadership-bio p {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .hero-form input,
  .hero-submit {
    min-height: 48px;
  }

  .donate-amounts {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    padding: clamp(0.9rem, 4vw, 1.4rem) 0 clamp(2.75rem, 10vw, 4rem);
  }

  .contact-grid {
    gap: 0.9rem;
    padding: 0.85rem;
  }

  .contact-copy {
    padding: 1.15rem 0.9rem;
    text-align: left;
  }

  .contact-copy h2 {
    margin-left: 0;
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  .contact-copy p:not(.eyebrow) {
    margin-left: 0;
  }

  .contact-email-card {
    padding: 1.1rem;
  }

  .donate-band {
    padding: clamp(2rem, 8vw, 2.75rem) 0;
  }

  .donate-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1;
    white-space: normal;
  }

  .donate-amounts {
    gap: 0.5rem;
  }

  .donate-amounts a {
    min-height: 42px;
    padding: 0.56rem 0.52rem;
    font-size: 0.84rem;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.58rem;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .donate-image {
    min-height: 220px;
    max-height: 260px;
  }

  .modal-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .modal-headline {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 2.1rem);
    line-height: 1.08;
    white-space: normal;
  }

  .modal-amounts {
    margin-top: 0.2rem;
  }

  .privacy-content {
    border-left-width: 5px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 78px;
    --header-height-scrolled: 64px;
    --header-padding-y: 12px;
    --header-padding-y-scrolled: 8px;
    --logo-width: 104px;
    --logo-width-scrolled: 88px;
    --header-logo-height: 76px;
    --header-logo-height-scrolled: 62px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .site-nav {
    right: 1.25rem;
    left: 1.25rem;
    padding: 0.6rem;
    border-radius: 16px;
  }

  .site-nav a {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .nav-donate {
    padding: 0.78rem 1rem;
  }

  .hero-layout {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + clamp(0.75rem, 3vh, 1.25rem));
    padding-bottom: 3.1rem;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 2rem);
    row-gap: clamp(0.12rem, 0.55vh, 0.34rem);
  }

  .hero-logo {
    width: clamp(146px, 39vw, 174px);
    margin-top: clamp(0.48rem, 1.6vh, 0.68rem);
    margin-bottom: clamp(0.26rem, 0.85vh, 0.44rem);
  }

  .hero h1 {
    margin-top: clamp(0.12rem, 0.55vh, 0.28rem);
    font-size: clamp(1.43rem, 6.8vw, 1.92rem);
  }

  .headline-mobile span:last-child {
    font-size: inherit;
  }

  .headline-rule {
    height: 5px;
    margin: clamp(0.42rem, 0.9vh, 0.58rem) 0 clamp(0.52rem, 1.15vh, 0.74rem);
  }

  .hero-copy > p {
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .hero-donation {
    margin-top: clamp(0.32rem, 0.9vh, 0.46rem);
    margin-bottom: 1.42rem;
    padding: 0.42rem 0.42rem 0.34rem;
    border-radius: 13px;
  }

  .hero-donation-label {
    font-size: 0.78rem;
  }

  .hero-form,
  .form-row {
    gap: 0.5rem;
  }

  .hero-form {
    margin-top: clamp(1.18rem, 3.6vh, 1.65rem);
    padding: 0.44rem;
    border-radius: 13px;
  }

  .hero-form input,
  .hero-submit,
  input,
  select {
    min-height: 46px;
  }

  .hero-form input,
  input,
  select,
  textarea {
    padding: 0.58rem 0.68rem;
  }

  .hero-form input {
    font-size: 0.84rem;
  }

  .hero-submit {
    font-size: 0.86rem;
  }

  .donate-grid {
    gap: 1rem;
  }

  .donate-copy h2 {
    font-size: clamp(1.82rem, 7.6vw, 2.25rem);
  }

  .donate-amounts {
    gap: 0.55rem;
  }

  .donate-amounts a {
    min-height: 48px;
    font-size: 0.86rem;
  }

  .donate-image {
    min-height: 200px;
    max-height: 230px;
  }

  .purpose-grid,
  .contact-grid {
    padding: 0.65rem;
  }

  .purpose-copy,
  .contact-email-card {
    padding: 1rem;
  }

  .purpose-copy .eyebrow {
    font-size: clamp(1.7rem, 7.8vw, 2.2rem);
  }

  .purpose-image {
    min-height: 180px;
  }

  .contact-copy h2 {
    font-size: clamp(1.82rem, 7.5vw, 2.3rem);
  }

  .site-footer {
    padding: 1.7rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.85rem;
    text-align: center;
  }

  .footer-logo {
    grid-row: auto;
    width: clamp(132px, 30vw, 165px);
  }

  .site-footer nav {
    justify-content: center;
    gap: 0.8rem 1rem;
    font-size: 0.72rem;
  }

  .footer-contact {
    justify-content: center;
  }

  .disclaimer {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }
}

/* Mobile hero rebuild: keep desktop untouched and reset the phone rhythm cleanly. */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    height: auto;
    overflow: hidden;
  }

  .hero-layout {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 0.65rem);
    padding-bottom: 3.25rem;
  }

  .hero-content {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0.48rem;
    text-shadow: none;
  }

  .hero-logo {
    width: clamp(158px, 44vw, 190px);
    display: block;
    margin: 0 auto;
  }

  .hero h1 {
    max-width: none;
    margin-top: 0;
    font-size: clamp(1.7rem, 6.4vw, 2.25rem);
    line-height: 1.04;
  }

  .hero h1 .headline-desktop {
    display: none;
  }

  .hero h1 .headline-mobile {
    display: block;
  }

  .headline-mobile span {
    display: block;
    white-space: nowrap;
  }

  .headline-mobile span:last-child {
    margin-top: 0.1rem;
    font-size: inherit;
    line-height: inherit;
  }

  .headline-rule {
    width: 100%;
    height: 5px;
    margin: 0.48rem 0 0.58rem;
  }

  .hero-copy > p {
    width: 100%;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .hero-donation {
    width: 100%;
    margin-top: -0.62rem;
    margin-bottom: 0;
    padding: 0.82rem 0.72rem 0.68rem;
    border-radius: 13px;
  }

  .hero-donation-header {
    margin-bottom: 0.58rem;
    padding-bottom: 0.52rem;
  }

  .hero-donation-label {
    font-size: 0.8rem;
    letter-spacing: 0.11em;
  }

  .hero-donation .donate-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    margin-top: 0;
  }

  .hero-donation .donate-amounts a {
    min-height: 44px;
    padding: 0.55rem 0.5rem;
    font-size: 0.86rem;
    border-radius: 8px;
  }

  .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.56rem;
    font-size: 0.72rem;
    line-height: 1.24;
  }

  .hero-scroll-cue {
    position: absolute;
    right: 50%;
    bottom: 1.05rem;
    width: 36px;
    height: 36px;
    transform: translateX(50%);
    animation: scrollCueMobile 1900ms ease-in-out infinite;
  }

  .hero-scroll-cue:hover,
  .hero-scroll-cue:focus-visible {
    transform: translateX(50%) translateY(-2px);
  }

  .hero-scroll-cue span {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 480px) {
  .hero-layout {
    min-height: 114svh;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 4.25rem;
  }

  .hero-content {
    justify-content: flex-start;
    gap: 0.95rem;
  }

  .hero-logo {
    width: clamp(154px, 43vw, 184px);
    margin: 0.9rem auto 0.25rem;
  }

  .hero h1 {
    margin-top: 0;
    font-size: clamp(1.38rem, 6.45vw, 1.86rem);
  }

  .headline-rule {
    margin: 0.45rem 0 0.62rem;
  }

  .hero-copy > p {
    font-size: 0.85rem;
    line-height: 1.38;
  }

  .hero-donation {
    margin-top: 0.95rem;
    margin-bottom: 1.6rem;
    padding: 0.82rem 0.72rem 0.64rem;
  }

  .hero-donation-header {
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
  }

  .hero-donation-label {
    font-size: 0.74rem;
  }

  .hero-donation .donate-amounts {
    gap: 0.58rem;
  }

  .hero-donation .donate-amounts a {
    min-height: 44px;
    padding: 0.52rem 0.5rem;
    font-size: 0.84rem;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.54rem;
    font-size: 0.7rem;
    line-height: 1.24;
  }

  .hero-scroll-cue {
    right: 50%;
    bottom: 0.9rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    transform: translateX(50%);
  }

  .hero-scroll-cue:hover,
  .hero-scroll-cue:focus-visible {
    transform: translateX(50%) translateY(-2px);
  }
}

@media (min-width: 421px) and (max-width: 640px) {
  .hero-layout {
    min-height: 112svh;
    padding-top: calc(var(--header-height) + 1.3rem);
    padding-bottom: 5rem;
  }

  .hero-content {
    justify-content: space-evenly;
    gap: 0.9rem;
  }

  .hero-logo {
    margin: 0.85rem auto 0.45rem;
  }

  .hero h1 {
    margin-top: 0.1rem;
  }

  .headline-rule {
    margin: 0.55rem 0 0.76rem;
  }

  .hero-copy > p {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .hero-donation {
    margin-top: 1.85rem;
    margin-bottom: 2rem;
  }

  .hero-scroll-cue {
    bottom: 1.3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-page-pad: clamp(1rem, 4vw, 1.25rem);
    --mobile-section-y: clamp(2.25rem, 8vw, 3.25rem);
  }

  .container {
    padding-right: var(--mobile-page-pad);
    padding-left: var(--mobile-page-pad);
  }

  .header-container {
    position: relative;
    min-height: 70px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 76px;
    align-items: center;
    gap: 0.5rem;
  }

  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    min-height: 70px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .menu-toggle {
    position: relative;
    inset: auto;
    grid-column: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .mobile-header-donate {
    position: relative;
    inset: auto;
    grid-column: 3;
    justify-self: end;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 0.72rem;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.22);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .back-to-top {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .back-to-top svg {
    width: 25px;
    height: 25px;
  }

  .brand {
    position: relative;
    left: auto;
    inset: auto;
    grid-column: 2;
    justify-self: center;
    width: clamp(92px, 26vw, 108px);
    max-height: none;
    transform: none;
  }

  .home-page .site-header:not(.is-menu-open):not(.is-scrolled) .brand {
    transform: translateY(6px) scale(1.06);
  }

  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    transform: none;
  }

  .brand .logo-crop {
    max-height: none;
  }

  .brand .logo-crop img {
    max-height: none;
  }

  .site-nav {
    right: var(--mobile-page-pad);
    left: var(--mobile-page-pad);
    gap: 0.35rem;
    padding: 0.55rem;
    border-radius: 16px;
  }

  .site-nav.is-open {
    transform: translateY(0.55rem) scale(1);
  }

  .site-nav a {
    min-height: 46px;
    padding: 0.72rem 0.9rem;
    border-radius: 11px;
    font-size: 0.86rem;
    line-height: 1.1;
  }

  .nav-donate {
    margin-top: 0.25rem;
    min-height: 48px;
    padding: 0.78rem 1rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-layout {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 0.75rem);
    padding-bottom: 3.35rem;
  }

  .hero-content {
    justify-content: flex-start;
    gap: clamp(0.72rem, 2.1vh, 1.05rem);
  }

  .hero-logo {
    width: clamp(152px, 41vw, 182px);
    margin: clamp(0.45rem, 1.6vh, 0.85rem) auto 0.25rem;
    transform: none;
  }

  .hero h1 {
    margin-top: 0;
    font-size: clamp(1.55rem, 6vw, 2.08rem);
    line-height: 1.05;
  }

  .headline-mobile span {
    white-space: normal;
  }

  .headline-rule {
    height: 5px;
    margin: 0.5rem 0 0.62rem;
  }

  .hero-copy > p {
    max-width: 38rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .hero-donation {
    margin-top: clamp(0.35rem, 1.2vh, 0.75rem);
    margin-bottom: 0;
    padding: 0.78rem 0.72rem 0.66rem;
    border-radius: 14px;
  }

  .hero-donation-header {
    margin-bottom: 0.58rem;
    padding-bottom: 0.5rem;
  }

  .hero-donation-label {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .hero-donation .donate-amounts {
    gap: 0.58rem;
  }

  .hero-donation .donate-amounts a {
    min-height: 44px;
    padding: 0.54rem 0.45rem;
    border-radius: 9px;
    font-size: 0.84rem;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.55rem;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .hero-scroll-cue {
    right: 50%;
    bottom: 0.9rem;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    transform: translateX(50%);
  }

  .hero-scroll-cue:hover,
  .hero-scroll-cue:focus-visible {
    transform: translateX(50%) translateY(-2px);
  }

  .purpose-section {
    padding: calc(var(--mobile-section-y) + 0.2rem) 0
      clamp(1.35rem, 5.5vw, 2rem);
  }

  .vision-section {
    padding: clamp(1.8rem, 7vw, 2.65rem) 0 clamp(1.75rem, 6.5vw, 2.5rem);
  }

  .vision-section > .container {
    padding: clamp(1rem, 4.5vw, 1.35rem);
    border-left-width: 5px;
    border-radius: 18px;
  }

  .leadership-section {
    padding: clamp(0.75rem, 3.5vw, 1.15rem) 0 clamp(1.2rem, 5vw, 1.8rem);
  }

  .contact-section {
    padding: clamp(1.2rem, 5vw, 1.8rem) 0 var(--mobile-section-y);
  }

  .purpose-grid,
  .leadership-grid,
  .contact-grid {
    gap: 0.9rem;
    padding: 0.85rem;
    border-radius: 16px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
  }

  .leadership-grid {
    display: grid;
    grid-template-areas:
      "leadership-title"
      "leadership-profile"
      "leadership-bio"
      "leadership-toggle";
    gap: 0;
    padding: clamp(0.85rem, 3.6vw, 1.05rem);
    color: var(--white);
    background: var(--blue-dark);
    border-left: 5px solid var(--red);
    box-shadow: 0 20px 54px rgba(23, 47, 128, 0.14);
  }

  .purpose-copy,
  .leadership-copy,
  .contact-email-card {
    padding: clamp(1.1rem, 4.4vw, 1.45rem);
    border-radius: 12px;
  }

  .purpose-copy {
    order: 2;
    border-radius: 0 0 12px 12px;
  }

  .purpose-copy .eyebrow {
    margin-bottom: 0.8rem;
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.05;
    text-align: center;
  }

  .purpose-copy p:not(.eyebrow) {
    margin-bottom: 0.92rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .purpose-copy p:last-child {
    margin-bottom: 0;
  }

  .purpose-image {
    margin-bottom: 0.1rem;
    order: 1;
    min-height: clamp(195px, 52vw, 280px);
    border-radius: 12px 12px 0 0;
    box-shadow: none;
  }

  .purpose-image img {
    object-fit: cover;
    object-position: center;
  }

  .vision-header {
    margin-bottom: 1.15rem;
    text-align: center;
  }

  .vision-header .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .vision-header h2 {
    font-size: clamp(1.9rem, 7.6vw, 2.45rem);
    line-height: 1.04;
  }

  .vision-header p {
    margin-top: 0.7rem;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .vision-carousel {
    display: grid;
    gap: 1rem;
    touch-action: pan-y;
  }

  .vision-carousel .vision-grid {
    display: block;
  }

  .vision-carousel.is-ready .vision-card {
    display: none;
  }

  .vision-carousel:not(.is-ready) .vision-card:not(:first-child) {
    display: none;
  }

  .vision-carousel .vision-card.is-active {
    display: grid;
  }

  .vision-carousel.is-ready .vision-grid {
    overflow: hidden;
    padding: 0.18rem;
    margin: -0.18rem;
  }

  .vision-carousel.is-ready .vision-card.is-active {
    transform-origin: center bottom;
    will-change: opacity, transform;
  }

  .vision-carousel.is-moving-next .vision-card.is-active {
    animation: priorityCardNext 240ms ease-out;
  }

  .vision-carousel.is-moving-previous .vision-card.is-active {
    animation: priorityCardPrevious 240ms ease-out;
  }

  .vision-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem 0.95rem;
    min-height: 214px;
    align-content: center;
    padding: 1.18rem;
    border-top-width: 4px;
    border-radius: 14px;
  }

  .vision-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.88rem;
    padding-bottom: 0.05rem;
  }

  .vision-carousel-button {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    color: var(--blue-dark);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition:
      transform 180ms ease,
      background-color 180ms ease,
      box-shadow 180ms ease;
  }

  .vision-carousel-button:hover,
  .vision-carousel-button:focus-visible {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
  }

  .vision-carousel-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .vision-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
  }

  .vision-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255, 255, 255, 0.38);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition:
      width 180ms ease,
      background-color 180ms ease;
  }

  .vision-carousel-dot.is-active {
    width: 22px;
    background: var(--red);
  }

  .vision-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .vision-icon svg {
    width: 25px;
    height: 25px;
  }

  .vision-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .vision-card p {
    grid-column: 1 / -1;
    margin-top: 0.15rem;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  @keyframes priorityCardNext {
    0% {
      opacity: 0;
      transform: translateX(16px) rotate(1.2deg) scale(0.99);
    }

    100% {
      opacity: 1;
      transform: translateX(0) rotate(0) scale(1);
    }
  }

  @keyframes priorityCardPrevious {
    0% {
      opacity: 0;
      transform: translateX(-16px) rotate(-1.2deg) scale(0.99);
    }

    100% {
      opacity: 1;
      transform: translateX(0) rotate(0) scale(1);
    }
  }

  .leadership-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 190px;
    border-radius: 11px 11px 0 0;
    box-shadow: none;
  }

  .leadership-figure {
    grid-area: leadership-profile;
    width: 100%;
    max-width: 360px;
    justify-self: center;
    gap: 0;
    margin-top: 0.9rem;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(23, 47, 128, 0.16);
  }

  .leadership-copy {
    display: contents;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .leadership-label {
    min-height: 0;
    height: 45px;
    padding: 0 0.45rem;
    background: transparent;
    border: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    color: var(--blue-dark);
    font-size: clamp(0.95rem, 4.15vw, 1.12rem);
    letter-spacing: 0;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
  }

  .leadership-copy h2 {
    grid-area: leadership-title;
    font-size: clamp(1.85rem, 7vw, 2.45rem);
    line-height: 1.04;
  }

  .leadership-bio {
    grid-area: leadership-bio;
    width: 100%;
    margin-top: 1rem;
    padding-top: 0.95rem;
    position: relative;
    max-height: 14.2rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transition: max-height 280ms ease;
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: 90rem;
  }

  .leadership-bio::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3.3rem;
    pointer-events: none;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(23, 47, 128, 0),
      var(--blue-dark) 72%
    );
    transition: opacity 200ms ease;
  }

  .leadership-copy.is-expanded .leadership-bio::after {
    opacity: 0;
  }

  .leadership-toggle {
    grid-area: leadership-toggle;
    position: relative;
    z-index: 2;
    width: auto;
    min-width: 132px;
    min-height: 48px;
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 0.45rem;
    padding: 0.78rem 1rem;
    color: var(--blue-dark);
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  .leadership-toggle:hover,
  .leadership-toggle:focus-visible {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
  }

  .leadership-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 200ms ease;
  }

  .leadership-copy.is-expanded .leadership-toggle svg {
    transform: rotate(180deg);
  }

  .leadership-bio p {
    font-size: 0.91rem;
    line-height: 1.52;
  }

  .leadership-bio p + p {
    margin-top: 0.78rem;
  }

  .contact-copy {
    padding: 0.55rem 0.15rem 0.15rem;
    text-align: left;
  }

  .contact-copy h2 {
    margin: 0;
    font-size: clamp(1.85rem, 7vw, 2.45rem);
    line-height: 1.04;
  }

  .contact-copy p:not(.eyebrow) {
    margin: 0.72rem 0 0;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .contact-email-card {
    gap: 0.65rem;
    min-height: 0;
  }

  .contact-email-link {
    font-size: clamp(0.94rem, 4vw, 1.08rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .contact-mailing-address {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .modal-panel {
    width: min(100% - 1.5rem, 480px);
    max-height: calc(100svh - 1.5rem);
    border-radius: 18px;
  }

  .modal-brand {
    padding: 1.25rem 3.25rem 1rem 1.25rem;
  }

  .modal-logo {
    width: min(210px, 78%);
    margin-left: 22px;
  }

  .modal-content {
    gap: 0.9rem;
    padding: 1.45rem 1.15rem 1.25rem;
  }

  .modal-eyebrow {
    font-size: 0.78rem;
  }

  .modal-headline {
    font-size: clamp(1.38rem, 6vw, 1.85rem);
    line-height: 1.1;
  }

  .modal-amounts {
    gap: 0.55rem;
  }

  .modal-amounts a {
    min-height: 46px;
    border-radius: 10px;
    font-size: 0.86rem;
  }

  .modal-primary {
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.86rem;
  }

  .site-footer {
    padding: 1.6rem 0;
  }

  .footer-grid {
    gap: 0.75rem;
  }

  .footer-logo {
    width: clamp(124px, 38vw, 158px);
  }

  .site-footer nav {
    gap: 0.35rem;
    width: 100%;
  }

  .site-footer nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.55rem;
    font-size: 0.72rem;
  }

  .disclaimer {
    padding: 0.7rem 0.8rem;
    border-radius: 0;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .nav-donate:hover,
  .nav-donate:focus-visible,
  .vision-card:hover,
  .vision-card:focus-within,
  .contact-email-card:hover,
  .contact-email-link:hover,
  .contact-email-link:focus-visible {
    transform: none;
  }

  .privacy-main {
    padding-top: var(--header-height-scrolled);
  }

  .privacy-hero {
    padding: 2.25rem 0 1.45rem;
  }

  .privacy-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .privacy-updated {
    margin-top: 0.45rem;
    font-size: 0.82rem;
  }

  .privacy-content-section {
    padding: 1.4rem 0 2.6rem;
  }

  .privacy-content {
    padding: 1.1rem;
    border-left-width: 4px;
    border-radius: 14px;
  }

  .privacy-content h2 {
    margin-top: 1.35rem;
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .privacy-content p {
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-page-pad: 1rem;
    --mobile-section-y: 2.35rem;
  }

  .hero-layout {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 0.65rem);
    padding-bottom: 3rem;
  }

  .hero-content {
    gap: 0.74rem;
  }

  .hero-logo {
    width: clamp(146px, 40vw, 174px);
    margin-top: 0.4rem;
    margin-bottom: 0.1rem;
  }

  .hero h1 {
    font-size: clamp(1.42rem, 6.55vw, 1.78rem);
  }

  .hero-copy > p {
    font-size: 0.84rem;
    line-height: 1.36;
  }

  .hero-donation {
    margin-top: 0.35rem;
    padding: 0.68rem 0.62rem 0.58rem;
  }

  .hero-donation .donate-amounts {
    gap: 0.5rem;
  }

  .hero-donation .donate-amounts a {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .hero-donation .donate-disclaimer {
    font-size: 0.68rem;
  }

  .purpose-grid,
  .contact-grid {
    padding: 0.6rem;
  }

  .purpose-copy,
  .contact-email-card,
  .privacy-content {
    padding: 0.95rem;
  }

  .purpose-image {
    min-height: 170px;
  }

  .modal-panel {
    width: calc(100% - 1rem);
    border-radius: 16px;
  }

  .modal-content {
    padding: 1.25rem 1rem 1.1rem;
  }

  .modal-brand {
    padding: 1rem 3rem 0.85rem 1rem;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    height: 72px;
    background: #172f80;
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    position: relative;
    min-height: 72px;
    height: 72px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .menu-toggle {
    position: static !important;
    inset: auto !important;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
  }

  .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    position: static !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: clamp(92px, 26vw, 108px);
    max-height: none;
    pointer-events: auto;
    transform: none !important;
  }

  .home-page .site-header:not(.is-menu-open):not(.is-scrolled) .brand {
    position: static !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: clamp(92px, 26vw, 108px);
    max-height: none;
    opacity: 0;
    pointer-events: none;
    transform: none !important;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    width: 100%;
    max-height: none;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    width: 115%;
    max-height: none;
    object-fit: contain;
  }

  .mobile-header-donate {
    position: static !important;
    inset: auto !important;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    color: #fff;
    background: #e5232d;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .site-nav {
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --header-height-scrolled: 60px;
    --logo-width: 46px;
    --logo-width-scrolled: 46px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    height: 60px;
    min-height: 60px;
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    position: relative;
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 1rem;
  }

  .menu-toggle {
    position: absolute !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 1rem !important;
    z-index: 3;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    transform: translateY(-50%) !important;
    transition:
      background 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus,
  .menu-toggle:focus-visible,
  .menu-toggle:active,
  .site-header.is-menu-open .menu-toggle {
    transform: translateY(-50%) !important;
  }

  .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    position: absolute !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 2;
    width: 46px;
    max-width: 46px;
    height: auto;
    max-height: 40px;
    transform: translate(-50%, -50%) !important;
  }

  .home-page .site-header:not(.is-menu-open):not(.is-scrolled) .brand {
    position: absolute !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    width: 46px;
    max-width: 46px;
    max-height: 40px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) !important;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    width: 100%;
    max-width: 46px;
    max-height: 40px;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    width: 115%;
    max-height: none;
  }

  .mobile-header-donate {
    position: absolute !important;
    top: 50% !important;
    right: 1rem !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 3;
    width: 86px;
    min-height: 38px;
    padding: 0.58rem 0.78rem;
    font-size: 0.74rem;
    line-height: 1;
    transform: translateY(-50%);
  }

  .hero-logo {
    width: clamp(120px, 35vw, 138px);
    max-width: 138px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-layout {
    min-height: 0;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1.25rem;
  }

  .hero-content {
    min-height: 0;
    justify-content: flex-start;
    gap: 0.72rem;
  }

  .hero-donation {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  :root {
    --header-height: 84px;
    --header-height-scrolled: 84px;
    --header-padding-y: 0;
    --header-padding-y-scrolled: 0;
    --logo-width: clamp(160px, 20vw, 220px);
    --logo-width-scrolled: clamp(160px, 20vw, 220px);
    --header-logo-height: 72px;
    --header-logo-height-scrolled: 72px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 18px);
  }

  .container {
    width: 100%;
    max-width: none;
    padding-right: clamp(2rem, 6vw, 4rem);
    padding-left: clamp(2rem, 6vw, 4rem);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    height: var(--header-height);
    min-height: var(--header-height);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%),
      rgba(23, 47, 128, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    position: relative;
    height: var(--header-height);
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 152px;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-toggle {
    position: relative !important;
    inset: auto !important;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-grid;
    width: 48px;
    height: 48px;
    min-height: 48px;
    transform: none !important;
  }

  .menu-toggle:hover,
  .menu-toggle:focus,
  .menu-toggle:focus-visible,
  .menu-toggle:active,
  .site-header.is-menu-open .menu-toggle {
    transform: none !important;
  }

  .brand,
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    position: relative !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: var(--logo-width);
    max-width: var(--logo-width);
    max-height: var(--header-logo-height);
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    width: 100%;
    max-width: none;
    max-height: var(--header-logo-height);
    overflow: visible;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    position: static;
    width: 100%;
    max-height: var(--header-logo-height);
    object-fit: contain;
    transform: none;
  }

  .mobile-header-donate {
    position: relative !important;
    inset: auto !important;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-width: 126px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.05rem;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: clamp(2rem, 6vw, 4rem);
    left: clamp(2rem, 6vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.7rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
      rgba(23, 47, 128, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-shadow: none;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .nav-donate {
    width: 100%;
    min-width: 0;
    margin-top: 0.5rem;
    padding: 0.85rem 1.2rem;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .hero-bg {
    inset: -48px 0;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        104deg,
        rgba(23, 47, 128, 0.98) 0%,
        rgba(23, 47, 128, 0.9) 48%,
        rgba(23, 47, 128, 0.72) 100%
      ),
      linear-gradient(180deg, rgba(23, 47, 128, 0.08), rgba(23, 47, 128, 0.42));
  }

  .hero-layout {
    min-height: auto;
    justify-content: flex-start;
    align-items: center;
    padding-top: calc(var(--header-height) + clamp(3.8rem, 7vh, 5.6rem));
    padding-bottom: clamp(6rem, 9vh, 7.8rem);
  }

  .hero-content {
    width: min(100%, 880px);
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.45rem, 2.8vh, 2.15rem);
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 880px;
  }

  .hero-logo {
    display: none;
  }

  .hero h1 {
    width: min(100%, 880px);
    margin: 0 auto;
    font-size: clamp(3rem, 5.2vw, 4rem);
    line-height: 1;
    text-wrap: balance;
  }

  .hero h1 .headline-desktop {
    display: block;
  }

  .hero h1 .headline-mobile {
    display: none;
  }

  .headline-desktop span {
    white-space: normal;
  }

  .headline-rule {
    width: min(100%, 760px);
    height: 8px;
    margin: clamp(1.1rem, 2.1vw, 1.35rem) auto clamp(1.15rem, 2.2vw, 1.4rem);
  }

  .hero-copy > p {
    width: min(100%, 720px);
    margin: 0 auto;
    font-size: clamp(1.02rem, 1.75vw, 1.18rem);
    line-height: 1.55;
  }

  .hero-donation {
    width: min(100%, 760px);
    margin-top: 1.85rem;
    margin-bottom: 0;
    padding: clamp(0.95rem, 2vw, 1.15rem);
    text-align: left;
  }

  .hero-donation-header {
    margin-bottom: 0.88rem;
    padding-bottom: 0.75rem;
  }

  .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.68rem, 1.4vw, 0.85rem);
  }

  .hero-donation .donate-amounts a {
    min-height: 54px;
    padding: 0.75rem 0.65rem;
    font-size: clamp(0.92rem, 1.5vw, 1rem);
  }

  .hero-donation .donate-amounts a:last-child {
    grid-column: span 3;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.88rem;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .hero-scroll-cue {
    display: grid;
    right: 50%;
    bottom: 1.5rem;
    width: 46px;
    height: 46px;
    transform: translateX(50%);
  }

  .purpose-section,
  .vision-section,
  .leadership-section,
  .contact-section {
    padding-top: clamp(4rem, 6vw, 5.75rem);
    padding-bottom: clamp(4rem, 6vw, 5.75rem);
  }

  .purpose-grid,
  .leadership-grid,
  .contact-grid,
  .vision-section > .container {
    width: min(90vw, 980px);
    margin-inline: auto;
  }

  .purpose-grid {
    width: min(86vw, 940px);
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    overflow: hidden;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .purpose-copy,
  .contact-copy {
    padding: clamp(1.75rem, 3.8vw, 2.65rem);
  }

  .purpose-copy {
    order: initial;
    min-width: 0;
  }

  .purpose-image {
    order: initial;
    min-height: 0;
    height: 100%;
    max-height: 440px;
  }

  .purpose-image img,
  .leadership-image img {
    object-fit: cover;
  }

  .vision-section > .container {
    width: min(84vw, 880px);
    padding: clamp(1.45rem, 3.2vw, 2.1rem);
  }

  .vision-header {
    width: min(100%, 760px);
    margin-bottom: clamp(1.4rem, 3vw, 2rem);
  }

  .vision-header h2 {
    font-size: clamp(2.7rem, 5.6vw, 4rem);
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.2rem);
  }

  .vision-card {
    min-height: 0;
    padding: clamp(1.1rem, 2.2vw, 1.35rem);
  }

  .vision-icon {
    width: 46px;
    height: 46px;
  }

  .vision-card h3 {
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  }

  .vision-card p {
    font-size: clamp(0.92rem, 1.45vw, 0.98rem);
    line-height: 1.52;
  }

  .leadership-grid {
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
    gap: 1rem;
    padding: 1rem;
  }

  .leadership-image {
    aspect-ratio: 4 / 5;
    max-height: 360px;
  }

  .leadership-label {
    height: auto;
    min-height: 76px;
    padding: 1rem;
    white-space: normal;
  }

  .leadership-copy {
    padding: clamp(1.55rem, 3.4vw, 2.4rem);
  }

  .leadership-copy h2 {
    font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  }

  .leadership-bio p {
    font-size: clamp(0.96rem, 1.55vw, 1.02rem);
    line-height: 1.58;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2,
  .contact-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-email-card {
    width: min(100%, 680px);
    min-height: 0;
    justify-self: center;
    padding: clamp(1.35rem, 3vw, 1.9rem);
  }

  .contact-email-link {
    width: min(100%, 560px);
    justify-self: center;
  }

  .site-footer {
    padding: clamp(2rem, 4vw, 2.8rem) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.9rem;
    text-align: center;
  }

  .footer-logo {
    grid-row: auto;
    width: clamp(160px, 24vw, 210px);
  }

  .site-footer nav,
  .footer-contact {
    justify-content: center;
  }

  .site-footer nav {
    gap: 0.55rem 0.9rem;
  }

  .disclaimer {
    justify-self: center;
    max-width: 760px;
  }
}

@media (min-width: 768px) and (max-width: 899px) and (orientation: portrait) {
  .hero-content {
    width: min(100%, 740px);
  }

  .hero h1 {
    width: min(100%, 740px);
    font-size: clamp(2.75rem, 6.3vw, 3.55rem);
  }

  .hero-donation {
    width: min(100%, 700px);
  }

  .hero-donation .donate-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-donation .donate-amounts a:last-child {
    grid-column: span 2;
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-grid {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.62fr);
    gap: 0.75rem;
    padding: 0.8rem;
  }

  .purpose-copy {
    padding: clamp(1.15rem, 3.4vw, 1.55rem);
  }

  .purpose-copy .eyebrow {
    font-size: clamp(1.8rem, 4.4vw, 2.35rem);
  }

  .purpose-copy p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .purpose-image {
    max-height: 360px;
  }

  .vision-section > .container {
    width: min(84vw, 740px);
    padding: clamp(1.15rem, 3vw, 1.45rem);
  }

  .vision-card {
    padding: 1rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-figure {
    width: min(100%, 430px);
    justify-self: center;
  }

  .leadership-image {
    aspect-ratio: 16 / 10;
    max-height: 300px;
  }
}

.logo-crop,
.brand .logo-crop,
.site-header.is-scrolled .brand .logo-crop,
.site-header.is-menu-open .brand .logo-crop,
.site-header.static-header .brand .logo-crop,
.modal-logo.logo-crop,
.footer-logo.logo-crop {
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.logo-crop img,
.brand .logo-crop img,
.site-header.is-scrolled .brand .logo-crop img,
.site-header.is-menu-open .brand .logo-crop img,
.site-header.static-header .brand .logo-crop img,
.modal-logo.logo-crop img,
.footer-logo.logo-crop img {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none;
}

.brand .logo-crop {
  height: var(--header-logo-height);
}

.site-header.is-scrolled .brand .logo-crop,
.site-header.is-menu-open .brand .logo-crop,
.site-header.static-header .brand .logo-crop {
  height: var(--header-logo-height-scrolled);
}

.footer-logo.logo-crop,
.modal-logo.logo-crop {
  height: auto;
}

.footer-logo.logo-crop img,
.modal-logo.logo-crop img {
  height: auto;
}

.hero-logo.logo-crop {
  display: none;
  aspect-ratio: 1 / 1;
  overflow: visible;
}

.hero-logo.logo-crop img {
  position: static;
  inset: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transform: none;
}

@media (max-width: 768px) {
  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    height: 46px;
    max-width: none;
    max-height: 46px;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .hero-logo.logo-crop {
    display: inline-flex;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    height: var(--header-logo-height);
    max-height: var(--header-logo-height);
  }
}

@media (min-width: 1025px) {
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand {
    width: clamp(150px, 10vw, 190px);
    align-self: flex-start;
    margin-left: clamp(-1.9rem, -1.7vw, -1.35rem);
    transform: none;
  }

  .home-page
    .site-header:not(.is-scrolled):not(.is-menu-open)
    .brand
    .logo-crop {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .home-page
    .site-header:not(.is-scrolled):not(.is-menu-open)
    .brand
    .logo-crop
    img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Navigation reset: keep one predictable header system across orientations. */
.site-header,
.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header.static-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
}

.header-container,
.site-header.is-scrolled .header-container,
.site-header.is-menu-open .header-container,
.site-header.static-header .header-container {
  position: relative;
  width: 100%;
}

.brand,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand,
.home-page .site-header.is-scrolled .brand,
.home-page .site-header.is-menu-open .brand,
.site-header.static-header .brand {
  opacity: 1;
  pointer-events: auto;
}

.brand .logo-crop,
.site-header.is-scrolled .brand .logo-crop,
.site-header.is-menu-open .brand .logo-crop,
.site-header.static-header .brand .logo-crop {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  aspect-ratio: 1 / 1;
  overflow: visible;
}

.brand .logo-crop img,
.site-header.is-scrolled .brand .logo-crop img,
.site-header.is-menu-open .brand .logo-crop img,
.site-header.static-header .brand .logo-crop img {
  position: static;
  inset: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: none;
}

.brand .logo-crop picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1101px) {
  :root {
    --header-height: 132px;
    --header-height-scrolled: 88px;
    --logo-width: clamp(142px, 9.4vw, 172px);
    --logo-width-scrolled: clamp(86px, 6vw, 108px);
  }

  .site-header {
    height: var(--header-height);
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
      height 520ms cubic-bezier(0.22, 1, 0.36, 1),
      background 420ms ease,
      box-shadow 420ms ease,
      border-color 420ms ease,
      backdrop-filter 420ms ease;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    height: var(--header-height-scrolled);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%),
      rgba(23, 47, 128, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 4.5rem);
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .brand,
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 auto;
    width: var(--logo-width);
    max-width: var(--logo-width);
    margin: 0;
    align-self: center;
    transform: none !important;
    transition:
      width 560ms cubic-bezier(0.22, 1, 0.36, 1),
      max-width 560ms cubic-bezier(0.22, 1, 0.36, 1),
      margin-top 560ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 360ms ease;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-menu-open .brand,
  .site-header.static-header .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand {
    width: var(--logo-width-scrolled);
    max-width: var(--logo-width-scrolled);
    margin-top: 0;
    transform: none !important;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.45rem, 2.55vw, 3rem);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav a {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  }

  .site-nav .nav-donate {
    min-width: 178px;
    min-height: 48px;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-button);
    text-shadow: none;
  }

  .menu-toggle,
  .mobile-header-donate {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 82px;
    --header-height-scrolled: 82px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    height: var(--header-height);
    min-height: var(--header-height);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%),
      rgba(23, 47, 128, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    height: var(--header-height);
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .menu-toggle,
  .site-header.is-menu-open .menu-toggle {
    position: relative !important;
    inset: auto !important;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    transform: none !important;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    width: 21px;
    height: 2px;
    display: block;
    background: var(--white);
    border-radius: 999px;
    opacity: 1;
    transform: translateX(-50%);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    top: calc(50% - 7px);
  }

  .menu-toggle span:nth-child(2) {
    top: 50%;
  }

  .menu-toggle span:nth-child(3) {
    top: calc(50% + 7px);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }

  .brand,
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    position: relative !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: clamp(72px, 12vw, 104px);
    max-width: clamp(72px, 12vw, 104px);
    max-height: 58px;
    margin: 0;
    opacity: 1;
    transform: none !important;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    height: auto;
    max-height: 58px;
  }

  .mobile-header-donate {
    position: relative !important;
    inset: auto !important;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-width: 86px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: clamp(1rem, 4vw, 2.5rem);
    left: clamp(1rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.7rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
      rgba(23, 47, 128, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-shadow: none;
  }

  .site-nav .nav-donate {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-top: 0.35rem;
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 480px) {
  .brand,
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    width: 64px;
    max-width: 64px;
  }

  .mobile-header-donate {
    min-width: 82px;
    padding-right: 0.72rem;
    padding-left: 0.72rem;
  }
}

/* Landing logo spacing and phone navigation polish. */
@media (min-width: 1101px) {
  .home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand {
    align-self: flex-start;
    margin-top: clamp(2.6rem, 5vh, 4.5rem);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 78px;
    --header-height-scrolled: 78px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .site-header.static-header {
    height: var(--header-height);
    min-height: var(--header-height);
    background: #172f80;
  }

  .header-container,
  .site-header.is-scrolled .header-container,
  .site-header.is-menu-open .header-container,
  .site-header.static-header .header-container {
    max-width: none;
    height: var(--header-height);
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
    align-items: center;
    gap: 0;
    padding: 0.45rem 1rem;
  }

  .menu-toggle,
  .site-header.is-menu-open .menu-toggle {
    position: relative !important;
    inset: auto !important;
    grid-column: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: var(--white);
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    transform: none !important;
    z-index: 2;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    display: block;
    background: var(--white);
    border-radius: 999px;
    opacity: 1;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -7px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translate(-50%, 0);
  }

  .menu-toggle span:nth-child(3) {
    transform: translate(-50%, 7px);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .brand,
  .home-page .site-header.is-scrolled .brand,
  .home-page .site-header.is-menu-open .brand,
  .site-header.static-header .brand {
    grid-column: 2;
    justify-self: center;
    width: 105px;
    max-width: 105px;
    max-height: 58px;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    visibility: visible;
    transition: opacity 260ms ease;
  }

  .home-page .site-header .brand {
    width: 105px;
    max-width: 105px;
    transform: none !important;
    transition: opacity 260ms ease;
  }

  .home-page .site-header:not(.is-scrolled) .brand,
  .home-page .site-header:not(.is-scrolled).is-menu-open .brand {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
  }

  .home-page .site-header.is-scrolled .brand {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
  }

  .brand .logo-crop,
  .site-header.is-scrolled .brand .logo-crop,
  .site-header.is-menu-open .brand .logo-crop,
  .site-header.static-header .brand .logo-crop {
    height: auto;
    max-height: 58px;
  }

  .brand .logo-crop img,
  .site-header.is-scrolled .brand .logo-crop img,
  .site-header.is-menu-open .brand .logo-crop img,
  .site-header.static-header .brand .logo-crop img {
    width: 105px;
    height: auto;
    object-fit: contain;
  }

  .mobile-header-donate {
    grid-column: 3;
    justify-self: end;
    min-width: 82px;
    min-height: 40px;
    padding: 0.62rem 0.78rem;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .hero-content {
    row-gap: 0;
  }

  .hero-logo {
    margin-bottom: 0;
  }

  .hero h1 {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .donation-modal,
  .modal-backdrop,
  .modal-panel,
  .menu-toggle,
  .mobile-menu-toggle,
  .site-nav,
  .mobile-menu,
  .nav-logo,
  .modal-amounts a,
  .modal-primary,
  .nav-donate,
  .hero-submit,
  .hero-logo,
  .donate-amounts a,
  .donate-image,
  .purpose-grid,
  .leadership-grid,
  .vision-card,
  .contact-email-card,
  .button,
  .disclaimer {
    transition: none;
  }

  .hero-bg {
    transform: translate3d(0, 0, 0) scale(1.01);
    will-change: auto;
  }

  .home-page .swipe-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .vision-carousel.is-moving-next .vision-card.is-active,
  .vision-carousel.is-moving-previous .vision-card.is-active {
    animation: none;
  }

  .donation-modal.is-open .modal-panel:hover,
  .modal-amounts a:hover,
  .modal-primary:hover,
  .nav-donate:hover,
  .hero-submit:hover,
  .donate-amounts a:hover,
  .donate-image:hover,
  .purpose-grid:hover,
  .leadership-grid:hover,
  .vision-card:hover,
  .vision-card:focus-within,
  .contact-email-card:hover,
  .button:hover {
    transform: none;
  }
}

/* Rebuilt header/logo system. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 104px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    backdrop-filter 360ms ease;
}

body.is-scrolled .site-header,
.site-header.is-scrolled,
.site-header.static-header,
.site-header.is-menu-open {
  background: rgba(23, 47, 128, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-nav {
  position: static;
  inset: auto;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav-logo {
  width: 140px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transform-origin: left center;
  pointer-events: none;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-logo img {
  width: 140px;
  height: auto;
  max-width: none;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

body.is-scrolled .nav-logo,
.site-header.is-scrolled .nav-logo,
.site-header.static-header .nav-logo,
.site-header.is-menu-open .nav-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.home-page:not(.is-scrolled) .site-header:not(.is-menu-open) .nav-logo {
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  pointer-events: none;
}

.desktop-menu {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-donate {
  justify-self: end;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  padding: 0.9rem 1.35rem;
  font-weight: 900;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    box-shadow 220ms ease;
}

.home-page:not(.is-scrolled) .desktop-menu,
.home-page:not(.is-scrolled) .nav-donate {
  transform: translateY(14px);
}

body.is-scrolled .desktop-menu,
body.is-scrolled .nav-donate,
.site-header.is-scrolled .desktop-menu,
.site-header.is-scrolled .nav-donate,
.site-header.static-header .desktop-menu,
.site-header.static-header .nav-donate,
.site-header.is-menu-open .desktop-menu,
.site-header.is-menu-open .nav-donate {
  transform: translateY(0);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.hero-copy > .hero-logo {
  display: block;
  width: 200px;
  max-width: 200px;
  margin: 0 0 clamp(0.65rem, 1.1vw, 0.9rem);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: left center;
  pointer-events: auto;
  animation: heroLogoFadeIn 700ms ease both;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy > .hero-logo img {
  width: 200px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  display: block;
}

body.is-scrolled .hero-copy > .hero-logo {
  opacity: 0;
  transform: translateY(-14px) scale(0.88);
  pointer-events: none;
}

@keyframes heroLogoFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 72px;
    background: rgba(23, 47, 128, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .site-nav {
    position: static;
    inset: auto;
    max-width: none;
    min-height: 0;
    padding: 0 1rem;
    grid-template-columns: 52px minmax(0, 1fr) 76px;
    gap: 0.75rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu-toggle {
    position: relative;
    grid-column: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-logo,
  .home-page:not(.is-scrolled) .site-header:not(.is-menu-open) .nav-logo {
    grid-column: 2;
    justify-self: center;
    width: 112px;
    height: 54px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-logo img {
    width: 112px;
    max-height: 54px;
  }

  .desktop-menu {
    display: none;
  }

  .nav-donate {
    grid-column: 3;
    justify-self: end;
    padding: 0.7rem 0.95rem;
    border-radius: 12px;
    font-size: 0;
    font-weight: 800;
    transform: none;
  }

  .nav-donate::after {
    content: "Donate";
    font-size: 0.78rem;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem 1rem 1rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
      rgba(23, 47, 128, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

  .mobile-menu.is-open,
  .site-header.is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: var(--white);
    text-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-copy > .hero-logo {
    width: clamp(180px, 52vw, 240px);
    max-width: clamp(180px, 52vw, 240px);
  }

  .hero-copy > .hero-logo img {
    width: 100%;
    max-width: 100%;
  }
}

/* Isolated active header system. Legacy .site-* nav rules do not target these classes. */
body.modal-open .eon-header {
  pointer-events: none;
}

.eon-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 112px;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  transition:
    inset 720ms cubic-bezier(0.22, 1, 0.36, 1),
    width 720ms cubic-bezier(0.22, 1, 0.36, 1),
    background 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 720ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open {
  background: rgba(23, 47, 128, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.eon-nav {
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

@media (min-width: 769px) {
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open {
    top: 12px;
    right: clamp(1rem, 2vw, 1.75rem);
    left: clamp(1rem, 2vw, 1.75rem);
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.03)
      ),
      rgba(23, 47, 128, 0.78);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
    top: 0;
    right: 0;
    left: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page .hero-layout {
    justify-content: center;
    transform: translateX(clamp(-3rem, -3vw, -1.5rem));
  }

  .home-page .hero-content {
    transform: translateY(-72px);
  }

  .home-page .hero-donation {
    margin-top: clamp(1.65rem, 3vw, 2.35rem);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .eon-nav-logo {
    width: 200px;
    height: 86px;
    margin-left: -18px;
  }

  .eon-nav-logo img {
    width: 200px;
    max-height: 86px;
  }
}

.eon-nav-logo {
  width: 200px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  margin-left: -30px;
  transform: translate3d(0, 12px, 0) scale(0.88);
  transform-origin: left center;
  pointer-events: none;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 120ms;
}

.eon-nav-logo img {
  width: 200px;
  height: auto;
  max-width: none;
  max-height: 86px;
  object-fit: contain;
}

body.is-scrolled .eon-nav-logo,
.eon-header.is-scrolled .eon-nav-logo,
.eon-header.static-header .eon-nav-logo,
.eon-header.is-menu-open .eon-nav-logo {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.88);
  pointer-events: none;
}

.eon-desktop-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  opacity: 0;
  transform: translateY(78px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.eon-desktop-menu a {
  color: var(--white);
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.eon-nav-donate {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.48rem;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(78px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms ease,
    box-shadow 320ms ease;
}

body.is-scrolled .eon-desktop-menu,
body.is-scrolled .eon-nav-donate,
.eon-header.is-scrolled .eon-desktop-menu,
.eon-header.is-scrolled .eon-nav-donate,
.eon-header.static-header .eon-desktop-menu,
.eon-header.static-header .eon-nav-donate,
.eon-header.is-menu-open .eon-desktop-menu,
.eon-header.is-menu-open .eon-nav-donate {
  opacity: 1;
  transform: translateY(0);
}

.home-page.page-loading .eon-nav-logo,
.home-page.page-loading .eon-desktop-menu,
.home-page.page-loading .eon-nav-donate {
  opacity: 0;
}

.home-page:not(.page-loading) .eon-desktop-menu,
.home-page:not(.page-loading) .eon-nav-donate {
  opacity: 1;
}

.eon-menu-toggle,
.eon-mobile-menu {
  display: none;
}

.hero-copy > .eon-hero-logo {
  display: block;
  width: 200px;
  max-width: 200px;
  margin: 0 0 clamp(0.65rem, 1.1vw, 0.9rem) -14px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: left center;
  pointer-events: auto;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy > .eon-hero-logo img {
  width: 200px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

body.is-scrolled .hero-copy > .eon-hero-logo {
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(0.86);
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1280px) and (orientation: landscape) {
  .eon-nav {
    max-width: 1320px;
    padding: 0 clamp(1.25rem, 2.6vw, 2.4rem);
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: clamp(1rem, 1.8vw, 1.6rem);
  }

  .eon-nav-logo {
    width: 156px;
    height: 68px;
    margin-left: -14px;
  }

  .eon-nav-logo img {
    width: 156px;
    max-height: 68px;
  }

  .eon-desktop-menu {
    gap: 1rem;
    transform: translateY(78px);
  }

  .eon-nav-donate {
    padding: 0.84rem 1.08rem;
    transform: translateY(78px);
  }

  .home-page .hero-layout {
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--header-height) + clamp(1.5rem, 3vh, 2.2rem));
    padding-bottom: clamp(2.2rem, 4.4vh, 3rem);
  }

  .home-page .hero-content {
    width: min(100%, 1060px);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: clamp(0.9rem, 1.8vw, 1.3rem);
    transform: translateY(-10px);
  }

  .hero-copy {
    width: 100%;
    max-width: 860px;
  }

  .hero-copy > .eon-hero-logo {
    width: 160px;
    max-width: 160px;
    margin: 0 0 clamp(0.45rem, 0.9vw, 0.7rem) -8px;
  }

  .hero-copy > .eon-hero-logo img {
    width: 160px;
  }

  .home-page .hero h1 {
    width: min(100%, 820px);
    margin: 0;
    font-size: clamp(2.35rem, 4vw, 3.1rem);
    line-height: 1.04;
  }

  .headline-rule {
    width: min(100%, 760px);
    height: 6px;
    margin: clamp(0.7rem, 1.3vw, 0.9rem) 0 clamp(0.72rem, 1.4vw, 0.95rem);
  }

  .home-page .hero-copy > p {
    width: min(100%, 720px);
    font-size: clamp(1.02rem, 1.32vw, 1.12rem);
    line-height: 1.52;
  }

  .home-page .hero-donation {
    width: min(100%, 760px);
    justify-self: start;
    align-self: start;
    margin-top: clamp(0.35rem, 1vw, 0.75rem);
    transform: translateY(-14px);
    padding: clamp(1.05rem, 1.8vw, 1.35rem);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-donation-header {
    margin-bottom: 0.62rem;
    padding-bottom: 0.55rem;
  }

  .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .hero-donation .donate-amounts a:last-child {
    grid-column: span 3;
  }

  .hero-donation .donate-disclaimer {
    margin-top: 0.68rem;
  }

  .hero-scroll-cue {
    display: none;
  }

  .purpose-grid,
  .leadership-grid,
  .contact-grid,
  .vision-section > .container {
    width: min(92vw, 1160px);
    margin-inline: auto;
  }

  .purpose-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.92fr);
    gap: 1rem;
    padding: 1rem;
  }

  .purpose-copy {
    padding: clamp(1.35rem, 2.8vw, 2rem);
  }

  .purpose-image {
    max-height: 420px;
  }

  .vision-section > .container {
    padding: clamp(1.2rem, 2.4vw, 1.7rem);
  }

  .vision-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .vision-card {
    padding: 1rem;
  }

  .leadership-grid {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 1rem;
    padding: 1rem;
  }

  .leadership-image {
    aspect-ratio: 4 / 5;
    max-height: 380px;
  }

  .leadership-copy {
    padding: clamp(1.2rem, 2.8vw, 2rem);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .leadership-section {
    padding-top: clamp(2rem, 4.2vh, 2.8rem);
    padding-bottom: clamp(2.4rem, 4.8vh, 3.2rem);
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    width: min(100%, 1040px);
    padding: 1rem;
    gap: 0.9rem;
    align-items: stretch;
  }

  .leadership-grid:hover {
    transform: none;
    box-shadow: 0 20px 58px rgba(23, 47, 128, 0.1);
  }

  .leadership-figure {
    width: min(100%, 560px);
    justify-self: center;
    gap: 0.55rem;
  }

  .leadership-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .leadership-label {
    height: auto;
    min-height: 64px;
    white-space: normal;
    line-height: 1.15;
  }

  .leadership-copy {
    padding: clamp(1.5rem, 3vw, 2.1rem);
    border-left-width: 5px;
  }

  .leadership-copy h2 {
    font-size: clamp(2rem, 4.4vw, 3rem);
  }

  .leadership-bio {
    width: 100%;
    margin-top: 0.9rem;
  }

  .leadership-bio p {
    font-size: clamp(0.95rem, 1.2vw, 1.02rem);
    line-height: 1.56;
  }
}

@media (max-width: 768px) {
  .eon-header {
    height: 80px;
    background: rgba(23, 47, 128, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .eon-nav {
    max-width: none;
    position: relative;
    padding: 0 1rem;
    grid-template-columns: 48px minmax(0, 1fr) 58px;
    gap: 0.72rem;
    align-items: center;
  }

  .eon-menu-toggle {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .eon-menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    grid-column: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    justify-self: auto;
    width: 120px;
    margin-left: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
    pointer-events: none;
  }

  .eon-nav-logo img {
    width: 120px;
    max-height: 58px;
    margin-left: 0;
  }

  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .eon-desktop-menu {
    display: none;
  }

  .eon-nav-donate {
    grid-column: 3;
    align-self: center;
    padding: 0.74rem 0.96rem;
    font-size: 0.78rem;
    transform: none;
  }

  .eon-nav-donate::after {
    content: none;
  }

  .eon-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem 0.95rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      rgba(23, 47, 128, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .eon-mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.95rem;
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 900;
    text-transform: uppercase;
  }

  .eon-mobile-menu .eon-mobile-donate {
    background: var(--red);
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero-copy > .eon-hero-logo {
    width: clamp(132px, 40vw, 172px);
    max-width: clamp(132px, 40vw, 172px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy > .eon-hero-logo img {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .eon-header {
    height: 84px;
    background: rgba(23, 47, 128, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .eon-nav {
    max-width: none;
    position: relative;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    grid-template-columns: 56px minmax(0, 1fr) 92px;
    gap: 0.8rem;
    align-items: center;
  }

  .eon-menu-toggle {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .eon-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    grid-column: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    justify-self: auto;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
    pointer-events: none;
  }

  .eon-nav-logo {
    width: 132px;
    height: 62px;
    margin-left: 0;
  }

  .eon-nav-logo img {
    width: 132px;
    max-height: 62px;
    margin-left: 0;
  }

  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .eon-desktop-menu {
    display: none;
  }

  .eon-nav-donate {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    padding: 0.74rem 0.96rem;
    font-size: 0.78rem;
    transform: none;
    margin: 0;
  }

  .eon-nav-donate::after {
    content: none;
  }

  .eon-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem 0.95rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      rgba(23, 47, 128, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .eon-mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.95rem;
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 900;
    text-transform: uppercase;
  }

  .eon-mobile-menu .eon-mobile-donate {
    background: var(--red);
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
    font-weight: 900;
    text-transform: uppercase;
  }

  .home-page .hero-content {
    transform: translateY(-40px);
  }

  .home-page .hero-layout {
    justify-content: center;
  }

  .home-page .hero-donation {
    margin-top: clamp(1.1rem, 2.4vw, 1.8rem);
  }
}

@media (min-width: 768px) and (max-width: 1280px) and (orientation: landscape) {
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-desktop-menu,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-donate {
    transform: translateY(clamp(96px, 8vw, 120px));
  }
}

@media (min-width: 900px) and (max-width: 1366px) and (orientation: landscape) and (pointer: coarse) {
  .eon-header {
    height: 84px;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open {
    top: 12px;
    right: clamp(1rem, 2vw, 1.75rem);
    left: clamp(1rem, 2vw, 1.75rem);
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.03)
      ),
      rgba(23, 47, 128, 0.78);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }

  .eon-nav {
    max-width: 1320px;
    padding: 0 clamp(1rem, 2vw, 1.8rem);
    grid-template-columns: 144px minmax(0, 1fr) auto;
    gap: clamp(0.9rem, 1.4vw, 1.4rem);
  }

  .eon-nav-logo {
    width: 148px;
    height: 64px;
    margin-left: -10px;
  }

  .eon-nav-logo img {
    width: 148px;
    max-height: 64px;
  }

  .eon-menu-toggle {
    display: none;
  }

  .eon-mobile-menu {
    display: none;
  }

  .eon-desktop-menu {
    gap: clamp(1rem, 1.6vw, 1.8rem);
    transform: translateY(clamp(72px, 6vw, 96px));
  }

  .eon-nav-donate {
    padding: 0.8rem 1rem;
    transform: translateY(clamp(72px, 6vw, 96px));
  }

  .home-page .hero-layout {
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--header-height) + clamp(2.2rem, 4vh, 3.2rem));
    padding-bottom: clamp(2rem, 4vh, 2.8rem);
  }

  .home-page .hero-content {
    width: min(100%, 1080px);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
    transform: translateY(-8px);
  }

  .hero-copy {
    width: 100%;
    max-width: 820px;
  }

  .hero-copy > .eon-hero-logo {
    width: clamp(144px, 15vw, 164px);
    max-width: clamp(144px, 15vw, 164px);
    margin: 0 0 clamp(0.4rem, 0.8vw, 0.65rem) 0;
  }

  .hero-copy > .eon-hero-logo img {
    width: 100%;
    max-width: 100%;
  }

  .home-page .hero h1 {
    width: min(100%, 780px);
    margin: 0;
    font-size: clamp(2.2rem, 3.1vw, 2.95rem);
    line-height: 1.05;
  }

  .headline-rule {
    width: min(100%, 720px);
    height: 6px;
    margin: clamp(0.65rem, 1.2vw, 0.85rem) 0 clamp(0.65rem, 1.2vw, 0.9rem);
  }

  .home-page .hero-copy > p {
    width: min(100%, 690px);
    font-size: clamp(1rem, 1.22vw, 1.08rem);
    line-height: 1.5;
  }

  .home-page .hero-donation {
    width: min(100%, 740px);
    margin-top: clamp(0.35rem, 1vw, 0.8rem);
    transform: none;
    padding: 0.9rem;
  }
}

@media (min-width: 900px) and (max-width: 1366px) and (orientation: landscape) {
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-desktop-menu,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-donate {
    transform: translateY(clamp(112px, 8.5vw, 138px));
  }

  .home-page .hero-layout {
    padding-top: calc(var(--header-height) + clamp(2.4rem, 4.8vh, 3.4rem));
  }

  .home-page .hero-content {
    transform: translateY(-4px);
  }
}

/* Tablet landscape nav: use the mobile-landscape interaction pattern instead
   of the desktop menu bar so touch tablets keep the same navigation behavior. */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (pointer: coarse) {
  .eon-header {
    height: 76px;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }

  .eon-nav {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: clamp(0.9rem, 2.4vw, 1.25rem);
    gap: 0;
  }

  .eon-menu-toggle {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    display: inline-flex;
    z-index: 3;
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-donate {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    min-width: 88px;
    height: 38px;
    padding: 0 clamp(0.78rem, 1.8vw, 1rem);
    font-size: clamp(0.68rem, 1.55vw, 0.78rem);
    line-height: 1;
    white-space: nowrap;
    transform: none !important;
    opacity: 1 !important;
    margin: 0;
    z-index: 3;
  }

  .eon-nav-donate::after {
    content: none !important;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: auto;
    width: clamp(92px, 16vw, 150px);
    height: auto;
    max-width: calc(100vw - 220px);
    margin: 0;
    justify-self: auto;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    z-index: 2;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0;
    pointer-events: none;
  }

  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    pointer-events: auto;
  }

  .eon-nav-logo img {
    width: 100%;
    max-width: 100%;
    max-height: 56px;
    margin: 0;
  }

  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    position: absolute;
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    display: grid !important;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem 0.95rem;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      rgba(23, 47, 128, 0.99) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
  }

  .eon-mobile-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .eon-mobile-menu a,
  .eon-mobile-menu .eon-mobile-donate {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.95rem;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }

  .eon-mobile-menu .eon-mobile-donate {
    background: var(--red);
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
  }

  .eon-mobile-menu a:hover,
  .eon-mobile-menu a:focus-visible,
  .eon-mobile-menu .eon-mobile-donate:hover,
  .eon-mobile-menu .eon-mobile-donate:focus-visible {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Tablet portrait cleanup: center the landing mark and stop the intro card from
   forcing a cropped two-column image. */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .home-page .hero-content {
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    width: min(100%, 760px);
    display: grid;
    justify-items: center;
  }

  .hero-copy > .eon-hero-logo {
    width: clamp(178px, 28vw, 220px);
    max-width: clamp(178px, 28vw, 220px);
    margin: 0 auto clamp(0.7rem, 1.4vw, 1rem);
    transform-origin: center center;
  }

  .hero-copy > .eon-hero-logo img {
    width: 100%;
    max-width: 100%;
  }

  .home-page .hero h1,
  .headline-rule,
  .home-page .hero-copy > p,
  .home-page .hero-donation {
    width: min(100%, 760px);
    justify-self: center;
  }

  .home-page .hero h1 {
    font-size: clamp(2.7rem, 4vw, 3.8rem);
    line-height: 0.98;
  }

  .home-page .headline-rule {
    height: clamp(6px, 0.55vw, 8px);
    margin-top: clamp(0.55rem, 1vw, 0.85rem);
    margin-bottom: clamp(0.6rem, 1.1vw, 0.95rem);
  }

  .home-page .hero-copy > p {
    font-size: clamp(1.03rem, 1.55vw, 1.14rem);
    line-height: 1.42;
  }

  .home-page .hero-donation {
    padding: clamp(1rem, 1.8vw, 1.25rem);
  }

  .purpose-section {
    padding-top: clamp(1.5rem, 2.8vw, 2.15rem);
    padding-bottom: clamp(1rem, 2.2vw, 1.65rem);
  }

  .vision-section,
  .leadership-section,
  .contact-section {
    padding-top: clamp(1.2rem, 2.4vw, 1.85rem);
    padding-bottom: clamp(1.2rem, 2.4vw, 1.85rem);
  }

  .purpose-grid {
    width: min(88vw, 820px);
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  .purpose-grid:hover {
    transform: none;
  }

  .purpose-copy {
    min-height: 0;
    padding: clamp(1.55rem, 3.2vw, 2.15rem);
    border-left-width: 6px;
    border-radius: 14px 14px 0 0;
  }

  .purpose-copy .eyebrow {
    width: 100%;
    font-size: clamp(2.15rem, 5.4vw, 3.2rem);
  }

  .purpose-copy p:not(.eyebrow) {
    width: 100%;
    max-width: none;
    margin-right: 0;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.58;
  }

  .purpose-image {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 2.05 / 1;
    border-radius: 0 0 14px 14px;
  }

  .purpose-image img {
    object-position: 76% center;
  }
}

/* Responsive nav alignment lock: keep the nav logo centered on the viewport,
   independent of the hamburger and donate button widths. */
@media (max-width: 767px) {
  .eon-header {
    height: 76px;
  }

  .eon-nav {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: clamp(0.75rem, 4vw, 1rem);
    gap: 0;
  }

  .eon-menu-toggle {
    grid-column: 1;
    justify-self: start;
    z-index: 3;
  }

  .eon-nav-donate {
    grid-column: 3;
    justify-self: end;
    min-width: 78px;
    padding: 0.72rem 0.88rem;
    font-size: 0;
    transform: none;
    z-index: 3;
  }

  .eon-nav-donate::after {
    content: "Donate";
    font-size: 0.76rem;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: auto;
    width: clamp(92px, 27vw, 124px);
    height: auto;
    max-width: calc(100vw - 190px);
    margin: 0;
    justify-self: auto;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    z-index: 2;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0;
    pointer-events: none;
  }

  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    pointer-events: auto;
  }

  .eon-nav-logo img {
    width: 100%;
    max-width: 100%;
    max-height: 56px;
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .eon-header {
    height: 88px;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
    top: 12px;
    right: clamp(1rem, 2vw, 1.75rem);
    left: clamp(1rem, 2vw, 1.75rem);
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.03)
      ),
      rgba(23, 47, 128, 0.78);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }

  .eon-header.is-menu-open {
    border-bottom-color: rgba(255, 255, 255, 0.18);
    border-radius: 18px 18px 0 0;
  }

  .eon-nav {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) 106px;
    padding-inline: clamp(1rem, 3vw, 1.75rem);
    gap: 0;
  }

  .eon-menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    z-index: 3;
  }

  .eon-desktop-menu {
    display: none;
  }

  .eon-nav-donate {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    width: 100%;
    min-width: 92px;
    height: 44px;
    padding: 0 0.9rem;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    transform: none !important;
    opacity: 1;
    margin: 0;
    z-index: 3;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-donate,
  .home-page:not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-desktop-menu {
    opacity: 1;
    transform: none;
  }

  .eon-nav-donate::after {
    content: none;
    line-height: 1;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: auto;
    width: clamp(140px, 18vw, 190px);
    height: auto;
    max-width: calc(100vw - 250px);
    margin: 0;
    justify-self: auto;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    z-index: 2;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0;
    pointer-events: none;
  }

  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    pointer-events: auto;
  }

  .eon-nav-logo img {
    width: 100%;
    max-width: 100%;
    max-height: 72px;
    margin: 0;
  }

  .eon-mobile-menu {
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    padding: 0.65rem clamp(0.9rem, 2.4vw, 1.2rem) 1rem;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 18px 18px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02)
      ),
      rgba(23, 47, 128, 0.995);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transform: translateY(-1px);
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    transform: translateY(0);
  }

  .eon-mobile-menu a {
    border-radius: 10px;
  }
}

/* Tablet-only Meet Raja layout cleanup. */
@media (min-width: 768px) and (max-width: 1280px) and (orientation: landscape) {
  .leadership-section {
    padding-top: clamp(1.4rem, 2.8vw, 2.2rem);
    padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
  }

  .leadership-grid {
    width: min(94vw, 1140px);
    grid-template-columns: minmax(255px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(1rem, 1.8vw, 1.45rem);
    align-items: stretch;
    padding: clamp(0.9rem, 1.6vw, 1.1rem);
  }

  .leadership-figure {
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
    gap: 0.8rem;
  }

  .leadership-image {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .leadership-label {
    min-height: 64px;
    height: auto;
    padding: 0.95rem 1.05rem;
    font-size: clamp(0.95rem, 1.35vw, 1.12rem);
    line-height: 1.12;
    white-space: normal;
  }

  .leadership-copy {
    align-self: stretch;
    align-content: start;
    padding: clamp(1.4rem, 2.8vw, 2rem);
    border-left-width: 6px;
  }

  .leadership-copy h2 {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    line-height: 1.04;
    max-width: 14ch;
  }

  .leadership-bio {
    margin-top: clamp(0.9rem, 1.6vw, 1.2rem);
  }

  .leadership-bio p {
    font-size: clamp(0.92rem, 1.2vw, 1rem);
    line-height: 1.54;
  }

  .leadership-bio p + p {
    margin-top: 0.82rem;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .leadership-section {
    padding-top: clamp(1.2rem, 2.6vw, 1.9rem);
    padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
  }

  .leadership-grid {
    width: min(88vw, 820px);
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-figure {
    grid-area: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    gap: 0;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadership-image {
    width: 100%;
    max-height: none;
    aspect-ratio: 16 / 8.4;
    border-radius: calc(var(--radius-large) - 8px)
      calc(var(--radius-large) - 8px) 0 0;
    box-shadow: none;
  }

  .leadership-image img {
    object-position: center 34%;
  }

  .leadership-label {
    min-height: 58px;
    height: auto;
    padding: 0.95rem 1.25rem;
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
      var(--blue-dark);
    border-left-width: 6px;
    border-radius: 0;
    box-shadow: none;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.15;
    white-space: normal;
  }

  .leadership-copy {
    display: grid;
    grid-area: auto;
    padding: clamp(1.55rem, 3.4vw, 2.2rem);
    background: var(--blue-dark);
    border-left: 6px solid var(--red);
    border-left-width: 6px;
    border-radius: 0 0 calc(var(--radius-large) - 8px)
      calc(var(--radius-large) - 8px);
  }

  .leadership-copy h2 {
    grid-area: auto;
    font-size: clamp(2.25rem, 5.2vw, 3.35rem);
  }

  .leadership-bio {
    grid-area: auto;
    width: 100%;
    margin-top: clamp(0.85rem, 1.8vw, 1.15rem);
    max-height: none;
    overflow: visible;
    padding-top: 0;
    border-top: 0;
  }

  .leadership-bio::after {
    content: none;
  }

  .leadership-bio p {
    font-size: clamp(0.98rem, 1.65vw, 1.08rem);
    line-height: 1.55;
  }

  .leadership-bio p + p {
    margin-top: 0.85rem;
  }

  .leadership-toggle {
    display: none;
  }
}

/* Final nav visibility lock: hidden on the home hero, solid full-width after scroll. */
.eon-header,
body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open {
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1;
  transform: translateY(0);
}

.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
  background: transparent !important;
  border-color: transparent !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.eon-header {
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease !important;
}

.eon-mobile-menu,
.eon-header.is-menu-open .eon-mobile-menu {
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 767px) {
  .hero-bg::before {
    display: none;
  }

  .hero-bg::after {
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    background-image: url("swap5.webp");
    background-position: top right;
    background-size: cover;
    filter: blur(8px) saturate(1.03) contrast(1.02) brightness(0.88);
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(
        100deg,
        rgba(23, 47, 128, 0.7) 0%,
        rgba(23, 47, 128, 0.52) 52%,
        rgba(23, 47, 128, 0.34) 100%
      ),
      linear-gradient(180deg, rgba(23, 47, 128, 0.16), rgba(23, 47, 128, 0.42));
  }

  .hero-overlay::before {
    content: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .modal-close {
    color: var(--blue-dark);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.82);
  }

  .modal-close:hover,
  .modal-close:focus-visible {
    color: var(--blue-dark);
    background: var(--white);
    border-color: var(--white);
  }
}

@media (max-width: 767px) {
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 767px) {
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 767px) {
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Must remain last: landing nav fades in with the hero load sequence. */
.home-page.page-loading:not(.is-scrolled)
  .eon-header:not(.is-menu-open)
  .eon-desktop-menu,
.home-page.page-loading:not(.is-scrolled)
  .eon-header:not(.is-menu-open)
  .eon-nav-donate {
  opacity: 0 !important;
}

.home-page.page-loading:not(.is-scrolled)
  .eon-header:not(.is-menu-open)
  .eon-desktop-menu,
.home-page.page-loading:not(.is-scrolled)
  .eon-header:not(.is-menu-open)
  .eon-nav-donate {
  opacity: 0 !important;
}

.home-page.page-loading .eon-header:not(.is-menu-open) .eon-desktop-menu,
.home-page.page-loading .eon-header:not(.is-menu-open) .eon-nav-donate {
  opacity: 0 !important;
}

/* Final nav lock: no floating glass header at any breakpoint. */
.eon-header,
body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open,
.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.eon-mobile-menu,
.eon-header.is-menu-open .eon-mobile-menu {
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Final nav lock: no floating glass header at any breakpoint. */
.eon-header,
body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open,
.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.eon-mobile-menu,
.eon-header.is-menu-open .eon-mobile-menu {
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Solid full-width navigation bar override. */
.eon-header,
body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open,
.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: var(--blue-dark);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eon-header {
  transition:
    background 220ms ease,
    border-color 220ms ease;
}

.eon-nav {
  max-width: 1480px;
}

@media (min-width: 981px) {
  .eon-nav {
    padding-right: 0;
    column-gap: clamp(1.25rem, 1.8vw, 2rem);
  }

  .eon-desktop-menu {
    justify-self: end;
    align-self: center;
    gap: clamp(1.25rem, 1.8vw, 2rem);
    margin-top: 0;
  }

  .eon-nav-donate {
    margin-top: 0;
  }
}

.eon-mobile-menu {
  background: var(--blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Final homepage reveal and navigation hover treatments. */
.headline-rule {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.headline-rule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  box-shadow: 0 0 28px rgba(219, 31, 38, 0.34);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.page-loading .headline-rule::before {
  transform: scaleX(0);
}

.home-page:not(.page-loading) .headline-rule::before {
  transition-delay: 1340ms;
}

.eon-desktop-menu a,
.eon-mobile-menu a:not(.eon-mobile-donate) {
  position: relative;
}

.eon-desktop-menu a::after,
.eon-mobile-menu a:not(.eon-mobile-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.eon-mobile-menu a:not(.eon-mobile-donate)::after {
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.42rem;
}

.eon-desktop-menu a:hover::after,
.eon-desktop-menu a:focus-visible::after,
.eon-mobile-menu a:not(.eon-mobile-donate):hover::after,
.eon-mobile-menu a:not(.eon-mobile-donate):focus-visible::after {
  transform: scaleX(1);
}

.eon-nav-donate:hover,
.eon-nav-donate:focus-visible,
.eon-mobile-donate:hover,
.eon-mobile-donate:focus-visible {
  color: var(--blue-dark);
  background: #efb12d;
  box-shadow: 0 12px 28px rgba(239, 177, 45, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .headline-rule::before,
  .eon-desktop-menu a::after,
  .eon-mobile-menu a:not(.eon-mobile-donate)::after {
    transition: none;
  }

  .home-page.page-loading .headline-rule::before {
    transform: scaleX(1);
  }
}

/* Tablet portrait nav dropdown: keep the hamburger menu physically attached to the fixed header. */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  :root {
    --tablet-portrait-header-height: 88px;
    --tablet-portrait-header-top: 12px;
    --tablet-portrait-header-x: clamp(1rem, 2vw, 1.75rem);
  }

  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open {
    height: var(--tablet-portrait-header-height);
  }

  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open {
    top: var(--tablet-portrait-header-top);
    right: var(--tablet-portrait-header-x);
    left: var(--tablet-portrait-header-x);
    width: auto;
  }

  body.is-scrolled .eon-header:not(.is-menu-open),
  .eon-header.is-scrolled:not(.is-menu-open),
  .eon-header.static-header:not(.is-menu-open) {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    overflow: hidden;
  }

  .eon-header.is-menu-open {
    border-radius: 18px 18px 0 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    overflow: visible;
    transition:
      inset 720ms cubic-bezier(0.22, 1, 0.36, 1),
      width 720ms cubic-bezier(0.22, 1, 0.36, 1),
      background 720ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 720ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1),
      backdrop-filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    position: absolute;
    top: calc(100% - 8px);
    right: -1px;
    left: -1px;
    width: auto;
    padding-top: 1.15rem;
    z-index: 999;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 18px 18px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02)
      ),
      rgba(23, 47, 128, 0.995);
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.34);
    transform: translateY(-8px);
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Tablet portrait refinement: keep Meet Raja in the mobile content flow
   (title, profile card, bio) while sizing it for tablet. */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .eon-header.is-menu-open {
    border-radius: 18px 18px 0 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  }

  .eon-header.is-menu-open .eon-mobile-menu {
    top: calc(100% - 8px);
    right: -1px;
    left: -1px;
    border-top: 0;
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.34);
  }

  .leadership-grid {
    width: min(88vw, 820px);
    display: grid;
    grid-template-areas:
      "leadership-title"
      "leadership-profile"
      "leadership-bio";
    gap: 0;
    padding: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--white);
    background: var(--blue-dark);
    border-left: 6px solid var(--red);
    border-radius: var(--radius-large);
    box-shadow: 0 20px 58px rgba(23, 47, 128, 0.12);
    overflow: hidden;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-copy {
    display: contents;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .leadership-copy h2 {
    grid-area: leadership-title;
    margin: 0 0 clamp(0.9rem, 2vw, 1.25rem);
    font-size: clamp(2.55rem, 6vw, 4rem);
    line-height: 1;
    text-align: center;
  }

  .leadership-figure {
    grid-area: leadership-profile;
    width: min(100%, 620px);
    max-width: none;
    justify-self: center;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0.55rem;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  }

  .leadership-image {
    width: 100%;
    aspect-ratio: 16 / 8.8;
    max-height: 320px;
    border-radius: 11px 11px 0 0;
    box-shadow: none;
  }

  .leadership-image img {
    object-position: center 34%;
  }

  .leadership-label {
    min-height: 58px;
    height: auto;
    display: grid;
    place-items: center;
    padding: 0.85rem 0.9rem;
    color: var(--blue-dark);
    background: var(--white);
    border: 0;
    border-radius: 0 0 11px 11px;
    box-shadow: none;
    font-size: clamp(1rem, 2.3vw, 1.22rem);
    line-height: 1.12;
    white-space: normal;
  }

  .leadership-bio {
    grid-area: leadership-bio;
    width: 100%;
    max-height: none;
    margin-top: clamp(1rem, 2.2vw, 1.4rem);
    padding-top: clamp(0.95rem, 1.8vw, 1.15rem);
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .leadership-bio::after {
    content: none;
  }

  .leadership-bio p {
    font-size: clamp(0.98rem, 1.75vw, 1.12rem);
    line-height: 1.56;
  }

  .leadership-bio p + p {
    margin-top: 0.85rem;
  }

  .leadership-toggle {
    display: none;
  }
}

/* Final nav visibility lock: hidden on the home hero, solid full-width after scroll. */
.eon-header,
body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open {
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1;
  transform: translateY(0);
}

.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
  background: transparent !important;
  border-color: transparent !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

@media (min-width: 768px) {
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-desktop-menu,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    opacity: 1 !important;
    transform: translateY(clamp(4.25rem, 9vh, 6.25rem)) !important;
    pointer-events: auto !important;
  }
}

@media (min-width: 981px) {
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-desktop-menu,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    transform: translate(
      clamp(-0.75rem, -0.2vw, 0.25rem),
      clamp(7rem, 14vh, 9.5rem)
    ) !important;
  }
}

.eon-header {
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease !important;
}

.eon-mobile-menu,
.eon-header.is-menu-open .eon-mobile-menu {
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--blue-dark) !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait) {
  .hero-bg::before {
    display: none;
  }

  .hero-bg::after {
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    background-image: url("swap5.webp");
    background-position: top right;
    background-size: cover;
    filter: blur(8px) saturate(1.03) contrast(1.02) brightness(0.88);
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(
        100deg,
        rgba(23, 47, 128, 0.7) 0%,
        rgba(23, 47, 128, 0.52) 52%,
        rgba(23, 47, 128, 0.34) 100%
      ),
      linear-gradient(180deg, rgba(23, 47, 128, 0.16), rgba(23, 47, 128, 0.42));
  }

  .hero-overlay::before {
    content: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

.eon-header,
body.is-scrolled .eon-header,
.eon-header.is-scrolled,
.eon-header.static-header,
.eon-header.is-menu-open {
  background: rgba(23, 47, 128, 0.94) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
}

.home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .hero-bg::before {
    display: none;
  }

  .hero-bg::after {
    inset: -18% 0 0;
    width: auto;
    aspect-ratio: auto;
    background-image: url("swap5.webp");
    background-position: top right;
    background-size: cover;
    filter: blur(8px) saturate(1.03) contrast(1.02) brightness(0.88);
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }

  .donation-modal {
    padding: 0.7rem;
  }

  .modal-panel {
    width: min(94vw, 900px);
    max-height: calc(100svh - 1.4rem);
    grid-template-columns: minmax(150px, 0.3fr) minmax(0, 0.7fr);
    overflow: hidden;
    border-radius: 16px;
  }

  .donation-modal.is-open .modal-panel:hover {
    transform: translateY(0) scale(1);
  }

  .modal-close {
    top: 0.45rem;
    right: 0.45rem;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 1.12rem;
  }

  .modal-brand {
    min-height: 0;
    padding: 1rem 0.9rem;
  }

  .modal-logo {
    width: min(138px, 84%);
    margin-left: 0;
  }

  .modal-content {
    gap: 0.62rem;
    align-content: center;
    padding: 0.95rem 1.15rem;
  }

  .modal-content > * {
    width: min(100%, 540px);
  }

  .modal-eyebrow {
    font-size: 0.72rem;
  }

  .modal-headline {
    font-size: clamp(1.18rem, 3.6vw, 1.58rem);
    line-height: 1.06;
  }

  .modal-headline-line {
    display: block;
  }

  .modal-amounts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .modal-amounts a {
    min-height: 40px;
    border-radius: 10px;
    border-width: 1px;
    font-size: 0.86rem;
  }

  .modal-amounts a:last-child {
    grid-column: span 2;
  }

  .modal-disclaimer {
    margin-top: 0;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .actblue-express-mark {
    height: 1em;
  }

  .modal-primary {
    margin-top: 0.05rem;
    font-size: 0.78rem;
  }

  .modal-primary span:last-child {
    font-size: 1.12em;
  }

  .leadership-section {
    padding: clamp(0.8rem, 2vw, 1.1rem) 0;
  }

  .leadership-grid {
    width: min(96vw, 860px);
    grid-template-columns: minmax(205px, 260px) minmax(0, 1fr);
    align-items: start;
    gap: 0.25rem;
    padding: 0.55rem;
  }

  .leadership-figure {
    align-self: start;
    align-content: start;
    width: 100%;
    max-width: 260px;
    justify-self: start;
    margin-top: 0;
    gap: 0.18rem;
    padding: 0.32rem;
  }

  .leadership-image {
    aspect-ratio: 4 / 3;
    max-height: 165px;
  }

  .leadership-label {
    align-self: start;
    height: auto;
    min-height: 54px;
    padding: 0.68rem 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 1.25;
    white-space: normal;
  }

  .leadership-copy {
    display: grid;
    align-content: start;
    min-width: 0;
    padding: 0.7rem;
    background: var(--blue-dark);
    border-left: 5px solid var(--red);
    border-radius: calc(var(--radius-large) - 8px);
  }

  .leadership-copy h2 {
    font-size: clamp(1.45rem, 4.2vw, 2rem);
    line-height: 1;
    text-align: left;
  }

  .leadership-bio {
    position: relative;
    margin-top: 0.38rem;
    padding-top: 0.45rem;
    max-height: 4.9rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transition: max-height 220ms ease;
  }

  .leadership-bio::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.2rem;
    pointer-events: none;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(23, 47, 128, 0),
      var(--blue-dark) 76%
    );
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: none;
    overflow: visible;
  }

  .leadership-copy.is-expanded .leadership-bio::after {
    opacity: 0;
  }

  .leadership-bio p {
    font-size: clamp(0.78rem, 1.8vw, 0.9rem);
    line-height: 1.42;
  }

  .leadership-bio p + p {
    margin-top: 0.55rem;
  }

  .leadership-toggle {
    min-width: 108px;
    min-height: 36px;
    margin-top: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    justify-self: start;
    padding: 0.5rem 0.72rem;
    color: var(--blue-dark);
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .leadership-toggle svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .leadership-copy.is-expanded .leadership-toggle svg {
    transform: rotate(180deg);
  }
}

@media (min-width: 981px) {
  .home-page .hero-content {
    display: block;
    text-align: left;
  }

  .home-page .hero-copy {
    display: block;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(225px, 17vw, 285px);
    max-width: clamp(225px, 17vw, 285px);
    margin-bottom: clamp(0.8rem, 1.2vw, 1.05rem);
    margin-left: auto;
    margin-right: auto;
    transform: translateX(clamp(-5rem, -5vw, -2.5rem));
  }

  .home-page .hero-copy > .eon-hero-logo img {
    width: 100%;
    max-width: 100%;
  }

  .home-page .hero h1 {
    width: min(100%, 780px);
    font-size: clamp(2.45rem, 3.45vw, 3.6rem);
    line-height: 1.02;
    text-align: left;
  }

  .home-page .headline-rule {
    width: min(100%, 750px);
  }

  .home-page .hero-copy > p {
    width: min(100%, 725px);
    text-align: left;
  }

  .home-page .hero-donation {
    width: min(100%, 750px);
    justify-self: start;
  }
}

@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .eon-menu-toggle,
  .eon-mobile-menu {
    display: none !important;
  }

  .eon-nav {
    max-width: 1480px;
    padding: 0 clamp(1.5rem, 5vw, 5.5rem);
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
  }

  .eon-desktop-menu {
    display: flex;
    gap: 2rem;
    opacity: 1 !important;
    transform: translateY(clamp(7rem, 14vh, 9.5rem)) !important;
  }

  .eon-nav-donate {
    padding: 0.98rem 1.48rem;
    font-size: inherit;
    opacity: 1 !important;
    transform: translate(
      clamp(0.25rem, 1vw, 1.2rem),
      clamp(7rem, 14vh, 9.5rem)
    ) !important;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page .hero-layout {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + clamp(1rem, 2.2vh, 2rem));
    padding-bottom: clamp(5rem, 8vh, 6.5rem);
    transform: none;
  }

  .home-page .hero-content {
    width: min(860px, 100%);
    text-align: left;
    text-shadow: none;
    transform: translateY(-72px);
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    display: block;
  }

  .hero-copy > .eon-hero-logo {
    width: clamp(225px, 17vw, 285px);
    max-width: clamp(225px, 17vw, 285px);
    margin: 0 0 clamp(0.8rem, 1.2vw, 1.05rem) -14px;
  }

  .hero-copy > .eon-hero-logo img {
    width: 100%;
    max-width: 100%;
  }

  .home-page .hero h1 {
    width: min(100%, 780px);
    margin: 0;
    font-size: clamp(2.45rem, 3.45vw, 3.6rem);
    line-height: 1.02;
  }

  .headline-rule {
    width: min(100%, 750px);
    margin: clamp(0.85rem, 1.4vw, 1.15rem) 0 clamp(0.95rem, 1.6vw, 1.25rem);
  }

  .home-page .hero-copy > p {
    width: min(100%, 725px);
    font-size: clamp(1.08rem, 1.18vw, 1.18rem);
    line-height: 1.48;
  }

  .home-page .hero-donation {
    width: min(100%, 750px);
    margin-top: clamp(1.35rem, 2.6vw, 2.1rem);
    padding: clamp(1.05rem, 1.8vw, 1.35rem);
    transform: none;
  }

  .hero-side-image {
    position: absolute;
    top: 57%;
    right: clamp(-16rem, -13vw, -7rem);
    z-index: -1;
    width: clamp(600px, 58vw, 980px);
    display: block;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .home-page.page-loading .hero-side-image {
    transform: translate(48px, -50%);
  }

  .leadership-section {
    padding: clamp(1.4rem, 3vw, 2.4rem) 0 clamp(2rem, 4vw, 3.25rem);
    background: var(--main-section-bg);
  }

  .leadership-grid {
    width: min(100%, 1040px);
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(1.2rem, 2.4vw, 2rem);
    align-items: start;
    padding: clamp(0.9rem, 1.7vw, 1.2rem);
  }

  .leadership-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 470px;
  }

  .leadership-label {
    height: 118px;
    white-space: nowrap;
  }

  .leadership-copy {
    padding: clamp(2rem, 3.6vw, 3.2rem);
    border-left-width: 7px;
  }

  .leadership-copy h2 {
    font-size: clamp(2.3rem, 4.1vw, 4.4rem);
  }

  .leadership-bio {
    width: min(760px, 100%);
    margin-top: clamp(1rem, 1.8vw, 1.45rem);
  }
}

/* Final landing logo sizing pass. Keep this after the hero breakpoint rules. */
.home-page .hero-copy > .eon-hero-logo {
  position: relative;
  top: -42px;
  width: clamp(245px, 20vw, 360px);
  max-width: clamp(245px, 20vw, 360px);
  margin-bottom: calc(clamp(0.35rem, 0.7vw, 0.6rem) - 42px);
}

.home-page .hero-copy > .eon-hero-logo img {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .home-page .hero-donation-label {
    max-width: none;
    margin-inline: 0;
    color: var(--blue-dark);
    font-size: clamp(0.98rem, 3.8vw, 1.08rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.28;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero-donation-header {
    margin-bottom: 0.72rem;
    padding-bottom: 0.68rem;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: -16px;
    width: clamp(164px, 50vw, 210px);
    max-width: clamp(164px, 50vw, 210px);
    margin-bottom: calc(clamp(0.35rem, 1.4vw, 0.55rem) - 16px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .home-page .hero-copy > .eon-hero-logo {
    top: -20px;
    width: clamp(215px, 34vw, 270px);
    max-width: clamp(215px, 34vw, 270px);
    margin-bottom: calc(clamp(0.45rem, 1vw, 0.7rem) - 20px);
  }
}

@media (min-width: 900px) and (max-width: 1366px) and (orientation: landscape) and (pointer: coarse) {
  .home-page .hero-copy > .eon-hero-logo {
    top: -18px;
    width: clamp(174px, 18.5vw, 202px);
    max-width: clamp(174px, 18.5vw, 202px);
    margin-bottom: calc(clamp(0.35rem, 0.7vw, 0.55rem) - 18px);
  }
}

@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .home-page .hero-copy > .eon-hero-logo {
    top: -40px;
    width: clamp(270px, 20vw, 350px);
    max-width: clamp(270px, 20vw, 350px);
    margin-bottom: calc(clamp(0.35rem, 0.7vw, 0.6rem) - 40px);
  }
}

/* Final desktop hero balance: stronger slogan, tighter stack, shorter accent. */
@media (min-width: 981px) {
  .home-page .hero-scroll-cue {
    display: grid;
  }

  .home-page .hero-content {
    transform: translateY(-36px);
  }

  .home-page .hero-copy {
    width: min(100%, 750px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .home-page .hero h1 {
    width: min(100%, 750px);
    font-size: clamp(2rem, 2.45vw, 2.72rem);
    line-height: 0.98;
    font-weight: 900;
    white-space: nowrap;
    text-align: center;
  }

  .home-page .headline-rule {
    width: min(100%, 750px);
    height: clamp(6px, 0.52vw, 8px);
    margin: clamp(0.42rem, 0.7vw, 0.62rem) 0 clamp(0.45rem, 0.72vw, 0.64rem);
  }

  .home-page .hero-copy > p {
    width: min(100%, 750px);
    font-size: clamp(1rem, 1.05vw, 1.08rem);
    margin-bottom: 0;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
  }

  .home-page .hero-donation {
    width: min(100%, 750px);
    margin-top: clamp(0.6rem, 1vw, 0.85rem);
    padding: clamp(0.72rem, 1.05vw, 0.92rem);
    justify-self: center;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.55rem, 0.85vw, 0.75rem);
    padding-bottom: clamp(0.45rem, 0.7vw, 0.6rem);
  }

  .home-page .hero-donation .donate-amounts {
    gap: clamp(0.5rem, 0.8vw, 0.7rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: 54px;
    padding: 0.72rem;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: 0.55rem;
  }
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-content {
    transform: translateY(-42px);
    align-items: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(245px, 20vw, 360px);
    max-width: clamp(245px, 20vw, 360px);
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
}

@media (max-width: 980px) {
  .home-page .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-page .hero h1 {
    font-size: clamp(0.9rem, 4.6vw, 1.35rem);
    line-height: 1.05;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: nowrap;
  }
}

/* Final mobile Meet Raja cleanup. */
@media (max-width: 980px) {
  .leadership-bio p {
    text-align: left !important;
  }

  .purpose-copy .eyebrow::after,
  .leadership-copy h2::after,
  .leadership-label::before {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .home-page .hero h1 {
    font-size: clamp(2rem, 4vw, 2.35rem);
    line-height: 1.05;
  }

  .home-page .hero h1 .headline-desktop {
    display: none;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: nowrap;
  }

  .home-page .hero-donation-label {
    max-width: 52ch;
    margin: 0;
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    white-space: normal;
  }
}

/* Landscape landing-page layout reset.
   Keep these rules last so tablet and phone landscape do not inherit stacked
   portrait offsets or the desktop image overlap treatment. */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) {
  :root {
    --header-height: clamp(64px, 8vh, 82px);
    --header-height-scrolled: clamp(64px, 8vh, 82px);
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled {
    min-height: var(--header-height);
    background: rgba(23, 47, 128, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(7, 18, 58, 0.16);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .eon-nav {
    min-height: var(--header-height);
    max-width: 1480px;
    padding: 0 clamp(1.25rem, 3vw, 3rem);
    grid-template-columns: clamp(120px, 14vw, 170px) minmax(0, 1fr) auto;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo {
    width: clamp(104px, 13vw, 152px);
    height: clamp(48px, 7vh, 68px);
    margin: 0;
    opacity: 1;
    transform: none;
  }

  .eon-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .eon-desktop-menu {
    display: flex;
    justify-content: center;
    gap: clamp(0.9rem, 1.8vw, 1.65rem);
    opacity: 1 !important;
    transform: none !important;
  }

  .eon-desktop-menu a {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  }

  .eon-nav-donate {
    min-height: clamp(42px, 6vh, 52px);
    padding: 0.72rem clamp(0.95rem, 1.8vw, 1.35rem);
    font-size: clamp(0.72rem, 1.2vw, 0.88rem);
    opacity: 1 !important;
    transform: none !important;
  }

  .eon-menu-toggle,
  .eon-mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: 100svh;
    overflow: hidden;
  }

  .home-page .hero-layout {
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--header-height) + clamp(1rem, 3vh, 2rem));
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    transform: none;
  }

  .home-page .hero-content {
    width: 100%;
    max-width: min(900px, 88vw);
    display: block;
    text-align: left;
    transform: none;
  }

  .home-page .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: auto;
    width: clamp(150px, 15vw, 230px);
    max-width: clamp(150px, 15vw, 230px);
    margin: 0 0 clamp(0.45rem, 1.2vh, 0.85rem);
    transform: none;
  }

  .home-page .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1;
    white-space: nowrap;
  }

  .home-page .hero h1 .headline-desktop {
    display: block;
  }

  .home-page .hero h1 .headline-mobile {
    display: none;
  }

  .home-page .headline-rule {
    width: 100%;
    max-width: 100%;
    height: clamp(5px, 0.8vh, 8px);
    margin: clamp(0.45rem, 1.2vh, 0.8rem) 0 clamp(0.55rem, 1.5vh, 0.9rem);
  }

  .home-page .hero-donation {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(0.7rem, 1.8vh, 1.15rem);
    padding: clamp(0.7rem, 1.8vh, 1rem);
    transform: none;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.5rem, 1.3vh, 0.75rem);
    padding-bottom: clamp(0.45rem, 1.1vh, 0.65rem);
  }

  .home-page .hero-donation-label {
    max-width: 58ch;
    margin: 0;
    font-size: clamp(0.82rem, 1.4vw, 1rem);
    line-height: 1.32;
    letter-spacing: 0;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.45rem, 1vh, 0.65rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(40px, 5.2vh, 52px);
    padding: 0.55rem;
    font-size: clamp(0.82rem, 1.25vw, 0.98rem);
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: clamp(0.45rem, 1.1vh, 0.65rem);
    font-size: clamp(0.7rem, 1.1vw, 0.82rem);
    line-height: 1.3;
  }

  .hero-side-image,
  .home-page.page-loading .hero-side-image {
    display: none;
  }

  .home-page .hero-scroll-cue {
    display: none;
  }
}

@media (min-width: 1180px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) {
  .home-page .hero-layout {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) and (max-width: 1179px) and (orientation: landscape) and (hover: none) {
  .home-page .hero-layout {
    justify-content: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(130px, 14vw, 170px);
    max-width: clamp(130px, 14vw, 170px);
  }

  .home-page .hero h1 {
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  :root {
    --header-height: 58px;
    --header-height-scrolled: 58px;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.is-menu-open {
    min-height: var(--header-height);
    background: rgba(23, 47, 128, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: 0 10px 24px rgba(7, 18, 58, 0.16);
  }

  .eon-nav {
    min-height: var(--header-height);
    padding: 0 clamp(0.65rem, 2.5vw, 1.25rem);
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: center;
  }

  .eon-menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    width: clamp(72px, 14vw, 104px);
    height: 46px;
    margin: 0;
    opacity: 1;
    transform: none;
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-donate {
    min-height: 40px;
    padding: 0.62rem clamp(0.8rem, 2.2vw, 1rem);
    font-size: clamp(0.68rem, 1.8vw, 0.78rem);
    opacity: 1 !important;
    transform: none !important;
  }

  .hero {
    min-height: 100svh;
    overflow: visible;
  }

  .home-page .hero-layout {
    min-height: 100svh;
    display: block;
    padding-top: calc(var(--header-height) + 0.7rem);
    padding-bottom: 1rem;
    transform: none;
  }

  .home-page .hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(230px, 0.42fr) minmax(320px, 0.58fr);
    gap: clamp(0.75rem, 2.4vw, 1.2rem);
    align-items: center;
    transform: none;
  }

  .home-page .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: auto;
    width: clamp(86px, 17vw, 130px);
    max-width: clamp(86px, 17vw, 130px);
    margin: 0 0 0.35rem;
    transform: none;
  }

  .home-page .hero h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(0.95rem, 2.55vw, 1.35rem);
    line-height: 1.08;
  }

  .home-page .hero h1 .headline-desktop {
    display: none;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: normal;
  }

  .home-page .headline-rule {
    width: 100%;
    height: 4px;
    margin: 0.4rem 0 0;
  }

  .home-page .hero-donation {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: clamp(0.55rem, 1.5vw, 0.75rem);
    border-radius: 16px;
    transform: none;
  }

  .home-page .hero-donation-header {
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
  }

  .home-page .hero-donation-label {
    max-width: none;
    font-size: clamp(0.76rem, 1.8vw, 0.9rem);
    line-height: 1.22;
    letter-spacing: 0;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(34px, 8vh, 40px);
    padding: 0.4rem 0.32rem;
    font-size: clamp(0.72rem, 1.7vw, 0.86rem);
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: span 2;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: 0.38rem;
    font-size: clamp(0.56rem, 1.35vw, 0.68rem);
    line-height: 1.18;
  }

  .home-page .actblue-express-mark {
    width: 14px;
    height: 13px;
  }

  .hero-side-image,
  .home-page .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 700px) and (orientation: landscape) {
  .home-page .hero-content {
    grid-template-columns: minmax(185px, 0.38fr) minmax(300px, 0.62fr);
    gap: 0.65rem;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(76px, 15vw, 104px);
    max-width: clamp(76px, 15vw, 104px);
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  :root {
    --header-height: 84px;
    --header-height-scrolled: 84px;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.is-menu-open {
    min-height: var(--header-height);
    background: rgba(23, 47, 128, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(7, 18, 58, 0.16);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .eon-nav {
    min-height: var(--header-height);
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
  }

  .eon-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
  }

  .eon-desktop-menu {
    display: none;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(120px, 18vw, 150px);
    height: 64px;
    margin: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.94);
  }

  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
  }

  .eon-nav-logo img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .eon-nav-donate {
    min-height: 46px;
    padding: 0.78rem 1.1rem;
    font-size: 0.78rem;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-page .hero {
    min-height: 100svh;
    overflow: hidden;
    border-radius: clamp(22px, 3vw, 36px);
  }

  .home-page .hero-layout {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + clamp(1rem, 2.2vh, 1.6rem));
    padding-bottom: clamp(1.6rem, 3vh, 2.4rem);
    transform: none;
  }

  .home-page .hero-content {
    width: min(100%, 720px);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vh, 1.35rem);
    align-items: stretch;
    text-align: center;
    transform: none;
  }

  .home-page .hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: auto;
    width: clamp(210px, 32vw, 270px);
    max-width: clamp(210px, 32vw, 270px);
    margin: 0 0 clamp(0.75rem, 1.6vh, 1rem);
    transform: none;
  }

  .home-page .hero h1 {
    width: 100%;
    max-width: 700px;
    margin: 0;
    font-size: clamp(2.25rem, 4.4vw, 3rem);
    line-height: 1.04;
    text-align: center;
    white-space: nowrap;
  }

  .home-page .hero h1 .headline-desktop {
    display: none;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: nowrap;
  }

  .home-page .headline-rule {
    width: min(100%, 660px);
    height: 7px;
    margin: clamp(0.7rem, 1.5vh, 0.95rem) auto 0;
  }

  .home-page .hero-copy > p {
    display: none;
  }

  .home-page .hero-donation {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: clamp(1rem, 2.2vw, 1.25rem);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    transform: none;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.75rem, 1.5vh, 0.95rem);
    padding-bottom: clamp(0.65rem, 1.3vh, 0.85rem);
    text-align: left;
  }

  .home-page .hero-donation-label {
    max-width: 58ch;
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    line-height: 1.34;
    letter-spacing: 0;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.4vw, 0.85rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: 56px;
    padding: 0.8rem;
    font-size: 1rem;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.84rem;
    line-height: 1.32;
    text-align: left;
  }

  .home-page .hero-side-image,
  .home-page .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .leadership-section {
    padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(1.5rem, 4vw, 2.25rem);
  }

  .leadership-grid {
    width: min(100%, 720px);
    display: grid;
    grid-template-columns: minmax(185px, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(0.75rem, 2.5vw, 1.1rem);
    align-items: start;
    padding: clamp(0.55rem, 1.8vw, 0.8rem);
    border-radius: 18px;
    transform: none;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-figure {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
  }

  .leadership-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 150px;
    border-radius: 14px;
  }

  .leadership-label {
    height: auto;
    min-height: 0;
    padding: 0.62rem 0.55rem;
    border-left-width: 4px;
    border-radius: 12px;
    font-size: clamp(0.78rem, 1.8vw, 0.95rem);
    line-height: 1.18;
    overflow: visible;
    white-space: normal;
  }

  .leadership-copy {
    min-width: 0;
    display: block;
    padding: clamp(0.8rem, 2vw, 1rem);
    border-left-width: 5px;
    border-radius: 14px;
  }

  .leadership-copy h2 {
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    line-height: 1;
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    width: 100%;
    max-height: none;
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .leadership-bio::after,
  .leadership-copy.is-expanded .leadership-bio::after {
    display: none;
  }

  .leadership-bio p {
    font-size: clamp(0.78rem, 1.65vw, 0.9rem);
    line-height: 1.38;
  }

  .leadership-bio p + p {
    margin-top: 0.48rem;
  }

  .leadership-toggle {
    display: none;
  }
}

@media (max-width: 700px) and (orientation: landscape) {
  .leadership-grid {
    width: min(100%, 640px);
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.66fr);
    gap: 0.65rem;
  }

  .leadership-image {
    max-height: 128px;
  }

  .leadership-label {
    font-size: clamp(0.7rem, 1.7vw, 0.84rem);
  }

  .leadership-copy {
    padding: 0.72rem;
  }

  .leadership-bio p {
    font-size: clamp(0.7rem, 1.55vw, 0.82rem);
    line-height: 1.34;
  }
}

/* Mobile landscape rebuild: short viewports need a readable scroll layout,
   not compressed hero art or clipped cards. Keep this as the final layer. */
@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  :root {
    --header-height: 56px;
    --header-height-scrolled: 56px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    overflow-x: hidden;
  }

  .container {
    max-width: none;
    padding-right: clamp(0.9rem, 3vw, 1.35rem);
    padding-left: clamp(0.9rem, 3vw, 1.35rem);
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.is-menu-open {
    min-height: var(--header-height);
    background: rgba(23, 47, 128, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: 0 8px 22px rgba(7, 18, 58, 0.18);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }

  .eon-nav {
    min-height: var(--header-height);
    height: var(--header-height);
    padding: 0 clamp(0.75rem, 2.5vw, 1.25rem);
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
  }

  .eon-menu-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 12px;
  }

  .eon-menu-toggle span {
    width: 18px;
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: static;
    width: clamp(78px, 13vw, 108px);
    height: 44px;
    margin: 0;
    justify-self: center;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .home-page:not(.is-scrolled) .eon-header .eon-nav-logo {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
  }

  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .eon-nav-logo img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .eon-nav-donate {
    align-self: center;
    min-height: 0;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(0.78rem, 2vw, 1rem);
    border-radius: 12px;
    font-size: clamp(0.68rem, 1.55vw, 0.78rem);
    line-height: 1;
    opacity: 1 !important;
    transform: none !important;
  }

  .eon-mobile-menu {
    top: var(--header-height);
    right: clamp(0.75rem, 2.5vw, 1.25rem);
    left: clamp(0.75rem, 2.5vw, 1.25rem);
    max-height: calc(100svh - var(--header-height) - 0.75rem);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    overflow: visible;
    border-width: 8px;
    border-radius: 22px;
  }

  .hero-bg,
  .hero-overlay {
    position: absolute;
  }

  .home-page .hero-layout {
    min-height: auto;
    display: block;
    padding-top: calc(var(--header-height) + clamp(0.85rem, 2.4vw, 1.15rem));
    padding-bottom: clamp(1rem, 2.6vw, 1.25rem);
    transform: none;
  }

  .home-page .hero-content {
    width: min(100%, 860px);
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(360px, 0.66fr);
    gap: clamp(0.9rem, 2.8vw, 1.35rem);
    align-items: center;
    transform: none;
  }

  .home-page .hero-copy {
    min-width: 0;
    display: block;
    text-align: left;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: auto;
    width: clamp(112px, 17vw, 150px);
    max-width: clamp(112px, 17vw, 150px);
    margin: 0 0 0.5rem;
    transform: none;
  }

  .home-page .hero h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(1.05rem, 2.45vw, 1.42rem);
    line-height: 1.08;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero h1 .headline-desktop {
    display: none;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: normal;
  }

  .home-page .headline-rule {
    width: min(100%, 280px);
    height: 4px;
    margin: 0.5rem 0 0;
  }

  .home-page .hero-copy > p,
  .hero-side-image,
  .home-page .hero-scroll-cue {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: clamp(0.7rem, 1.9vw, 0.95rem);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    transform: none;
  }

  .home-page .hero-donation-header {
    margin-bottom: 0.58rem;
    padding-bottom: 0.52rem;
  }

  .home-page .hero-donation-label {
    max-width: none;
    margin: 0;
    font-size: clamp(0.82rem, 1.7vw, 0.98rem);
    line-height: 1.28;
    letter-spacing: 0;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.46rem;
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: 40px;
    padding: 0.45rem 0.35rem;
    font-size: clamp(0.72rem, 1.55vw, 0.86rem);
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: span 2;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: 0.52rem;
    font-size: clamp(0.6rem, 1.25vw, 0.7rem);
    line-height: 1.24;
  }

  .actblue-express-mark {
    width: 14px;
    height: 13px;
    vertical-align: -2px;
  }

  .purpose-section,
  .vision-section,
  .leadership-section {
    padding: clamp(1rem, 3vw, 1.35rem) 0;
  }

  .purpose-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
    padding: clamp(0.9rem, 2.5vw, 1.15rem);
  }

  .purpose-copy {
    padding: 0;
  }

  .purpose-copy p {
    font-size: clamp(0.88rem, 1.55vw, 0.98rem);
    line-height: 1.46;
  }

  .purpose-image {
    max-height: 190px;
    border-radius: 16px;
  }

  .vision-section > .container {
    padding: clamp(0.85rem, 2.4vw, 1.1rem);
    border-left-width: 5px;
    border-radius: 18px;
  }

  .vision-header {
    margin-bottom: 0.85rem;
  }

  .vision-header h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
  }

  .vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .vision-card {
    min-height: 0;
    padding: 0.8rem;
    gap: 0.45rem;
  }

  .vision-card h3 {
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  }

  .vision-card p {
    font-size: clamp(0.78rem, 1.45vw, 0.9rem);
    line-height: 1.38;
  }

  .leadership-grid {
    width: min(100%, 820px);
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(0.85rem, 2.6vw, 1.2rem);
    align-items: start;
    padding: clamp(0.7rem, 2vw, 0.95rem);
    border-radius: 18px;
    transform: none;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-figure {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
  }

  .leadership-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 168px;
    border-radius: 14px;
  }

  .leadership-label {
    height: auto;
    min-height: 0;
    padding: 0.68rem 0.6rem;
    border-left-width: 4px;
    border-radius: 12px;
    font-size: clamp(0.82rem, 1.65vw, 1rem);
    line-height: 1.2;
    overflow: visible;
    white-space: normal;
  }

  .leadership-copy {
    min-width: 0;
    display: block;
    padding: clamp(0.9rem, 2.2vw, 1.12rem);
    border-left-width: 5px;
    border-radius: 14px;
  }

  .leadership-copy h2 {
    font-size: clamp(1.65rem, 3.8vw, 2.3rem);
    line-height: 1;
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    width: 100%;
    max-height: none;
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .leadership-bio::after,
  .leadership-copy.is-expanded .leadership-bio::after {
    display: none;
  }

  .leadership-bio p {
    font-size: clamp(0.82rem, 1.5vw, 0.94rem);
    line-height: 1.42;
  }

  .leadership-bio p + p {
    margin-top: 0.48rem;
  }

  .leadership-toggle {
    display: none;
  }

  .site-footer {
    padding: 1.1rem 0;
  }
}

@media (max-width: 740px) and (max-height: 560px) and (orientation: landscape) {
  .home-page .hero-content {
    grid-template-columns: minmax(170px, 0.34fr) minmax(310px, 0.66fr);
    gap: 0.7rem;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(88px, 15vw, 112px);
    max-width: clamp(88px, 15vw, 112px);
  }

  .home-page .hero h1 {
    font-size: clamp(0.92rem, 2.2vw, 1.16rem);
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .vision-grid,
  .leadership-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .leadership-image {
    max-height: 180px;
  }
}

/* Final mobile-landscape nav lock. Keep this last so unscrolled hero nav rules
   cannot push Donate out of the bar. */
@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .eon-header,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  body.is-scrolled .eon-header,
  .home-page.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.is-menu-open {
    height: 56px !important;
    min-height: 56px !important;
  }

  .eon-nav {
    position: relative;
    height: 56px !important;
    min-height: 56px !important;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    padding: 0 clamp(0.75rem, 2.5vw, 1.25rem);
  }

  .eon-menu-toggle {
    grid-column: 1;
    align-self: center;
    justify-self: start;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    cursor: pointer;
  }

  .eon-menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 99px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(78px, 13vw, 108px);
    height: 44px;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .home-page:not(.is-scrolled) .eon-header .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header.is-menu-open .eon-nav-logo {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) scale(0.94);
  }

  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, -50%);
  }

  .eon-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-donate,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    grid-column: 3;
    align-self: center !important;
    justify-self: end;
    height: 38px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 clamp(0.78rem, 2vw, 1rem) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-top: 0 !important;
    border-radius: 12px;
    line-height: 1;
    opacity: 1 !important;
    transform: none !important;
  }

  .eon-nav-donate::after {
    content: none !important;
  }

  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    position: absolute;
    top: 56px !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: calc(100svh - 56px);
    display: grid !important;
    gap: 0.42rem;
    padding: 0.65rem clamp(0.9rem, 3vw, 1.25rem) 0.8rem;
    overflow-y: auto;
    background: var(--blue-dark) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .eon-mobile-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .eon-mobile-menu a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    line-height: 1;
  }
}

/* Final phone-landscape content lock across iPhone/Android landscape sizes. */
@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .home-page .hero {
    min-height: auto;
    overflow: visible;
  }

  .home-page .hero-layout {
    min-height: auto;
    padding-top: calc(56px + clamp(0.85rem, 2.4vw, 1.15rem));
    padding-bottom: clamp(1rem, 2.6vw, 1.3rem);
  }

  .home-page .hero-content {
    width: min(100%, 860px);
    grid-template-columns: minmax(220px, 0.36fr) minmax(360px, 0.64fr);
    gap: clamp(0.9rem, 2.6vw, 1.25rem);
    align-items: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(110px, 15vw, 140px);
    max-width: clamp(110px, 15vw, 140px);
  }

  .home-page .hero h1 {
    font-size: clamp(1.05rem, 2.35vw, 1.38rem);
    line-height: 1.08;
  }

  .home-page .hero-donation {
    padding: clamp(0.7rem, 1.8vw, 0.9rem);
  }

  .home-page .hero-donation-label {
    font-size: clamp(0.82rem, 1.6vw, 0.96rem);
  }

  .purpose-section,
  .vision-section,
  .leadership-section {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }

  .purpose-grid {
    width: min(100%, 820px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: clamp(0.95rem, 2.5vw, 1.2rem);
    border-radius: 18px;
  }

  .purpose-grid:hover,
  .leadership-grid:hover {
    transform: none;
  }

  .purpose-copy {
    padding: 0;
  }

  .purpose-copy .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.74rem;
  }

  .purpose-copy p {
    margin-top: 0.65rem;
    font-size: clamp(0.9rem, 1.55vw, 1rem);
    line-height: 1.48;
  }

  .purpose-image {
    display: none;
  }

  .vision-section > .container {
    width: min(100%, 860px);
    padding: clamp(0.9rem, 2.4vw, 1.15rem);
    border-left-width: 5px;
    border-radius: 18px;
  }

  .vision-header {
    margin-bottom: 0.9rem;
  }

  .vision-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.45rem);
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .vision-card {
    min-height: 0;
    padding: clamp(0.82rem, 2vw, 1rem);
  }

  .vision-icon {
    width: 42px;
    height: 42px;
  }

  .vision-icon svg {
    width: 25px;
    height: 25px;
  }

  .vision-card h3 {
    font-size: clamp(0.95rem, 1.85vw, 1.1rem);
  }

  .vision-card p {
    font-size: clamp(0.8rem, 1.45vw, 0.9rem);
    line-height: 1.4;
  }

  .leadership-grid {
    width: min(100%, 820px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding: clamp(0.7rem, 2vw, 0.95rem);
    border-radius: 18px;
  }

  .leadership-figure {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
    gap: 0.65rem;
    align-items: stretch;
    padding: 0;
  }

  .leadership-image {
    width: 100%;
    height: clamp(118px, 28vh, 152px);
    max-height: 152px;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .leadership-image img {
    object-fit: cover;
    object-position: center 18%;
  }

  .leadership-label {
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0.8rem;
    font-size: clamp(0.94rem, 2vw, 1.15rem);
    line-height: 1.18;
    white-space: normal;
  }

  .leadership-copy {
    padding: clamp(0.95rem, 2.3vw, 1.2rem);
    border-left-width: 5px;
    border-radius: 14px;
  }

  .leadership-copy h2 {
    font-size: clamp(1.7rem, 4vw, 2.35rem);
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    max-height: none;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    overflow: visible;
  }

  .leadership-bio p {
    font-size: clamp(0.86rem, 1.58vw, 0.98rem);
    line-height: 1.48;
  }

  .leadership-bio p + p {
    margin-top: 0.6rem;
  }

  .leadership-toggle {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: minmax(100px, 0.22fr) minmax(0, 1fr);
    gap: 0.75rem 1rem;
  }

  .footer-logo {
    width: clamp(96px, 16vw, 128px);
  }
}

@media (max-width: 760px) and (max-height: 560px) and (orientation: landscape) {
  .home-page .hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    justify-items: center;
  }

  .home-page .hero-copy {
    width: min(100%, 460px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(92px, 15vw, 118px);
    max-width: clamp(92px, 15vw, 118px);
    margin: 0 0 0.35rem;
  }

  .home-page .hero h1 {
    font-size: clamp(1.05rem, 3.05vw, 1.28rem);
    line-height: 1.08;
    text-align: center;
  }

  .home-page .headline-rule {
    width: min(100%, 360px);
    margin: 0.45rem auto 0;
  }

  .home-page .hero-donation {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .home-page .hero-donation-label {
    font-size: clamp(0.82rem, 2.1vw, 0.94rem);
    line-height: 1.28;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .vision-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .purpose-grid {
    width: min(100%, 560px);
    padding: 0.9rem;
  }

  .purpose-copy .eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    line-height: 1;
  }

  .purpose-copy p {
    margin-top: 0.55rem;
    font-size: clamp(0.86rem, 2vw, 0.94rem);
    line-height: 1.42;
  }

  .leadership-figure {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
  }

  .leadership-image {
    width: 96px;
    height: 96px;
    max-height: none;
    aspect-ratio: 1;
    border-radius: 14px;
    justify-self: start;
  }

  .leadership-label {
    min-height: 96px;
    padding: 0.65rem 0.75rem;
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    justify-content: flex-start;
    text-align: left;
  }

  .leadership-copy {
    padding: 0.85rem;
  }

  .leadership-copy h2 {
    font-size: clamp(1.55rem, 4.6vw, 2rem);
  }

  .leadership-bio p {
    font-size: clamp(0.82rem, 1.95vw, 0.92rem);
    line-height: 1.42;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .footer-logo,
  .disclaimer {
    justify-self: center;
  }

  .site-footer nav,
  .footer-contact {
    justify-content: center;
  }
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .leadership-grid {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.8rem;
    border-left: 5px solid var(--red);
    border-radius: 18px;
  }

  .leadership-figure {
    width: 100%;
    display: grid;
    grid-template-columns: 136px minmax(0, max-content);
    gap: 0.75rem;
    align-items: center;
    justify-content: start;
    padding: 0;
  }

  .leadership-image {
    width: 136px;
    height: 136px;
    max-height: none;
    aspect-ratio: 1;
    border-radius: 14px;
    justify-self: start;
  }

  .leadership-image img {
    object-fit: cover;
    object-position: center 18%;
  }

  .leadership-label {
    width: min(270px, calc(100vw - 210px));
    min-height: 0;
    height: auto;
    padding: 0.7rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-left-width: 0;
    border-radius: 12px;
    font-size: clamp(0.92rem, 1.95vw, 1.08rem);
    line-height: 1.18;
    text-align: left;
    white-space: normal;
  }

  .leadership-copy {
    padding: 0.9rem;
    border-left-width: 0;
    border-radius: 14px;
  }

  .leadership-copy h2 {
    font-size: clamp(1.6rem, 4vw, 2.15rem);
  }

  .leadership-bio {
    position: relative;
    max-height: 5.6rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    overflow: hidden;
  }

  .leadership-bio::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.25rem;
    display: block;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(23, 47, 128, 0),
      var(--blue-dark) 78%
    );
    pointer-events: none;
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: none;
    overflow: visible;
  }

  .leadership-copy.is-expanded .leadership-bio::after {
    display: none;
  }

  .leadership-bio p {
    font-size: clamp(0.82rem, 1.65vw, 0.94rem);
    line-height: 1.42;
  }

  .leadership-toggle {
    min-width: 104px;
    min-height: 36px;
    margin-top: 0.75rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.48rem 0.72rem;
    color: var(--blue-dark);
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .leadership-toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .leadership-copy.is-expanded .leadership-toggle svg {
    transform: rotate(180deg);
  }
}

@media (max-width: 700px) and (max-height: 560px) and (orientation: landscape) {
  .leadership-figure {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .leadership-image {
    width: 118px;
    height: 118px;
  }

  .leadership-label {
    width: auto;
  }
}

/* Phone landscape should read like mobile portrait: stacked, card-based, and calm. */
@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .home-page .hero-content {
    width: min(100%, 560px);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: stretch;
    margin: 0 auto;
  }

  .home-page .hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(118px, 18vw, 150px);
    max-width: clamp(118px, 18vw, 150px);
    margin: 0 0 0.45rem;
  }

  .home-page .hero h1 {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    line-height: 1.08;
    text-align: center;
  }

  .home-page .headline-rule {
    width: min(100%, 420px);
    margin: 0.5rem auto 0;
  }

  .home-page .hero-donation {
    width: 100%;
    margin: 0 auto;
  }

  .purpose-grid {
    width: min(100%, 560px);
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .purpose-copy {
    padding: clamp(1rem, 3vw, 1.2rem);
  }

  .purpose-copy .eyebrow {
    margin-bottom: 0.65rem;
    font-size: clamp(1.35rem, 4.4vw, 1.8rem);
    line-height: 1.05;
    text-align: center;
  }

  .purpose-copy p:not(.eyebrow) {
    margin: 0 0 0.78rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .purpose-image {
    display: block;
    min-height: 0;
    height: 160px;
    max-height: 160px;
    border-radius: 12px 12px 0 0;
  }

  .vision-section > .container,
  .leadership-grid {
    width: min(100%, 560px);
  }

  .vision-carousel {
    display: grid;
    gap: 0.9rem;
  }

  .vision-carousel .vision-grid {
    display: block;
  }

  .vision-carousel.is-ready .vision-card {
    display: none;
  }

  .vision-carousel .vision-card.is-active,
  .vision-carousel:not(.is-ready) .vision-card:first-child {
    display: grid;
  }

  .vision-carousel-controls {
    display: flex;
  }

  .leadership-grid {
    display: grid;
    grid-template-areas:
      "leadership-title"
      "leadership-profile"
      "leadership-bio"
      "leadership-toggle";
    gap: 0;
    padding: clamp(0.85rem, 3vw, 1.05rem);
    color: var(--white);
    background: var(--blue-dark);
    border-left: 5px solid var(--red);
    border-radius: 16px;
  }

  .leadership-copy {
    display: contents;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .leadership-copy h2 {
    grid-area: leadership-title;
    font-size: clamp(1.7rem, 5vw, 2.25rem);
    line-height: 1.04;
    text-align: center;
  }

  .leadership-figure {
    grid-area: leadership-profile;
    width: min(100%, 300px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: center;
    margin-top: 0.8rem;
    padding: 0.45rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(23, 47, 128, 0.16);
  }

  .leadership-image {
    width: 100%;
    height: 150px;
    max-height: 150px;
    aspect-ratio: auto;
    border-radius: 11px 11px 0 0;
    box-shadow: none;
  }

  .leadership-label {
    width: 100%;
    height: auto;
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    display: grid;
    place-items: center;
    color: var(--blue-dark);
    background: transparent;
    border: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    font-size: clamp(0.9rem, 2.7vw, 1.04rem);
    line-height: 1.14;
    text-align: center;
    white-space: normal;
  }

  .leadership-bio {
    grid-area: leadership-bio;
    position: relative;
    width: 100%;
    max-height: 8.8rem;
    margin-top: 0.85rem;
    padding-top: 0.8rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transition: max-height 280ms ease;
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: 90rem;
    overflow: visible;
  }

  .leadership-bio::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.8rem;
    display: block;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(23, 47, 128, 0),
      var(--blue-dark) 72%
    );
    pointer-events: none;
  }

  .leadership-copy.is-expanded .leadership-bio::after {
    opacity: 0;
  }

  .leadership-bio p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }

  .leadership-bio p + p {
    margin-top: 0.75rem;
  }

  .leadership-toggle {
    grid-area: leadership-toggle;
    min-width: 124px;
    min-height: 44px;
    margin-top: 0.85rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 0.42rem;
    padding: 0.68rem 0.9rem;
    color: var(--blue-dark);
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .purpose-copy .eyebrow::after,
  .leadership-copy h2::after,
  .leadership-label::before {
    content: none;
    display: none;
  }
}

@media (min-height: 521px) and (max-height: 560px) and (max-width: 960px) and (orientation: landscape) {
  .home-page .hero-layout {
    padding-top: calc(56px + 1.25rem);
    padding-bottom: 1.45rem;
  }

  .home-page .hero-content,
  .purpose-grid,
  .vision-section > .container,
  .leadership-grid {
    width: min(100%, 620px);
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(132px, 17vw, 165px);
    max-width: clamp(132px, 17vw, 165px);
  }

  .home-page .hero h1 {
    font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  }

  .purpose-image {
    height: 185px;
    max-height: 185px;
  }

  .leadership-figure {
    width: min(100%, 330px);
  }

  .leadership-image {
    height: 170px;
    max-height: 170px;
  }

  .leadership-bio {
    max-height: 9.8rem;
  }
}

/* Authoritative phone landscape layout: portrait-mobile design language. */
@media (max-width: 932px) and (orientation: landscape) {
  :root {
    --header-height: 56px;
    --header-height-scrolled: 56px;
  }

  .container {
    max-width: none;
    padding-right: clamp(0.9rem, 3vw, 1.35rem);
    padding-left: clamp(0.9rem, 3vw, 1.35rem);
  }

  .eon-header,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  body.is-scrolled .eon-header,
  .home-page.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.is-menu-open {
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    background: rgba(23, 47, 128, 0.98) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 0 !important;
  }

  .eon-nav {
    position: relative;
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    padding: 0 clamp(0.75rem, 2.5vw, 1.25rem);
  }

  .eon-menu-toggle {
    grid-column: 1;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-self: center;
    justify-self: start;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    cursor: pointer;
  }

  .eon-menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 99px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(78px, 13vw, 108px);
    height: 44px;
    margin: 0;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, -50%);
  }

  .home-page:not(.is-scrolled) .eon-header .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header.is-menu-open .eon-nav-logo {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) scale(0.94);
  }

  .eon-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .eon-nav-donate,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    grid-column: 3;
    height: 38px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 clamp(0.78rem, 2vw, 1rem) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: center !important;
    justify-self: end;
    border-top: 0 !important;
    border-radius: 12px;
    font-size: clamp(0.68rem, 1.55vw, 0.78rem);
    line-height: 1;
    opacity: 1 !important;
    transform: none !important;
  }

  .eon-nav-donate::after {
    content: none !important;
  }

  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    top: var(--header-height) !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: calc(100svh - var(--header-height));
    display: grid !important;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem 0.95rem;
    overflow-y: auto;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      rgba(23, 47, 128, 0.99) !important;
  }

  .eon-mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    color: var(--white);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .eon-mobile-menu a:hover,
  .eon-mobile-menu a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: auto;
    overflow: visible;
    border-width: 8px;
    border-radius: 22px;
  }

  .home-page .hero-layout {
    min-height: auto;
    display: block;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1.1rem;
    transform: none;
  }

  .home-page .hero-content {
    width: min(100%, 560px);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: stretch;
    margin: 0 auto;
    text-align: center;
    transform: none;
  }

  .home-page .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    top: auto;
    width: clamp(118px, 18vw, 150px);
    max-width: clamp(118px, 18vw, 150px);
    margin: 0 0 0.45rem;
    transform: none;
  }

  .home-page .hero h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    line-height: 1.08;
    text-align: center;
    white-space: normal;
  }

  .home-page .hero h1 .headline-desktop {
    display: none;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: normal;
  }

  .home-page .headline-rule {
    width: min(100%, 420px);
    height: 4px;
    margin: 0.5rem auto 0;
  }

  .home-page .hero-copy > p,
  .hero-side-image {
    display: none !important;
  }

  .home-page .hero-donation {
    width: 100%;
    margin: 0 auto;
    padding: clamp(0.72rem, 2vw, 0.95rem);
    border-radius: 16px;
    transform: none;
  }

  .home-page .hero-donation-label {
    font-size: clamp(0.82rem, 2vw, 0.96rem);
    line-height: 1.3;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.46rem;
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .home-page .hero-scroll-cue {
    display: none;
  }

  .purpose-section,
  .vision-section,
  .leadership-section {
    padding: clamp(1rem, 3vw, 1.4rem) 0;
  }

  .purpose-grid,
  .vision-section > .container,
  .leadership-grid {
    width: min(100%, 560px);
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
  }

  .purpose-image {
    order: 1;
    display: block;
    margin-bottom: 0.1rem;
    min-height: clamp(195px, 52vw, 280px);
    height: auto;
    max-height: none;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
  }

  .purpose-copy {
    order: 2;
    padding: clamp(1rem, 3vw, 1.2rem);
    border-radius: 0 0 12px 12px;
  }

  .purpose-copy .eyebrow {
    margin-bottom: 0.65rem;
    font-size: clamp(1.35rem, 4.4vw, 1.8rem);
    line-height: 1.05;
    text-align: center;
  }

  .purpose-copy p:not(.eyebrow) {
    margin: 0 0 0.78rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .vision-carousel {
    display: grid;
    gap: 0.9rem;
  }

  .vision-carousel .vision-grid {
    display: block;
  }

  .vision-carousel.is-ready .vision-card {
    display: none;
  }

  .vision-carousel .vision-card.is-active,
  .vision-carousel:not(.is-ready) .vision-card:first-child {
    display: grid;
  }

  .vision-carousel-controls {
    display: flex;
  }

  .leadership-grid {
    display: grid;
    grid-template-areas:
      "leadership-title"
      "leadership-profile"
      "leadership-bio"
      "leadership-toggle";
    gap: 0;
    padding: clamp(0.85rem, 3vw, 1.05rem);
    color: var(--white);
    background: var(--blue-dark);
    border-left: 5px solid var(--red);
    border-radius: 16px;
    justify-items: center;
  }

  .leadership-copy {
    display: contents;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .leadership-copy h2 {
    grid-area: leadership-title;
    width: 100%;
    font-size: clamp(1.7rem, 5vw, 2.25rem);
    line-height: 1.04;
    text-align: center;
  }

  .leadership-figure {
    grid-area: leadership-profile;
    width: min(100%, 300px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: center;
    justify-items: center;
    margin-top: 0.8rem;
    padding: 0.45rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(23, 47, 128, 0.16);
  }

  .leadership-image {
    width: 100%;
    height: 150px;
    max-height: 150px;
    aspect-ratio: auto;
    border-radius: 11px 11px 0 0;
    box-shadow: none;
  }

  .leadership-label {
    width: 100%;
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    display: grid;
    place-items: center;
    color: var(--blue-dark);
    background: transparent;
    border: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    font-size: clamp(0.9rem, 2.7vw, 1.04rem);
    line-height: 1.14;
    text-align: center;
    white-space: normal;
  }

  .leadership-bio {
    grid-area: leadership-bio;
    position: relative;
    width: 100%;
    max-height: 8.8rem;
    margin-top: 0.85rem;
    padding-top: 0.8rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    justify-self: center;
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: 90rem;
    overflow: visible;
  }

  .leadership-bio::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.8rem;
    display: block;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(23, 47, 128, 0),
      var(--blue-dark) 72%
    );
    pointer-events: none;
  }

  .leadership-copy.is-expanded .leadership-bio::after {
    opacity: 0;
  }

  .leadership-bio p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }

  .leadership-toggle {
    grid-area: leadership-toggle;
    min-width: 124px;
    min-height: 44px;
    margin-top: 0.85rem;
    display: inline-flex !important;
    justify-self: center;
  }
}

/* Final priorities accordion revamp. */
.vision-section {
  padding: clamp(2.6rem, 5vw, 4.6rem) 0;
  background:
    linear-gradient(180deg, rgba(23, 47, 128, 0.03), rgba(23, 47, 128, 0)),
    var(--main-section-bg);
}

.vision-section > .container {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--container-max));
  padding: clamp(1.25rem, 3vw, 2.35rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 7px solid var(--red);
  border-radius: var(--radius-large);
  box-shadow:
    0 28px 80px rgba(17, 25, 54, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vision-header {
  width: min(780px, 100%);
  margin: 0 auto clamp(1.1rem, 2.4vw, 1.75rem);
  text-align: center;
}

.vision-header h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 0.98;
}

.vision-header p {
  max-width: 720px;
  margin: clamp(0.75rem, 1.4vw, 1rem) auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.62;
}

.priority-accordion {
  width: min(100%, 1120px);
  display: grid;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(248, 250, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow:
    0 18px 46px rgba(7, 18, 58, 0.16),
    0 0 0 1px rgba(23, 47, 128, 0.04);
}

.priority-item {
  overflow: hidden;
  color: var(--blue-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 47, 128, 0.1);
  border-radius: 0;
  box-shadow: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
}

.priority-item:last-child {
  border-bottom: 0;
}

.priority-item:hover,
.priority-item:focus-within {
  background: rgba(23, 47, 128, 0.035);
  border-color: rgba(23, 47, 128, 0.14);
}

.priority-item.is-open {
  background: var(--white);
  border-color: rgba(219, 31, 38, 0.18);
}

.priority-item h3 {
  margin: 0;
}

.priority-trigger {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 38px;
  gap: clamp(0.65rem, 1.3vw, 0.9rem);
  align-items: center;
  padding: clamp(0.72rem, 1.25vw, 0.9rem) clamp(0.9rem, 1.8vw, 1.25rem);
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.priority-trigger:focus-visible {
  outline: 3px solid rgba(219, 31, 38, 0.42);
  outline-offset: -5px;
}

.priority-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: rgba(23, 47, 128, 0.06);
  border: 1px solid rgba(23, 47, 128, 0.08);
  border-radius: 11px;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.priority-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority-item.is-open .priority-icon {
  color: var(--red);
  background: rgba(219, 31, 38, 0.08);
  border-color: rgba(219, 31, 38, 0.16);
}

.priority-title {
  color: var(--blue-dark);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  font-weight: 900;
  line-height: 1.18;
}

.priority-toggle-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  background: transparent;
  border: 1px solid rgba(23, 47, 128, 0.13);
  border-radius: 999px;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 260ms ease;
}

.priority-toggle-icon::before,
.priority-toggle-icon::after {
  position: absolute;
  width: 13px;
  height: 2px;
  content: "";
  background: var(--blue-dark);
  border-radius: 999px;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.priority-toggle-icon::after {
  transform: rotate(90deg);
}

.priority-item.is-open .priority-toggle-icon {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: rotate(180deg);
}

.priority-item.is-open .priority-toggle-icon::before,
.priority-item.is-open .priority-toggle-icon::after {
  background: var(--white);
}

.priority-item.is-open .priority-toggle-icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.priority-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.priority-item.is-open .priority-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.priority-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.priority-panel p {
  max-width: 88ch;
  margin: 0;
  padding: 0 clamp(0.95rem, 1.9vw, 1.3rem) clamp(1rem, 1.8vw, 1.25rem)
    calc(clamp(0.9rem, 1.8vw, 1.25rem) + 44px + clamp(0.65rem, 1.3vw, 0.9rem));
  color: rgba(17, 25, 54, 0.78);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.66;
}

@media (prefers-reduced-motion: reduce) {
  .priority-item,
  .priority-icon,
  .priority-toggle-icon,
  .priority-toggle-icon::before,
  .priority-toggle-icon::after,
  .priority-panel {
    transition: none;
  }
}

@media (max-width: 980px) {
  .vision-section {
    padding: clamp(2.1rem, 6vw, 3.2rem) 0;
  }

  .vision-section > .container {
    width: min(100% - clamp(1rem, 4vw, 2rem), 760px);
    padding: clamp(1rem, 3vw, 1.45rem);
    border-left-width: 5px;
    border-radius: 20px;
  }

  .vision-header {
    margin-bottom: 1rem;
  }

  .vision-header h2 {
    font-size: clamp(2rem, 6.4vw, 3rem);
  }

  .vision-header p {
    font-size: clamp(0.88rem, 2.4vw, 0.98rem);
    line-height: 1.5;
  }

  .priority-accordion {
    border-radius: 15px;
  }

  .priority-trigger {
    min-height: 60px;
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 0.62rem;
    padding: 0.62rem 0.72rem;
  }

  .priority-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .priority-icon svg {
    width: 20px;
    height: 20px;
  }

  .priority-title {
    font-size: clamp(0.96rem, 2.9vw, 1.12rem);
    line-height: 1.2;
  }

  .priority-toggle-icon {
    width: 32px;
    height: 32px;
  }

  .priority-panel p {
    max-width: none;
    padding: 0 0.82rem 0.88rem calc(0.72rem + 38px + 0.62rem);
    font-size: clamp(0.86rem, 2.35vw, 0.94rem);
    line-height: 1.58;
  }
}

@media (max-width: 560px) {
  .vision-section > .container {
    width: min(100% - 1rem, 560px);
    padding: 0.85rem;
    border-left-width: 4px;
    border-radius: 16px;
  }

  .vision-header {
    margin-bottom: 0.85rem;
  }

  .vision-header p {
    text-align: left;
  }

  .priority-item {
    border-radius: 0;
  }

  .priority-trigger {
    min-height: 56px;
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 0.55rem;
    padding: 0.58rem 0.62rem;
  }

  .priority-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .priority-icon svg {
    width: 18px;
    height: 18px;
  }

  .priority-title {
    font-size: clamp(0.9rem, 4.2vw, 1.02rem);
  }

  .priority-toggle-icon {
    width: 30px;
    height: 30px;
  }

  .priority-panel p {
    padding: 0 0.68rem 0.78rem 0.68rem;
    font-size: 0.86rem;
    line-height: 1.52;
  }
}

/* Priorities card shell: match Who We Are and Meet Raja section width. */
.vision-section > .container {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--container-max));
  padding: clamp(1rem, 2.4vw, 1.6rem) clamp(1.05rem, 2.8vw, 2rem)
    clamp(1.1rem, 2.8vw, 1.8rem);
  background: var(--white);
  border: 1px solid rgba(23, 47, 128, 0.08);
  border-radius: var(--radius-large);
  box-shadow:
    0 24px 68px rgba(17, 25, 54, 0.14),
    0 0 0 1px rgba(23, 47, 128, 0.04);
}

.vision-header,
.priority-accordion {
  width: 100%;
}

.vision-header h2 {
  color: var(--blue-dark);
}

@media (max-width: 768px) {
  .vision-section > .container {
    width: min(100% - 1.2rem, 680px);
    padding: 0.9rem 0.9rem 1rem;
    border-radius: 18px;
  }
}

/* Priorities final shell: white outer card with blue inner panel like Meet Raja. */
.vision-section > .container {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--container-max));
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(17, 25, 54, 0.2),
    0 0 0 1px rgba(23, 47, 128, 0.06);
}

.vision-section > .container::before {
  display: none;
}

.vision-header,
.priority-accordion {
  width: 100%;
  max-width: none;
}

.vision-header {
  margin: 0;
  padding: clamp(1.45rem, 3vw, 2.4rem) clamp(1.35rem, 3vw, 2.35rem) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
    linear-gradient(145deg, #172f80 0%, #203d98 100%);
  border-left: 7px solid var(--red);
  border-radius: calc(var(--radius-large) - 8px) calc(var(--radius-large) - 8px)
    0 0;
}

.vision-header h2 {
  color: var(--white);
}

.priority-accordion {
  padding: clamp(0.35rem, 1vw, 0.75rem) clamp(1.35rem, 3vw, 2.35rem)
    clamp(1.2rem, 2.6vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
    linear-gradient(145deg, #172f80 0%, #203d98 100%);
  border-left: 7px solid var(--red);
  border-radius: 0 0 calc(var(--radius-large) - 8px)
    calc(var(--radius-large) - 8px);
}

.priority-item,
.priority-item:hover,
.priority-item:focus-within,
.priority-item.is-open {
  border-top-color: var(--red);
}

.priority-item:last-child {
  border-bottom-color: var(--red);
}

.priority-title,
.priority-item.is-open .priority-title,
.priority-item:not(.is-open) .priority-title {
  color: var(--white);
}

.priority-panel p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .vision-section > .container {
    width: min(100% - 1.2rem, 680px);
    padding: 0.72rem;
    border-radius: 18px;
  }

  .vision-header {
    padding: 1rem 0.9rem 0;
    border-left-width: 5px;
    border-radius: 14px 14px 0 0;
  }

  .priority-accordion {
    padding: 0.25rem 0.9rem 0.9rem;
    border-left-width: 5px;
    border-radius: 0 0 14px 14px;
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  .vision-section {
    padding: 1.45rem 0;
  }

  .vision-section > .container {
    width: min(100% - 1.2rem, 840px);
    padding: 0.9rem;
  }

  .vision-header {
    margin-bottom: 0.75rem;
  }

  .vision-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }

  .vision-header p {
    max-width: 680px;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .priority-accordion {
    border-radius: 14px;
  }

  .priority-trigger {
    min-height: 54px;
    grid-template-columns: 36px minmax(0, 1fr) 34px;
    gap: 0.55rem;
    padding: 0.52rem 0.62rem;
  }

  .priority-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .priority-icon svg {
    width: 19px;
    height: 19px;
  }

  .priority-title {
    font-size: 0.92rem;
  }

  .priority-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .priority-panel p {
    padding: 0 0.65rem 0.68rem calc(0.62rem + 36px + 0.55rem);
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

@media (max-width: 932px) and (orientation: landscape) and (max-height: 430px) {
  .home-page .hero-layout {
    padding-top: calc(var(--header-height) + 0.85rem);
    padding-bottom: 0.95rem;
  }

  .home-page .hero-content {
    gap: 0.75rem;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(100px, 16vw, 130px);
    max-width: clamp(100px, 16vw, 130px);
  }

  .home-page .hero h1 {
    font-size: clamp(1.08rem, 2.8vw, 1.42rem);
  }

  .purpose-image {
    min-height: clamp(180px, 46vw, 240px);
  }

  .leadership-image {
    height: 135px;
    max-height: 135px;
  }
}

/* Priority board pass: reduce the long stacked accordion feeling. */
.priority-accordion {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1vw, 0.85rem);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.priority-item {
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.priority-item:hover,
.priority-item:focus-within {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.priority-item.is-open {
  grid-column: 1 / -1;
  background: var(--white);
  border-color: rgba(219, 31, 38, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(7, 18, 58, 0.16);
}

.priority-trigger {
  min-height: 78px;
  grid-template-columns: 40px minmax(0, 1fr) 30px;
  gap: 0.65rem;
  align-items: center;
  padding: 0.78rem;
}

.priority-item.is-open .priority-trigger {
  min-height: 68px;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  padding: clamp(0.72rem, 1.25vw, 0.9rem) clamp(0.9rem, 1.8vw, 1.25rem);
}

.priority-item:not(.is-open) .priority-trigger {
  border-radius: 12px;
}

.priority-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.priority-icon svg {
  width: 21px;
  height: 21px;
}

.priority-item:not(.is-open) .priority-icon {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.priority-item.is-open .priority-icon {
  width: 44px;
  height: 44px;
}

.priority-title {
  font-size: clamp(0.92rem, 1.18vw, 1.08rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.priority-item:not(.is-open) .priority-title {
  color: var(--white);
}

.priority-item.is-open .priority-title {
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
}

.priority-toggle-icon {
  width: 28px;
  height: 28px;
  align-self: start;
}

.priority-item:not(.is-open) .priority-toggle-icon {
  border-color: rgba(255, 255, 255, 0.22);
}

.priority-item:not(.is-open) .priority-toggle-icon::before,
.priority-item:not(.is-open) .priority-toggle-icon::after {
  background: var(--white);
}

.priority-item.is-open .priority-toggle-icon {
  width: 34px;
  height: 34px;
  align-self: center;
}

.priority-panel p {
  max-width: 94ch;
  padding: 0 clamp(1rem, 2vw, 1.35rem) clamp(1rem, 1.8vw, 1.25rem)
    calc(clamp(0.9rem, 1.8vw, 1.25rem) + 44px + clamp(0.65rem, 1.3vw, 0.9rem));
}

@media (max-width: 980px) {
  .priority-accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .priority-trigger {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 0.52rem;
    padding: 0.62rem;
  }

  .priority-item.is-open .priority-trigger {
    min-height: 60px;
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    gap: 0.62rem;
    padding: 0.62rem 0.72rem;
  }

  .priority-icon,
  .priority-item.is-open .priority-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .priority-icon svg,
  .priority-item.is-open .priority-icon svg {
    width: 18px;
    height: 18px;
  }

  .priority-title {
    font-size: clamp(0.82rem, 2.65vw, 0.98rem);
    line-height: 1.15;
  }

  .priority-item.is-open .priority-title {
    font-size: clamp(0.96rem, 2.9vw, 1.12rem);
  }

  .priority-toggle-icon,
  .priority-item.is-open .priority-toggle-icon {
    width: 28px;
    height: 28px;
  }

  .priority-panel p {
    padding: 0 0.82rem 0.88rem calc(0.72rem + 38px + 0.62rem);
  }
}

@media (max-width: 560px) {
  .priority-accordion {
    gap: 0.5rem;
  }

  .priority-trigger {
    min-height: 78px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.45rem;
    padding: 0.52rem;
  }

  .priority-item.is-open .priority-trigger {
    min-height: 56px;
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 0.55rem;
    padding: 0.58rem 0.62rem;
  }

  .priority-item:not(.is-open) .priority-trigger {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    align-items: start;
  }

  .priority-icon {
    width: 30px;
    height: 30px;
  }

  .priority-item.is-open .priority-icon {
    width: 34px;
    height: 34px;
  }

  .priority-icon svg {
    width: 16px;
    height: 16px;
  }

  .priority-title {
    font-size: clamp(0.76rem, 3.55vw, 0.9rem);
    overflow-wrap: normal;
  }

  .priority-item.is-open .priority-title {
    font-size: clamp(0.9rem, 4.2vw, 1.02rem);
  }

  .priority-item:not(.is-open) .priority-toggle-icon {
    display: none;
  }

  .priority-panel p {
    padding: 0 0.68rem 0.78rem;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .home-page .hero-layout {
    justify-content: center;
  }

  .home-page .hero-content {
    width: min(100%, 560px);
    margin: 0 auto;
    align-items: center;
  }

  .home-page .hero-copy {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .home-page .hero-copy > .eon-hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .hero h1 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .home-page .headline-rule {
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .hero-donation {
    width: min(100%, 560px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .hero-donation-header {
    text-align: left;
  }
}

/* Minimal priorities accordion: text-first rows with red dividers. */
.vision-section {
  padding: clamp(2.4rem, 5vw, 4.2rem) 0;
  background: var(--main-section-bg);
}

.vision-section > .container {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--container-max));
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.vision-header {
  width: min(1080px, 100%);
  margin: 0 auto clamp(1.1rem, 2.3vw, 1.7rem);
  text-align: left;
}

.vision-header h2 {
  color: var(--blue-dark);
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.priority-accordion {
  width: min(1080px, 100%);
  display: block;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.priority-item,
.priority-item:hover,
.priority-item:focus-within,
.priority-item.is-open {
  display: block;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--red);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.priority-item:last-child {
  border-bottom: 2px solid var(--red);
}

.priority-icon {
  display: none;
}

.priority-trigger,
.priority-item.is-open .priority-trigger,
.priority-item:not(.is-open) .priority-trigger {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: clamp(0.8rem, 2vw, 1.35rem);
  align-items: center;
  padding: clamp(1rem, 1.9vw, 1.35rem) 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.priority-trigger:focus-visible {
  outline: 3px solid rgba(219, 31, 38, 0.38);
  outline-offset: 4px;
}

.priority-title,
.priority-item.is-open .priority-title,
.priority-item:not(.is-open) .priority-title {
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: normal;
}

.priority-toggle-icon,
.priority-item.is-open .priority-toggle-icon,
.priority-item:not(.is-open) .priority-toggle-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  align-self: center;
  justify-self: end;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: none;
}

.priority-toggle-icon::before,
.priority-toggle-icon::after,
.priority-item.is-open .priority-toggle-icon::before,
.priority-item.is-open .priority-toggle-icon::after,
.priority-item:not(.is-open) .priority-toggle-icon::before,
.priority-item:not(.is-open) .priority-toggle-icon::after {
  position: absolute;
  width: 19px;
  height: 2px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.priority-toggle-icon::after,
.priority-item:not(.is-open) .priority-toggle-icon::after {
  opacity: 1;
  transform: rotate(90deg);
}

.priority-item.is-open .priority-toggle-icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.priority-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease;
}

.priority-item.is-open .priority-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.priority-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.priority-panel p {
  max-width: 78ch;
  margin: 0;
  padding: 0 clamp(2.8rem, 5vw, 4.2rem) clamp(1.15rem, 2vw, 1.45rem) 0;
  color: rgba(17, 25, 54, 0.76);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.66;
}

@media (max-width: 768px) {
  .vision-section {
    padding: clamp(1.9rem, 6vw, 3rem) 0;
  }

  .vision-section > .container {
    width: min(100% - 1.4rem, 680px);
  }

  .vision-header {
    margin-bottom: 0.8rem;
  }

  .vision-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .priority-trigger,
  .priority-item.is-open .priority-trigger,
  .priority-item:not(.is-open) .priority-trigger {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 0.7rem;
    padding: 0.88rem 0;
  }

  .priority-title,
  .priority-item.is-open .priority-title,
  .priority-item:not(.is-open) .priority-title {
    font-size: clamp(1.04rem, 5vw, 1.35rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .priority-toggle-icon,
  .priority-item.is-open .priority-toggle-icon,
  .priority-item:not(.is-open) .priority-toggle-icon {
    width: 34px;
    height: 34px;
  }

  .priority-toggle-icon::before,
  .priority-toggle-icon::after,
  .priority-item.is-open .priority-toggle-icon::before,
  .priority-item.is-open .priority-toggle-icon::after,
  .priority-item:not(.is-open) .priority-toggle-icon::before,
  .priority-item:not(.is-open) .priority-toggle-icon::after {
    width: 17px;
  }

  .priority-panel p {
    max-width: none;
    padding: 0 0 0.98rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  .vision-carousel-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.88rem;
    padding-top: 0;
    padding-bottom: 0.05rem;
  }

  .vision-carousel-button {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
    padding: 0;
    color: var(--blue-dark);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .vision-carousel-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .vision-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
  }

  .vision-carousel-dot {
    width: 9px;
    height: 9px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.38);
    border: 0;
    border-radius: 999px;
  }

  .vision-carousel-dot.is-active {
    width: 22px;
    background: var(--red);
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    position: absolute;
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    display: grid !important;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem 0.95rem;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      rgba(23, 47, 128, 0.99) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
  }

  .eon-mobile-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .eon-mobile-menu a,
  .eon-mobile-menu .eon-mobile-donate {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.95rem;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }

  .eon-mobile-menu .eon-mobile-donate {
    background: var(--red);
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
  }

  .eon-mobile-menu a:hover,
  .eon-mobile-menu a:focus-visible,
  .eon-mobile-menu .eon-mobile-donate:hover,
  .eon-mobile-menu .eon-mobile-donate:focus-visible {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (pointer: coarse),
  (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) {
  .eon-header,
  body.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 0 !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
      rgba(23, 47, 128, 0.98) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .eon-nav {
    position: relative;
    height: 100% !important;
    min-height: 76px !important;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0;
    padding: 0 clamp(0.75rem, 2.5vw, 1.25rem);
  }

  .eon-menu-toggle {
    grid-column: 1;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    justify-self: start;
    align-self: center;
    z-index: 4;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
  }

  .eon-menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 99px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .eon-header.is-menu-open .eon-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .eon-desktop-menu {
    display: none !important;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: auto;
    width: clamp(92px, 16vw, 150px);
    height: auto;
    max-width: calc(100vw - 220px);
    margin: 0;
    justify-self: auto;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    z-index: 2;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0;
    pointer-events: none;
  }

  body.is-scrolled .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1;
    pointer-events: auto;
  }

  .eon-nav-logo img {
    width: 100%;
    max-width: 100%;
    max-height: 56px;
    margin: 0;
  }

  .eon-nav-donate,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    min-width: 88px;
    height: 38px;
    padding: 0 clamp(0.78rem, 1.8vw, 1rem);
    font-size: clamp(0.68rem, 1.55vw, 0.78rem);
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
    z-index: 4;
  }

  .eon-nav-donate::after {
    content: none !important;
  }

  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    position: absolute;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: grid !important;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem 0.95rem;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      rgba(23, 47, 128, 0.99) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
  }

  .eon-mobile-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .eon-mobile-menu.is-open,
  .eon-header.is-menu-open .eon-mobile-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .eon-mobile-menu a,
  .eon-mobile-menu .eon-mobile-donate {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.95rem;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }

  .eon-mobile-menu .eon-mobile-donate {
    background: var(--red);
    box-shadow: 0 10px 24px rgba(219, 31, 38, 0.24);
  }

  .eon-mobile-menu a:hover,
  .eon-mobile-menu a:focus-visible,
  .eon-mobile-menu .eon-mobile-donate:hover,
  .eon-mobile-menu .eon-mobile-donate:focus-visible {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Final portrait headline sizing: keep the one-line slogan aligned to the rule. */
@media (max-width: 767px) and (orientation: portrait) {
  .home-page .hero h1,
  .home-page .hero h1 .headline-mobile,
  .home-page .headline-rule {
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .hero h1 {
    font-size: clamp(1.16rem, 5vw, 1.34rem);
    line-height: 1.02;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: nowrap;
  }
}

/* Final mobile Meet Raja cleanup. */
@media (max-width: 980px) {
  .leadership-bio p {
    text-align: left !important;
  }

  .purpose-copy .eyebrow::after,
  .leadership-copy h2::after,
  .leadership-label::before {
    content: none !important;
    display: none !important;
  }
}

/* Final mobile heading cleanup: no decorative underlines in compact sections. */
@media (max-width: 980px) {
  .purpose-copy .eyebrow::after,
  .leadership-copy h2::after,
  .leadership-label::before {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .home-page .hero h1,
  .home-page .hero h1 .headline-mobile,
  .home-page .headline-rule {
    width: min(100%, 660px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .hero h1 {
    font-size: clamp(2.22rem, 1.56rem + 1.38vw, 2.5rem);
    line-height: 1;
  }

  .home-page .hero h1 .headline-mobile,
  .home-page .hero h1 .headline-mobile span {
    display: block;
    white-space: nowrap;
  }
}

/* Final iPad Mini portrait headline: keep landing slogan smaller and balanced. */
@media (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
  .home-page .hero h1,
  .home-page .hero h1 .headline-mobile,
  .home-page .headline-rule {
    width: min(100%, 600px);
  }

  .home-page .hero h1 {
    font-size: clamp(1.94rem, 2.85vw, 2.18rem);
    line-height: 1.02;
  }
}

/* Final phone-landscape nav lock: keep the bar from resizing after scroll. */
@media (max-width: 932px) and (max-height: 560px) and (orientation: landscape) {
  :root {
    --header-height: 56px;
    --header-height-scrolled: 56px;
  }

  .eon-header,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open),
  body.is-scrolled .eon-header,
  .home-page.is-scrolled .eon-header,
  .eon-header.is-scrolled,
  .eon-header.static-header,
  .eon-header.is-menu-open {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    max-height: var(--header-height) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 0 !important;
    background: rgba(23, 47, 128, 0.98) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .eon-nav {
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    max-height: var(--header-height) !important;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
    padding: 0 clamp(0.75rem, 2.5vw, 1.25rem) !important;
  }

  .eon-menu-toggle {
    width: 42px !important;
    height: 42px !important;
    align-self: center !important;
    justify-self: start !important;
  }

  .eon-nav-logo,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo,
  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(78px, 13vw, 108px) !important;
    height: 44px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
  }

  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-logo {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body.is-scrolled .eon-nav-logo,
  .home-page.is-scrolled .eon-header .eon-nav-logo,
  .eon-header.is-scrolled .eon-nav-logo,
  .eon-header.static-header .eon-nav-logo,
  .eon-header.is-menu-open .eon-nav-logo {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .eon-nav-logo img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain;
  }

  .eon-nav-donate,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    grid-column: 3;
    height: 38px !important;
    min-height: 38px !important;
    align-self: center !important;
    justify-self: end !important;
    margin: 0 !important;
    padding: 0 clamp(0.78rem, 2vw, 1rem) !important;
    font-size: clamp(0.68rem, 1.55vw, 0.78rem) !important;
    line-height: 1 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .eon-mobile-menu,
  .eon-header.is-menu-open .eon-mobile-menu {
    top: var(--header-height) !important;
    max-height: calc(100svh - var(--header-height)) !important;
  }
}

/* Final footer composition: keep footer text grouped. */
.site-footer .footer-grid {
  grid-template-columns: 1fr !important;
  justify-items: center;
  align-items: center;
  gap: clamp(0.55rem, 1.2vw, 0.85rem);
  text-align: center;
}

.site-footer .footer-logo {
  grid-row: auto !important;
  justify-self: center;
  margin: 0 0 0.1rem;
}

.site-footer nav,
.site-footer .footer-contact {
  width: min(100%, 760px);
  justify-content: center !important;
}

.site-footer nav {
  gap: 0.5rem 0.9rem;
}

.site-footer .footer-contact {
  gap: 0.25rem 0.75rem;
}

.site-footer .disclaimer,
.site-footer .disclaimer-note {
  grid-column: 1 !important;
  justify-self: center !important;
  max-width: 68ch;
  margin-top: 0.2rem;
  text-align: center !important;
}

.site-footer .disclaimer-note {
  margin-bottom: -0.05rem;
}

/* Final footer disclaimer weight: make the paid-for box read more substantial. */
.site-footer .disclaimer {
  padding: 0.82rem 1.05rem;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.32);
}

/* Final PC hero text alignment: center slogan against the donation panel. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero h1 {
    text-align: center;
  }

  .home-page .headline-rule {
    width: 100%;
  }
}

/* Final desktop donation prompt: allow the longer copy to fit the panel. */
@media (min-width: 981px) {
  .home-page .hero-donation-label {
    max-width: 100%;
    font-size: clamp(0.94rem, 0.96vw, 1.08rem);
    line-height: 1.36;
    white-space: normal;
  }
}

/* Final portrait donation copy: keep the intro sentence to two lines. */
@media (max-width: 767px) and (orientation: portrait) {
  .home-page .hero-donation-label {
    max-width: none;
    font-size: clamp(0.72rem, 3.05vw, 0.82rem);
    line-height: 1.22;
    white-space: normal;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .home-page .hero-donation-label {
    max-width: none;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.28;
    white-space: normal;
  }
}

/* Final PC nav donate sizing. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .eon-nav-donate {
    min-width: 124px;
    padding-right: 1.9rem;
    padding-left: 1.9rem;
  }
}

/* Final donation modal rebuild: contained, readable, and aligned with the site. */
.donation-modal {
  padding: clamp(0.9rem, 3vw, 2rem) !important;
}

.donation-modal .modal-backdrop {
  background:
    linear-gradient(135deg, rgba(10, 24, 74, 0.9), rgba(23, 47, 128, 0.88)),
    rgba(0, 0, 0, 0.42) !important;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.donation-modal .modal-panel {
  width: min(100%, 760px) !important;
  max-height: min(92svh, 760px);
  display: grid !important;
  grid-template-columns: 1fr !important;
  overflow: hidden auto !important;
  color: var(--blue-dark);
  background: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36) !important;
}

.donation-modal.is-open .modal-panel:hover {
  transform: translateY(0) scale(1) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36) !important;
}

.donation-modal .modal-close {
  top: 14px !important;
  right: 14px !important;
  width: 42px !important;
  height: 42px !important;
  display: grid;
  place-items: center;
  color: var(--white) !important;
  background: var(--red) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 28px rgba(219, 31, 38, 0.22) !important;
}

.donation-modal .modal-close:hover,
.donation-modal .modal-close:focus-visible {
  color: var(--blue-dark) !important;
  background: #efb12d !important;
  border-color: rgba(239, 177, 45, 0.65) !important;
}

.donation-modal .modal-brand {
  min-height: 0 !important;
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2rem) clamp(4rem, 8vw, 5rem)
    clamp(1.1rem, 3vw, 1.55rem) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    var(--blue-dark) !important;
}

.donation-modal .modal-logo {
  width: clamp(132px, 22vw, 190px) !important;
  max-width: 100%;
}

.donation-modal .modal-content {
  width: 100%;
  display: grid !important;
  gap: clamp(0.75rem, 1.6vw, 1.05rem) !important;
  justify-items: center;
  align-content: start !important;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.1rem, 3.5vw, 2.25rem)
    clamp(1.25rem, 3vw, 2rem) !important;
  text-align: center;
}

.donation-modal .modal-content > * {
  width: min(100%, 640px) !important;
}

.donation-modal .modal-eyebrow {
  margin: 0;
  color: var(--red);
  font-size: clamp(0.72rem, 1.3vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.donation-modal .modal-headline {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3.2vw, 2.35rem) !important;
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
  white-space: normal !important;
}

.donation-modal .modal-headline-line {
  display: inline !important;
  white-space: normal !important;
}

.donation-modal .modal-amounts {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.55rem, 1.4vw, 0.85rem) !important;
  margin-top: 0.15rem !important;
}

.donation-modal .modal-amounts a {
  min-width: 0;
  min-height: 54px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.8rem;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 2px solid rgba(23, 47, 128, 0.1);
  border-radius: 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.donation-modal .modal-amounts a:hover,
.donation-modal .modal-amounts a:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 28px rgba(219, 31, 38, 0.22);
  transform: translateY(-2px);
}

.donation-modal .modal-amounts a:last-child {
  grid-column: 1 / -1 !important;
}

.donation-modal .modal-disclaimer {
  width: min(100%, 620px) !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.1rem 0 0 !important;
  color: rgba(17, 25, 54, 0.72);
  font-size: clamp(0.76rem, 1.35vw, 0.86rem);
  line-height: 1.35;
  text-align: left;
}

.donation-modal .actblue-express-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.02rem;
}

.donation-modal .modal-primary {
  width: auto !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem !important;
  padding: 0.72rem 1rem !important;
  color: var(--blue-dark);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: clamp(0.75rem, 1.25vw, 0.86rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.donation-modal .modal-primary:hover,
.donation-modal .modal-primary:focus-visible {
  color: var(--blue-dark);
  background: #efb12d;
  box-shadow: 0 12px 28px rgba(239, 177, 45, 0.24);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .donation-modal {
    padding: 0.8rem !important;
  }

  .donation-modal .modal-panel {
    max-height: 94svh;
    border-radius: 16px !important;
  }

  .donation-modal .modal-brand {
    padding: 1.35rem 3.5rem 1rem !important;
  }

  .donation-modal .modal-logo {
    width: clamp(124px, 42vw, 160px) !important;
  }

  .donation-modal .modal-content {
    gap: 0.7rem !important;
    padding: 1.05rem 0.95rem 1.15rem !important;
  }

  .donation-modal .modal-headline {
    font-size: clamp(1.22rem, 5.7vw, 1.65rem) !important;
  }

  .donation-modal .modal-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem !important;
  }

  .donation-modal .modal-amounts a {
    min-height: 46px !important;
    padding: 0.65rem 0.55rem;
    font-size: 0.88rem;
  }

  .donation-modal .modal-disclaimer {
    justify-content: flex-start;
    font-size: 0.74rem;
  }
}

@media (max-width: 360px) {
  .donation-modal .modal-headline {
    font-size: 1.16rem !important;
  }

  .donation-modal .modal-amounts a {
    min-height: 44px !important;
    font-size: 0.82rem;
  }
}

/* Final donation amount typography: keep dollar amounts regular weight. */
.donate-amounts a,
.hero-donation .donate-amounts a,
.donation-modal .modal-amounts a {
  font-weight: 400 !important;
}

/* Final landing donation buttons: match the popup amount button style. */
.home-page .hero-donation .donate-amounts a {
  min-width: 0;
  min-height: 54px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.8rem !important;
  color: var(--blue-dark) !important;
  background: var(--blue-soft) !important;
  border: 2px solid rgba(23, 47, 128, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  font-weight: 400 !important;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: none;
}

.home-page .hero-donation .donate-amounts a:hover,
.home-page .hero-donation .donate-amounts a:focus-visible {
  color: var(--white) !important;
  background: var(--red) !important;
  border-color: var(--red) !important;
  box-shadow: 0 14px 28px rgba(219, 31, 38, 0.22) !important;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .home-page .hero-donation .donate-amounts a {
    min-height: 46px !important;
    padding: 0.65rem 0.55rem !important;
    font-size: 0.88rem;
  }
}

/* Final PC landing scale: make the hero experience larger without changing layout. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-content {
    max-width: min(980px, 90vw);
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(178px, 16vw, 260px);
    max-width: clamp(178px, 16vw, 260px);
    margin-bottom: clamp(0.62rem, 1.35vh, 1rem);
  }

  .home-page .hero h1 {
    font-size: clamp(1.82rem, 2.5vw, 2.78rem);
    line-height: 1;
  }

  .home-page .headline-rule {
    height: clamp(7px, 0.95vh, 10px);
    margin: clamp(0.58rem, 1.25vh, 0.9rem) 0
      clamp(0.7rem, 1.55vh, 1.05rem);
  }

  .home-page .hero-donation {
    margin-top: clamp(0.85rem, 1.95vh, 1.3rem);
    padding: clamp(0.95rem, 2.1vh, 1.25rem);
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.62rem, 1.45vh, 0.9rem);
    padding-bottom: clamp(0.52rem, 1.2vh, 0.78rem);
  }

  .home-page .hero-donation-label {
    max-width: 62ch;
    font-size: clamp(1rem, 1.12vw, 1.18rem);
    line-height: 1.36;
  }

  .home-page .hero-donation .donate-amounts {
    gap: clamp(0.58rem, 1.15vh, 0.8rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: 62px !important;
    padding: 0.82rem 0.95rem !important;
    font-size: clamp(1rem, 1.18vw, 1.12rem);
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: clamp(0.58rem, 1.25vh, 0.8rem);
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    line-height: 1.34;
  }
}

/* Final PC hero vertical position: move the full landing composition down. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-content {
    transform: translateY(clamp(2.75rem, 5vh, 4.25rem)) !important;
  }

  .home-page .hero-side-image {
    top: calc(57% + clamp(2.75rem, 5vh, 4.25rem));
  }
}

/* Final PC landing revamp: fill the viewport with a larger, fuller hero. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    min-height: 100svh;
    justify-content: center;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + clamp(2rem, 4vh, 3.25rem));
    padding-bottom: clamp(2rem, 4vh, 3.25rem);
  }

  .home-page .hero-content {
    width: min(1120px, 92vw);
    max-width: min(1120px, 92vw);
    transform: translateY(clamp(1.75rem, 3vh, 3rem)) !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(220px, 18vw, 310px);
    max-width: clamp(220px, 18vw, 310px);
    margin-bottom: clamp(0.8rem, 1.4vh, 1.15rem);
  }

  .home-page .hero h1 {
    width: 100%;
    font-size: clamp(2.35rem, 3.2vw, 4.05rem);
    line-height: 0.98;
    white-space: nowrap;
  }

  .home-page .headline-rule {
    width: 100%;
    height: clamp(9px, 1.2vh, 13px);
    margin: clamp(0.8rem, 1.3vh, 1.15rem) 0 clamp(1rem, 1.7vh, 1.35rem);
  }

  .home-page .hero-donation {
    width: 100%;
    margin-top: clamp(1rem, 1.8vh, 1.35rem);
    padding: clamp(1.15rem, 2.2vh, 1.55rem);
    border-radius: 22px;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.78rem, 1.45vh, 1rem);
    padding-bottom: clamp(0.68rem, 1.25vh, 0.9rem);
  }

  .home-page .hero-donation-label {
    max-width: 78ch;
    font-size: clamp(1.08rem, 1.12vw, 1.28rem);
    line-height: 1.36;
  }

  .home-page .hero-donation .donate-amounts {
    gap: clamp(0.72rem, 1.2vh, 1rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(68px, 7vh, 82px) !important;
    padding: 0.95rem 1.1rem !important;
    border-radius: 14px !important;
    font-size: clamp(1.08rem, 1.12vw, 1.28rem);
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: clamp(0.75rem, 1.35vh, 1rem);
    font-size: clamp(0.9rem, 0.9vw, 1rem);
    line-height: 1.38;
  }

  .home-page .hero-side-image {
    top: calc(55% + clamp(1.75rem, 3vh, 3rem));
    right: clamp(-20rem, -15vw, -8rem);
    width: clamp(760px, 64vw, 1180px);
  }
}

/* Final PC landing repair: use a real two-column hero so content never overlaps. */
@media (min-width: 1100px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(100% - clamp(3rem, 6vw, 6rem), 1480px);
    display: grid !important;
    grid-template-columns: minmax(620px, 0.58fr) minmax(360px, 0.42fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding-top: calc(var(--header-height) + clamp(1.4rem, 3vh, 2.4rem));
    padding-bottom: clamp(1.4rem, 3vh, 2.4rem);
  }

  .home-page .hero-content {
    grid-column: 1;
    width: 100%;
    max-width: none;
    transform: none !important;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(210px, 15vw, 280px);
    max-width: clamp(210px, 15vw, 280px);
  }

  .home-page .hero h1 {
    font-size: clamp(2.35rem, 2.95vw, 3.55rem);
    line-height: 0.98;
    white-space: nowrap;
  }

  .home-page .hero-donation {
    width: 100%;
    max-width: none;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 1;
    grid-column: 2;
    width: 100% !important;
    max-width: 560px;
    justify-self: center;
    display: block !important;
    transform: none !important;
    pointer-events: none;
  }

  .home-page .hero-side-image img {
    width: 100%;
    max-height: min(72svh, 720px);
    object-fit: contain;
  }
}

@media (min-width: 981px) and (max-width: 1099px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    width: min(100% - 3rem, 900px);
    margin-inline: auto;
  }

  .home-page .hero-content {
    width: 100%;
    max-width: none;
    transform: none !important;
  }

  .home-page .hero-side-image {
    display: none !important;
  }
}

/* Final desktop hero spec: stable two-column landing layout, no overlap. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-desktop-menu,
  .home-page:not(.is-scrolled) .eon-header:not(.is-menu-open) .eon-nav-donate {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
  }

  .home-page .hero {
    min-height: 100svh;
    overflow: hidden;
  }

  .home-page .hero-layout {
    width: min(100% - clamp(3rem, 6vw, 6rem), 1500px);
    min-height: 100svh;
    display: grid !important;
    grid-template-columns: minmax(560px, 0.55fr) minmax(360px, 0.45fr);
    gap: clamp(2.2rem, 4.2vw, 5rem);
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding-top: calc(var(--header-height) + clamp(1.25rem, 2.4vh, 2.25rem));
    padding-bottom: clamp(1.25rem, 2.4vh, 2.25rem);
  }

  .home-page .hero-content {
    grid-column: 1;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    transform: none !important;
  }

  .home-page .hero-copy {
    width: 100%;
  }

  .home-page .hero-copy > .eon-hero-logo {
    width: clamp(240px, 17vw, 330px);
    max-width: clamp(240px, 17vw, 330px);
    margin: 0 auto clamp(0.9rem, 1.7vh, 1.35rem);
    transform: none;
  }

  .home-page .hero h1 {
    width: 100%;
    margin: 0 auto;
    color: var(--white);
    font-size: clamp(2.15rem, 2.75vw, 3.65rem);
    line-height: 0.98;
    text-align: center;
    white-space: nowrap;
  }

  .home-page .headline-rule {
    width: 100%;
    height: clamp(8px, 1vh, 12px);
    margin: clamp(0.75rem, 1.4vh, 1.1rem) auto
      clamp(1rem, 1.8vh, 1.45rem);
  }

  .home-page .hero-copy > p {
    display: none;
  }

  .home-page .hero-donation {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(1.05rem, 2vh, 1.45rem);
    border-radius: 22px;
    transform: none;
  }

  .home-page .hero-donation-header {
    margin-bottom: clamp(0.72rem, 1.35vh, 1rem);
    padding-bottom: clamp(0.62rem, 1.15vh, 0.85rem);
  }

  .home-page .hero-donation-label {
    max-width: 68ch;
    margin-inline: auto;
    font-size: clamp(1rem, 1.05vw, 1.18rem);
    line-height: 1.36;
    text-align: left;
    white-space: normal;
  }

  .home-page .hero-donation .donate-amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.64rem, 1.15vh, 0.9rem);
  }

  .home-page .hero-donation .donate-amounts a {
    min-height: clamp(58px, 6.2vh, 74px) !important;
    padding: 0.82rem 0.95rem !important;
    font-size: clamp(1rem, 1vw, 1.16rem);
  }

  .home-page .hero-donation .donate-amounts a:last-child {
    grid-column: 1 / -1;
  }

  .home-page .hero-donation .donate-disclaimer {
    margin-top: clamp(0.66rem, 1.2vh, 0.9rem);
    font-size: clamp(0.82rem, 0.82vw, 0.94rem);
    line-height: 1.34;
    text-align: left;
  }

  .home-page .hero-side-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 2;
    grid-column: 2;
    width: 100% !important;
    max-width: none;
    min-width: 0;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: clamp(1.35rem, 2.4vh, 2rem);
    align-self: center;
    transform: none !important;
    pointer-events: auto;
  }

  .home-page .hero-column-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 1.2vw, 1rem);
  }

  .home-page .hero-column-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem clamp(0.78rem, 1vw, 1.05rem);
    color: var(--white);
    border-radius: 12px;
    font-size: clamp(0.82rem, 0.88vw, 0.98rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .home-page .hero-column-nav a:hover,
  .home-page .hero-column-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .home-page .hero-column-nav .donate-trigger {
    padding-inline: clamp(1rem, 1.4vw, 1.35rem);
    background: var(--red);
  }

  .home-page .hero-side-image img {
    width: min(100%, 620px);
    max-height: min(64svh, 680px);
    display: block;
    align-self: center;
    object-fit: contain;
  }
}

@media (min-width: 981px) and (max-width: 1180px) and (hover: hover) and (pointer: fine) {
  .home-page .hero-layout {
    grid-template-columns: minmax(510px, 0.56fr) minmax(320px, 0.44fr);
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }

  .home-page .hero h1 {
    font-size: clamp(1.86rem, 2.45vw, 2.55rem);
  }

  .home-page .hero-side-image img {
    width: min(100%, 520px);
  }
}

/* Final desktop nav donate CTA: stronger, button-like, and consistent with donation controls. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .eon-nav-donate {
    position: relative;
    min-width: 146px !important;
    min-height: 48px;
    margin-right: 0.85rem !important;
    overflow: hidden;
    padding: 0.86rem 2.15rem !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 14px !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 10px 22px rgba(219, 31, 38, 0.18) !important;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-shadow: none;
    transform: translateY(0);
    transition:
      opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
      background 240ms ease,
      border-color 240ms ease,
      box-shadow 240ms ease,
      color 240ms ease;
  }

  .eon-nav-donate::before {
    content: none;
  }

  .eon-nav-donate:hover,
  .eon-nav-donate:focus-visible {
    color: var(--blue-dark) !important;
    background: #efb12d !important;
    border-color: rgba(239, 177, 45, 0.62) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 12px 24px rgba(239, 177, 45, 0.24) !important;
    text-shadow: none;
    transform: translateY(-2px);
  }
}

/* Final PC nav reveal: menu links and donate button move as one group on scroll. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .eon-desktop-menu,
  .eon-nav-donate {
    transition:
      opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
      background 240ms ease,
      border-color 240ms ease,
      box-shadow 240ms ease,
      color 240ms ease !important;
    will-change: opacity, transform;
  }

  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-desktop-menu,
  .home-page:not(.page-loading):not(.is-scrolled)
    .eon-header:not(.is-menu-open)
    .eon-nav-donate {
    opacity: 1 !important;
    transform: translate(
      clamp(-0.75rem, -0.2vw, 0.25rem),
      clamp(7rem, 14vh, 9.5rem)
    ) !important;
  }

  body.is-scrolled .eon-desktop-menu,
  body.is-scrolled .eon-nav-donate,
  .eon-header.is-scrolled .eon-desktop-menu,
  .eon-header.is-scrolled .eon-nav-donate {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }

  body.is-scrolled .eon-nav-donate:hover,
  body.is-scrolled .eon-nav-donate:focus-visible,
  .eon-header.is-scrolled .eon-nav-donate:hover,
  .eon-header.is-scrolled .eon-nav-donate:focus-visible,
  .eon-header.static-header .eon-nav-donate:hover,
  .eon-header.static-header .eon-nav-donate:focus-visible {
    transform: translateY(-2px) !important;
  }
}

/* Final landing scroll cue hover: use the same yellow action state as the CTAs. */
.home-page .hero-scroll-cue {
  cursor: pointer;
}

.home-page .hero-scroll-cue:hover,
.home-page .hero-scroll-cue:focus-visible {
  color: var(--blue-dark) !important;
  background: #efb12d !important;
  border-color: #efb12d !important;
  box-shadow:
    0 14px 28px rgba(239, 177, 45, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
  transform: translateX(50%) translateY(-3px);
}

/* Final PC Meet Raja card polish: keep the name on the white card surface. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .leadership-grid {
    grid-template-columns: minmax(250px, 0.33fr) minmax(0, 0.67fr);
    gap: clamp(1.05rem, 1.9vw, 1.55rem);
    align-items: stretch;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    border: 1px solid rgba(23, 47, 128, 0.08);
    box-shadow:
      0 22px 58px rgba(23, 47, 128, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .leadership-grid:hover {
    box-shadow:
      0 28px 70px rgba(23, 47, 128, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .leadership-figure {
    align-self: stretch;
    align-content: start;
    gap: clamp(0.7rem, 1.1vw, 0.95rem);
    padding: clamp(0.35rem, 0.8vw, 0.6rem);
    background: transparent;
  }

  .leadership-image {
    border-radius: calc(var(--radius-large) - 10px);
    box-shadow: 0 18px 42px rgba(23, 47, 128, 0.13);
  }

  .leadership-label {
    height: auto;
    min-height: 0;
    display: block;
    padding: clamp(0.35rem, 0.8vw, 0.55rem) clamp(0.25rem, 0.7vw, 0.45rem) 0;
    color: var(--blue-dark);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: clamp(1rem, 1.18vw, 1.18rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .leadership-copy {
    align-self: stretch;
    align-content: center;
    border-left-width: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

/* Aura pass: make Meet Raja read as a premium feature section. */
.leadership-section {
  padding: clamp(1.3rem, 2.2vw, 1.9rem) 0 clamp(2.4rem, 5vw, 5rem);
  background: var(--main-section-bg);
}

.leadership-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(17, 25, 54, 0.2),
    0 0 0 1px rgba(23, 47, 128, 0.06);
}

.leadership-copy h2 {
  position: relative;
  width: fit-content;
}

.leadership-copy h2::after {
  display: block;
  width: clamp(74px, 8vw, 118px);
  height: 5px;
  margin-top: clamp(0.7rem, 1vw, 0.95rem);
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.leadership-label {
  position: relative;
}

.leadership-label::before {
  display: block;
  width: 52px;
  height: 3px;
  margin: 0 auto 0.55rem;
  content: "";
  background: var(--red);
  border-radius: 999px;
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .leadership-grid {
    grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(0.9rem, 1.8vw, 1.4rem);
    align-items: stretch;
    padding: clamp(0.9rem, 1.7vw, 1.2rem);
    border-color: rgba(255, 255, 255, 0.88);
  }

  .leadership-grid:hover {
    box-shadow:
      0 40px 104px rgba(17, 25, 54, 0.26),
      0 0 0 1px rgba(23, 47, 128, 0.06);
    transform: translateY(-5px);
  }

  .leadership-figure {
    align-self: stretch;
    display: grid;
    align-content: stretch;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    background: transparent;
    border-right: 0;
  }

  .leadership-image {
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      0 18px 46px rgba(23, 47, 128, 0.16),
      0 0 0 1px rgba(23, 47, 128, 0.08);
  }

  .leadership-image img {
    object-position: 56% center;
  }

  .leadership-label {
    display: none;
  }

  .leadership-label::before {
    content: none;
  }

  .leadership-copy {
    align-self: stretch;
    align-content: center;
    padding: clamp(2rem, 3.6vw, 3.2rem);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
      linear-gradient(145deg, #172f80 0%, #203d98 100%);
    border-left: 6px solid var(--red);
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(23, 47, 128, 0.14);
  }

  .leadership-copy h2 {
    font-size: clamp(2.7rem, 4.6vw, 4.8rem);
    letter-spacing: 0;
  }

  .leadership-bio {
    width: min(840px, 100%);
    margin-top: clamp(1rem, 1.7vw, 1.35rem);
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(0.94rem, 1.02vw, 1.06rem);
    line-height: 1.58;
  }

  .leadership-bio p + p {
    margin-top: 0.85rem;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .leadership-section {
    padding: clamp(1.3rem, 2.2vw, 1.9rem) 0 clamp(2.4rem, 5vw, 5rem);
    background: var(--main-section-bg);
  }

  .leadership-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
    grid-template-areas: none;
    gap: clamp(0.85rem, 1.8vw, 1.15rem);
    align-items: stretch;
    justify-items: stretch;
    padding: clamp(0.9rem, 1.7vw, 1.2rem);
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
    border-radius: 24px;
    box-shadow:
      0 34px 90px rgba(17, 25, 54, 0.2),
      0 0 0 1px rgba(23, 47, 128, 0.06);
    transform: none;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-figure {
    grid-area: auto;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    justify-self: stretch;
    justify-items: stretch;
    align-self: stretch;
    align-content: stretch;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadership-image {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      0 18px 46px rgba(23, 47, 128, 0.16),
      0 0 0 1px rgba(23, 47, 128, 0.08);
  }

  .leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
  }

  .leadership-label {
    display: none;
  }

  .leadership-copy {
    display: grid;
    grid-area: auto;
    align-self: stretch;
    align-content: center;
    padding: clamp(1.55rem, 3vw, 2.35rem);
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%),
      linear-gradient(145deg, #172f80 0%, #203d98 100%);
    border-left: 6px solid var(--red);
    border-radius: calc(var(--radius-large) - 8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(23, 47, 128, 0.14);
  }

  .leadership-copy h2 {
    grid-area: auto;
    width: fit-content;
    font-size: clamp(2.2rem, 4.8vw, 3.4rem);
    line-height: 1;
    text-align: left;
  }

  .leadership-copy h2::after {
    display: block !important;
    width: clamp(74px, 8vw, 118px);
    height: 5px;
    margin: clamp(0.7rem, 1vw, 0.95rem) 0 0;
    content: "" !important;
    background: var(--red);
    border-radius: 999px;
  }

  .leadership-bio,
  .leadership-copy.is-expanded .leadership-bio {
    grid-area: auto;
    width: 100%;
    max-height: none;
    margin-top: clamp(0.9rem, 1.7vw, 1.2rem);
    padding-top: 0;
    overflow: visible;
    border-top: 0;
  }

  .leadership-bio::after {
    content: none;
    display: none;
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(0.86rem, 1.6vw, 0.98rem);
    line-height: 1.5;
    text-align: left;
  }

  .leadership-bio p + p {
    margin-top: 0.72rem;
  }

  .leadership-toggle {
    display: none !important;
  }
}

@media (max-width: 767px),
  (min-width: 768px) and (max-width: 980px) and (orientation: landscape) {
  .leadership-section {
    padding: clamp(1rem, 3vw, 1.4rem) 0 clamp(1.35rem, 4vw, 2.3rem);
    background: var(--main-section-bg);
  }

  .leadership-grid {
    width: 100%;
    grid-template-areas:
      "leadership-title"
      "leadership-profile"
      "leadership-bio"
      "leadership-toggle";
    gap: 0;
    justify-items: center;
    padding: clamp(0.9rem, 3vw, 1.2rem);
    color: var(--white);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
      var(--blue-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 24px 62px rgba(17, 25, 54, 0.24);
    transform: none;
  }

  .leadership-grid:hover {
    transform: none;
  }

  .leadership-copy {
    display: contents;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadership-copy h2 {
    grid-area: leadership-title;
    width: 100%;
    font-size: clamp(1.9rem, 5.6vw, 2.75rem);
    line-height: 1.02;
    text-align: center;
  }

  .leadership-copy h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .leadership-figure {
    grid-area: leadership-profile;
    width: min(100%, 340px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: center;
    justify-items: center;
    margin-top: clamp(0.9rem, 3vw, 1.2rem);
    padding: 0.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(17, 25, 54, 0.18);
  }

  .leadership-image {
    width: 100%;
    height: clamp(155px, 38vw, 225px);
    max-height: 225px;
    aspect-ratio: auto;
    border-radius: 11px 11px 0 0;
    box-shadow: none;
  }

  .leadership-image img {
    object-position: center 20%;
  }

  .leadership-label {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0.7rem 0.75rem 0.65rem;
    color: var(--blue-dark);
    background: transparent;
    border: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    font-size: clamp(0.94rem, 2.8vw, 1.08rem);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .leadership-bio {
    grid-area: leadership-bio;
    position: relative;
    width: 100%;
    max-height: 9.4rem;
    margin-top: clamp(0.9rem, 3vw, 1.15rem);
    padding-top: clamp(0.85rem, 2.6vw, 1rem);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transition: max-height 280ms ease;
  }

  .leadership-copy.is-expanded .leadership-bio {
    max-height: 90rem;
    overflow: visible;
  }

  .leadership-bio::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.8rem;
    display: block;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(23, 47, 128, 0),
      var(--blue-dark) 74%
    );
    pointer-events: none;
  }

  .leadership-copy.is-expanded .leadership-bio::after {
    opacity: 0;
  }

  .leadership-bio p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.55vw, 1rem);
    line-height: 1.48;
    text-align: left;
  }

  .leadership-bio p + p {
    margin-top: 0.72rem;
  }

  .leadership-toggle {
    grid-area: leadership-toggle;
    min-width: 124px;
    min-height: 44px;
    margin-top: 0.9rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 0.42rem;
    padding: 0.68rem 0.95rem;
    color: var(--blue-dark);
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .purpose-copy .eyebrow::after,
  .leadership-copy h2::after,
  .leadership-label::before {
    content: none !important;
    display: none !important;
  }
}

/* Final Meet Raja shadow removal. */
.leadership-section .leadership-grid,
.leadership-section .leadership-grid:hover {
  box-shadow: none !important;
}

/* Keep the custom donation option beside $2,500 on desktop. */
@media (min-width: 981px) {
  .home-page .hero-donation .donate-amounts a:last-child,
  .donation-modal .modal-amounts a:last-child {
    grid-column: auto !important;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .mobile-portrait-photo {
    display: block;
    padding: clamp(1rem, 4vw, 1.4rem) 0 0;
    background: var(--main-section-bg);
  }

  .mobile-priorities-photo {
    padding-top: 0;
    padding-bottom: clamp(1rem, 4vw, 1.4rem);
  }

  .mobile-priorities-photo .mobile-landing-photo-frame,
  .mobile-leadership-photo .mobile-landing-photo-frame {
    width: min(74vw, 320px);
  }

  .mobile-leadership-photo {
    padding-top: 0;
    padding-bottom: clamp(1.25rem, 5vw, 1.75rem);
  }

  .mobile-footer-photo {
    padding-top: 0;
    padding-bottom: clamp(1.25rem, 5vw, 1.75rem);
  }

  .mobile-landing-photo-frame {
    width: min(100% - (var(--mobile-page-pad, 1rem) * 2), 560px);
    padding: 0;
  }

  .mobile-portrait-photo img {
    display: block;
    width: 100%;
    height: auto;
    background: var(--main-section-bg);
  }
}
