:root {
  --purple-950: #1f0f41;
  --purple-900: #28134f;
  --purple-800: #351b6d;
  --purple-700: #4b2a82;
  --purple-500: #8d4fce;
  --lavender: #ead8f7;
  --lavender-soft: #f5ecfb;
  --orange: #f49c42;
  --gold: #ffd467;
  --rose: #f1655b;
  --pink: #f58ab6;
  --green: #63d977;
  --cyan: #69c8ef;
  --ink: #211936;
  --muted: #665b7b;
  --line: rgba(31, 15, 65, 0.14);
  --surface: #fff;
  --surface-soft: #faf7fc;
  --shadow: 0 24px 70px rgba(31, 15, 65, 0.16);
  --radius: 24px;
  --content-wide: 1180px;
  --content-readable: 720px;
  --header-height: 86px;
  --font-display: "Nunito", "Open Sans", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-brand: clamp(3.4rem, 9.6vw, 8.3rem);
  --type-page-title: clamp(2.4rem, 6vw, 5.4rem);
  --type-section-title: clamp(2rem, 4.8vw, 4.6rem);
  --type-card-title: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  --type-body-large: clamp(1.05rem, 1rem + 0.34vw, 1.24rem);
  --type-body: clamp(0.98rem, 0.94rem + 0.16vw, 1.06rem);
  --type-small: clamp(0.84rem, 0.8rem + 0.1vw, 0.92rem);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--purple-950);
  color: #fff;
  font-weight: 800;
  transform: translateY(-140%);
}

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

h1,
h2,
h3,
legend,
.eyebrow,
.button {
  font-family: var(--font-display);
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  color: var(--purple-950);
  line-height: 1.05;
}

p {
  color: var(--muted);
  font-size: var(--type-body);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(31, 15, 65, 0.12);
  background: rgba(249, 244, 252, 0.84);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  backdrop-filter: blur(20px) saturate(1.08);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 34px rgba(31, 15, 65, 0.11);
}

.header-inner,
.section-inner {
  width: min(var(--content-wide), calc(100% - clamp(30px, 5vw, 72px)));
  margin-inline: auto;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(164px, 14vw, 190px);
  min-height: 48px;
  padding: 0;
  background: transparent;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-shell {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 24px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  white-space: nowrap;
}

.primary-nav a,
.footer-nav a,
.text-link {
  color: var(--purple-950);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.92rem, 0.9rem + 0.14vw, 1rem);
  text-decoration: none;
}

.primary-nav a:hover,
.text-link:hover,
.footer-nav a:hover {
  color: var(--purple-700);
}

.mobile-menu-head,
.mobile-search {
  display: none;
}

.menu-backdrop {
  display: none;
}

.menu-toggle,
.menu-close,
.header-search-toggle,
.carousel-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--purple-950);
}

.menu-toggle,
.menu-close,
.header-search-toggle {
  width: 46px;
  height: 46px;
}

.menu-toggle {
  display: none;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.header-search-toggle {
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 900;
}

.desktop-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(520px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.site-search label,
.newsletter label,
.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--purple-950);
  font-size: 0.94rem;
  font-weight: 800;
}

.search-control,
.newsletter-control {
  display: flex;
  min-width: 0;
}

