:root {
  --ink: #241733;
  --ink-soft: #312046;
  --ink-card: #3a2752;
  --paper: #fffaf3;
  --paper-deep: #f3eade;
  --white: #ffffff;
  --red: #c8444f;
  --purple: #48307a;
  --teal: #519f9b;
  --gold: #e5c16f;
  --lavender: #7c5494;
  --green: #127444;
  --wine: #954c51;
  --coral: #e17c65;
  --spectrum: linear-gradient(
    90deg,
    var(--red),
    var(--purple),
    var(--teal),
    var(--gold),
    var(--lavender),
    var(--green),
    var(--wine),
    var(--coral)
  );
  --muted: #716a73;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(72, 48, 122, 0.18);
  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow-dark: 0 28px 75px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

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

section {
  scroll-margin-top: 122px;
}

.container,
.header-inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(72, 48, 122, 0.12);
  background: rgba(255, 250, 243, 0.95);
  box-shadow: 0 10px 34px rgba(72, 48, 122, 0.08);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(72, 48, 122, 0.18);
  background: rgba(255, 250, 243, 0.97);
  box-shadow: 0 14px 40px rgba(72, 48, 122, 0.13);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-program {
  width: 160px;
  aspect-ratio: 1.58;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

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

.brand-program-footer {
  width: 205px;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: #4f4656;
  font-size: 0.82rem;
  font-weight: 620;
}

.main-menu a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.main-menu a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--teal));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-menu a:hover {
  color: var(--purple);
}

.main-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--lavender));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(72, 48, 122, 0.22);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--coral));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(72, 48, 122, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 24%, rgba(81, 159, 155, 0.25), transparent 25%),
    radial-gradient(circle at 13% 78%, rgba(229, 193, 111, 0.3), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 48%, #f6ece4 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(72, 48, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 48, 122, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--red) 0 13%,
    var(--purple) 13% 27%,
    var(--teal) 27% 41%,
    var(--gold) 41% 55%,
    var(--lavender) 55% 69%,
    var(--green) 69% 83%,
    var(--wine) 83% 91%,
    var(--coral) 91% 100%
  );
  content: "";
}

.hero-ring,
.contact-ring {
  position: absolute;
  border: 54px solid rgba(200, 68, 79, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring-one {
  top: 4%;
  right: -275px;
  width: 660px;
  height: 660px;
}

.hero-ring-two {
  bottom: 55px;
  left: -188px;
  width: 370px;
  height: 370px;
  border-width: 34px;
  border-color: rgba(81, 159, 155, 0.28);
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: 70px;
  align-items: center;
  padding-bottom: 92px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 21px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.45rem, 5.75vw, 6.2rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 em {
  display: block;
  color: var(--purple);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin: 31px 0 0;
  color: #514a54;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 720;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--lavender));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(72, 48, 122, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--red), var(--coral));
}

.button-ghost {
  border-color: rgba(72, 48, 122, 0.28);
  color: var(--purple);
}

.button-ghost:hover {
  border-color: var(--teal);
  background: rgba(81, 159, 155, 0.09);
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.hero-main-photo {
  position: absolute;
  top: 24px;
  right: 56px;
  width: min(100%, 470px);
  height: 430px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px 30px 92px 30px;
  background: var(--ink-soft);
  box-shadow: var(--shadow-dark);
}

.hero-main-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.92));
  content: "";
}

.hero-main-photo img,
.hero-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero-main-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-side-photo {
  position: absolute;
  z-index: 3;
  width: 144px;
  height: 144px;
  overflow: hidden;
  margin: 0;
  border: 5px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.46);
}

.hero-side-photo-top {
  top: 0;
  right: 0;
  transform: rotate(3deg);
}

.hero-side-photo-bottom {
  right: 2px;
  bottom: 4px;
  width: 168px;
  height: 128px;
  transform: rotate(-2deg);
}

