:root {
  --ink: #2f3157;
  --ink-soft: #474978;
  --muted: #686b86;
  --paper: #fff8fc;
  --surface: #ffffff;
  --plum: #b22b8f;
  --plum-dark: #861f78;
  --indigo: #7475ba;
  --teal: #4f9eaa;
  --mint: #eef4ff;
  --gold: #f0bd4f;
  --rose: #f9e4f2;
  --line: #ead8e6;
  --shadow: 0 30px 80px rgba(74, 53, 116, 0.16);
  --glow: 0 26px 70px rgba(178, 43, 143, 0.22);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(178, 43, 143, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 117, 186, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 12rem, black 65%, transparent);
}

a {
  color: inherit;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 252, 0.93);
  border-bottom: 1px solid rgba(234, 216, 230, 0.85);
  backdrop-filter: blur(18px);
}

.crisis-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg, var(--plum), var(--indigo));
  color: white;
  font-size: 0.9rem;
}

.crisis-bar p {
  margin: 0;
}

.crisis-bar a {
  color: white;
  font-weight: 900;
}

.nav-shell {
  width: min(1180px, calc(100% - 3rem));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 250px;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.7rem, 1.15vw, 1.15rem);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.nav-links a,
.nav-cta,
.button,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--plum);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--plum), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn.primary {
  background: var(--plum);
  color: white;
  box-shadow: 0 14px 30px rgba(163, 38, 127, 0.26);
}

.btn.primary:hover {
  box-shadow: 0 18px 45px rgba(178, 43, 143, 0.34);
}

.btn.ghost {
  background: white;
  color: var(--plum);
  border-color: var(--line);
}

.is-hidden {
  display: none !important;
}

.nav-cta::after,
.button::after {
  content: "→";
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.nav-cta:hover::after,
.button:hover::after {
  transform: translateX(4px);
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.nav-cta,
.button.primary {
  background: var(--plum);
  color: white;
  box-shadow: 0 14px 30px rgba(163, 38, 127, 0.26);
}

.nav-cta:hover,
.button.primary:hover {
  box-shadow: 0 18px 45px rgba(178, 43, 143, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.button.secondary:hover,
.button.outline:hover {
  background: var(--ink);
  color: white;
}

.button.light-button {
  margin-top: 1.1rem;
  background: white;
  color: var(--plum);
}

@media (max-width: 1180px) {
  .nav-shell {
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    padding: 0.85rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    justify-content: flex-start;
  }
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
}

.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 189, 79, 0.38), transparent 28rem),
    radial-gradient(circle at 25% 78%, rgba(178, 43, 143, 0.34), transparent 24rem),
    linear-gradient(90deg, rgba(47, 49, 87, 0.88) 0%, rgba(116, 117, 186, 0.68) 44%, rgba(178, 43, 143, 0.2) 100%),
    url("https://menchvillehouse.com/wp-content/uploads/2021/11/cropped-cropped-cropped-mhm-copy.png") center / cover;
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255, 248, 252, 0.15) 58% 59%, transparent 59%),
    linear-gradient(115deg, transparent 0 70%, rgba(240, 189, 79, 0.25) 70% 70.5%, transparent 70.5%);
}

.floating-shapes,
.play-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.floating-shapes span {
  position: absolute;
  display: block;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 36% 64% 52% 48%;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  animation: floaty 9s ease-in-out infinite;
}

.floating-shapes span:nth-child(1) {
  right: 12%;
  top: 28%;
}

.floating-shapes span:nth-child(2) {
  right: 34%;
  top: 18%;
  width: 5.5rem;
  height: 5.5rem;
  animation-delay: -3s;
}

.floating-shapes span:nth-child(3) {
  right: 8%;
  bottom: 22%;
  width: 6.5rem;
  height: 6.5rem;
  animation-delay: -6s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-12px, 18px, 0) rotate(8deg);
  }
}

.play-shapes span {
  position: absolute;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(47, 49, 87, 0.18));
  animation: playFloat 8s ease-in-out infinite;
}

.child-scribbles span {
  width: auto;
  height: auto;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.34);
  font-family: Schoolbell, "Comic Sans MS", cursive;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: lowercase;
  filter: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 40px rgba(47, 49, 87, 0.18);
  transform-origin: center;
  animation: scribbleFloatFade 9s ease-in-out infinite;
}

.child-scribbles span::before {
  content: attr(data-scribble);
}

.child-scribbles span::after {
  content: "";
  position: absolute;
  left: -0.25rem;
  right: -0.15rem;
  bottom: -0.28rem;
  height: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-1deg);
}

.child-scribbles span::after {
  display: none;
}

.child-scribbles span:nth-child(1) {
  left: 2%;
  top: 10%;
  color: rgba(255, 255, 255, 0.2);
  font-family: Schoolbell, cursive;
  transform: rotate(-8deg);
}

.child-scribbles span:nth-child(2) {
  left: 57%;
  top: 12%;
  color: rgba(240, 189, 79, 0.42);
  font-family: "Patrick Hand", Schoolbell, cursive;
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
  transform: rotate(6deg);
  animation-delay: -3s;
  animation-duration: 10.5s;
}

.child-scribbles span:nth-child(3) {
  left: 3%;
  top: 73%;
  color: rgba(255, 255, 255, 0.18);
  font-family: Gaegu, Schoolbell, cursive;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  transform: rotate(-3deg);
  animation-delay: -5.5s;
  animation-duration: 11.5s;
}

.child-scribbles span:nth-child(4) {
  left: 76%;
  top: 8%;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Patrick Hand", Schoolbell, cursive;
  font-size: clamp(1.45rem, 2.5vw, 2.8rem);
  transform: rotate(8deg);
  animation-delay: -1.7s;
  animation-duration: 8.8s;
}

.child-scribbles span:nth-child(5) {
  left: 24%;
  bottom: 5%;
  color: rgba(240, 189, 79, 0.34);
  font-family: "Patrick Hand", Schoolbell, cursive;
  font-size: clamp(1.5rem, 2.6vw, 2.9rem);
  transform: rotate(-10deg);
  animation-delay: -6.8s;
  animation-duration: 12s;
}

.child-scribbles span:nth-child(6) {
  left: 83%;
  bottom: 7%;
  color: rgba(255, 255, 255, 0.23);
  font-family: Gaegu, Schoolbell, cursive;
  font-size: clamp(1.35rem, 2.2vw, 2.55rem);
  transform: rotate(-4deg);
  animation-delay: -4.2s;
  animation-duration: 9.8s;
}

.child-scribbles span:nth-child(7) {
  left: 54%;
  bottom: 5%;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Patrick Hand", Schoolbell, cursive;
  font-size: clamp(1.3rem, 2vw, 2.35rem);
  transform: rotate(4deg);
  animation-delay: -2.2s;
  animation-duration: 10.8s;
}

.child-scribbles span:nth-child(8) {
  left: 79%;
  top: 56%;
  color: rgba(47, 49, 87, 0.68);
  font-family: Gaegu, Schoolbell, cursive;
  font-size: clamp(1.25rem, 1.8vw, 2.1rem);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.55);
  transform: rotate(12deg);
  animation-delay: -7.5s;
  animation-duration: 12.5s;
}

.child-scribbles span:nth-child(9) {
  left: 36%;
  top: 7%;
  color: rgba(255, 255, 255, 0.16);
  font-family: Gaegu, Schoolbell, cursive;
  font-size: clamp(1.25rem, 2vw, 2.35rem);
  transform: rotate(-12deg);
  animation-delay: -2.8s;
  animation-duration: 11.2s;
}

.child-scribbles span:nth-child(10) {
  left: 68%;
  bottom: 2%;
  top: auto;
  color: rgba(255, 255, 255, 0.2);
  font-family: Schoolbell, cursive;
  font-size: clamp(1.3rem, 2.2vw, 2.5rem);
  transform: rotate(5deg);
  animation-delay: -4.7s;
  animation-duration: 10.2s;
}

@keyframes scribbleFloatFade {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.42;
  }

  50% {
    translate: -8px 12px;
    opacity: 0.9;
  }
}

.play-shapes .block {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(240, 189, 79, 0.45);
  backdrop-filter: blur(10px);
}

.play-shapes .block::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.play-shapes .block-a {
  right: 12%;
  top: 24%;
  transform: rotate(-8deg);
}

.play-shapes .block-b {
  right: 31%;
  top: 18%;
  width: 4.6rem;
  height: 4.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(178, 43, 143, 0.44);
  animation-delay: -2.5s;
  transform: rotate(12deg);
}

.play-shapes .ball {
  right: 9%;
  bottom: 25%;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18) 28%, transparent 29%),
    linear-gradient(135deg, rgba(116, 117, 186, 0.72), rgba(178, 43, 143, 0.48));
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation-delay: -5s;
}

.play-shapes .star {
  right: 24%;
  bottom: 18%;
  width: 4.6rem;
  height: 4.6rem;
  background: rgba(240, 189, 79, 0.85);
  clip-path: polygon(50% 0%, 61% 34%, 97% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 3% 35%, 39% 34%);
  animation-delay: -1.2s;
}

.play-shapes .arc {
  right: 18%;
  top: 47%;
  width: 10rem;
  height: 5rem;
  border: 10px solid rgba(255, 255, 255, 0.42);
  border-bottom: 0;
  border-radius: 10rem 10rem 0 0;
  transform: rotate(-12deg);
  animation-delay: -4s;
}

@keyframes playFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: -10px 16px;
  }
}

.hero-ribbon {
  position: absolute;
  left: max(1.5rem, calc((100vw - 1180px) / 2));
  right: max(1.5rem, calc((100vw - 1180px) / 2));
  top: 4.7rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.55rem;
}

.hero-ribbon button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  animation: bubbleDrift 5.5s ease-in-out infinite;
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.hero-ribbon button:nth-child(2) {
  animation-delay: -1.1s;
  margin-top: 2.4rem;
  rotate: -2deg;
}

.hero-ribbon button:nth-child(3) {
  animation-delay: -2.2s;
  margin-top: 0.6rem;
  rotate: 2deg;
}

.hero-ribbon button:nth-child(4) {
  animation-delay: -3.3s;
  margin-top: 3.1rem;
  rotate: 1deg;
}

.hero-ribbon button:nth-child(5) {
  animation-delay: -4.4s;
  margin-top: 1.5rem;
  rotate: -3deg;
}

.hero-ribbon button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-ribbon button.is-popping {
  animation-name: bubblePop;
  animation-duration: 520ms;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-delay: 0ms;
}

@keyframes bubbleDrift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes bubblePop {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  45% {
    opacity: 0;
    transform: scale(1.65);
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 3rem));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 4.25rem;
  align-items: end;
  padding: 8rem 0 7rem;
}

.hero-copy p {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #bdeeea;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Lora, Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 8vw, 6.75rem);
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.16rem;
  line-height: 1.18;
}

h4 {
  margin-bottom: 0;
  line-height: 1.22;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform: translateX(1.35rem);
}

.hero-card:hover {
  transform: translate(1.35rem, -5px);
  box-shadow: 0 36px 90px rgba(47, 49, 87, 0.22);
}