.search-control input,
.newsletter-control input,
.directory-tools input,
.field-group input,
.field-group select,
.field-group textarea {
  min-width: 0;
  width: 100%;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.search-control input,
.newsletter-control input {
  min-height: 48px;
  border-radius: 999px 0 0 999px;
  padding: 0 16px;
}

.search-control button,
.newsletter-control button {
  min-height: 48px;
  border: 0;
  background: var(--orange);
  color: var(--purple-950);
  font-family: var(--font-display);
  font-weight: 900;
}

.search-control button[type="submit"],
.newsletter-control button {
  padding-inline: 18px;
}

.search-close {
  width: 48px;
  border-left: 1px solid rgba(31, 15, 65, 0.12) !important;
  border-radius: 0 999px 999px 0;
}

.search-control button[type="submit"]:last-child,
.newsletter-control button {
  border-radius: 0 999px 999px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: clamp(0.95rem, 0.9rem + 0.18vw, 1.04rem);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(31, 15, 65, 0.16);
}

.primary-button,
.donate-button {
  background: var(--orange);
  color: var(--purple-950);
}

.secondary-button {
  background: var(--purple-850, var(--purple-800));
  color: #fff;
}

.section-band {
  position: relative;
}

.flow-section {
  padding-block: clamp(62px, 7.4vw, 104px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events .eyebrow,
.donate-panel .eyebrow {
  color: var(--purple-950);
}

.figma-hero {
  min-height: clamp(620px, 75svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(var(--header-height) + clamp(70px, 9vw, 104px)) 0 clamp(64px, 8vw, 96px);
  background: var(--lavender);
  isolation: isolate;
}

.hero-lavender-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(180deg, #f0ddfb 0%, #ead8f7 68%, #f8f1fc 100%);
}

.hero-lavender-field::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.055;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(31, 15, 65, 0.22) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 72% 64%, rgba(255, 255, 255, 0.58) 0 0.8px, transparent 0.9px);
  background-size: 13px 13px, 17px 17px;
  mix-blend-mode: multiply;
}

.hero-blob {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(62px);
  opacity: 0.66;
  aspect-ratio: 1;
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-blob-coral {
  top: 22%;
  left: 56%;
  width: clamp(220px, 28vw, 430px);
  background: rgba(241, 101, 91, 0.64);
  animation: heroCoral 18s ease-in-out -2s infinite alternate;
}

.hero-blob-cyan {
  left: 10%;
  bottom: 15%;
  width: clamp(180px, 22vw, 320px);
  background: rgba(105, 200, 239, 0.58);
  animation: heroCyan 22s ease-in-out -5s infinite alternate;
}

.hero-blob-green {
  top: 10%;
  left: 17%;
  width: clamp(160px, 19vw, 300px);
  background: rgba(99, 217, 119, 0.48);
  animation: heroGreen 24s ease-in-out -3s infinite alternate;
}

.hero-blob-violet {
  right: -7%;
  bottom: 15%;
  width: clamp(190px, 23vw, 340px);
  background: rgba(75, 42, 130, 0.34);
  animation: heroViolet 28s ease-in-out -6s infinite alternate;
}

.figma-hero-inner {
  display: grid;
  min-height: clamp(510px, 56svh, 620px);
  place-items: center;
  text-align: center;
}

.figma-hero-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(900px, 100%);
  justify-items: center;
  gap: clamp(20px, 2.6vw, 34px);
}

.figma-hero .figma-hero-mark,
.figma-hero .figma-hero-mark *,
.figma-hero h1 {
  animation: none !important;
  text-shadow: none !important;
  filter: none !important;
}

.figma-hero .figma-hero-mark::before,
.figma-hero .figma-hero-mark::after,
.figma-hero h1::before,
.figma-hero h1::after {
  content: none !important;
  display: none !important;
}

.hero-brand-display {
  display: inline-grid;
  width: max-content;
  max-width: min(100%, 680px);
  color: var(--purple-950);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-brand-display span {
  display: block;
}

.hero-title-rule {
  display: block;
  width: clamp(180px, 20vw, 260px);
  height: 3px;
  margin-block: clamp(-6px, -0.4vw, -2px) clamp(4px, 0.8vw, 12px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--orange), var(--gold), var(--green), var(--cyan), var(--purple-500), var(--pink));
  background-size: 220% 100%;
  animation: rainbowLineDrift 18s linear infinite;
}

.figma-hero h1 {
  width: min(100%, 820px);
  max-width: 820px;
  margin: 0;
  color: var(--purple-950);
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: none;
  white-space: nowrap;
}

.figma-hero p {
  max-width: 960px;
  margin: 0;
  color: #352849;
  font-family: var(--font-body);
  font-size: var(--type-body-large);
  font-weight: 500;
  line-height: 1.58;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.mission {
  padding: clamp(62px, 7.4vw, 104px) 0;
  background: #fff;
}

.mission-panel,
.resources-panel,
.donate-panel {
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(31, 15, 65, 0.1);
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5.8vw, 72px);
  background: var(--purple-950);
  color: #fff;
}

.mission-panel h2 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
}

.mission-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1vw + 0.78rem, 1.18rem);
}