.hero-proof-card {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: -10px;
  display: grid;
  grid-template-columns: 10px 1fr;
  width: 226px;
  gap: 0 10px;
  padding: 19px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.44), transparent 34%),
    linear-gradient(135deg, #ff746f 0%, #ff5b65 62%, #f95870 100%);
  box-shadow:
    0 22px 55px rgba(200, 68, 79, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.proof-dot {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border-radius: 50%;
  background: #18244f;
  box-shadow:
    0 0 0 5px rgba(24, 36, 79, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.55);
}

.hero-proof-card p,
.hero-proof-card strong {
  grid-column: 2;
  margin: 0;
}

.hero-proof-card p {
  color: rgba(24, 36, 79, 0.82);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  margin-top: 3px;
  color: #18244f;
  font-size: 0.88rem;
  font-weight: 820;
  line-height: 1.32;
}

.stats-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1.35fr;
  align-items: stretch;
  margin-bottom: 60px;
  overflow: hidden;
  border: 1px solid rgba(72, 48, 122, 0.12);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 24px 64px rgba(72, 48, 122, 0.18);
}

.stats-strip article,
.stats-strip > p {
  min-height: 130px;
  margin: 0;
  padding: 27px 30px;
  border-right: 1px solid var(--line-dark);
}

.stats-strip article:first-child {
  padding-left: 30px;
}

.stats-strip strong {
  display: block;
  color: var(--coral);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 760;
  letter-spacing: -0.055em;
}

.stats-strip article:nth-child(1) strong {
  color: var(--teal);
}

.stats-strip article:nth-child(1) {
  background: linear-gradient(145deg, rgba(81, 159, 155, 0.24), transparent 74%);
}

.stats-strip article:nth-child(2) strong {
  color: var(--gold);
}

.stats-strip article:nth-child(2) {
  background: linear-gradient(145deg, rgba(229, 193, 111, 0.2), transparent 74%);
}

.stats-strip span {
  display: block;
  margin-top: 5px;
  color: #a9a9a9;
  font-size: 0.77rem;
}

.stats-strip > p {
  display: flex;
  align-items: center;
  border-right: 0;
  color: #d0d0d0;
  background: linear-gradient(145deg, rgba(124, 84, 148, 0.2), transparent 76%);
  font-size: 0.86rem;
  line-height: 1.5;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.purpose-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0 124px;
  background:
    radial-gradient(circle at 92% 14%, rgba(229, 193, 111, 0.25), transparent 25%),
    radial-gradient(circle at 5% 92%, rgba(81, 159, 155, 0.18), transparent 27%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 48%, var(--paper) 100%);
}

.purpose-section::before {
  position: absolute;
  z-index: -1;
  right: -245px;
  bottom: -255px;
  width: 480px;
  height: 480px;
  border: 70px solid rgba(200, 68, 79, 0.08);
  border-radius: 50%;
  content: "";
}

.purpose-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.purpose-heading h2,
.section-heading h2,
.audience-copy h2,
.impact-copy h2,
.family-copy h2,
.supporters-heading h2,
.faq-grid h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.7vw, 4.85rem);
  font-weight: 760;
  letter-spacing: -0.068em;
  line-height: 0.97;
}

.purpose-intro p {
  margin: 0;
  color: #4f4d49;
  font-size: 1.05rem;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 760;
}

.purpose-content {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 78px;
  align-items: center;
  margin-top: 84px;
}

.purpose-photo {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 110px var(--radius-lg);
  box-shadow: 0 24px 65px rgba(47, 32, 18, 0.2);
}

.purpose-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.62));
  content: "";
}

.purpose-photo > img {
  width: 100%;
  height: 535px;
  object-fit: cover;
  object-position: center 45%;
}

.purpose-photo-label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.purpose-photo-label span,
.audience-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.purpose-photo-label span:nth-child(1) {
  background: var(--red);
}

.purpose-photo-label span:nth-child(2) {
  background: var(--purple);
}

.purpose-photo-label span:nth-child(3) {
  background: var(--teal);
}

.purpose-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.purpose-points article:first-child {
  border-top: 1px solid var(--line-light);
}

.point-number {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 13px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(200, 68, 79, 0.22);
}

.purpose-points article:nth-child(2) .point-number {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(72, 48, 122, 0.22);
}

.purpose-points article:nth-child(3) .point-number {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(81, 159, 155, 0.22);
}