.card-kicker {
  margin: 0 0 1rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-card div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-card dt {
  font-family: Lora, Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.hero-card dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.hero-card a {
  display: inline-flex;
  margin-top: 1.3rem;
  color: var(--plum);
  font-weight: 900;
  text-decoration: none;
}

.story-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(47, 49, 87, 0.66);
  backdrop-filter: blur(16px);
}

.story-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.story-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 2rem;
  color: white;
  font-family: Lora, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.story-marquee span::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 2rem;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.pathways {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 3rem));
  margin: -2.6rem auto 4.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.webby-note {
  width: min(1180px, calc(100% - 3rem));
  margin: 1.2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 40px rgba(23, 32, 47, 0.07);
}

.webby-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.webby-note div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.webby-note span {
  display: inline-flex;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--plum), var(--indigo));
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}

.pathway {
  min-height: 178px;
  padding: 1.45rem;
  background: white;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pathway:last-child {
  border-right: 0;
}

.pathway.urgent {
  background: var(--plum);
  color: white;
}

.pathway:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.pathway:active,
.program-grid article:active,
.volunteer-list article:active,
.trust-grid article:active,
.child-grid article:active,
.funder-grid article:active,
.story-stack article:active,
.dashboard-grid article:active,
.giving-grid article:active,
.transparency-grid article:active {
  transform: translateY(-1px) scale(0.99);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.pathway span,
.pathway strong,
.pathway em,
.pathway b,
.pathway small {
  display: block;
}

.pathway span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway.urgent span {
  color: rgba(255, 255, 255, 0.72);
}

.pathway strong {
  margin-top: 0.55rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.pathway em {
  margin-top: 0.7rem;
  color: var(--muted);
  font-style: normal;
}

.pathway.urgent em {
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.pathway b {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.42;
}

.pathway small {
  margin-top: 0.8rem;
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 900;
}

.pathway.urgent small {
  color: rgba(255, 255, 255, 0.86);
}

.section {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.photo-story {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 5.5rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: center;
}

.photo-story-copy {
  position: sticky;
  top: 8rem;
}

.photo-story-copy h2 {
  max-width: 470px;
  font-size: clamp(2.15rem, 3.7vw, 4rem);
}

.photo-story-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 185px;
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.12);
}

.photo-card.large {
  grid-row: span 2;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.photo-card.large img {
  object-position: 58% 48%;
}

.photo-card.wide img {
  object-position: 82% 46%;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(47, 49, 87, 0.74));
}

.photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.photo-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

.page-hero {
  color: white;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 560px;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 189, 79, 0.28), transparent 22rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.page-hero a {
  color: white;
  font-weight: 900;
}

.need-help-hero .hero-actions {
  margin-top: 1.7rem;
}

.need-help-hero .btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.need-urgent-panel {
  width: min(1180px, calc(100% - 3rem));
  margin: -0.75rem auto 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.12);
}

.need-urgent-panel article,
.need-urgent-panel > div {
  padding: clamp(1.35rem, 2.5vw, 2.2rem);
}

.need-urgent-panel article {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 189, 79, 0.2), transparent 14rem),
    white;
}

.need-urgent-panel h2 {
  max-width: 620px;
  margin-bottom: 1.05rem;
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.need-urgent-panel p {
  margin-top: 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.58;
}

.need-urgent-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background:
    radial-gradient(circle at 86% 16%, rgba(240, 189, 79, 0.28), transparent 12rem),
    linear-gradient(135deg, var(--plum), var(--indigo));
}

.need-urgent-panel strong,
.need-urgent-panel > div > a {
  display: block;
}

.need-urgent-panel strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.need-urgent-panel > div > a {
  margin-top: 0.35rem;
  margin-bottom: 0.25rem;
  color: white;
  font-family: Lora, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.need-urgent-panel span {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.need-urgent-panel span a {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.need-urgent-panel > div p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.about-hero {
  max-width: 980px;
  margin-left: max(1.5rem, calc((100vw - 1180px) / 2));
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 9.25rem;
}

.about-hero::before {
  height: 620px;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 5.1vw, 4.45rem);
  line-height: 1.06;
}

.about-hero .eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-trust-strip {
  width: min(1180px, calc(100% - 3rem));
  margin: -3.25rem auto 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.12);
}

.about-trust-strip article {
  min-height: 150px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 189, 79, 0.22), transparent 6rem),
    white;
}

.about-trust-strip article:last-child {
  border-right: 0;
}

.about-trust-strip strong,
.about-trust-strip span {
  display: block;
}

.about-trust-strip strong {
  color: var(--ink);
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.12;
}

.about-trust-strip span {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.mission {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 3rem;
  row-gap: 1.75rem;
  align-items: start;
}

.home-summary {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 6rem 0 4.75rem;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4rem;
  align-items: start;
}

.home-summary p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.home-summary p + p {
  margin-top: 1rem;
}

.home-summary > div:last-child {
  padding-top: 2.25rem;
}

.home-summary h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
  line-height: 1.08;
}

.section-label {
  color: var(--plum);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mission-label {
  color: var(--plum);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding-top: 0.22rem;
}

.mission-label:nth-of-type(2) {
  padding-top: 1.97rem;
}

.mission p,
.section-heading p,
.feature-copy p,
.contact p {
  max-width: 780px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.mission-statement {
  max-width: 840px;
}

.mission-statement p {
  max-width: 860px;
  margin-top: 0;
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink-soft);
}

.about-statement {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.about-statement p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-statement p:first-child {
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.45;
  font-weight: 700;
}

.mission-statement + .mission-label + .mission-statement {
  position: relative;
  padding-top: 1.75rem;
}

.mission-statement + .mission-label + .mission-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(100%, 680px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(178, 43, 143, 0.6), rgba(79, 158, 170, 0.32), transparent);
}

.mission-tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.3rem;
}

.mission-tags span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 900;
}

.child-focus {
  padding-top: 1rem;
}

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

.child-grid article {
  min-height: 240px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 189, 79, 0.32), transparent 7rem),
    linear-gradient(145deg, white, #fff0fa);
  box-shadow: 0 18px 50px rgba(178, 43, 143, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.child-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(178, 43, 143, 0.16);
}

.child-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 88% 12%, rgba(116, 117, 186, 0.22), transparent 7rem),
    linear-gradient(145deg, white, #f2f1ff);
}