.mission-panel .text-link {
  color: #fff;
}

.mission-support {
  display: grid;
  gap: 22px;
}

.mission-areas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mission-areas li {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 22px;
  align-items: end;
  margin-bottom: clamp(30px, 4.6vw, 54px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
}

.section-heading > .text-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
}

.section-summary {
  grid-column: 1;
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.92rem + 0.32vw, 1.16rem);
  line-height: 1.55;
}

.event-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.event-carousel-track {
  display: grid;
  grid-auto-columns: clamp(270px, 30vw, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  cursor: grab;
}

.event-carousel-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.carousel-button {
  width: 48px;
  height: 48px;
  font-size: 2rem;
  font-weight: 900;
}

.carousel-button:not(:disabled):hover {
  background: var(--lavender-soft);
}

.event-card,
.resource-card,
.listing-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}

.event-card {
  display: grid;
  min-height: 420px;
  color: #fff;
  isolation: isolate;
  scroll-snap-align: start;
  background: var(--purple-900);
  box-shadow: 0 18px 52px rgba(31, 15, 65, 0.16);
}

.event-card::after,
.resource-card::after,
.listing-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(31, 15, 65, 0.05) 15%, rgba(31, 15, 65, 0.22) 48%, rgba(31, 15, 65, 0.88));
  pointer-events: none;
}

.event-image,
.resource-image,
.listing-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.event-content,
.resource-content,
.listing-card > :not(img) {
  position: relative;
  z-index: 1;
}

.event-content {
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.event-date {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple-950);
  line-height: 1;
}

.event-date strong {
  display: block;
  font-size: 2rem;
}

.event-date span {
  font-size: 0.82rem;
  font-weight: 900;
}

.event-card h3,
.resource-card h3,
.listing-card h2 {
  color: #fff;
}

.event-card p,
.resource-card p,
.listing-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.event-meta {
  font-weight: 800;
}

.event-card .text-link {
  color: #fff;
}