.purpose-points h3,
.skill-card h3,
.journey-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.purpose-points p {
  margin: 10px 0 0;
  color: #5a5853;
  font-size: 0.91rem;
  line-height: 1.7;
}

.skills-section,
.journey-section,
.faq-section {
  position: relative;
  padding: 122px 0;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 100%);
}

.skills-section {
  background:
    radial-gradient(circle at 0% 12%, rgba(200, 68, 79, 0.3), transparent 28%),
    radial-gradient(circle at 100% 88%, rgba(81, 159, 155, 0.24), transparent 29%),
    linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 68%, var(--purple) 145%);
}

.skills-section::before,
.journey-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  pointer-events: none;
}

.skills-section::after,
.journey-section::after,
.faq-section::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--spectrum);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -45px;
}

.section-heading > p:last-child {
  margin: 0;
  color: #aaa;
  font-size: 0.98rem;
  line-height: 1.75;
}

.skills-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 68px;
}

.skill-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 27px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, var(--coral), var(--red) 48%, var(--wine));
  box-shadow: 0 24px 56px rgba(14, 8, 22, 0.26);
  transition: border-color 220ms ease, transform 220ms ease, filter 220ms ease;
}

.skill-card::before {
  position: absolute;
  z-index: -1;
  top: -142px;
  right: -135px;
  width: 285px;
  height: 285px;
  border: 48px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.skill-card::after {
  position: absolute;
  right: 27px;
  bottom: 0;
  left: 27px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.skill-card:hover {
  filter: saturate(1.12) brightness(1.04);
  transform: translateY(-7px);
}

.skill-card-featured {
  background: linear-gradient(155deg, var(--coral), var(--red) 48%, var(--wine));
}

.skill-card-featured:hover {
  background: linear-gradient(155deg, var(--coral), var(--red) 48%, var(--wine));
}

.skill-card:nth-child(2) {
  background: linear-gradient(155deg, var(--lavender), var(--purple) 76%);
}

.skill-card:nth-child(3) {
  background: linear-gradient(155deg, var(--gold), var(--teal) 48%, var(--green));
}

.skill-card:nth-child(4) {
  background: linear-gradient(155deg, var(--teal), var(--green) 72%);
}

.skill-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.skill-card-label,
.card-index {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-index {
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.04em;
}

.skill-symbol {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  margin-top: 37px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 31px;
  background: rgba(36, 23, 51, 0.14);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(36, 23, 51, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}

.skill-symbol::before {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 39px;
  content: "";
}

.skill-symbol svg {
  width: 61px;
  height: 61px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skill-card:hover .skill-symbol {
  background: rgba(36, 23, 51, 0.22);
  transform: translateY(-3px) rotate(-2deg);
}

.skill-card:nth-child(3) .skill-card-label,
.skill-card:nth-child(3) .card-index {
  color: rgba(36, 23, 51, 0.72);
}

.skill-card:nth-child(3) .skill-symbol {
  border-color: rgba(36, 23, 51, 0.22);
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
}

.skill-card-copy {
  margin-top: auto;
  padding-top: 48px;
}

.skill-card h3 {
  max-width: 230px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.skill-card-copy > p:not(.skill-topics) {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  line-height: 1.7;
}

.skill-topics {
  margin: 22px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.55;
  text-transform: uppercase;
}

.audience-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 122px 0;
  background:
    radial-gradient(circle at 0% 20%, rgba(229, 193, 111, 0.22), transparent 28%),
    radial-gradient(circle at 100% 82%, rgba(200, 68, 79, 0.14), transparent 27%),
    linear-gradient(135deg, var(--paper) 0%, var(--white) 52%, #f7efe8 100%);
}

.audience-section::before {
  position: absolute;
  z-index: -1;
  top: -220px;
  left: -230px;
  width: 430px;
  height: 430px;
  border: 58px solid rgba(81, 159, 155, 0.1);
  border-radius: 50%;
  content: "";
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: center;
}

.audience-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.audience-lead {
  max-width: 560px;
  margin: 29px 0 0;
  color: #4e4b47;
  font-size: 1.03rem;
  line-height: 1.76;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.audience-tags span {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(72, 48, 122, 0.16);
}

.audience-tags span:nth-child(2) {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(81, 159, 155, 0.18);
}

.audience-tags span:nth-child(3) {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(200, 68, 79, 0.18);
}

.audience-visual {
  position: relative;
  min-height: 550px;
}

.audience-visual > img {
  width: 100%;
  height: 550px;
  border: 8px solid var(--white);
  border-radius: 90px var(--radius-lg) var(--radius-lg) var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 25px 70px rgba(46, 31, 19, 0.2);
}

.journey-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(81, 159, 155, 0.3), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(200, 68, 79, 0.26), transparent 27%),
    linear-gradient(145deg, var(--ink) 0%, #301d46 100%);
}

.journey-section .section-heading {
  display: block;
  max-width: 900px;
}

.journey-section .section-heading .section-kicker {
  margin-bottom: 22px;
}

.journey-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 64px;
}

.journey-card {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.journey-card:nth-child(1) {
  border-bottom-color: var(--red);
}

.journey-card:nth-child(2) {
  border-bottom-color: var(--lavender);
}

.journey-card:nth-child(3) {
  border-bottom-color: var(--teal);
}

.journey-card:nth-child(4) {
  border-bottom-color: var(--gold);
}

.journey-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.journey-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.56));
  content: "";
}

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

.journey-card:hover .journey-photo img {
  transform: scale(1.055);
}

.journey-photo span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.journey-card:nth-child(2) .journey-photo span {
  background: var(--purple);
}

.journey-card:nth-child(3) .journey-photo span {
  background: var(--teal);
}

.journey-card:nth-child(4) .journey-photo span {
  background: var(--gold);
  color: var(--ink);
}

.journey-card h3 {
  margin-top: 22px;
}

.journey-card p {
  margin: 11px 0 0;
  color: #a3a3a3;
  font-size: 0.83rem;
  line-height: 1.68;
}

.impact-section {
  padding: 122px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(229, 193, 111, 0.38), transparent 27%),
    radial-gradient(circle at 10% 88%, rgba(81, 159, 155, 0.36), transparent 29%),
    linear-gradient(135deg, var(--purple) 0%, var(--lavender) 82%, var(--red) 155%);
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 82px;
  align-items: center;
}

.impact-copy .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.impact-copy h2 {
  color: var(--white);
  font-size: clamp(2.75rem, 4.8vw, 4.85rem);
}

.impact-copy > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.impact-map-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 19px;
  background: rgba(36, 23, 51, 0.26);
}

.impact-map-card img {
  width: 94px;
  height: 94px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.impact-map-card strong,
.impact-map-card span {
  display: block;
}

.impact-map-card strong {
  font-size: 0.92rem;
}

.impact-map-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
}

.impact-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.impact-gallery figure,
.gallery-statement {
  min-height: 215px;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.17);
  border-radius: 21px;
  background: var(--ink);
}