.child-grid article:nth-child(3) {
  background:
    radial-gradient(circle at 88% 12%, rgba(178, 43, 143, 0.2), transparent 7rem),
    linear-gradient(145deg, white, #fff3e1);
}

.child-grid span {
  margin-bottom: 0.45rem;
  color: var(--plum);
  font-family: Lora, Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
}

.child-grid h3 {
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.child-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.childhood-story {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  padding: 2rem 2rem 2.2rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 16%, rgba(240, 189, 79, 0.24), transparent 18rem),
    radial-gradient(circle at 84% 12%, rgba(178, 43, 143, 0.2), transparent 16rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.childhood-sticky {
  position: static;
  align-self: start;
}

.childhood-sticky h2 {
  max-width: 380px;
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.childhood-sticky p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.childhood-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  align-self: stretch;
}

.childhood-cards article {
  min-height: 0;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.childhood-cards span {
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.childhood-cards h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.childhood-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.about-work {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 16%, rgba(240, 189, 79, 0.24), transparent 18rem),
    radial-gradient(circle at 84% 12%, rgba(178, 43, 143, 0.2), transparent 16rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  color: white;
  box-shadow: var(--shadow);
}

.about-work-copy {
  align-self: center;
}

.about-work-copy h2 {
  max-width: 430px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.about-work-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.about-work .mission-tags span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.about-work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.about-work-cards article {
  min-height: 215px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.about-work-cards article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.about-work-cards span {
  color: var(--gold);
  font-weight: 900;
}

.about-work-cards h3 {
  margin-top: 0.75rem;
  color: white;
}

.about-work-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.impact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.75rem;
  padding: 4.8rem max(1.5rem, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 20%, rgba(240, 189, 79, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(178, 43, 143, 0.22), transparent 42%),
    var(--indigo);
  color: white;
}

.impact-copy p {
  max-width: 540px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.76);
}

.impact-copy a {
  display: inline-flex;
  margin-top: 1rem;
  color: white;
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  align-self: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
}

.impact-stats div {
  min-height: 178px;
  padding: 1.45rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
}

.impact-stats strong {
  display: flex;
  justify-content: center;
  width: 5.1rem;
  color: var(--gold);
  font-family: Lora, Georgia, serif;
  font-size: 2.9rem;
  line-height: 1.08;
  min-height: 1.12em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.odometer {
  display: inline-flex;
  gap: 0.01em;
  height: 1.2em;
  overflow: hidden;
  vertical-align: -0.05em;
}

.digit-window {
  display: inline-block;
  width: 0.62em;
  height: 1.2em;
  overflow: hidden;
}

.digit-reel {
  display: block;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.22, 1);
  will-change: transform;
}

.digit-reel span {
  display: block;
  height: 1.2em;
  margin: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

.odometer.is-rolling .digit-window {
  filter: drop-shadow(0 0 14px rgba(240, 189, 79, 0.3));
}

.impact-stats > div > span {
  display: block;
  max-width: 8rem;
  min-height: 2.5em;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.impact-stats .odometer {
  justify-content: center;
  min-width: 2.1em;
}

.proof-deck {
  width: min(1180px, calc(100% - 3rem));
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-deck article {
  min-height: 250px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(23, 32, 47, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-deck article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(74, 53, 116, 0.16);
}

.proof-deck p {
  margin: 0;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-deck h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.funder-impact {
  padding-bottom: 5rem;
}

.funder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.funder-grid article {
  min-height: 260px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.funder-grid article:hover,
.story-stack article:hover,
.dashboard-grid article:hover,
.giving-grid article:hover,
.transparency-grid article:hover,
.expect-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(74, 53, 116, 0.14);
}

.funder-grid span {
  width: fit-content;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--rose);
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.funder-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.stories-section {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 7rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.stories-intro {
  padding: 2rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(47, 49, 87, 0.86), rgba(178, 43, 143, 0.58)),
    url("https://menchvillehouse.com/wp-content/uploads/2021/11/cropped-cropped-cropped-mhm-copy.png") center / cover;
  color: white;
}

.stories-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.story-stack article {
  min-height: 165px;
  padding: 1.35rem;
  display: grid;
  align-content: space-between;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-stack span {
  width: fit-content;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.impact-dashboard {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 7rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.impact-dashboard > div:first-child {
  max-width: 780px;
}

.impact-dashboard > div:first-child p:not(.eyebrow) {
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 10px;
  background: var(--line);
}

.dashboard-grid article {
  min-height: 165px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 90% 15%, rgba(240, 189, 79, 0.23), transparent 7rem),
    var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.dashboard-grid strong {
  display: block;
  color: var(--plum);
  font-family: Lora, Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.dashboard-grid .odometer {
  gap: 0;
  min-width: 0;
}

.dashboard-grid .digit-window {
  width: 0.52em;
}

.dashboard-grid p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.impact-hero p:not(.eyebrow) {
  max-width: 820px;
}

.impact-hero {
  padding-bottom: 7rem;
}

.impact-hero::before {
  height: 620px;
}

.impact-hero h1 {
  max-width: 980px;
  font-size: clamp(2.55rem, 5.2vw, 4.9rem);
  line-height: 1.05;
}

.annual-impact {
  margin-top: -2.25rem;
}

.monthly-impact {
  width: min(1180px, calc(100% - 3rem));
  margin: -3.25rem auto 7rem;
  padding: 2rem;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 189, 79, 0.26), transparent 18rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.monthly-impact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.monthly-impact-intro h2 {
  max-width: 720px;
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.monthly-impact-intro p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.staff-portal-link {
  width: fit-content;
  min-height: 38px;
  margin-top: 1rem;
  padding: 0.58rem 0.78rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border: 1px dashed rgba(255, 255, 255, 0.32);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.staff-portal-link:hover {
  transform: translateY(-3px);
  background: white;
  color: var(--plum);
}

.monthly-impact-intro aside {
  margin-top: 3.2rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.monthly-impact-intro aside span,
.monthly-impact-intro aside strong {
  display: block;
}

.monthly-impact-intro aside span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.monthly-impact-intro aside strong {
  margin-top: 0.35rem;
  color: white;
  font-family: Lora, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.monthly-impact-intro aside p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.monthly-impact-intro aside .staff-portal-link {
  margin-top: 0.95rem;
}

.impact-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

.impact-calendar article {
  min-height: 315px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease;
}

.impact-calendar article:hover {
  box-shadow: 0 22px 46px rgba(38, 29, 64, 0.22);
}

.impact-calendar article > span {
  color: white;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-card-group {
  padding: 0.85rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.calendar-card-group.highlight {
  background: rgba(240, 189, 79, 0.13);
  border: 1px solid rgba(240, 189, 79, 0.24);
}

.calendar-card-group p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-calendar dl {
  display: grid;
  gap: 0.4rem;
  margin: 0.65rem 0 0;
}

.impact-calendar dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-calendar dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.impact-calendar dd {
  margin: 0;
  color: var(--gold);
  font-family: Lora, Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.impact-calendar dd.is-pending {
  color: rgba(255, 255, 255, 0.58);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-calendar .current-month {
  background: rgba(240, 189, 79, 0.18);
  border-color: rgba(240, 189, 79, 0.5);
}

.impact-calendar .calendar-total {
  grid-column: span 4;
  min-height: 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
}

.impact-calendar .calendar-total:hover {
  box-shadow: none;
}

.impact-calendar .calendar-total dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.impact-calendar .calendar-total dl div {
  display: block;
  padding: 0 0 0 1rem;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-data-note {
  max-width: 820px;
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.55;
}

.impact-story {
  padding-top: 1rem;
}

.executive-report {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 7rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
}

.report-cover,
.report-summary article {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
}

.report-cover {
  min-height: 460px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 189, 79, 0.22), transparent 16rem),
    linear-gradient(135deg, rgba(47, 49, 87, 0.94), rgba(178, 43, 143, 0.78)),
    url("assets/dinner.jpg") center / cover;
}

.report-cover h2 {
  max-width: 520px;
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.report-cover p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.report-cover .btn {
  width: fit-content;
  margin-top: 1rem;
}

.report-summary {
  display: grid;
  gap: 1rem;
}

.report-summary article {
  padding: 1.4rem;
  display: grid;
  align-content: center;
  background: white;
  border: 1px solid var(--line);
}

.report-summary span {
  color: var(--plum);
  font-weight: 900;
}

.report-summary h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.report-summary p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.report-full {
  padding-top: 0;
}

.report-document {
  max-width: 920px;
  margin-top: 2rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.report-document h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.report-document h4 {
  margin-top: 2rem;
  color: var(--ink);
  font-size: 1.18rem;
}

.report-document p,
.report-document li {
  color: var(--muted);
  line-height: 1.68;
}

.report-document ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.report-document li + li {
  margin-top: 0.45rem;
}

.report-signature {
  color: var(--ink) !important;
  font-weight: 900;
}

.impact-cta {
  width: min(1180px, calc(100% - 3rem));
  margin: -2rem auto 7rem;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(240, 189, 79, 0.24), transparent 17rem),
    linear-gradient(135deg, var(--plum), var(--indigo));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.impact-cta h2 {
  max-width: 740px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.impact-cta p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.impact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.impact-admin-shell {
  width: min(1180px, calc(100% - 3rem));
  margin: -2.25rem auto 7rem;
  display: grid;
  gap: 1.25rem;
}

.impact-admin-hero {
  padding-top: 3.2rem;
  padding-bottom: 5.2rem;
}

.impact-admin-hero::before {
  height: 470px;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 189, 79, 0.28), transparent 20rem),
    radial-gradient(circle at 14% 76%, rgba(255, 255, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
}

.impact-admin-hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.4vw, 4.4rem);
  line-height: 1.02;
}

.impact-admin-hero p:not(.eyebrow) {
  max-width: 690px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.admin-login-panel,
.admin-form-panel {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.admin-login-panel {
  max-width: 620px;
}

.admin-login-panel h2,
.admin-form-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.admin-login-panel p,
.admin-form-heading p {
  max-width: 720px;
  color: var(--muted);
}

.impact-login-form,
.impact-stats-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.impact-login-form label,
.impact-stats-form label {
  display: grid;
  gap: 0.45rem;
}

.impact-login-form span,
.impact-stats-form label > span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-login-form input,
.impact-stats-form input,
.impact-stats-form select,
.impact-stats-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

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

.impact-stats-form .admin-notes,
.impact-stats-form .admin-form-note,
.admin-form-actions,
.form-message {
  grid-column: 1 / -1;
}

.admin-form-note {
  margin: -0.15rem 0 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(178, 43, 143, 0.16);
  border-radius: 10px;
  background: rgba(178, 43, 143, 0.06);
  color: var(--muted);
  line-height: 1.55;
}

.impact-stats-form textarea {
  resize: vertical;
}

.admin-form-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.admin-form-heading .btn {
  flex: 0 0 auto;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-message {
  margin: 0;
  color: var(--plum);
  font-weight: 900;
}

.outcomes-board {
  width: min(1180px, calc(100% - 3rem));
  margin: -3rem auto 7rem;
  padding: 2rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 20%, rgba(240, 189, 79, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  color: white;
  box-shadow: var(--shadow);
}

.outcomes-board > div:first-child p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.outcome-slots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.outcome-slots article {
  min-height: 132px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.outcome-slots strong,
.outcome-slots span {
  display: block;
}

.outcome-slots strong {
  font-family: Lora, Georgia, serif;
  font-size: 2.7rem;
  color: var(--gold);
}

.outcome-slots span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.programs {
  padding-bottom: 5rem;
}

.programs-hero h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 6.2vw, 4.75rem);
}

.programs-hero p:not(.eyebrow) {
  max-width: 760px;
}

.programs-hero {
  padding-top: 4.6rem;
  padding-bottom: 5.2rem;
}

.program-intro,
.program-requirements,
.program-photo-strip,
.program-path,
.children-programs,
.privacy-statement {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 5.5rem;
}

.program-intro {
  margin-top: -2.25rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.program-intro h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.04;
}

.program-quick-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.program-quick-list article {
  min-height: 185px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 189, 79, 0.14), transparent 8rem),
    rgba(249, 228, 242, 0.55);
  border: 1px solid rgba(178, 43, 143, 0.13);
  border-radius: 10px;
}

.program-quick-list strong {
  color: var(--plum);
  font-weight: 900;
}

.program-quick-list span,
.children-programs p,
.privacy-copy p {
  color: var(--muted);
  line-height: 1.66;
}

.program-requirements {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: stretch;
}

.requirements-panel {
  min-height: 400px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    radial-gradient(circle at 85% 16%, rgba(240, 189, 79, 0.25), transparent 16rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.requirements-panel h2 {
  color: white;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
}

.requirements-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.requirements-panel .btn {
  width: fit-content;
  margin-top: 0.8rem;
}

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

.requirements-list article {
  min-height: 150px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0.4rem 0.95rem;
  align-content: start;
  align-items: start;
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 189, 79, 0.16), transparent 8rem),
    white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.requirements-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 43, 143, 0.26);
  box-shadow: 0 24px 64px rgba(74, 53, 116, 0.14);
}

.requirements-list span {
  color: var(--plum);
  font-weight: 900;
  line-height: 1.25;
}

.requirements-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.requirements-list p {
  grid-column: 2;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.program-photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 1rem;
}

.program-photo-strip figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.11);
}

.program-photo-strip figure:first-child {
  min-height: 380px;
}

.program-photo-strip img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 550ms ease, filter 550ms ease;
}

.program-photo-strip figure:first-child img {
  object-position: 50% 34%;
}

.program-photo-strip figure:nth-child(2) img {
  object-position: 64% 42%;
}

.program-photo-strip figure:nth-child(3) img {
  object-position: 48% 45%;
}

.program-photo-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(44, 41, 80, 0.68));
}

.program-photo-strip figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.program-photo-strip figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(44, 41, 80, 0.18);
}

.section-heading {
  max-width: 760px;
}

.referral {
  padding-bottom: 5rem;
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.35rem;
}

.process-note {
  max-width: 920px;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: rgba(249, 228, 242, 0.72);
  border: 1px solid rgba(178, 43, 143, 0.18);
  border-radius: 10px;
  color: var(--ink-soft);
}

.process-note strong {
  flex: 0 0 auto;
  color: var(--plum);
  font-weight: 900;
}

.process-note span {
  color: var(--muted);
  line-height: 1.5;
}

.referral-steps > * {
  position: relative;
  min-height: 235px;
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.referral-steps > .is-active,
.referral-steps:not(:has(article.is-active)) article:first-child,
.referral-steps:not(:has(.is-active)) > :first-child,
.referral-steps > :is(:hover, :focus-visible) {
  background: linear-gradient(135deg, var(--plum), var(--indigo));
  color: white;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 26px 66px rgba(178, 43, 143, 0.24);
}

.referral-steps:has(.is-active) > :first-child:not(.is-active, :hover, :focus-visible),
.referral-steps:has(article:is(:hover, :focus-visible)) article:first-child:not(:hover, :focus-visible) {
  background: white;
  color: var(--ink);
  border-color: var(--line);
  transform: none;
  box-shadow: 0 16px 42px rgba(74, 53, 116, 0.08);
}

.referral-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--rose);
  color: var(--plum);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.referral-steps h3 {
  min-height: 2.65em;
  margin-bottom: 0.75rem;
}

.referral-steps > .is-active span,
.referral-steps:not(:has(article.is-active)) article:first-child span,
.referral-steps:not(:has(.is-active)) > :first-child span,
.referral-steps > :is(:hover, :focus-visible) span {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.04);
}

.referral-steps:has(.is-active) > :first-child:not(.is-active, :hover, :focus-visible) span,
.referral-steps:has(article:is(:hover, :focus-visible)) article:first-child:not(:hover, :focus-visible) span {
  background: var(--rose);
  color: var(--plum);
  transform: none;
}

.referral-steps p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.46;
  transition: color 180ms ease;
}

.referral-steps a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.referral-steps > .is-active p,
.referral-steps:not(:has(article.is-active)) article:first-child p,
.referral-steps:not(:has(.is-active)) > :first-child p,
.referral-steps > :is(:hover, :focus-visible) p {
  color: rgba(255, 255, 255, 0.74);
}

.referral-steps:has(.is-active) > :first-child:not(.is-active, :hover, :focus-visible) p,
.referral-steps:has(article:is(:hover, :focus-visible)) article:first-child:not(:hover, :focus-visible) p {
  color: var(--muted);
}

.faq-heading {
  max-width: 780px;
  margin-top: 2.6rem;
}

.faq-heading .eyebrow {
  font-size: 0.96rem;
  letter-spacing: 0.16em;
}

.faq-heading h2,
.faq-heading h3 {
  margin: 0.2rem 0 0;
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.18;
}

.help-faq .faq-heading {
  margin-top: 0;
}

.help-faq .faq-heading h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.help-faq .faq-heading p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: rgba(178, 43, 143, 0.35);
  box-shadow: 0 18px 50px rgba(178, 43, 143, 0.09);
}

.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  color: var(--ink);
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.faq-list summary:hover {
  color: var(--plum);
  background: rgba(249, 228, 242, 0.65);
}

.faq-list summary::marker {
  color: var(--plum);
}

.faq-list p {
  margin: 0;
  padding: 0.2rem 1.25rem 1.3rem;
  color: var(--muted);
  line-height: 1.58;
}

.faq-list a {
  color: var(--plum);
  font-weight: 900;
}

.what-to-expect {
  width: min(1180px, calc(100% - 3rem));
  margin: -2rem auto 6rem;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.what-to-expect > div:first-child p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.62;
}

.what-to-expect h2 {
  margin-bottom: 0.2rem;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.expect-grid article {
  min-height: 165px;
  padding: 1.35rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.expect-grid h3 {
  margin-bottom: 0.75rem;
}

.expect-grid p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.help-prep {
  margin-top: -2.5rem;
  margin-bottom: 2rem;
}

.call-checklist {
  display: grid;
  gap: 0.75rem;
}

.call-checklist label {
  cursor: pointer;
  min-height: 64px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 189, 79, 0.14), transparent 8rem),
    white;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.42;
  box-shadow: 0 14px 34px rgba(74, 53, 116, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.call-checklist label:hover {
  transform: translateY(-2px);
  border-color: rgba(178, 43, 143, 0.28);
  box-shadow: 0 20px 46px rgba(74, 53, 116, 0.11);
}

.call-checklist input {
  width: 28px;
  height: 28px;
  margin: 0;
  accent-color: var(--plum);
}

.call-checklist label:has(input:checked) {
  background: rgba(249, 228, 242, 0.62);
  border-color: rgba(178, 43, 143, 0.3);
}

.call-checklist label:has(input:checked) span {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(178, 43, 143, 0.55);
}

.local-resources {
  padding-top: 2.8rem;
}

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

.resource-card {
  min-height: 420px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 85% 12%, rgba(240, 189, 79, 0.18), transparent 8rem),
    white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 43, 143, 0.26);
  box-shadow: 0 26px 66px rgba(74, 53, 116, 0.13);
}

.resource-card.featured-resource {
  color: white;
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 189, 79, 0.28), transparent 12rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
}

.resource-card h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.resource-card p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.55;
}

.resource-card ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.52;
}

.resource-card li + li {
  margin-top: 0.45rem;
}

.resource-card.featured-resource .eyebrow,
.resource-card.featured-resource h3 {
  color: white;
}

.resource-card.featured-resource p,
.resource-card.featured-resource ul {
  color: rgba(255, 255, 255, 0.78);
}

.resource-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.resource-actions a {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rose);
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.resource-actions a:hover {
  transform: translateY(-2px);
  background: var(--plum);
  color: white;
}

.featured-resource .resource-actions a {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.featured-resource .resource-actions a:hover {
  background: white;
  color: var(--plum);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.program-grid article,
.volunteer-list article,
address {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.program-grid article {
  min-height: 205px;
  padding: 1.4rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-grid article:hover,
.volunteer-list article:hover,
.trust-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.program-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-weight: 900;
}

.program-grid p,
.volunteer-list p,
.give-panel aside p {
  color: var(--muted);
}

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

.services-grid article {
  min-height: 245px;
}

.program-path {
  padding: clamp(1.7rem, 3.5vw, 2.7rem);
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 2rem;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(240, 189, 79, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--plum), var(--indigo));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.program-path h2 {
  color: white;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.04;
}

.program-path-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.program-path-steps article {
  min-height: 220px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.program-path-steps article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.program-path-steps span {
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.program-path-steps h3 {
  color: white;
  margin-bottom: 0;
}

.program-path-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.children-programs,
.privacy-statement {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: start;
}

.children-programs h2,
.privacy-statement h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
}

.children-programs {
  align-items: center;
}

.children-copy {
  padding: clamp(1rem, 2vw, 1.4rem) 0;
}

.children-photo-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.11);
}

.children-photo-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 550ms ease;
}

.children-photo-card:hover img {
  transform: scale(1.04);
}

.privacy-statement {
  margin-bottom: 7rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 189, 79, 0.14), transparent 12rem),
    white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.privacy-copy {
  padding-left: 2rem;
  border-left: 4px solid var(--gold);
}

.editorial-break {
  width: min(1180px, calc(100% - 3rem));
  margin: 1rem auto 6rem;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: end;
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(23, 32, 47, 0.94), rgba(23, 32, 47, 0.62)),
    url("https://menchvillehouse.com/wp-content/uploads/2024/12/Untitled-design.png") center / cover;
  color: white;
  border-radius: 14px;
  overflow: hidden;
}

.editorial-break h2 {
  max-width: 760px;
}

.editorial-break > p {
  margin: 0;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.feature-row {
  width: min(1180px, calc(100% - 3rem));
  margin: -2rem auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.feature-image img.founders-photo {
  max-width: 70%;
  max-height: 310px;
  min-height: 0;
  margin: 2.5rem auto;
  padding: clamp(0.75rem, 1.4vw, 1.25rem);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), rgba(255, 248, 252, 0.72) 56%, rgba(178, 43, 143, 0.14)),
    white;
  object-fit: contain;
}

.feature-image {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 189, 79, 0.18), transparent 16rem),
    linear-gradient(135deg, #fff8fc, #f1ecff);
}

.image-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 280px;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(23, 32, 47, 0.82);
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.feature-copy {
  align-self: center;
  padding: 2.25rem 2.5rem 2.25rem 1rem;
}

.feature-copy h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.05;
}

.feature-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-values {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}

.about-values h2 {
  max-width: 460px;
  font-size: clamp(2.15rem, 3.5vw, 3.9rem);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-value-grid article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.12);
}

.about-value-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.about-value-grid article:first-child img {
  object-position: 52% 50%;
}

.about-value-grid article:nth-child(2) img {
  object-position: 68% 48%;
}

.about-value-grid article:nth-child(3) img {
  object-position: 70% 44%;
}

.about-value-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(47, 49, 87, 0.76));
}

.about-value-grid article:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.about-value-grid span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.give {
  width: min(1240px, calc(100% - 3rem));
}

.give-hero {
  padding-top: 4.5rem;
  padding-bottom: 3.4rem;
}

.give-hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 5.8vw, 4.45rem);
}

.give-hero p:not(.eyebrow) {
  max-width: 660px;
}

.give-hero .btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.give-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 4vw, 3.2rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(230, 180, 80, 0.35), transparent 18rem),
    linear-gradient(135deg, var(--plum-dark), var(--plum));
  color: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.give-panel::before {
  content: "";
  position: absolute;
  inset: auto -5rem -9rem auto;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.give-panel > * {
  position: relative;
}

.give-copy {
  align-self: center;
}

.give-copy h2 {
  max-width: 760px;
  margin-top: 0.45rem;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.mail-check-card {
  max-width: 620px;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.mail-check-card h3 {
  margin-bottom: 0.45rem;
  color: white;
}

.mail-check-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.give-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.07rem;
}

.give-panel aside {
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(38, 29, 64, 0.18);
}

.impact-picker h3 {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.amount-buttons button {
  min-height: 46px;
  border: 1px solid rgba(178, 43, 143, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--plum);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.amount-buttons button.active,
.amount-buttons button:hover {
  background: var(--plum);
  color: white;
  box-shadow: 0 14px 30px rgba(178, 43, 143, 0.2);
  transform: translateY(-2px);
}

.amount-buttons button:active {
  transform: translateY(0) scale(0.98);
}

.impact-picker .eyebrow {
  margin-bottom: 0;
  color: var(--teal);
}

.impact-picker #impactText {
  min-height: 112px;
  margin: 0;
  padding: 1.05rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(249, 228, 242, 0.86), rgba(255, 246, 232, 0.86));
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.donation-note {
  margin-top: 1rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.give-photo-story {
  width: min(1180px, calc(100% - 3rem));
  margin: 2rem auto 6rem;
}

.give-photo-story .section-heading {
  margin-bottom: 1.6rem;
}

.give-photo-story .section-heading h2 {
  margin-top: 0.45rem;
  max-width: 980px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.give-photo-story .section-heading p:not(.eyebrow) {
  margin-top: 0.8rem;
  max-width: 620px;
  color: var(--muted);
}

.give-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.give-photo-card {
  position: relative;
  aspect-ratio: 1.18 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--plum);
  box-shadow: 0 22px 55px rgba(47, 49, 87, 0.15);
}

.give-photo-card.feature {
  grid-column: auto;
  aspect-ratio: 1.18 / 1;
}

.give-photo-card.portrait {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.14), transparent 16rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
}

.give-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.give-photo-card.portrait img {
  object-fit: contain;
  padding: 0.65rem;
}

.give-photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.give-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(31, 27, 57, 0.72));
  pointer-events: none;
}

.give-photo-card figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 1;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.needed-strip {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.needed-copy h2 {
  margin-top: 0.45rem;
}

.needed-copy > p:not(.eyebrow) {
  margin-top: 0.9rem;
  max-width: 520px;
  color: var(--muted);
}

.dropoff-card {
  margin-top: 1.35rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(178, 43, 143, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(178, 43, 143, 0.09);
}

.dropoff-card h3 {
  margin-bottom: 0.55rem;
  color: var(--plum);
}

.dropoff-card p {
  margin: 0;
  color: var(--ink-soft);
}

.dropoff-card p + p {
  margin-top: 0.45rem;
}

.dropoff-card a {
  color: var(--plum);
  font-weight: 900;
}

.donor-journey {
  width: min(1180px, calc(100% - 3rem));
  margin: -2rem auto 6rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.donor-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.donor-path article {
  position: relative;
  min-height: 185px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.donor-path article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(74, 53, 116, 0.14);
}

.donor-path article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.95rem;
  width: 1.1rem;
  height: 2px;
  background: var(--plum);
}

.donor-path article:last-child::after {
  display: none;
}

.donor-path span {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.donor-path p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.giving-options {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: start;
}

.giving-options .section-heading h2 {
  margin-top: 0.45rem;
}

.giving-options .section-heading p:not(.eyebrow) {
  margin-top: 0.85rem;
  color: var(--muted);
}

.giving-grid,
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.giving-grid article,
.transparency-grid article {
  min-height: 180px;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.giving-grid p,
.transparency-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.item-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  align-content: center;
  min-height: 220px;
  padding: 1.4rem;
  border: 1px solid rgba(178, 43, 143, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 189, 79, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.58);
}

.item-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(178, 43, 143, 0.1);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.item-cloud span:hover {
  transform: translateY(-5px) rotate(-1deg);
  background: var(--plum);
  color: white;
}

ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.55rem;
}

.volunteer {
  padding-top: 2rem;
}

.volunteer-hero h1 {
  max-width: 980px;
}

.page-hero.volunteer-hero {
  padding-top: 2.75rem;
  padding-bottom: 5.85rem;
}

.volunteer-hero p:not(.eyebrow) {
  max-width: 760px;
}

.volunteer-hero .hero-actions {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .volunteer-hero .hero-actions {
    margin-top: 1rem;
    gap: 0.5rem;
    transform: none;
  }

  .volunteer-hero .hero-actions .btn {
    min-height: 42px;
    padding: 0.62rem 0.82rem;
    font-size: 0.9rem;
  }
}

.volunteer-intro,
.volunteer-photo-story,
.volunteer-contact {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
}

.volunteer-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.volunteer-intro h2,
.volunteer-photo-story h2,
.volunteer-contact h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
}

.volunteer-note {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(74, 53, 116, 0.08);
}

.volunteer-note p,
.volunteer-story-copy p,
.volunteer-contact p {
  color: var(--muted);
  line-height: 1.7;
}

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

.volunteer-list article {
  min-height: 225px;
  padding: 1.45rem;
  border-top: 5px solid var(--gold);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.volunteer-list article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  margin-bottom: 1rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volunteer-photo-story {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2rem;
  align-items: center;
}

.volunteer-photo-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.13);
}

.volunteer-photo-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.volunteer-story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.volunteer-story-list span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(178, 43, 143, 0.08);
}

.volunteer-journey {
  margin-bottom: 6rem;
}

.volunteer-contact {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(43, 128, 128, 0.92), rgba(74, 53, 116, 0.92)),
    url("assets/volunteer-group.jpg") center / cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.volunteer-contact h2,
.volunteer-contact .eyebrow {
  color: white;
}

.volunteer-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.volunteer-contact-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.volunteer-contact-card a {
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: white;
  color: var(--plum);
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

.volunteer-contact-card p {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

.newsroom {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.news-grid {
  display: grid;
  gap: 1rem;
}

.news-grid article {
  min-height: 150px;
  padding: 1.4rem;
  display: grid;
  align-content: space-between;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(74, 53, 116, 0.14);
}

.news-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.news-grid h3 {
  max-width: 520px;
  font-size: 1.45rem;
}

.transparency {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: start;
}

.sponsor-strip {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(74, 53, 116, 0.1);
}

.sponsor-strip > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sponsor-strip h2 {
  max-width: 560px;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 1.05;
}

.sponsor-strip p:not(.eyebrow) {
  max-width: 520px;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.sponsor-showcase {
  width: 100%;
  min-width: 0;
  max-width: 660px;
  justify-self: end;
}

.sponsor-marquee {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.sponsor-row {
  overflow: hidden;
}

.sponsor-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 1rem;
  align-items: center;
  width: max-content;
  animation: sponsorScroll 56s linear infinite;
}

.sponsor-row-2 .sponsor-track {
  animation-direction: reverse;
  animation-duration: 62s;
}

.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}

.sponsor-card {
  min-height: 138px;
  padding: 1rem;
  display: grid;
  grid-template-rows: 78px minmax(2.5em, auto);
  gap: 0.85rem;
  place-items: center;
  background: linear-gradient(135deg, var(--plum), var(--indigo));
  border: 1px solid var(--line);
  border-radius: 10px;
  color: white;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(74, 53, 116, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.sponsor-card:has(img) {
  background: linear-gradient(135deg, var(--plum), var(--indigo));
}

.sponsor-card:is(a):hover,
.sponsor-card:is(a):focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 68px rgba(178, 43, 143, 0.24);
  filter: saturate(1.1);
}

.sponsor-logo-plate {
  width: 100%;
  height: 78px;
  padding: 0;
  display: grid;
  place-items: center;
}

.sponsor-card img {
  max-height: 70px;
  max-width: 168px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(47, 49, 87, 0.22));
}

.sponsor-name {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sponsor-logo-placeholder {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sponsor-card.logo-fallback {
  background: linear-gradient(135deg, var(--plum), var(--indigo));
  color: white;
}

.sponsor-note {
  max-width: none;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(249, 228, 242, 0.68);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

@keyframes sponsorScroll {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-track {
    animation: none;
    width: auto;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.team-grid article {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(240, 189, 79, 0.22), transparent 7rem),
    white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(74, 53, 116, 0.14);
}

.team-grid img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  object-position: center 24%;
  background: var(--rose);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.team-grid span {
  margin: 1.05rem 1rem 0;
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.team-grid h3 {
  margin: 0.4rem 1rem 0;
  font-size: 1.24rem;
  text-align: center;
}

.team-grid p {
  margin: 0.65rem 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.48;
  text-align: center;
}

.board-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.board-list article {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 189, 79, 0.2), transparent 7rem),
    white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.board-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(74, 53, 116, 0.14);
}

.board-list img,
.board-placeholder {
  width: 100%;
  height: 235px;
  background: var(--rose);
}

.board-list img {
  object-fit: cover;
  object-position: center 24%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.board-placeholder {
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 189, 79, 0.34), transparent 7rem),
    linear-gradient(135deg, var(--plum), var(--indigo));
}

.board-list strong,
.board-list span,
.board-list em {
  display: block;
}

.board-list strong {
  margin: 1.05rem 1rem 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.board-list span {
  margin: 0.42rem 1rem 0;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.board-list em {
  margin: 0.58rem 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.91rem;
  font-style: normal;
  line-height: 1.42;
}

.about-cta {
  width: min(1180px, calc(100% - 3rem));
  margin: -1rem auto 5.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 189, 79, 0.26), transparent 16rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-cta h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-cta p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.about-cta .btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.journey {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2rem 0 7rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.journey-copy {
  position: sticky;
  top: 8rem;
}

.journey-track {
  display: grid;
  gap: 1rem;
  counter-reset: path;
}

.journey-track article {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 1rem;
  padding: 1.35rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(23, 32, 47, 0.06);
}

.journey-track span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--plum), var(--indigo));
  color: white;
  font-family: Lora, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.journey-track h3,
.journey-track p {
  margin: 0;
}

.journey-track p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.event-strip {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 3rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent),
    var(--rose);
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(23, 32, 47, 0.08);
}

.event-strip h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.events-hero p:not(.eyebrow) {
  max-width: 760px;
}

.events-feature,
.event-calendar-shell,
.events-staff-footer {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.events-feature {
  margin-top: 0.75rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.events-feature h2,
.event-calendar-toolbar h2 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  line-height: 1.04;
}

.events-feature h2 {
  max-width: 640px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.events-feature p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.events-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.events-feature figure {
  min-height: 360px;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.events-feature img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.events-feature figcaption {
  padding: 1rem;
  color: var(--ink);
  font-weight: 900;
}

.event-calendar-shell {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 86% 16%, rgba(240, 189, 79, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--plum-dark), var(--indigo));
  box-shadow: var(--shadow);
}

.event-calendar-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.event-calendar-toolbar h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.event-calendar-controls {
  display: grid;
  grid-template-columns: auto minmax(150px, auto) auto;
  gap: 0.65rem;
  align-items: center;
}

.event-calendar-controls strong {
  color: white;
  font-weight: 950;
  text-align: center;
}

.event-calendar-controls button {
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.event-calendar-controls button:hover,
.event-calendar-controls button:focus-visible {
  transform: translateY(-2px);
  background: white;
  color: var(--plum);
}

.events-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.calendar-weekday,
.calendar-day {
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
}

.calendar-weekday {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 150px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendar-day.is-empty {
  background: rgba(255, 255, 255, 0.05);
}

.calendar-day strong {
  color: white;
  font-family: Lora, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.calendar-event {
  width: 100%;
  min-height: 38px;
  padding: 0.52rem 0.6rem;
  border: 1px solid rgba(240, 189, 79, 0.35);
  border-radius: 8px;
  background: rgba(240, 189, 79, 0.18);
  color: white;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.calendar-event:hover,
.calendar-event:focus-visible {
  transform: translateY(-2px);
  background: white;
  color: var(--plum);
  border-color: white;
}

.events-empty {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.events-staff-footer {
  margin-bottom: 6rem;
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.events-admin-panel {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(178, 43, 143, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 228, 242, 0.72), rgba(238, 244, 255, 0.86));
}

.events-admin-panel[hidden] {
  display: none;
}

.events-admin-login,
.events-admin-editor {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  gap: 1.5rem;
  align-items: start;
}

.events-admin-login h3,
.events-admin-editor h3 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.events-admin-login p:not(.eyebrow),
.events-admin-editor p:not(.eyebrow) {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.events-login-form,
.events-admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.events-login-form {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.events-login-form label,
.events-admin-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.events-login-form input,
.events-admin-form input,
.events-admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: white;
  color: var(--ink);
  font: inherit;
}

.events-admin-form textarea {
  resize: vertical;
}

.events-admin-wide,
.events-admin-actions,
.events-admin-message,
.events-login-form .events-admin-message {
  grid-column: 1 / -1;
}

.events-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events-admin-list {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(178, 43, 143, 0.18);
}

.events-admin-list [data-events-admin-items] {
  display: grid;
  gap: 0.65rem;
}

.events-admin-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.events-admin-list strong,
.events-admin-list span {
  display: block;
}

.events-admin-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.events-admin-list span,
.events-admin-empty {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.events-admin-list .btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0.58rem 0.82rem;
}

.events-admin-empty {
  margin: 0;
}

.events-admin-message {
  min-height: 1.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.event-modal[hidden] {
  display: none;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 38, 0.72);
  backdrop-filter: blur(12px);
}

.event-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(860px, 92vh);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.event-modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: var(--rose);
}

.event-modal-copy {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  overflow: auto;
}

.event-modal-copy p {
  margin: 0 0 0.75rem;
  color: var(--plum);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-modal-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.event-modal-copy span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.68;
  white-space: pre-wrap;
}

.event-modal-copy .btn {
  width: fit-content;
  margin-top: 1.25rem;
}

.event-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 40px;
  padding: 0.62rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 49, 87, 0.9);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.trust {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  padding-top: 4rem;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid article {
  padding: 1.4rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 4rem;
  align-items: start;
  padding-top: 4rem;
}

address {
  display: grid;
  gap: 0.35rem;
  padding: 2rem;
  font-style: normal;
}

address strong {
  font-size: 1.25rem;
}

.address-label {
  margin-top: 0.25rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

address a {
  color: var(--plum);
  font-weight: 900;
}

.newsletter-cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.newsletter-cta p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.newsletter-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum), var(--indigo));
  color: white;
  box-shadow: 0 18px 45px rgba(178, 43, 143, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.newsletter-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(178, 43, 143, 0.3);
}

.site-footer {
  position: static;
  bottom: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  padding: clamp(0.55rem, 1.1vw, 0.9rem) max(1.25rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, var(--plum-dark), var(--indigo));
  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(0.55rem, 1.2vw, 0.8rem);
}

.site-footer img {
  width: clamp(58px, 6.5vw, 86px);
  flex: 0 0 auto;
  background: transparent;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  line-height: 1.2;
  font-weight: 800;
}

.footer-brand span {
  display: block;
  margin-top: 0.08rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-credit {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.64rem, 0.9vw, 0.72rem);
  font-weight: 800;
  line-height: 1.25;
}

.footer-credit a {
  color: inherit;
  overflow-wrap: anywhere;
}

.footer-map {
  display: grid;
  gap: clamp(0.25rem, 0.8vw, 0.45rem);
  justify-items: end;
  min-width: 0;
}

.site-footer :is(nav, .footer-links) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem clamp(0.45rem, 1.1vw, 0.7rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 800;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.45rem, 1.2vw, 0.85rem);
}

.footer-social p {
  max-width: min(310px, 34vw);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  line-height: 1.25;
  text-align: right;
}

.social-links {
  gap: 0.5rem;
}

.social-links a {
  width: clamp(28px, 3.3vw, 34px);
  height: clamp(28px, 3.3vw, 34px);
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .nav-shell {
    position: relative;
    min-height: 0;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.9rem 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
    gap: 0.7rem 1rem;
    padding-bottom: 0.2rem;
  }

  .nav-cta {
    position: static;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero-grid,
  .pathways,
  .mission,
  .photo-story,
  .about-hero,
  .about-trust-strip,
  .about-values,
  .about-work,
  .about-cta,
  .impact-cta,
  .program-intro,
  .program-requirements,
  .program-photo-strip,
  .program-path,
  .children-programs,
  .privacy-statement,
  .need-urgent-panel,
  .impact-band,
  .monthly-impact-intro,
  .executive-report,
  .impact-calendar .calendar-total,
  .admin-form-heading,
  .proof-deck,
  .editorial-break,
  .feature-row,
  .give-panel,
  .needed-strip,
  .donor-journey,
  .volunteer-intro,
  .volunteer-photo-story,
  .volunteer-contact,
  .stories-section,
  .home-summary,
  .sponsor-strip,
  .what-to-expect,
  .giving-options,
  .transparency,
  .site-footer,
  .newsroom,
  .trust,
  .journey,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: end;
    padding-top: 7rem;
    gap: 2rem;
  }

  .hero-card {
    max-width: 520px;
    transform: none;
  }

  .hero-card:hover {
    transform: translateY(-5px);
  }

  .program-grid,
  .program-quick-list,
  .referral-steps,
  .requirements-list,
  .program-path-steps,
  .child-grid,
  .funder-grid,
  .dashboard-grid,
  .about-value-grid,
  .about-work-cards,
  .about-trust-strip,
  .resource-grid,
  .impact-calendar,
  .requirements-list,
  .program-path-steps,
  .team-grid,
  .board-list,
  .donor-path,
  .outcome-slots,
  .giving-grid,
  .transparency-grid,
  .impact-stats,
  .proof-deck,
  .volunteer-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta,
  .impact-cta {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .about-cta-actions,
  .impact-cta-actions {
    justify-content: flex-start;
  }

  .about-trust-strip article:nth-child(2n) {
    border-right: 0;
  }

  .about-trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .need-urgent-panel {
    margin-top: -0.5rem;
  }

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

  .impact-calendar .calendar-total {
    grid-column: span 2;
  }

  .impact-calendar .calendar-total dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .impact-calendar .calendar-total dl div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.55rem 0 0;
  }

  .pathway {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-copy {
    padding: 2rem 1.5rem;
  }

  .photo-story-copy {
    position: static;
  }

  .photo-mosaic {
    grid-auto-rows: 220px;
  }

  .sponsor-showcase {
    max-width: none;
    justify-self: stretch;
  }
}

.gallery-hero {
  padding-top: 4.5rem;
  padding-bottom: 3.8rem;
}

.gallery-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5.8vw, 4.45rem);
  line-height: 1.04;
}

.gallery-hero > p:not(.eyebrow) {
  max-width: 700px;
}

.album-intro,
.album-section,
.media-section,
.gallery-cta,
.gallery-staff-footer {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.album-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: 4.75rem 0 4.5rem;
}

.album-intro h2,
.media-section h2,
.gallery-cta h2 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  line-height: 1.03;
}

.album-intro h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

.album-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.album-section {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.album-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.album-toolbar h2 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.03;
}

.album-controls {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

.album-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.album-filters button {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(74, 53, 116, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.album-filters button:hover,
.album-filters button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(178, 43, 143, 0.42);
  box-shadow: 0 18px 36px rgba(178, 43, 143, 0.16);
}

.album-filters button.active {
  background: linear-gradient(135deg, var(--plum), var(--indigo));
  color: white;
  border-color: transparent;
}

.staff-upload-toggle {
  min-height: 36px;
  padding: 0.55rem 0.8rem;
  border: 1px dashed rgba(104, 107, 134, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.staff-upload-toggle:hover,
.staff-upload-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(178, 43, 143, 0.5);
  background: white;
  color: var(--plum);
}

.staff-only-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-count {
  grid-column: 2;
  justify-self: end;
  margin: -1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-admin-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 1.5rem;
  align-items: start;
  margin: 1rem 0 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(178, 43, 143, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 228, 242, 0.72), rgba(238, 244, 255, 0.86));
}

.gallery-admin-panel[hidden] {
  display: none;
}

.gallery-admin-panel h3 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.gallery-admin-panel p:not(.eyebrow) {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.gallery-admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.gallery-admin-form input,
.gallery-admin-form select,
.gallery-admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: white;
  color: var(--ink);
  font: inherit;
}

.gallery-admin-description,
.gallery-admin-form button,
.gallery-admin-message {
  grid-column: 1 / -1;
}

.gallery-admin-message {
  min-height: 1.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-admin-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.gallery-admin-list > div {
  display: grid;
  gap: 0.65rem;
}

.gallery-admin-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(104, 107, 134, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.gallery-admin-list article div {
  display: grid;
  gap: 0.2rem;
}

.gallery-admin-list strong {
  color: var(--ink);
}

.gallery-admin-list span,
.gallery-admin-empty {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: capitalize;
}

.gallery-admin-list .btn {
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 235px;
  grid-auto-flow: dense;
  gap: 0.9rem;
}

.album-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  font: inherit;
  text-align: left;
  isolation: isolate;
  box-shadow: 0 18px 44px rgba(47, 49, 87, 0.18);
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease;
}

.album-card.wide {
  grid-column: span 2;
}

.album-card.tall {
  grid-row: span 2;
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 220ms ease;
}

.album-card > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #18162a;
}

.album-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(31, 26, 55, 0.78), rgba(31, 26, 55, 0.12) 58%, transparent);
}

.album-card div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.album-card span {
  display: inline-flex;
  margin-bottom: 0.4rem;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.album-card h3 {
  margin: 0;
  max-width: 18rem;
  color: white;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.1;
}

.album-card:hover,
.album-card:focus-within {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 24px 60px rgba(178, 43, 143, 0.22);
}

.album-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.album-card.is-hidden {
  display: none;
}

.album-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.album-pagination button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.album-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.album-pagination span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 55, 0.78);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: 18px;
  background: white;
  box-shadow: 0 34px 90px rgba(31, 26, 55, 0.38);
}

.gallery-lightbox-panel img,
.gallery-lightbox-panel video {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  background: #18162a;
}

.gallery-lightbox-copy {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.3rem 1.25rem;
}

.gallery-lightbox-copy p,
.gallery-lightbox-copy h2 {
  margin: 0;
}

.gallery-lightbox-copy p {
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-lightbox-copy h2 {
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.gallery-lightbox-copy span {
  max-width: 760px;
  color: var(--muted);
}

.gallery-lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 26, 55, 0.2);
}

.media-section {
  padding: 5.5rem 0 4rem;
}

.media-section .section-heading {
  max-width: 740px;
  margin-bottom: 1.5rem;
}

.media-section .section-heading p:last-child {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.media-section h2 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

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

.media-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 20px 54px rgba(74, 53, 116, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.media-card.feature {
  grid-row: span 2;
  min-height: 390px;
  background: linear-gradient(145deg, rgba(134, 31, 120, 0.95), rgba(116, 117, 186, 0.9));
  color: white;
}

.video-feature {
  justify-content: flex-start;
}

.video-feature video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: #18162a;
  object-fit: contain;
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(178, 43, 143, 0.35);
  box-shadow: 0 28px 70px rgba(178, 43, 143, 0.18);
}

.media-card h3 {
  margin: 0.3rem 0 0.45rem;
  font-family: Lora, Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.media-card p {
  margin: 0;
  color: var(--muted);
}

.media-card.feature p {
  color: rgba(255, 255, 255, 0.84);
}

.media-card > span:last-child {
  margin-top: 1.1rem;
  color: var(--plum);
  font-weight: 950;
}

.video-placeholder {
  display: grid;
  min-height: 180px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 25% 25%, rgba(240, 189, 79, 0.34), transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.12);
}

.video-placeholder span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--plum);
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(47, 49, 87, 0.2);
}

.gallery-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(178, 43, 143, 0.95), rgba(116, 117, 186, 0.92)),
    var(--plum);
  color: white;
  box-shadow: var(--glow);
}

.gallery-cta h2 {
  max-width: 780px;
  font-size: clamp(2.15rem, 4.6vw, 4.4rem);
}

.gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.gallery-staff-footer {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
  margin-top: -3rem;
  margin-bottom: 4rem;
}

.gallery-staff-footer .gallery-admin-panel {
  width: 100%;
  margin: 0;
}

@media (max-width: 980px) {
  .gallery-hero {
    padding-bottom: 3.5rem;
  }

  .album-intro,
  .album-toolbar,
  .media-grid,
  .gallery-cta {
    grid-template-columns: 1fr;
  }

  .album-filters,
  .album-controls,
  .gallery-cta-actions {
    justify-items: start;
    justify-content: flex-start;
  }

  .gallery-admin-panel {
    grid-template-columns: 1fr;
  }

  .album-count {
    grid-column: auto;
    justify-self: start;
    margin-top: -1rem;
  }

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

  .media-card.feature {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .gallery-hero,
  .album-intro,
  .album-section,
  .media-section,
  .gallery-cta,
  .gallery-staff-footer {
    width: min(100% - 2rem, 1180px);
  }

  .album-intro {
    padding-top: 4.5rem;
  }

  .album-section,
  .gallery-cta {
    padding: 1.25rem;
  }

  .gallery-admin-form {
    grid-template-columns: 1fr;
  }

  .album-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .album-card.wide,
  .album-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .album-filters button {
    min-height: 40px;
    padding: 0.62rem 0.8rem;
  }

  .gallery-lightbox {
    padding: 0.8rem;
  }

  .gallery-lightbox-panel {
    border-radius: 14px;
  }

  .gallery-lightbox-copy {
    padding: 1rem;
  }

  .album-pagination {
    gap: 0.6rem;
  }

  .album-pagination button {
    padding-inline: 0.8rem;
  }
}

@media (max-width: 640px) {
  .crisis-bar {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .nav-shell,
  .hero-grid,
  .pathways,
  .webby-note,
  .section,
  .home-summary,
  .photo-story,
  .about-hero,
  .about-trust-strip,
  .about-values,
  .about-cta,
  .need-urgent-panel,
  .monthly-impact,
  .program-intro,
  .program-requirements,
  .program-photo-strip,
  .program-path,
  .children-programs,
  .privacy-statement,
  .executive-report,
  .sponsor-strip,
  .childhood-story,
  .proof-deck,
  .editorial-break,
  .give-photo-story,
  .needed-strip,
  .newsroom,
  .trust,
  .journey,
  .event-strip {
    width: min(100% - 2rem, 1180px);
  }

  .brand {
    min-width: 0;
    padding-right: 0;
  }

  .brand img {
    width: 108px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0.6rem 0.85rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.75rem 0.9rem;
    overflow-x: visible;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    gap: 1.5rem;
    padding-top: 4.5rem;
    padding-bottom: 4.25rem;
  }

  .hero-media {
    transform: none;
  }

  .hero-ribbon {
    display: none;
  }

  .floating-shapes,
  .play-shapes {
    display: none;
  }

  .story-marquee {
    display: none;
  }

  .webby-note {
    align-items: flex-start;
    border-radius: 10px;
    flex-direction: column;
  }

  .webby-note div {
    justify-content: flex-start;
  }

  .proof-deck,
  .editorial-break,
  .childhood-story,
  .program-intro,
  .program-quick-list,
  .program-requirements,
  .program-photo-strip,
  .program-path,
  .children-programs,
  .privacy-statement,
  .about-work,
  .stories-section,
  .home-summary,
  .about-values,
  .sponsor-strip,
  .donor-journey,
  .what-to-expect,
  .giving-options,
  .transparency,
  .newsroom {
    grid-template-columns: 1fr;
  }

  .childhood-story {
    padding: 1.5rem;
  }

  .program-intro,
  .program-photo-strip,
  .program-path,
  .privacy-statement {
    padding: 1.5rem;
  }

  .program-photo-strip {
    padding: 0;
  }

  .program-photo-strip figure,
  .program-photo-strip figure:first-child,
  .children-photo-card {
    min-height: 260px;
  }

  .requirements-panel {
    min-height: 0;
    padding: 1.5rem;
  }

  .privacy-copy {
    padding-left: 1rem;
  }

  .childhood-sticky h2 {
    font-size: 2.25rem;
  }

  .childhood-cards {
    grid-template-columns: 1fr;
  }

  .about-work {
    padding: 1.5rem;
  }

  .about-work-cards {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .photo-card.large,
  .photo-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .about-value-grid article {
    min-height: 260px;
  }

  .childhood-cards article {
    padding: 1rem;
  }

  .childhood-sticky {
    position: static;
  }

  .editorial-break {
    min-height: 520px;
    padding: 1.5rem;
  }

  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .give-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .give-photo-card.feature {
    grid-column: span 2;
    grid-row: auto;
  }

  .journey-copy {
    position: static;
  }

  .journey-track article {
    grid-template-columns: 1fr;
  }

  .journey-track span {
    grid-row: auto;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 2.75rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  h1,
  h2,
  h3,
  p {
    overflow-wrap: break-word;
  }

  .hero-copy p {
    font-size: 1.03rem;
  }

  .hero-card {
    padding: 1.15rem;
  }

  .hero-card dt {
    font-size: 2rem;
  }

  .hero-actions,
  .event-strip,
  .site-footer,
  .site-footer div,
  .site-footer :is(nav, .footer-links) {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-map {
    justify-items: start;
  }

  .footer-social {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-social p {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .site-footer div,
  .site-footer :is(nav, .footer-links) {
    flex-direction: row;
    align-items: center;
  }

  .footer-brand {
    align-items: center;
    gap: 0.55rem;
  }

  .site-footer img {
    width: 58px;
  }

  .site-footer p {
    font-size: 0.86rem;
  }

  .footer-brand span {
    font-size: 0.68rem;
  }

  .footer-credit {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .footer-map {
    justify-items: end;
    gap: 0.25rem;
  }

  .footer-social {
    align-items: center;
    justify-content: flex-end;
  }

  .footer-social p {
    display: none;
  }

  .site-footer :is(nav, .footer-links) {
    justify-content: flex-end;
    gap: 0.3rem 0.5rem;
    font-size: 0.78rem;
  }

  .social-links a {
    width: 28px;
    height: 28px;
  }

  .section {
    padding: 3.75rem 0;
  }

  .pathways {
    margin-top: -2.4rem;
    margin-bottom: 3.5rem;
  }

  .pathway {
    min-height: 140px;
    padding: 1.1rem;
  }

  .mission {
    gap: 1.5rem;
  }

  .mission-tags {
    grid-column: 1;
  }

  .child-grid article,
  .funder-grid article,
  .story-stack article,
  .dashboard-grid article,
  .outcome-slots article,
  .referral-steps > *,
  .expect-grid article,
  .program-grid article,
  .volunteer-list article,
  .giving-grid article,
  .transparency-grid article,
  .news-grid article {
    min-height: 0;
  }

  .child-grid article,
  .funder-grid article,
  .story-stack article,
  .expect-grid article,
  .program-grid article,
  .volunteer-list article,
  .giving-grid article,
  .transparency-grid article,
  .news-grid article {
    padding: 1.1rem;
  }

  .impact-band {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .impact-stats div,
  .dashboard-grid article,
  .outcome-slots article {
    padding: 1rem;
  }

  .impact-stats div {
    min-height: 132px;
  }

  .impact-stats strong,
  .dashboard-grid strong {
    font-size: 2.4rem;
  }

  .impact-stats > div > span {
    max-width: none;
  }

  .proof-deck,
  .stories-section,
  .impact-dashboard,
  .outcomes-board,
  .what-to-expect,
  .program-intro,
  .program-requirements,
  .program-photo-strip,
  .program-path,
  .children-programs,
  .privacy-statement,
  .volunteer-intro,
  .volunteer-photo-story,
  .volunteer-contact,
  .editorial-break,
  .sponsor-strip,
  .donor-journey,
  .give-photo-story,
  .giving-options,
  .needed-strip,
  .newsroom,
  .transparency,
  .event-strip {
    margin-bottom: 4rem;
  }

  .program-grid,
  .referral-steps,
  .requirements-list,
  .program-path-steps,
  .child-grid,
  .funder-grid,
  .dashboard-grid,
  .about-trust-strip,
  .resource-grid,
  .impact-calendar,
  .team-grid,
  .board-list,
  .donor-path,
  .expect-grid,
  .outcome-slots,
  .giving-grid,
  .give-photo-grid,
  .transparency-grid,
  .impact-stats,
  .volunteer-list {
    grid-template-columns: 1fr;
  }

  .give-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }

  .give-photo-grid {
    grid-auto-rows: 220px;
  }

  .give-photo-card.feature {
    grid-column: auto;
  }

  .about-trust-strip {
    margin-top: -2.5rem;
  }

  .about-trust-strip article {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-trust-strip article:last-child {
    border-bottom: 0;
  }

  .about-cta {
    margin-bottom: 4rem;
  }

  .need-urgent-panel {
    margin-top: 0;
  }

  .process-note {
    flex-direction: column;
    gap: 0.25rem;
  }

  .need-urgent-panel article,
  .need-urgent-panel > div,
  .resource-card {
    padding: 1.15rem;
  }

  .referral-steps > *,
  .resource-card,
  .impact-calendar article {
    min-height: 0;
  }

  .monthly-impact,
  .report-cover,
  .report-summary article,
  .report-document {
    padding: 1.15rem;
  }

  .monthly-impact-intro aside {
    padding: 1rem;
  }

  .impact-stats-form {
    grid-template-columns: 1fr;
  }

  .admin-form-heading,
  .admin-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .impact-calendar .calendar-total {
    grid-column: span 1;
  }

  .impact-calendar .calendar-total dl {
    grid-template-columns: 1fr;
  }

  .sponsor-track {
    grid-auto-columns: minmax(170px, 78vw);
  }

  .give {
    width: min(100% - 2rem, 1240px);
  }

  .give-panel {
    padding: 1.5rem;
  }

  .volunteer-intro,
  .volunteer-photo-story,
  .volunteer-contact {
    width: min(100% - 2rem, 1180px);
  }

  .volunteer-photo-card {
    min-height: 320px;
  }

  .feature-image img {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .events-feature,
  .event-calendar-toolbar,
  .events-admin-login,
  .events-admin-editor,
  .event-modal-panel {
    grid-template-columns: 1fr;
  }

  .event-calendar-toolbar {
    align-items: start;
  }

  .event-calendar-controls {
    width: 100%;
    grid-template-columns: auto 1fr auto;
  }

  .events-calendar {
    grid-template-columns: 1fr;
    background: transparent;
    gap: 0.75rem;
  }

  .calendar-weekday,
  .calendar-day.is-empty {
    display: none;
  }

  .calendar-day {
    min-height: 86px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
  }

  .event-modal-panel img {
    min-height: 280px;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
  }

  .footer-brand {
    gap: 0.65rem;
  }

  .site-footer img {
    width: 58px;
  }

  .site-footer p {
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .footer-brand span,
  .footer-social p {
    display: none;
  }

  .footer-credit {
    margin-top: 0.16rem;
    font-size: 0.66rem;
  }

  .footer-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .site-footer :is(nav, .footer-links) {
    display: none;
  }

  .site-footer .footer-social,
  .site-footer .social-links {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .impact-admin-hero {
    padding-top: 2.1rem;
    padding-bottom: 4.2rem;
  }

  .impact-admin-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

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

  .impact-admin-shell {
    margin-top: -2.6rem;
  }

  .events-feature,
  .event-calendar-shell,
  .events-staff-footer {
    width: min(100% - 2rem, 1180px);
  }

  .events-feature,
  .event-calendar-shell,
  .events-admin-panel {
    padding: 1.25rem;
  }

  .events-feature {
    margin-bottom: 3.5rem;
  }

  .events-feature figure {
    min-height: 0;
  }

  .events-feature img {
    min-height: 220px;
  }

  .event-calendar-controls {
    grid-template-columns: 1fr;
  }

  .event-calendar-controls button,
  .event-calendar-controls strong {
    width: 100%;
  }

  .events-login-form,
  .events-admin-form {
    grid-template-columns: 1fr;
  }

  .events-admin-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-modal {
    padding: 0.8rem;
  }

  .event-modal-panel {
    max-height: 94vh;
    border-radius: 14px;
  }

  .event-modal-copy {
    padding: 1.1rem;
  }
}

/* Shared inner-page hero standard, using the About page as the template. */
.inner-page-hero {
  width: min(1180px, calc(100% - 3rem));
  max-width: 980px;
  margin-left: max(1.5rem, calc((100vw - 1180px) / 2));
  margin-right: auto;
  padding-top: 3.15rem;
  padding-bottom: 8.05rem;
}

.inner-page-hero::before {
  height: 540px;
}

.inner-page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  line-height: 1.06;
}

.inner-page-hero .eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.inner-page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  line-height: 1.65;
}

.inner-page-hero .hero-actions {
  margin-top: 1.7rem;
}

@media (max-width: 640px) {
  .inner-page-hero {
    width: min(100% - 2rem, 1180px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.85rem;
    padding-bottom: 5.4rem;
  }

  .inner-page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
}

@media (max-width: 420px) {
  .nav-shell {
    align-items: center;
  }

  .nav-cta {
    order: initial;
    margin-left: 0;
  }
}

main :is(h1, h2) + p:not(.eyebrow),
main :is(h1, h2) + .hero-actions + p:not(.eyebrow) {
  margin-top: 0.9rem;
}

main :is(h1, h2, h3, h4):has(+ p:not(.eyebrow)) {
  margin-bottom: 0;
}

main :is(h3, h4) + p:not(.eyebrow) {
  margin-top: 0.72rem;
}

main p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 0.9rem;
}

.page-hero.volunteer-hero::before {
  height: 595px;
}

@media (max-width: 640px) {
  .page-hero.volunteer-hero::before {
    height: 100%;
  }

  .page-hero.volunteer-hero {
    padding-top: 2rem;
    padding-bottom: 2.4rem;
  }

  .page-hero.volunteer-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.55rem);
  }

  .page-hero.volunteer-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .crisis-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.75rem;
    padding: 0.32rem 0.75rem;
    font-size: 0.76rem;
    line-height: 1.2;
    text-align: center;
  }

  .crisis-bar p + p {
    display: none;
  }

  .crisis-bar a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
  }

  .nav-shell {
    width: min(100% - 1rem, 1180px);
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.45rem 0.65rem;
    padding: 0.55rem 0 0.45rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 0.5rem;
  }

  .brand img {
    width: 72px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    line-height: 1.25;
  }

  .nav-cta {
    grid-column: 3;
    grid-row: 1;
    order: initial;
    width: auto;
    justify-self: end;
    align-self: center;
    margin-left: 0;
    min-height: 36px;
    padding: 0.5rem 0.72rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    min-width: 78px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(74, 53, 116, 0.1);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 17px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle::after {
    content: none !important;
  }

  .mobile-menu-toggle::before {
    content: "Menu";
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-panel {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    padding: 0.65rem;
    border: 1px solid rgba(234, 216, 230, 0.95);
    border-radius: 14px;
    background: rgba(255, 248, 252, 0.98);
    box-shadow: 0 22px 60px rgba(74, 53, 116, 0.18);
  }

  .mobile-menu-panel[hidden] {
    display: none;
  }

  .mobile-menu-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.72rem 0.85rem;
    border-radius: 10px;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible {
    background: var(--rose);
    color: var(--plum);
  }

  .mobile-menu-panel .mobile-menu-donate {
    margin-top: 0.2rem;
    justify-content: center;
    background: var(--plum);
    color: white;
  }

  h1 span {
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.12;
  }

  .hero-grid {
    width: min(100% - 1.5rem, 1180px);
    min-height: auto;
    gap: 1rem;
    padding-top: 2.2rem;
    padding-bottom: 2.35rem;
  }

  .hero-copy p,
  .inner-page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-top: 1.25rem;
  }

  .hero-actions .button,
  .hero-actions .btn {
    flex: 1 1 100%;
    min-height: 42px;
    padding: 0.7rem 0.9rem;
  }

  .hero-card {
    padding: 0.9rem;
  }

  .hero-card dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-card div {
    padding: 0 0.45rem 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-card div:last-child {
    border-right: 0;
  }

  .hero-card dt {
    font-size: 1.55rem;
  }

  .hero-card dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-card a {
    margin-top: 0.7rem;
    font-size: 0.82rem;
  }

  .inner-page-hero {
    width: min(100% - 1.5rem, 1180px);
    padding-top: 2rem;
    padding-bottom: 2.4rem;
  }

  .page-hero::before,
  .inner-page-hero::before {
    height: 100%;
    min-height: 0;
  }

  .inner-page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .inner-page-hero .hero-actions {
    margin-top: 1rem;
  }

  .inner-page-hero .hero-actions .btn {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
  }

  .album-intro {
    padding-top: 2rem;
  }

  .impact-dashboard,
  .monthly-impact,
  .executive-report,
  .impact-cta,
  .report-full,
  .impact-story {
    width: min(100% - 1.5rem, 1180px);
    margin-bottom: 3rem;
  }

  .impact-dashboard,
  .monthly-impact,
  .report-cover,
  .report-summary article,
  .report-document {
    padding: 1rem;
    border-radius: 12px;
  }

  .annual-impact,
  .monthly-impact {
    margin-top: -1.4rem;
  }

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

  .dashboard-grid article {
    min-height: 118px;
    padding: 0.9rem;
  }

  .dashboard-grid strong {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .dashboard-grid p {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .monthly-impact {
    padding-bottom: 1.1rem;
  }

  .monthly-impact-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .monthly-impact-intro h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .monthly-impact-intro p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .monthly-impact-intro aside {
    padding: 0.85rem;
  }

  .monthly-impact-intro aside strong {
    font-size: 1.45rem;
  }

  .impact-calendar {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82vw);
    grid-template-columns: none;
    gap: 0.75rem;
    margin: 1.2rem -1rem 0;
    padding: 0 1rem 0.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .impact-calendar article {
    min-height: 0;
    gap: 0.65rem;
    padding: 0.85rem;
    scroll-snap-align: start;
  }

  .impact-calendar article > span {
    font-size: 0.78rem;
  }

  .calendar-card-group {
    padding: 0.65rem;
  }

  .calendar-card-group p {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .impact-calendar dl {
    gap: 0.25rem;
    margin-top: 0.45rem;
  }

  .impact-calendar dl div {
    gap: 0.6rem;
    padding-top: 0.32rem;
  }

  .impact-calendar dt {
    font-size: 0.76rem;
  }

  .impact-calendar dd {
    font-size: 1rem;
  }

  .impact-calendar dd.is-pending {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .impact-calendar .calendar-total {
    grid-column: auto;
    grid-template-columns: 1fr;
    position: sticky;
    left: 1rem;
  }

  .impact-calendar .calendar-total dl {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .impact-calendar .calendar-total dl div {
    display: flex;
    padding: 0.32rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .impact-data-note {
    margin-top: 0.9rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .events-calendar {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .events-calendar .calendar-day:not(:has(.calendar-event)) {
    display: none;
  }

  .events-calendar .calendar-day {
    min-height: 0;
    padding: 0.85rem;
  }

  .events-calendar .calendar-day strong {
    width: fit-content;
    min-width: 2rem;
    margin-bottom: 0.45rem;
  }

  .calendar-event {
    min-height: 42px;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .executive-report,
  .report-summary {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .report-cover h2,
  .impact-cta h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .report-document {
    font-size: 0.95rem;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
    padding: 0.42rem 0.75rem;
  }

  .footer-brand {
    min-width: 0;
    gap: 0.45rem;
  }

  .footer-brand > div {
    min-width: 0;
  }

  .site-footer img {
    width: 42px;
  }

  .site-footer p {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .footer-brand span,
  .footer-social p,
  .site-footer :is(nav, .footer-links) {
    display: none;
  }

  .footer-credit {
    margin-top: 0.1rem;
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .footer-credit a {
    display: inline-flex;
    align-items: center;
    min-height: 16px;
  }

  .footer-map {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: max-content;
  }

  .footer-social,
  .social-links {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.28rem;
  }

  .social-links a {
    width: 30px;
    height: 30px;
  }

  .social-links svg {
    width: 14px;
    height: 14px;
  }

  .gallery-admin-list article,
  .events-admin-list article {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 62px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding-inline: 0.62rem;
  }

  .footer-credit {
    font-size: 0.58rem;
  }
}

/* ADA report refinements */
.footer-social p {
  max-width: none;
  white-space: nowrap;
}

.site-footer {
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
}

.inner-page-hero::before {
  right: auto;
  width: min(1180px, calc(100vw - 3rem));
}

.impact-picker #impactText {
  min-height: 112px;
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    width: 42px;
    min-width: 42px;
    height: 36px;
    gap: 0;
    padding: 0;
  }

  .mobile-menu-toggle::after {
    content: "";
  }

  .mobile-menu-toggle span {
    width: 15px;
  }

  .brand img {
    width: 58px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }

  .inner-page-hero {
    padding-top: 1.75rem;
    padding-bottom: 3.25rem;
  }

  .inner-page-hero::before {
    width: 100%;
  }

  .inner-page-hero h1 {
    font-size: clamp(2rem, 8.6vw, 2.5rem);
  }

  .monthly-impact-intro aside {
    margin-top: 0;
  }

  .referral-steps h3 {
    min-height: 0;
  }

  .requirements-list article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* Final visual corrections from report screenshots */
.page-hero,
.inner-page-hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(1.5rem, calc((100vw - 1180px) / 2));
  padding-right: max(1.5rem, calc((100vw - 1180px) / 2));
}

.page-hero::before,
.inner-page-hero::before {
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.need-urgent-panel,
.annual-impact,
.program-intro {
  margin-top: 2rem;
}

.about-trust-strip,
.volunteer-intro {
  margin-top: 4rem;
}

.volunteer-intro {
  margin-top: 7rem;
}

.dashboard-grid strong {
  overflow: visible;
}

.dashboard-grid .odometer,
.impact-stats .odometer {
  gap: 0;
  min-width: max-content;
  overflow: hidden;
}

.dashboard-grid .digit-window,
.impact-stats .digit-window {
  width: 0.64em;
  overflow: hidden;
}

.monthly-impact-intro {
  align-items: start;
}

.monthly-impact-intro aside {
  margin-top: 0.35rem;
}

.child-grid article {
  justify-content: flex-start;
}

.requirements-list article {
  grid-template-columns: 2.25rem minmax(0, 1fr);
}

.requirements-list h3 {
  font-size: 0.92rem;
  white-space: nowrap;
}

.impact-picker #impactText {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.impact-picker #impactText p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.impact-picker #impactText ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.45;
}

.impact-picker #impactText li + li {
  margin-top: 0.25rem;
}

.child-scribbles span:nth-child(8) {
  color: rgba(255, 255, 255, 0.34);
  text-shadow: 0 1px 8px rgba(47, 49, 87, 0.24);
}

@media (max-width: 760px) {
  .page-hero,
  .inner-page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .need-urgent-panel,
  .annual-impact,
  .program-intro {
    margin-top: 1rem;
  }

  .about-trust-strip,
  .volunteer-intro {
    margin-top: 2rem;
  }

  .mobile-menu-toggle {
    width: auto;
    min-width: 78px;
    gap: 0.45rem;
    padding: 0 0.75rem;
  }

  .mobile-menu-toggle::after {
    content: "Menu";
    font-size: 0.78rem;
    font-weight: 900;
  }

.requirements-list h3 {
  white-space: normal;
  }
}

.program-quick-list article {
  display: grid;
  grid-template-rows: 2.75em auto;
  justify-content: flex-start;
  align-content: flex-start;
  gap: 0.8rem;
}

.program-quick-list strong {
  display: block;
}