.testimonial-composition {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.testimonial-image {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.testimonial-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.quote-card {
  margin: 0;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 28px;
  background: var(--purple-950);
  color: #fff;
}

.quote-card h2,
.quote-card blockquote {
  color: #fff;
}

.quote-card blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
}

.quote-card figcaption {
  color: var(--lavender);
  font-weight: 800;
}

.quote-card .text-link {
  color: #fff;
}

.resources-panel {
  padding: clamp(34px, 5.8vw, 70px);
  background: var(--purple-950);
}

.resources-panel .section-heading h2,
.resources-panel .text-link {
  color: #fff;
}

.resources-panel .section-heading {
  margin-bottom: clamp(30px, 4.6vw, 54px);
}

.resources-panel .section-summary {
  color: rgba(255, 255, 255, 0.78);
}

.resource-cta {
  grid-column: 1 / -1;
  grid-row: auto;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  align-self: center;
  justify-content: center;
  justify-self: center;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.resource-cta:hover,
.resource-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.resource-grid,
.listing-grid,
.directory-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  display: grid;
  min-height: 360px;
  color: #fff;
  isolation: isolate;
  background: var(--purple-800);
  outline-offset: 5px;
  box-shadow: 0 18px 46px rgba(31, 15, 65, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.resource-card:hover,
.resource-card:focus-visible,
.listing-card:hover,
.listing-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(31, 15, 65, 0.24);
}

.resource-card::after {
  background: linear-gradient(180deg, rgba(31, 15, 65, 0.02) 8%, rgba(31, 15, 65, 0.24) 45%, rgba(31, 15, 65, 0.9));
  opacity: 0.9;
  transition: opacity 260ms ease, background 260ms ease;
}

.resource-card:hover::after,
.resource-card:focus-visible::after {
  opacity: 0.76;
}

.resource-card:hover .resource-image,
.resource-card:focus-visible .resource-image {
  filter: saturate(1.12) brightness(1.06);
  transform: scale(1.045);
}

.resources-panel .resource-grid {
  gap: clamp(18px, 2.2vw, 26px);
}

.resource-content {
  align-self: end;
  padding: 24px;
  text-align: center;
  transition: transform 260ms ease;
}

.resource-card:hover .resource-content,
.resource-card:focus-visible .resource-content {
  transform: translateY(-3px);
}

.resource-card span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card p {
  display: block;
  max-width: 28ch;
  margin: 8px auto 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.donate {
  padding: clamp(44px, 6.4vw, 86px) 0;
  background: #fff;
}

.donate-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(244, 156, 66, 0.24);
  border-radius: 28px;
  background: #fff4ee;
  color: var(--purple-950);
}

.donate-panel::after {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  top: 50%;
  z-index: 0;
  width: clamp(150px, 18vw, 260px);
  height: clamp(150px, 18vw, 260px);
  content: "";
  background:
    radial-gradient(circle at 35% 35%, rgba(244, 156, 66, 0.45), transparent 50%),
    radial-gradient(circle at 65% 60%, rgba(141, 79, 206, 0.24), transparent 58%),
    radial-gradient(circle at 50% 70%, rgba(241, 101, 91, 0.22), transparent 62%);
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.76;
  transform: translateY(-50%);
  pointer-events: none;
}

.donate-panel > * {
  position: relative;
  z-index: 1;
}

.donate-panel h2,
.donate-panel p,
.donate-panel .eyebrow {
  color: var(--purple-950);
}

.donate-panel p {
  max-width: 650px;
}

.site-footer {
  margin-top: 0;
  padding: clamp(34px, 4.4vw, 54px) 0 20px;
  background: var(--purple-950);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(120px, 0.48fr) minmax(130px, 0.52fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.footer-logo {
  width: min(176px, 100%);
}

.footer-logo img {
  filter: none;
}

.footer-brand p,
.newsletter p,
.footer-bottom,
address {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand p {
  max-width: 300px;
}

address {
  font-style: normal;
}

.footer-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-accordion-toggle,
.newsletter h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.08rem;
}

.footer-accordion-toggle {
  display: flex;
  width: 100%;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: left;
  cursor: default;
}

.footer-accordion-icon {
  display: none;
}

.footer-nav-links {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: #fff;
  min-height: 32px;
}

.newsletter-control {
  max-width: 360px;
}

.form-message {
  min-height: 1.5em;
  margin: 10px 0 0;
  font-weight: 800;
}

.form-message.is-error {
  color: #ffd4cc;
}

.form-message.is-success {
  color: #d8ffdf;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-social a:active {
  transform: translateY(0);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a[aria-label="Facebook"] svg,
.footer-social a[aria-label="X"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(24px, 4vw, 36px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
}

.footer-bottom span:nth-child(2) {
  flex: 1 1 300px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a:first-of-type {
  margin-left: auto;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card.reveal-on-scroll {
  transform: translateY(18px);
  transition-duration: 520ms;
}

.event-card.reveal-on-scroll:nth-child(2) {
  transition-delay: 70ms;
}

.event-card.reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

.event-card.reveal-on-scroll:nth-child(4) {
  transition-delay: 210ms;
}

.resource-card.reveal-on-scroll {
  transform: translateY(16px) scale(0.98);
}

.resource-card.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

.donate-panel.reveal-on-scroll,
.mission-panel.reveal-on-scroll {
  transform: translateY(18px);
}

.subpage-main,
.donation-page {
  width: min(var(--content-wide), calc(100% - clamp(30px, 5vw, 72px)));
  margin-inline: auto;
  padding: clamp(28px, 5.4vw, 58px) 0 clamp(48px, 7vw, 88px);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--purple-950);
}

.subpage-hero,
.detail-hero,
.donation-hero {
  min-height: clamp(320px, 34vw, 420px);
  align-items: center;
  margin-top: clamp(18px, 3vw, 32px);
  margin-bottom: clamp(28px, 4.5vw, 54px);
  padding: clamp(28px, 4.8vw, 52px);
  border: 1px solid rgba(31, 15, 65, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 156, 66, 0.16), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(141, 79, 206, 0.15), transparent 34%),
    var(--lavender-soft);
}

.subpage-hero h1,
.detail-hero h1,
.donation-hero h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 4.5vw, 4.3rem);
}

.subpage-hero p,
.detail-hero p,
.donation-hero p {
  max-width: 720px;
  font-size: var(--type-body-large);
}

.page-hero-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.page-hero-with-media img,
.story-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.feature-panel,
.story-section,
.related-panel,
.filter-summary,
.support-newsletter,
.resource-tools {
  margin-block: clamp(28px, 5vw, 58px);
  border-radius: 28px;
}

.feature-panel {
  padding: clamp(28px, 5vw, 56px);
  background: var(--purple-950);
  color: #fff;
}

.feature-panel h2,
.feature-panel p {
  max-width: 820px;
  color: #fff;
}

.feature-panel h2 {
  font-size: var(--type-section-title);
}

.content-grid-rich article span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
}

.content-grid-rich article h2,
.support-pathways article h2 {
  font-size: var(--type-card-title);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  background: var(--lavender-soft);
}

.related-panel {
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--lavender-soft);
  color: var(--purple-950);
  font-weight: 800;
}

.filter-summary,
.resource-tools,
.support-newsletter {
  padding: clamp(20px, 4vw, 34px);
  background: var(--surface-soft);
}

.directory-disclaimer {
  max-width: 760px;
  margin-bottom: 0;
  font-size: var(--type-small);
}

.category-showcase,
.support-pathways {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 5vw, 56px);
}

.category-showcase a {
  position: relative;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  align-content: end;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
}

.category-showcase a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(31, 15, 65, 0.86));
}