.gallery-statement {
  position: relative;
  isolation: isolate;
  grid-column: 1 / -1;
  min-height: 116px;
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(110deg, var(--red) 0%, var(--coral) 72%, var(--gold) 145%);
  box-shadow: 0 18px 42px rgba(45, 22, 73, 0.2);
}

.gallery-statement::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -32px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(255, 255, 255, 0.06),
    0 0 0 52px rgba(255, 255, 255, 0.035);
  content: "";
  transform: translateY(-50%);
}

.impact-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-gallery .gallery-wide {
  grid-column: 1 / -1;
  min-height: 280px;
}

.gallery-statement {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding: 22px 31px;
  border-color: transparent;
}

.gallery-statement strong {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  color: var(--white);
  font-size: clamp(2.55rem, 4vw, 3.85rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.gallery-statement span {
  position: relative;
  z-index: 1;
  max-width: 158px;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.moments-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 8% 20%, rgba(200, 68, 79, 0.3), transparent 28%),
    radial-gradient(circle at 92% 74%, rgba(81, 159, 155, 0.24), transparent 30%),
    linear-gradient(145deg, #20142f 0%, var(--ink) 52%, #302044 100%);
}

.moments-section::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--spectrum);
  content: "";
}

.moments-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.moments-orbit-one {
  top: 72px;
  right: -180px;
  width: 440px;
  height: 440px;
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.025),
    0 0 0 88px rgba(255, 255, 255, 0.014);
}

.moments-orbit-two {
  bottom: -145px;
  left: -110px;
  width: 290px;
  height: 290px;
  border-color: rgba(229, 193, 111, 0.14);
}

.moments-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.moments-heading .section-kicker {
  color: var(--gold);
}

.moments-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.45rem, 4.2vw, 4.2rem);
  font-weight: 760;
  letter-spacing: -0.068em;
  line-height: 1;
}

.moments-slider {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
  outline-offset: 7px;
}

.moments-stage {
  position: relative;
}

.moments-slides {
  display: grid;
  overflow: hidden;
  border-radius: 29px;
  background: #110c19;
}

.moment-slide {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.992);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1),
    visibility 0s linear 620ms;
  visibility: hidden;
}

.moment-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
  visibility: visible;
}

.moment-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d0912;
  isolation: isolate;
}

.moment-media::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 10, 29, 0.06) 58%, rgba(18, 10, 29, 0.46) 100%),
    linear-gradient(90deg, rgba(72, 48, 122, 0.14), transparent 30%, transparent 70%, rgba(18, 116, 68, 0.1));
  content: "";
  pointer-events: none;
}

.moment-backdrop,
.moment-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.moment-backdrop {
  z-index: 0;
  width: 116%;
  height: 116%;
  margin: -8%;
  filter: blur(28px) brightness(0.52) saturate(0.88);
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.08);
}

.moment-photo {
  z-index: 2;
  object-fit: contain;
}

.moments-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(36, 23, 51, 0.76);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.moments-arrow:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: var(--red);
  transform: translateY(-50%) scale(1.05);
}

.moments-arrow span {
  font-size: 1.28rem;
  line-height: 1;
}

.moments-arrow-prev {
  left: 24px;
}

.moments-arrow-next {
  right: 24px;
}

.moments-controls {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 18px;
  padding: 8px 18px 0;
}

.moments-toggle {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.moments-toggle:hover {
  border-color: var(--teal);
  background: rgba(81, 159, 155, 0.22);
}

.moments-dots {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.moments-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.moments-dots button[aria-current="true"] {
  width: 32px;
  background: var(--gold);
}

.moments-progress {
  flex: 1 1 auto;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.moments-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
}

.moments-progress span.is-running {
  animation: moments-progress 6500ms linear forwards;
}

@keyframes moments-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.family-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0 118px;
  background:
    linear-gradient(180deg, var(--lavender) 0%, rgba(124, 84, 148, 0.18) 82px, rgba(243, 234, 222, 0) 172px),
    radial-gradient(circle at 92% 78%, rgba(229, 193, 111, 0.2), transparent 27%),
    var(--paper-deep);
  color: var(--ink);
}

.family-card {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  min-height: 535px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(229, 193, 111, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 193, 111, 0.3), transparent 34%),
    linear-gradient(145deg, var(--green), var(--teal) 76%, var(--purple) 155%);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(54, 39, 22, 0.2);
}

.family-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
}

.family-images img {
  width: 100%;
  height: 100%;
  min-height: 527px;
  object-fit: cover;
}

.family-images img:first-child {
  border-radius: 34px 0 0 34px;
}

.family-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
  background: linear-gradient(135deg, rgba(18, 116, 68, 0.08), rgba(72, 48, 122, 0.28));
}

.family-copy h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.2rem);
}

.family-copy > p:last-child {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.supporters-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(229, 193, 111, 0.18), transparent 25%),
    radial-gradient(circle at 92% 88%, rgba(81, 159, 155, 0.14), transparent 26%),
    linear-gradient(135deg, var(--paper) 0%, var(--white) 55%, var(--paper) 100%);
}

.supporters-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--spectrum);
  content: "";
}

.supporters-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.supporters-heading h2 {
  max-width: 780px;
  font-size: clamp(2.65rem, 4.8vw, 4.75rem);
}