.category-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-showcase span {
  position: relative;
  z-index: 1;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.support-pathways article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 15, 65, 0.08);
}

.support-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(31, 15, 65, 0.08);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.support-card:hover,
.support-card:focus-visible {
  border-color: rgba(244, 156, 66, 0.48);
  box-shadow: 0 28px 70px rgba(31, 15, 65, 0.15);
  transform: translateY(-5px);
}

.support-card h2,
.support-card p {
  margin-bottom: 0;
}

.support-card .text-link {
  align-self: end;
  color: var(--purple-950);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.listing-card,
.directory-card,
.content-grid article,
.summary-card,
.form-card,
.confirmation-panel,
.donation-summary,
.prototype-notice,
.form-alert {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 15, 65, 0.1);
}

.listing-card {
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 24px;
  color: #fff;
}

.directory-card,
.content-grid article,
.summary-card,
.form-card,
.confirmation-panel,
.donation-summary,
.prototype-notice,
.form-alert {
  padding: clamp(18px, 3vw, 28px);
}

.directory-card {
  text-decoration: none;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.category-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--lavender-soft);
  color: var(--purple-950);
  font-weight: 800;
}

.directory-tools {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--purple-950);
  font-weight: 800;
}

.filter-row button.is-active {
  background: var(--purple-950);
  color: #fff;
}

.contact-layout,
.donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.field-group input,
.field-group select,
.field-group textarea,
.directory-tools input {
  min-height: 48px;
  border-radius: 14px;
  padding: 10px 14px;
}

.field-error {
  min-height: 1.3em;
  margin: 0;
  color: #9f1c1c;
  font-size: 0.9rem;
  font-weight: 800;
}

[aria-invalid="true"] {
  border-color: #b92424 !important;
}

.donation-page {
  background: var(--surface-soft);
}

.donation-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.donation-form {
  display: grid;
  gap: 18px;
}

.form-card legend {
  padding: 0 6px;
  color: var(--purple-950);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
}

.field-help {
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.segmented-options,
.amount-grid {
  display: grid;
  gap: 12px;
}

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

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

.segmented-options input,
.amount-grid input {
  position: absolute;
  opacity: 0;
}

.segmented-options span,
.amount-grid span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--purple-950);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
}

.segmented-options input:focus-visible + span,
.amount-grid input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.segmented-options input:checked + span,
.amount-grid input:checked + span {
  border-color: var(--purple-950);
  background: var(--purple-950);
  color: #fff;
  box-shadow: inset 0 0 0 3px var(--orange);
}

.custom-amount-field {
  margin-top: 16px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.checkbox-row input {
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.form-alert {
  display: none;
  border-color: #b92424;
  background: #fff1f1;
  color: #781717;
  font-weight: 800;
}

.form-alert.is-visible {
  display: block;
}

.donation-summary {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.summary-list,
.summary-total {
  display: grid;
  gap: 12px;
}

.summary-list div,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.confirmation-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--lavender-soft);
}

.confirmation-panel {
  width: min(760px, calc(100% - 32px));
  text-align: center;
}

@keyframes heroCoral {
  from { transform: translate3d(-22px, 12px, 0) scale(0.98); }
  to { transform: translate3d(28px, -18px, 0) scale(1.07); }
}

@keyframes heroCyan {
  from { transform: translate3d(20px, -8px, 0) scale(1); }
  to { transform: translate3d(-26px, 22px, 0) scale(1.06); }
}

@keyframes heroGreen {
  from { transform: translate3d(-18px, -14px, 0) scale(1.04); }
  to { transform: translate3d(22px, 16px, 0) scale(0.98); }
}

@keyframes heroViolet {
  from { transform: translate3d(18px, -12px, 0) scale(1); }
  to { transform: translate3d(-28px, 20px, 0) scale(1.07); }
}

@keyframes rainbowLineDrift {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

@media (max-width: 1024px) {
  .primary-nav {
    gap: 12px;
  }

  .resource-grid,
  .listing-grid,
  .directory-grid,
  .content-grid,
  .category-showcase,
  .support-pathways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .newsletter {
    grid-column: 1 / -1;
  }

  .figma-hero p {
    max-width: 720px;
    white-space: normal;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
  }

  .header-search-toggle {
    display: none;
  }

  .nav-shell {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 380px);
    max-width: 100%;
    height: 100dvh;
    display: none;
    flex-direction: column;
    align-content: start;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px;
    border-left: 1px solid rgba(31, 15, 65, 0.12);
    background: rgba(253, 250, 255, 0.97);
    box-shadow: -26px 0 70px rgba(31, 15, 65, 0.28);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .nav-shell.is-open {
    display: flex;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    border: 0;
    padding: 0;
    background: rgba(31, 15, 65, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
  }

  .mobile-menu-title {
    color: var(--purple-950);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
  }

  .primary-nav {
    display: grid;
    align-items: stretch;
    gap: 8px;
    white-space: nowrap;
  }

  .primary-nav a {
    width: 100%;
    min-height: 52px;
    align-items: center;
    border-radius: 16px;
    padding: 0 14px;
    font-size: 1.08rem;
    text-decoration: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: rgba(234, 216, 247, 0.72);
    color: var(--purple-950);
  }

  .primary-nav a[aria-current="page"] {
    background: rgba(234, 216, 247, 0.88);
    box-shadow: inset 4px 0 0 var(--orange);
  }

  .mobile-search {
    display: grid;
    gap: 12px;
    width: 100%;
    padding-bottom: 4px;
  }

  .mobile-search .search-control {
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .mobile-search .search-control input,
  .mobile-search .search-control button {
    width: 100%;
    min-height: 50px;
    border-radius: 15px;
  }

  .mobile-search .search-control button,
  .mobile-search .search-control button[type="submit"]:last-child {
    border: 2px solid var(--orange);
    border-radius: 15px;
    padding-inline: 16px;
    color: var(--purple-950);
    font-size: 0.98rem;
    line-height: 1;
    box-shadow: none;
  }

  .desktop-search-panel {
    display: none;
  }

  .donate-button {
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
  }

  .figma-hero {
    min-height: clamp(560px, 72svh, 680px);
  }

  .event-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel-button {
    display: none;
  }

  .event-carousel-track {
    grid-auto-columns: minmax(260px, 78%);
    padding-inline: 0 clamp(24px, 8vw, 48px);
  }

  .testimonial-composition,
  .mission-panel,
  .detail-hero,
  .contact-layout,
  .donation-layout {
    grid-template-columns: 1fr;
  }

  .donation-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 34px 0 18px;
  }

  .site-footer .section-inner {
    width: min(100% - 48px, var(--content-wide));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    display: grid;
    gap: 12px;
  }

  .footer-logo {
    width: min(168px, 100%);
  }

  .footer-brand p {
    max-width: 34ch;
    margin-bottom: 0;
  }

  .footer-nav {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-nav + .footer-nav {
    margin-top: -30px;
  }

  .footer-accordion-toggle {
    min-height: 54px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    cursor: pointer;
  }

  .footer-accordion-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .footer-accordion-icon::before,
  .footer-accordion-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 160ms ease;
  }

  .footer-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .footer-accordion-toggle[aria-expanded="true"] .footer-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .footer-nav-links {
    gap: 2px;
    padding: 10px 0 14px;
  }

  .footer-nav-links[hidden] {
    display: none;
  }

  .footer-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 0 12px;
    text-decoration: none;
  }

  .footer-nav a:hover,
  .footer-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .newsletter {
    display: grid;
    gap: 10px;
    grid-column: auto;
  }

  .newsletter h2,
  .newsletter p {
    margin-bottom: 0;
  }

  .newsletter-control {
    display: grid;
    max-width: none;
    gap: 12px;
    width: 100%;
  }

  .newsletter-control input,
  .newsletter-control button {
    width: 100%;
    min-height: 50px;
    border-radius: 15px;
  }

  .newsletter-control button {
    padding-inline: 16px;
    line-height: 1;
  }

  .footer-social {
    justify-content: center;
    margin-top: 8px;
  }

  .footer-bottom {
    display: grid;
    gap: 9px;
    margin-top: 30px;
    padding-top: 18px;
    text-align: center;
    line-height: 1.55;
  }

  .footer-bottom span:nth-child(2) {
    color: rgba(255, 255, 255, 0.62);
  }

  .footer-bottom a:first-of-type {
    margin-left: 0;
  }

  .footer-bottom a {
    min-height: 32px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-inner,
  .subpage-main,
  .donation-page main {
    width: min(100% - 48px, var(--content-wide));
  }

  .figma-hero {
    min-height: 560px;
    padding-block: 54px;
  }

  .hero-brand-display {
    font-size: clamp(2.6rem, 15vw, 4.5rem);
  }

  .figma-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
    white-space: normal;
  }

  .figma-hero p {
    font-size: 1rem;
    white-space: normal;
  }

  .hero-actions,
  .donate-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .button,
  .donate-panel .button {
    width: 100%;
  }

  .mission-panel,
  .resources-panel,
  .donate-panel {
    border-radius: 22px;
  }

  .mission-areas {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-summary,
  .section-heading > .text-link,
  .resource-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .section-heading > .text-link,
  .resource-cta {
    justify-self: start;
  }

  .resources-panel .resource-cta {
    justify-self: center;
  }

  .resource-grid,
  .listing-grid,
  .directory-grid,
  .content-grid,
  .category-showcase,
  .support-pathways,
  .form-grid,
  .amount-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .resource-card {
    min-height: 360px;
  }

  .newsletter-control,
  .search-control {
    display: grid;
  }

  .newsletter-control input,
  .search-control input,
  .newsletter-control button,
  .search-control button,
  .search-close {
    border-radius: 14px;
  }

  .search-close {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll,
  .hero-blob,
  .hero-title-rule {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .resource-card.reveal-on-scroll,
  .event-card.reveal-on-scroll,
  .donate-panel.reveal-on-scroll,
  .mission-panel.reveal-on-scroll {
    transform: none !important;
  }
}