.supporters-heading > p {
  margin: 0;
  color: #5e5b56;
  line-height: 1.7;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 64px;
}

.supporter-logo {
  display: grid;
  min-width: 0;
  min-height: 116px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-top-width: 4px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(72, 48, 122, 0.08);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.supporter-logo:hover {
  box-shadow: 0 18px 38px rgba(72, 48, 122, 0.14);
  transform: translateY(-3px);
}

.supporter-logo:nth-child(8n + 1) { border-top-color: var(--red); }
.supporter-logo:nth-child(8n + 2) { border-top-color: var(--purple); }
.supporter-logo:nth-child(8n + 3) { border-top-color: var(--teal); }
.supporter-logo:nth-child(8n + 4) { border-top-color: var(--gold); }
.supporter-logo:nth-child(8n + 5) { border-top-color: var(--lavender); }
.supporter-logo:nth-child(8n + 6) { border-top-color: var(--green); }
.supporter-logo:nth-child(8n + 7) { border-top-color: var(--wine); }
.supporter-logo:nth-child(8n + 8) { border-top-color: var(--coral); }

.supporter-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.supporter-logo--contrast {
  background: linear-gradient(135deg, #7250a2 0%, #4f347f 100%);
}

.supporter-logo--contrast img {
  filter: drop-shadow(0 4px 8px rgba(38, 22, 67, 0.22));
}

.supporter-porthal {
  display: grid;
  place-items: center;
  background: #f4effb;
}

.supporter-porthal img {
  max-height: 82px;
}

.faq-section {
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 92%, rgba(200, 68, 79, 0.24), transparent 29%),
    radial-gradient(circle at 92% 12%, rgba(81, 159, 155, 0.18), transparent 27%),
    linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.02fr;
  gap: 100px;
}

.faq-grid h2 {
  font-size: clamp(2.65rem, 4.7vw, 4.55rem);
}

.faq-intro {
  max-width: 510px;
  margin: 27px 0 0;
  color: #aaa;
  line-height: 1.7;
}

.faq-list details {
  border-top: 1px solid var(--line-dark);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ececec;
  font-size: 1rem;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 0 26px;
  color: #9e9e9e;
  font-size: 0.9rem;
  line-height: 1.68;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 108px;
  background:
    radial-gradient(circle at 90% 20%, rgba(229, 193, 111, 0.38), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(81, 159, 155, 0.36), transparent 27%),
    linear-gradient(135deg, var(--red) 0%, var(--purple) 52%, var(--lavender) 100%);
}

.contact-ring {
  top: -280px;
  right: -265px;
  width: 670px;
  height: 670px;
  border-width: 64px;
  border-color: rgba(229, 193, 111, 0.22);
}

.contact-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.contact-heading .section-kicker {
  justify-content: center;
}

.contact-heading h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.contact-heading > p {
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.contact-actions {
  justify-content: center;
}

.contact-section .button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(36, 23, 51, 0.22);
}

.contact-section .button-primary:hover {
  background: var(--coral);
  color: var(--white);
}

.contact-section .button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.contact-section .button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.contacts-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  margin-top: 70px;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card-primary {
  isolation: isolate;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(135deg, #f6df9d 0%, var(--gold) 58%, #f29b7d 145%);
  color: var(--ink);
  box-shadow:
    0 30px 75px rgba(25, 13, 43, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.contact-card-primary::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--spectrum);
  content: "";
}

.contact-card-primary::after {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -115px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(72, 48, 122, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(72, 48, 122, 0.06),
    0 0 0 70px rgba(255, 255, 255, 0.1);
  content: "";
}

.contact-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.contact-role {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card-monogram {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(72, 48, 122, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  color: var(--purple);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 30px rgba(72, 48, 122, 0.12);
}

.contact-card-identity {
  max-width: 600px;
  margin-top: 22px;
}

.contact-card-identity p {
  margin: 0 0 7px;
  color: rgba(36, 23, 51, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card-identity h3 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.contact-channels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 12px;
  margin-top: 32px;
}

.contact-channel {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(72, 48, 122, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(72, 48, 122, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-channel:hover {
  border-color: rgba(72, 48, 122, 0.34);
  background: rgba(255, 255, 255, 0.76);
  transform: translateY(-3px);
}

.contact-channel-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--purple), var(--lavender));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 850;
}

.contact-channel > span:last-child {
  min-width: 0;
}

.contact-channel small,
.contact-channel strong {
  display: block;
}

.contact-channel small {
  margin-bottom: 3px;
  color: rgba(36, 23, 51, 0.58);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-channel strong {
  color: var(--ink);
  font-size: clamp(0.79rem, 1.5vw, 0.93rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.site-footer {
  position: relative;
  padding: 76px 0 24px;
  border-top: 0;
  background: var(--paper);
  color: var(--ink);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--spectrum);
  content: "";
}

.footer-main {
  display: grid;
  grid-template-columns: 0.78fr auto 1.18fr;
  gap: 52px;
  align-items: center;
}

.footer-main > div:first-child > p {
  margin: 14px 0 0;
  color: #625b64;
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 36px;
  color: #625b64;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--purple);
}

.footer-disclaimer {
  display: grid;
  max-width: 460px;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-left: auto;
  padding: 18px 19px;
  border: 1px solid rgba(72, 48, 122, 0.16);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 193, 111, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(72, 48, 122, 0.08);
}

.footer-disclaimer-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--purple), var(--lavender));
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
}

.footer-disclaimer strong {
  display: block;
  color: var(--purple);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-disclaimer p {
  margin: 7px 0 0;
  color: #655e66;
  font-size: 0.73rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 23px;
  border-top: 1px solid var(--line-light);
  color: #756e77;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 20px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
  font-size: 0.76rem;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-contact:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.floating-contact > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .main-menu {
    gap: 14px;
    font-size: 0.75rem;
  }

  .header-cta {
    padding-inline: 15px;
  }

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

  .contacts-grid {
    grid-template-columns: minmax(0, 760px);
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 96px;
  }

  .brand-program {
    width: 132px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .main-menu {
    position: fixed;
    z-index: -1;
    top: 96px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 96px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    padding: 42px 24px 40px;
    background: rgba(36, 23, 51, 0.98);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-menu a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(1.4rem, 5vw, 2.1rem);
  }

  .main-menu a::after {
    display: none;
  }

  .hero-grid,
  .purpose-heading,
  .purpose-content,
  .section-heading,
  .audience-grid,
  .impact-grid,
  .moments-heading,
  .family-card,
  .supporters-heading,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .stats-strip > p {
    display: none;
  }

  .purpose-heading,
  .purpose-content,
  .section-heading,
  .audience-grid,
  .impact-grid,
  .moments-heading,
  .supporters-heading,
  .faq-grid {
    gap: 50px;
  }

  .section-heading .section-kicker {
    margin-bottom: -26px;
  }

  .purpose-intro,
  .section-heading > p:last-child,
  .supporters-heading > p {
    max-width: 620px;
  }

  .purpose-photo {
    min-height: 460px;
  }

  .purpose-photo > img {
    height: 460px;
  }

  .audience-copy {
    max-width: 760px;
  }

  .impact-copy {
    max-width: 720px;
  }

  .family-images img {
    min-height: 390px;
  }

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

@media (max-width: 700px) {
  section {
    scroll-margin-top: 96px;
  }

  .container,
  .header-inner {
    width: min(100% - 32px, var(--container));
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand-program {
    width: 112px;
    padding: 0;
  }

  .brand-program-footer {
    width: 176px;
  }

  .main-menu {
    top: 86px;
    height: calc(100vh - 86px);
  }

  .hero {
    padding-top: 138px;
  }

  .hero-grid {
    padding-bottom: 66px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-lead {
    margin-top: 24px;
    line-height: 1.64;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .hero-main-photo {
    right: 20px;
    width: calc(100% - 30px);
    height: 355px;
    border-radius: 24px 24px 70px 24px;
  }

  .hero-side-photo-top {
    right: -3px;
    width: 108px;
    height: 108px;
  }

  .hero-side-photo-bottom {
    right: 0;
    width: 128px;
    height: 98px;
  }

  .hero-proof-card {
    bottom: 1px;
    left: 0;
    width: 208px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip article,
  .stats-strip article:first-child {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    padding: 19px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stats-strip article:last-of-type {
    border-bottom: 0;
  }

  .stats-strip span {
    max-width: 125px;
    margin: 0;
    text-align: right;
  }

  .purpose-section,
  .skills-section,
  .audience-section,
  .journey-section,
  .impact-section,
  .moments-section,
  .supporters-section,
  .faq-section,
  .contact-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .purpose-heading h2,
  .section-heading h2,
  .audience-copy h2,
  .impact-copy h2,
  .moments-heading h2,
  .family-copy h2,
  .supporters-heading h2,
  .faq-grid h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .purpose-content {
    margin-top: 58px;
  }

  .purpose-photo,
  .purpose-photo > img {
    min-height: 360px;
    height: 360px;
  }

  .skills-grid,
  .journey-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    min-height: 320px;
  }

  .audience-visual {
    min-height: 420px;
  }

  .audience-visual > img {
    width: 100%;
    height: 420px;
    border-radius: 55px 24px 24px 24px;
  }

  .journey-photo {
    height: 290px;
  }

  .impact-gallery {
    gap: 9px;
  }

  .impact-gallery figure,
  .gallery-statement {
    min-height: 165px;
  }

  .gallery-statement {
    min-height: 112px;
  }

  .impact-gallery .gallery-wide {
    min-height: 220px;
  }

  .moments-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .moments-slider {
    margin-top: 34px;
    padding: 6px;
    border-radius: 27px;
  }

  .moments-slides {
    border-radius: 21px;
  }

  .moment-media {
    aspect-ratio: 4 / 3;
  }

  .moments-arrow {
    top: 50%;
    width: 44px;
    height: 44px;
  }

  .moments-arrow-prev {
    left: 12px;
  }

  .moments-arrow-next {
    right: 12px;
  }

  .moments-controls {
    min-height: 62px;
    gap: 10px;
    padding: 8px 10px 2px;
  }

  .family-section {
    padding: 48px 0;
  }

  .family-card {
    border-radius: 25px;
  }

  .family-images img {
    min-height: 300px;
  }

  .family-images img:first-child {
    border-radius: 21px 0 0 0;
  }

  .family-copy {
    padding: 42px 25px 48px;
  }

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

  .supporter-logo {
    min-height: 106px;
    padding: 13px;
  }

  .supporter-logo img {
    max-height: 66px;
  }

  .faq-grid {
    gap: 44px;
  }

  .contact-heading h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .contact-card-primary {
    padding: 28px 22px 24px;
    border-radius: 24px;
  }

  .contact-card-monogram {
    width: 54px;
    height: 54px;
  }

  .contact-card-identity h3 {
    font-size: clamp(1.72rem, 9vw, 2.45rem);
  }

  .contact-channels {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

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

  .footer-disclaimer {
    max-width: none;
    margin-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 2.92rem;
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.14em;
  }

  .hero-main-photo figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .purpose-points article {
    grid-template-columns: 35px 1fr;
    gap: 13px;
  }

  .impact-gallery {
    grid-template-columns: 1fr;
  }

  .impact-gallery .gallery-wide {
    grid-column: auto;
  }

  .gallery-statement {
    grid-column: 1;
    min-height: 106px;
    gap: 16px;
    padding: 20px 21px;
  }

  .gallery-statement strong {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .gallery-statement span {
    max-width: 128px;
    padding-left: 16px;
    font-size: 0.66rem;
  }

  .moments-heading h2 {
    font-size: 2.35rem;
  }

  .moments-dots {
    gap: 6px;
  }

  .family-images {
    grid-template-columns: 1fr;
  }

  .family-images img {
    min-height: 250px;
  }

  .family-images img:first-child {
    border-radius: 21px 21px 0 0;
  }

  .floating-contact strong {
    display: none;
  }

  .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-contact > span {
    width: 32px;
    height: 32px;
  }
}

@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;
  }
}
