:root {
  --fnp-magenta: #c90075;
  --fnp-gray: #a6acaa;
  --fnp-white: #ffffff;
  --fnp-charcoal: #3a3a3c;
  --fnp-light-pink: #ffe3f4;
  --fnp-eggplant: #a54082;
  --fnp-green: #79b841;
  --fnp-golden-yellow: #f2b705;
  --fnp-blue: #2c55a6;
  --fnp-vivid-azure: #15b0e7;
  --fnp-magenta-on-dark: #ff70bc;
  --fnp-green-text: #397d16;
  --focus-ring: #005fcc;
  --ink: #17171a;
  --muted: #5f6266;
  --cream: #fdf9f6;
  --soft-blue: #e8f0ff;
  --line: #eadfe6;
  --shadow: 0 12px 34px rgba(67, 27, 52, 0.09);
  --radius: 18px;
  --container: 1340px;
  --heading: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Open Sans", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--fnp-white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

/*
 * Keep paragraphs readable at changing viewport widths without hard-coded
 * line breaks. "pretty" wrapping avoids short last lines when the browser
 * can find a better break; widow/orphan values also improve print output.
 */
:where(p, li, dd, figcaption, blockquote) {
  overflow-wrap: break-word;
  text-wrap: pretty;
  widows: 3;
  orphans: 3;
}

:where(h1, h2, h3, h4, h5, h6, .eyebrow, summary) {
  overflow-wrap: break-word;
  text-wrap: balance;
}

:where(.hero-copy, .policy-hero, .section-heading, .reach-cta-copy, .journey-stage, .contact-steps .service-point) p {
  text-wrap: balance;
}

:where(
  .leadership-card strong,
  .service-point strong,
  .stat-label,
  .involvement-item strong,
  .support-callout strong,
  .contact-reassurance strong
) {
  text-wrap: balance;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--fnp-white);
}

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

h1,
h2,
h3,
h4,
.eyebrow,
.btn,
.site-nav,
.stat-number {
  font-family: var(--heading);
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 9px;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.25;
}

p {
  margin-bottom: 16px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--fnp-white);
  background: var(--fnp-charcoal);
  transform: translateY(-140%);
}

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

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

.narrow {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.section {
  padding: clamp(44px, 4.4vw, 68px) 0;
}

.section.compact {
  padding: clamp(32px, 3vw, 46px) 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--fnp-magenta);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kicker {
  color: var(--fnp-magenta);
  font-family: var(--heading);
  font-weight: 650;
}

.muted {
  color: var(--muted);
}

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

.pink-band {
  background: var(--fnp-light-pink);
}

.page-about #looking-ahead {
  background: #e4f8e9;
}

.soft-blue {
  background: #dfeaff;
}

.blue-band {
  color: var(--fnp-white);
  background: var(--fnp-blue);
}

.soft-band {
  background: var(--cream);
}

.site-contact-bar {
  flex: 0 0 auto;
  color: var(--fnp-charcoal);
  font-size: 0.86rem;
}

.site-contact-bar-inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 3px;
}

.site-contact-bar a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--fnp-magenta);
  font-weight: 600;
}

.site-contact-bar a:last-child {
  grid-column: 1 / -1;
}

.site-contact-bar a,
.footer-help a,
a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.site-contact-bar a:hover {
  text-decoration-thickness: 2px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(166, 172, 170, 0.24);
  backdrop-filter: blur(12px);
}

.site-header .container {
  width: min(calc(100% - 48px), 1760px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(92px, 6.8vw, 128px);
  gap: 40px;
}

.brand {
  flex: 0 0 auto;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 550;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--fnp-magenta);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--fnp-charcoal);
  background: var(--fnp-light-pink);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -7px;
}

.menu-lines::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  box-shadow: 0 8px 20px rgba(237, 0, 140, 0.25);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn.outline {
  color: var(--fnp-magenta);
  background: var(--fnp-white);
  border-color: var(--fnp-magenta);
}

.btn.blue {
  background: var(--fnp-blue);
}

.btn.small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(260px, 16.666vw, 320px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--fnp-white);
  background: #121212;
}

.page-home .hero {
  min-height: clamp(520px, 33.333vw, 640px);
}

.hero .container {
  width: min(calc(100% - 64px), 1760px);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 35%;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 16, 16, 1) 0%,
    rgba(16, 16, 16, 1) 35%,
    rgba(16, 16, 16, 0.92) 40%,
    rgba(16, 16, 16, 0.72) 50%,
    rgba(16, 16, 16, 0.45) 62%,
    rgba(16, 16, 16, 0.18) 78%,
    rgba(16, 16, 16, 0) 100%
  );
  content: "";
}

.hero-copy {
  max-width: 650px;
  padding: 40px 0;
}

.page-home .hero-copy,
.page-home .hero h1 {
  max-width: 840px;
}

.page-home .hero-copy {
  padding: 56px 0;
}

body:not(.page-home) .hero h1 {
  max-width: 680px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.page-home .hero h1 span {
  display: block;
}

.hero-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.hero-note {
  margin: 14px 0 0;
  font-size: 0.88rem !important;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.audience-card,
.info-card,
.testimonial,
.participation-card,
.faq-panel,
.community-panel,
.ack-card,
.role-card,
.team-card,
.reason-card,
.journey-card,
.crisis-card,
.policy-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fnp-white);
  box-shadow: var(--shadow);
}

.audience-card {
  display: grid;
  grid-template-columns: minmax(132px, 41%) 1fr;
  min-height: 280px;
}

.audience-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card-body {
  padding: 20px;
}

.audience-card h3 {
  color: var(--fnp-magenta);
}

.audience-card-body .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.audience-card-body p,
.info-card p,
.reason-body p,
.team-card-body p {
  font-size: 0.94rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--fnp-magenta);
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.icon-item {
  padding: 10px 24px;
  text-align: center;
  border-right: 1px solid rgba(237, 0, 140, 0.25);
}

.icon-item:last-child {
  border-right: 0;
}

.icon {
  display: inline-grid;
  width: 66px;
  height: 66px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--fnp-magenta);
  background: rgba(237, 0, 140, 0.08);
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 650;
}

.icon-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin-inline: auto;
}

.home-services {
  padding: 34px 0 28px;
}

.home-services .container {
  width: min(calc(100% - 28px), var(--container));
}

.home-services .section-heading {
  margin-bottom: 22px;
}

.home-services .section-heading h2 {
  margin-bottom: 0;
}

.round-photo {
  width: 250px;
  height: 250px;
  aspect-ratio: 1;
  margin: auto;
  border: 3px solid #efb7d8;
  border-radius: 50%;
  object-fit: cover;
}

.service-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 46px;
}

.service-point {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.service-point .icon {
  width: 72px;
  height: 72px;
  margin: 0;
  background: #fff0f8;
}

.service-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.reference-icon-wrap {
  overflow: visible;
  border: 0 !important;
  background: transparent !important;
}

.reference-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.inline-reference-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  vertical-align: middle;
}

.inline-reference-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-point strong {
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
}

.split.reverse .split-copy {
  order: 2;
}

.split.reverse .split-media {
  order: 1;
}

.split-media img,
img.split-media {
  width: 100%;
  min-height: 330px;
  max-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Contact: what happens next */
.contact-steps {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.42fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 58px);
}

.contact-steps .split-copy > h2 {
  font-size: clamp(2rem, 3.2vw, 2.72rem);
  line-height: 1.06;
  margin-bottom: 20px;
}

.contact-steps .split-copy > p:not(.kicker) {
  max-width: 490px;
  line-height: 1.45;
}

.contact-steps .kicker {
  margin: 26px 0 6px;
}

.contact-step-list {
  border-top: 1px solid var(--line);
}

.contact-steps .service-point {
  grid-template-columns: 78px minmax(0, 1fr);
  min-height: 72px;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.contact-steps .service-point .icon {
  width: 66px;
  height: 66px;
  background: #fff0f8;
}

.contact-step-icon svg,
.contact-reassurance .icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-steps .service-point p {
  margin: 0;
  font-weight: 600;
  line-height: 1.28;
}

.contact-reassurance {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 16px 20px;
  border: 1px solid #efcfe1;
  border-left: 1px solid #efcfe1;
  border-radius: 12px;
  color: #6d164d;
  background: #fff4fa;
}

.contact-reassurance .icon {
  width: 96px;
  height: 96px;
  margin: 0;
  color: var(--fnp-magenta);
  background: #fde5f2;
}

.contact-reassurance .icon svg {
  width: 76px;
  height: 76px;
}

.contact-reassurance strong {
  display: block;
  margin-bottom: 5px;
  color: var(--fnp-magenta);
}

.contact-reassurance p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.35;
}

.contact-steps .split-media img {
  min-height: 780px;
  height: 100%;
  max-height: 860px;
  aspect-ratio: auto;
}

@media (min-width: 901px) {
  .page-contact .contact-steps .split-media {
    display: grid;
    align-self: stretch;
    height: 100%;
    min-height: 0;
  }

  .page-contact .contact-steps .split-media img {
    display: block;
    align-self: stretch;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100vw - 16px), var(--container));
  margin-top: 38px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.process-step {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 26px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .process-icon {
  width: 82px;
  height: 82px;
  margin: 0 0 8px;
  color: #b02a70;
  background: transparent;
}

.process-icon svg {
  width: 80px;
  height: 76px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.process-icon svg .process-heart {
  fill: currentColor;
  stroke: currentColor;
}

.process-step h3 {
  max-width: 270px;
  margin-bottom: 10px;
  color: #b02a70;
  font-size: 1.14rem;
  line-height: 1.2;
}

.process-step p {
  max-width: 250px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.42;
}

.process-step:nth-child(2) .process-icon {
  color: var(--fnp-blue);
}

.process-step:nth-child(2) h3 {
  color: var(--fnp-blue);
}

.process-step:nth-child(3) .process-icon {
  color: var(--fnp-green);
}

.process-step:nth-child(3) h3 {
  color: var(--fnp-green-text);
}

.process-step:nth-child(4) .process-icon {
  color: var(--fnp-eggplant);
}

.process-step:nth-child(4) h3 {
  color: #71327a;
}

.disclaimer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(calc(100vw - 16px), var(--container));
  min-height: 38px;
  margin: 14px 0 0;
  margin-left: 50%;
  padding: 7px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fffafd;
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
  white-space: nowrap;
  transform: translateX(-50%);
}

.disclaimer > span {
  color: #b02a70;
  font-size: 1.2rem;
  line-height: 1;
}

.stats-band {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  overflow: hidden;
  color: var(--fnp-white);
}

.stat {
  --stat-bg: var(--fnp-blue);
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 40px 34px;
  text-align: center;
  background: var(--stat-bg);
}

.stat-link {
  color: inherit;
  text-decoration: none;
}

.stat-link:hover,
.stat-link:focus-visible {
  color: inherit;
  filter: brightness(1.08);
}

.stat:nth-child(1) {
  z-index: 4;
}

.stat:nth-child(2) {
  z-index: 3;
}

.stat:nth-child(3) {
  z-index: 2;
}

.stat:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -22px;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 22px solid var(--stat-bg);
  content: "";
  transform: translateY(-50%);
}

.stat.intro {
  --stat-bg: #a42657;
  justify-items: start;
  padding-inline: clamp(44px, 5vw, 88px);
  text-align: left;
}

.stat.intro h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.2vw, 2.45rem);
}

.stat.intro p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1rem, 1.12vw, 1.25rem);
  line-height: 1.35;
}

.stat:nth-child(3) {
  --stat-bg: var(--fnp-green-text);
}

.stat:nth-child(4) {
  --stat-bg: #3c1c51;
}

.stat-number {
  margin: 8px 0 4px;
  font-size: clamp(3.2rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-icon {
  display: grid;
  width: 112px;
  height: 104px;
  place-items: center;
  color: var(--fnp-white);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.stat-icon-people svg {
  fill: currentColor;
}

.stat-icon-heart svg circle,
.stat-icon-medal svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
}

.stat-icon-heart svg path,
.stat-icon-medal svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.stat-heading {
  margin: 8px 0 6px;
  font-family: var(--heading);
  font-size: clamp(1.4rem, 1.65vw, 1.85rem);
  line-height: 1.15;
}

.stat-label {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.35;
}

.testimonial {
  display: grid;
  grid-template-rows: 190px 1fr;
  border-bottom: 6px solid var(--fnp-magenta);
}

.testimonial img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.testimonial blockquote {
  margin: 0;
  padding: 30px 24px 24px;
  text-align: center;
}

.testimonial blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--fnp-magenta);
  content: "“";
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.6;
}

.support-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 20px 28px;
  border-radius: var(--radius);
  color: #8d175f;
  background: #fff1f8;
}

.support-callout .icon {
  margin: 0;
}

.participation {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 48px;
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.participation-card {
  position: relative;
  color: var(--ink);
  text-decoration: none;
}

.participation-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.participation-card strong {
  display: block;
  min-height: 72px;
  padding: 14px 18px;
  font-family: var(--heading);
}

.participation-card::after {
  position: absolute;
  right: 12px;
  bottom: 15px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  content: "+";
}

.shared-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}

.faq-panel,
.community-panel {
  padding: clamp(20px, 2vw, 26px);
}

.shared-grid > .faq-panel,
.shared-grid > .community-panel {
  min-height: 360px;
}

.shared-grid > .faq-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shared-grid > .faq-panel > .btn {
  align-self: flex-start;
  margin-top: 14px;
}

.community-panel h2 {
  margin-bottom: 12px;
}

.newsletter-signup {
  display: grid;
  gap: 14px;
}

.newsletter-signup img {
  width: 100%;
  height: clamp(150px, 15vw, 190px);
  border-radius: 12px;
  object-fit: cover;
  object-position: 62% center;
}

.newsletter-signup .btn {
  width: 100%;
}

.community-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 10px 14px;
}

.community-form .field-group {
  margin: 0;
}

.community-form .field-group input,
.community-form .field-group select {
  min-height: 44px;
}

.community-form .field-error {
  min-height: 0;
  margin: 0;
}

.community-form .field-error:not(:empty) {
  margin-top: 4px;
}

.community-form .consent {
  align-self: end;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.community-form .community-support-field,
.community-form > .consent,
.community-form > .btn {
  grid-column: 1 / -1;
  width: 100%;
}

.community-form .error-summary,
.community-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.shared-grid .faq-list summary {
  min-height: 40px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 0.88rem;
}

.participation h2,
.faq-panel h2,
.community-panel h2,
.reach-cta h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

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

.faq-list summary {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 34px 12px 0;
  font-family: var(--heading);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  color: var(--fnp-magenta);
  content: "+";
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-right: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Full FAQ panel */
#full-faq .faq-panel {
  padding: clamp(30px, 3vw, 42px);
}

#full-faq .faq-panel > h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

#full-faq .faq-list {
  margin-top: 22px;
}

#full-faq .faq-list details {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

#full-faq .faq-list summary {
  min-height: 60px;
  padding: 14px 54px 14px 24px;
  border-radius: 10px;
  color: #c52b79;
  background: #fff1f8;
  font-size: 1.08rem;
  font-weight: 700;
}

#full-faq .faq-list summary::after {
  right: 24px;
  font-size: 2rem;
  font-weight: 400;
}

#full-faq .faq-list details p {
  margin: 20px 24px 22px;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

#full-faq .faq-list details ul {
  margin: -6px 24px 22px 44px;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

#full-faq .faq-list details li + li {
  margin-top: 8px;
}

#full-faq .disclaimer {
  width: auto;
  min-height: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  text-align: center;
  transform: none;
}

#full-faq .disclaimer > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 25px;
  border: 1px solid #efb7d8;
  border-radius: 50%;
  color: var(--fnp-magenta);
}

.field-group {
  margin-bottom: 18px;
}

.field-group label,
.consent label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #c9cdcc;
  border-radius: 8px;
  color: var(--ink);
  background: var(--fnp-white);
}

.field-group textarea {
  min-height: 96px;
  resize: vertical;
}

.field-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.field-error {
  min-height: 1.2em;
  margin: 5px 0 0;
  color: #9f0044;
  font-size: 0.85rem;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 18px 0;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.consent label {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
}

.form-status,
.error-summary,
.offline-notice {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.form-status:empty,
.error-summary[hidden],
.offline-notice[hidden] {
  display: none;
}

.error-summary {
  margin-bottom: 18px;
  color: #7a0037;
  background: #fff0f6;
  border-left: 4px solid var(--fnp-magenta);
}

.form-status {
  margin-top: 14px;
  color: #175b2a;
  background: #edf9ee;
}

.offline-notice {
  position: fixed;
  z-index: 200;
  right: auto;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  color: var(--fnp-white);
  background: var(--fnp-charcoal);
  box-shadow: var(--shadow);
}

.privacy-actions {
  position: fixed;
  z-index: 250;
  right: max(24px, calc((100vw - 1760px) / 2));
  top: calc(clamp(92px, 6.8vw, 128px) + 12px);
}

.scroll-actions {
  position: fixed;
  z-index: 250;
  right: 20px;
  bottom: 20px;
}

.privacy-exit,
.scroll-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--fnp-magenta);
  font-family: var(--heading);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(58, 58, 60, 0.18);
}

.privacy-exit {
  min-width: 82px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  letter-spacing: 0.05em;
}

.scroll-to-top {
  width: 48px;
  padding: 0;
  border-radius: 50%;
  color: var(--fnp-magenta);
  background: var(--fnp-white);
  font-size: 1.35rem;
  cursor: pointer;
}

.scroll-to-top[hidden] {
  display: none;
}

.privacy-exit:hover,
.scroll-to-top:hover {
  box-shadow: 0 10px 28px rgba(237, 0, 140, 0.26);
  transform: translateY(-2px);
}

.acknowledgements {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.ack-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: center;
  min-height: 230px;
}

.ack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ack-copy {
  padding: 24px;
}

.diversity-mark {
  display: block;
  width: 120px;
  height: 120px;
  margin: auto;
  object-fit: contain !important;
}

.reach-cta {
  background: #ffeaf6;
}

.reach-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 160px;
}

.reach-cta img {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
}

.reach-cta-copy p {
  margin-bottom: 6px;
}

.reach-faq-link {
  min-height: 32px;
  display: inline-block;
  padding-block: 5px;
  font-weight: 650;
  text-wrap: balance;
}

.reach-actions {
  display: grid;
  gap: 9px;
  min-width: 148px;
}

.reach-actions .btn {
  justify-content: center;
  white-space: nowrap;
}

.section.compact.home-commitments {
  padding: 20px 0 27px;
}

.home-commitments .acknowledgements {
  margin-top: 0;
}

.home-commitments .ack-card {
  min-height: 246px;
}

.home-commitments .ack-copy p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.55;
}

.site-closing {
  padding: 24px 0 26px;
  background: #ffeaf6;
}

.site-closing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  gap: 10px;
  padding-left: 0;
}

.site-closing .reach-cta,
.site-closing .community-panel {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-closing .reach-cta h2,
.site-closing .community-panel h2 {
  display: flex;
  min-height: 2.3em;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 16px;
  text-align: center;
}

.site-closing .reach-cta h2 {
  max-width: 250px;
}

.site-closing .community-panel h2 {
  max-width: 520px;
}

.site-closing .reach-cta > img,
.site-closing .newsletter-signup img {
  display: block;
  width: 100%;
  height: 173px;
  margin-inline: auto;
  object-fit: cover;
}

.site-closing .reach-cta-copy {
  margin-top: 24px;
  padding-inline: 29px;
  font-size: 0.9rem;
  text-align: center;
}

.site-closing .reach-cta-copy p {
  margin: 0 0 6px;
}

.site-closing .reach-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 18px;
}

.site-closing .newsletter-signup {
  gap: 14px;
}

.site-closing .community-panel h2 {
  text-wrap: pretty;
}

.shared-newsletter .community-panel {
  max-width: 920px;
  margin-inline: auto;
}

.site-footer {
  padding: 56px 0 0;
  background: var(--fnp-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr) 1.25fr;
  gap: 30px;
  padding-bottom: 38px;
}

.footer-brand img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.footer-brand .footer-sunnybrook {
  width: 150px;
  height: auto;
  display: block;
  margin-top: 12px;
}

.footer-brand:not(:has(.footer-sunnybrook))::after {
  display: block;
  width: 150px;
  aspect-ratio: 478 / 113;
  margin-top: 12px;
  background: url("../images/fnp-image-sunnybrook-health-sciences-centre.png") center / contain no-repeat;
  content: "";
}

.footer-brand small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.footer-column h3 {
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  display: block;
  min-height: 32px;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--fnp-magenta);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

.footer-column a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

.footer-help h3 {
  color: var(--fnp-magenta);
}

.footer-bottom {
  color: var(--fnp-white);
  background: var(--fnp-magenta);
}

.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--fnp-white);
}

.vision-panel,
.contact-panel {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 48px;
  border-radius: 24px;
  color: var(--fnp-white);
  background: #171717;
}

.vision-panel .eyebrow,
.contact-panel .eyebrow {
  color: var(--fnp-magenta-on-dark);
}

.vision-panel > img,
.contact-panel > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.vision-panel::after,
.contact-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.97), rgba(20, 20, 20, 0.76) 48%, rgba(20, 20, 20, 0.08));
  content: "";
}

.vision-panel h2,
.contact-panel h2 {
  max-width: 560px;
}

.section.vision-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.about-intro {
  padding-bottom: 24px;
}

.section.lived-experience-section {
  padding-top: 24px;
}

.vision-panel .eyebrow {
  font-size: 1.18rem;
}

.vision-eyebrow,
.ready-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vision-eyebrow-icon {
  width: 34px;
  height: 34px;
}

.vision-panel h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.25rem);
}

.vision-tagline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--heading);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lived-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100vw - 16px), var(--container));
  overflow: hidden;
  gap: 0;
  margin-left: 50%;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--fnp-white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.lived-action-grid .info-card {
  min-height: 356px;
  padding: 14px 40px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.lived-action-grid .info-card:last-child {
  border-right: 0;
}

.lived-action-intro h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  line-height: 1.05;
}

.lived-action-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lived-action-council {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lived-action-intro p {
  max-width: 350px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}

.lived-action-intro .btn {
  min-width: 205px;
  min-height: 52px;
  justify-content: space-between;
  padding-inline: 24px;
  font-size: 1rem;
}

.lived-action-intro .btn span {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
}

.council-heading {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}

.council-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  color: #4f902a;
  background: #effbe9;
}

.council-icon svg {
  width: 68px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.lived-action-council h3 {
  margin: 0;
  color: #397d16;
  font-size: 1.34rem;
  line-height: 1.25;
}

.lived-action-council p {
  margin-bottom: 14px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.38;
}

.family-council .council-icon {
  color: #303e9e;
  background: #f2f3ff;
}

.family-council h3 {
  color: #1f2b86;
}

.section.compact.fnp-difference {
  padding: 12px 0;
}

.fnp-difference .container {
  width: min(calc(100vw - 16px), var(--container));
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.difference-collage {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
  align-items: center;
  align-self: center;
  justify-content: center;
}

.difference-collage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.difference-copy {
  padding: 4px 18px 4px 0;
}

.difference-copy > h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  line-height: 1.05;
}

.difference-list {
  display: grid;
  gap: 30px;
}

.difference-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.difference-icon {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  color: var(--fnp-magenta);
  background: #ffe4f2;
}

.difference-icon svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.difference-icon .difference-heart {
  fill: currentColor;
  stroke: currentColor;
}

.difference-item h3 {
  margin: 0 0 5px;
  color: var(--fnp-magenta);
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  line-height: 1.18;
}

.difference-item p {
  margin: 0;
  font-size: clamp(0.9rem, 1.06vw, 1.03rem);
  line-height: 1.38;
}

.difference-item:nth-child(2) .difference-icon {
  color: #3154bd;
  background: #e8edff;
}

.difference-item:nth-child(2) h3 {
  color: #2448a8;
}

.difference-item:nth-child(3) .difference-icon {
  color: #68ad28;
  background: #edfadf;
}

.difference-item:nth-child(3) h3 {
  color: var(--fnp-green-text);
}

.difference-item:nth-child(4) .difference-icon {
  color: #9a2aa1;
  background: #f8e5fa;
}

.difference-item:nth-child(4) h3 {
  color: #932793;
}

.difference-item:nth-child(5) .difference-icon {
  color: #00a9e7;
  background: #ddf5ff;
}

.difference-item:nth-child(5) h3 {
  color: #009bd5;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.leadership-card {
  width: 100%;
  min-height: 236px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #a92c67;
  background: var(--fnp-white);
  box-shadow: var(--shadow);
  text-align: left;
  cursor: pointer;
}

.leadership-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading);
  font-size: 1.35rem;
  text-wrap: balance;
}

.leadership-card-copy > span {
  display: block;
  color: var(--fnp-charcoal);
}

.leadership-card[aria-expanded="true"] {
  border-color: #efb7d8;
  box-shadow: 0 10px 28px rgba(169, 44, 103, 0.14);
}

.leadership-card[aria-expanded="true"] .leadership-arrow {
  transform: rotate(90deg);
}

.leadership-accordion-panel[hidden] {
  display: none;
}

.leadership-accordion-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--fnp-white);
  box-shadow: var(--shadow);
}

.leadership-accordion-media {
  min-height: 330px;
}

.leadership-accordion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-accordion-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.leadership-accordion-content .eyebrow {
  margin-bottom: 10px;
}

.leadership-accordion-content h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.leadership-accordion-content p {
  margin: 0 0 18px;
  line-height: 1.55;
}

.leadership-accordion-actions {
  margin-top: 8px;
}

.leadership-accordion-actions .btn {
  min-width: 180px;
}

.about-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--fnp-white);
  box-shadow: var(--shadow);
}

.about-feature-grid .info-card {
  min-height: 100%;
}

.about-feature-grid .connection-card {
  min-height: 236px;
  padding: 20px 24px;
  text-align: center;
  border-radius: 12px;
}

.connection-card h3 {
  margin-bottom: 0;
}

.connection-card p {
  margin: 2px auto 0;
  max-width: 540px;
  font-size: 0.94rem;
  line-height: 1.38;
}

.sunnybrook-wordmark {
  width: min(100%, 320px);
  height: 76px;
  margin: 0 auto 14px;
}

.sunnybrook-wordmark svg {
  width: 100%;
  height: 100%;
}

.sunnybrook-wordmark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about-feature-cards .info-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  text-align: center;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.about-feature-cards .info-card:last-child {
  border-right: 0;
}

.about-feature-cards .info-card h3 {
  margin: 4px 0 10px;
  color: #b02a70;
  font-size: 1.12rem;
  line-height: 1.25;
}

.about-feature-cards .info-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.info-card {
  padding: 28px;
}

.info-card .icon {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
}

.about-feature-cards .about-benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0;
  background: transparent;
}

.about-benefit-icon svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.notice.leadership-banner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  margin-bottom: 22px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 12px;
  color: #a92c67;
  background: var(--fnp-white);
  box-shadow: var(--shadow);
}

.leadership-banner strong {
  font-family: var(--heading);
  font-size: 1.25rem;
}

.leadership-icon {
  display: grid;
  width: 58px;
  height: 48px;
  place-items: center;
  color: #a92c67;
}

.leadership-icon svg {
  width: 58px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.leadership-arrow {
  justify-self: end;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  align-items: stretch;
  gap: 16px;
}

.navigation-roles-section .roles {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  max-width: 900px;
  margin-inline: auto;
}

.navigation-roles-section .role-card {
  min-height: 130px;
  grid-template-columns: 60px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon copy";
  justify-items: stretch;
  align-items: center;
  align-content: center;
  column-gap: 18px;
  row-gap: 7px;
  padding: 24px 20px;
  text-align: left;
}

.navigation-roles-section .role-card h3 {
  margin: 0;
}

.navigation-roles-section .role-card p {
  max-width: none;
}

.roles-note {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 24px 34px;
  border: 1px solid #efb7d8;
  border-radius: 14px;
  color: #8f245f;
  background: var(--fnp-light-pink);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
}

.role-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "icon copy";
  align-items: center;
  align-content: start;
  column-gap: 16px;
  row-gap: 0;
  padding: 14px 20px;
}

.role-card .icon {
  grid-area: icon;
  width: 60px;
  height: 60px;
  margin: 0;
}

.role-card h3 {
  grid-area: title;
  margin: 0 0 5px 0;
  color: var(--fnp-magenta);
  font-size: 1.08rem;
  line-height: 1.16;
}

.role-card p {
  grid-area: copy;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.role-arrow {
  grid-area: arrow;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  font-size: 36px;
  line-height: 1;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-photo {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.team-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: top;
}

.team-card-body {
  padding: 18px 20px;
}

.team-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
}

.looking-grid {
  display: grid;
  gap: 22px;
}

.future-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fnp-white);
  box-shadow: var(--shadow);
}

.future-card:nth-child(even) img {
  order: 2;
}

.future-card > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.future-copy {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 30px;
  align-items: center;
  padding: 40px;
}

.future-copy .icon {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.future-copy h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.future-copy p,
.future-copy .text-link {
  grid-column: 1 / -1;
}

.future-copy p {
  margin-top: 18px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 12px;
  color: #8a165d;
  background: #fff0f8;
}

.contact-info > strong {
  font-family: var(--heading);
  font-size: 1.05rem;
}

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

.contact-info .contact-info-method {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.contact-info a {
  min-height: 32px;
  color: inherit;
}

.contact-info-method-icon {
  width: 40px;
  height: 40px;
}

.contact-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.page-contact .contact-audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-audience .audience-card {
  min-height: 260px;
}

.contact-audience .message-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  place-items: center start;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius);
  color: #ad146e;
  background: var(--fnp-light-pink);
  text-align: center;
}

.message-card-icon {
  width: 68px;
  height: 68px;
}

.contact-audience .message-card h3 {
  margin: 0;
  text-align: left;
}

.involvement {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr) 286px;
  align-items: center;
  gap: 26px;
}

.involvement > img {
  width: 225px;
  height: 225px;
  aspect-ratio: 1;
  border: 3px solid #efb7d8;
  border-radius: 50%;
  object-fit: cover;
}

.involvement-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 42px;
}

.involvement-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.involvement-item .icon {
  width: 94px;
  height: 94px;
  margin: 0;
  background: #fde9f5;
}

.involvement-icon svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.involvement-icon .involvement-heart {
  fill: currentColor;
  stroke: currentColor;
}

.involvement-item strong {
  font-family: var(--heading);
  font-size: 1.15rem;
  line-height: 1.28;
  text-wrap: pretty;
}

.involvement-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.involvement-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  line-height: 1.22;
}

.involvement-heading p {
  font-size: 1.05rem;
  line-height: 1.35;
}

.crisis-intro {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.crisis-section {
  background: var(--fnp-white);
}

.crisis-callout {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 26px 32px;
  border: 1px solid #f3cfe3;
  border-radius: 20px;
  color: #8a165d;
  background: linear-gradient(135deg, #fff0f8 0%, #fff7fb 100%);
  box-shadow: 0 12px 32px rgba(132, 28, 91, 0.08);
}

.crisis-callout-icon {
  width: 68px;
  height: 68px;
  margin: 0;
  color: var(--fnp-magenta);
  background: #fde1f1;
  font-size: 2.25rem;
}

.crisis-callout h2 {
  margin: 0 0 4px;
  color: #8a165d;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.crisis-callout p {
  margin: 0;
  line-height: 1.45;
}

.crisis-callout a {
  color: var(--fnp-magenta);
  font-weight: 700;
}

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

.crisis-actions .btn {
  min-width: 252px;
}

.crisis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  margin-top: 30px;
}

.crisis-card {
  position: relative;
  display: grid;
  align-content: start;
  padding: 34px 36px 36px;
  border: 1px solid #e8afd0;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--fnp-white) 72%, #fff7fb 100%);
  box-shadow: 0 12px 30px rgba(93, 31, 72, 0.08);
}

.crisis-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--fnp-magenta);
  content: "";
}

.crisis-card h3,
.crisis-card strong {
  color: var(--fnp-magenta);
}

.crisis-card h3 {
  margin: 0 0 18px;
}

.crisis-card p {
  margin: 0;
}

.crisis-card p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f2d9e7;
}

.crisis-card small {
  color: var(--muted);
}

.crisis-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 650;
}

@media (max-width: 650px) {
  .crisis-callout {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 20px;
    border-radius: 16px;
  }

  .crisis-callout-icon {
    width: 52px;
    height: 52px;
  }

  .crisis-grid {
    gap: 18px;
    margin-top: 22px;
  }

  .crisis-card {
    padding: 28px 24px 30px;
    border-radius: 16px;
  }
}

.contact-panel {
  min-height: 610px;
}

.contact-panel p {
  max-width: 470px;
}

.ready-eyebrow-icon,
.contact-panel-method-icon {
  width: 38px;
  height: 38px;
}

.contact-panel-method {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 42px;
  margin-top: 36px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 16px;
}

.benefit-item .icon {
  margin: 0;
  color: var(--fnp-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.benefit-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.not-sure {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(360px, 420px);
  align-items: center;
  gap: 28px;
  padding: 20px 22px;
  border: 1px solid #bce6be;
  border-radius: var(--radius);
  background: #effcef;
}

.not-sure .icon {
  width: 140px;
  height: 140px;
  margin: 0;
  color: var(--fnp-green);
  background: rgba(121, 184, 65, 0.12);
}

.not-sure-icon svg {
  width: 92px;
  height: 92px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.not-sure-copy h2 {
  margin-bottom: 2px;
  color: #278f24;
  font-size: clamp(1.65rem, 2.25vw, 2.2rem);
}

.not-sure-intro {
  margin: 0;
}

.not-sure-intro > strong {
  display: block;
  margin-bottom: 8px;
  color: #278f24;
  font-family: var(--heading);
  font-size: 1.2rem;
}

.not-sure-callout {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 4px solid var(--fnp-green);
}

.not-sure-globe {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid var(--fnp-green);
  border-radius: 50%;
  color: #278f24;
}

.not-sure-globe svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.not-sure > img {
  width: 100%;
  height: 228px;
  border-radius: 12px;
  object-fit: cover;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reason-card {
  min-height: 360px;
  box-shadow: none;
}

.reason-card > img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.reason-body {
  position: relative;
  padding: 20px;
}

.reason-icon {
  position: absolute;
  top: -31px;
  left: 18px;
  width: 58px;
  height: 58px;
}

.reason-title {
  padding-top: 12px;
  margin-bottom: 10px;
  color: var(--fnp-magenta);
  font-size: 1rem;
}

.reason-cta {
  display: grid;
  place-items: center;
  padding: 28px;
  color: #9a2369;
  background: var(--fnp-light-pink);
  text-align: center;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.journey-track::before {
  position: absolute;
  top: 23px;
  right: calc(10% - 4.8px);
  left: calc(10% - 4.8px);
  height: 4px;
  border-radius: 999px;
  background: #b31b70;
  content: "";
}

.journey-stage {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-stage:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: auto;
  left: calc(100% + 6px);
  display: grid;
  width: 42px;
  height: 28px;
  place-items: center;
  color: #a90062;
  background: var(--fnp-light-pink);
  content: "➜";
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.journey-support-message {
  max-width: 920px;
  margin: 42px auto 0;
  padding: 22px 28px;
  border: 1px solid #efb7d8;
  border-radius: 14px;
  color: #8f1e62;
  background: var(--fnp-white);
  font-family: var(--heading);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 650;
  text-align: center;
}

.journey-stage-icon {
  width: 92px;
  height: 82px;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
}

.stage-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border: 0;
  border-radius: 50%;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.journey-stage h3 {
  color: var(--fnp-magenta);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.journey-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  margin-top: 46px;
  padding-inline: 220px;
}

.journey-cards::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: calc(50% - 55px);
  width: 110px;
  height: 3px;
  background: var(--fnp-magenta);
  content: "";
}

.journey-cards::after {
  position: absolute;
  z-index: 1;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--fnp-magenta);
  content: "";
}

.journey-card {
  position: relative;
  z-index: 2;
  min-height: 290px;
  overflow: visible;
  padding: 30px 34px;
  border-color: #efcfe1;
  box-shadow: none;
}

.journey-card img {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 250px;
  height: 250px;
  min-height: 0;
  border: 3px solid #efb7d8;
  border-radius: 50%;
  object-fit: cover;
  transform: translateY(-50%);
}

.journey-card:first-child img {
  left: -220px;
}

.journey-card:last-child img {
  right: -220px;
}

.journey-copy {
  position: relative;
  z-index: 2;
}

.journey-card:first-child .journey-copy {
  padding-left: 20px;
}

.journey-copy .stage-number {
  display: inline-grid;
  margin: 0 12px 0 0;
  vertical-align: middle;
}

.journey-copy h3 {
  display: inline;
  color: #b52c76;
  font-size: clamp(1.3rem, 1.75vw, 1.7rem);
  vertical-align: middle;
}

.journey-copy p {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.journey-download {
  margin-top: 18px;
}

.coded-with-youth {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 28px;
  border: 1px solid #f2b6d9;
  border-radius: 14px;
  color: #8b2161;
  background: #fff0f8;
}

.coded-youth-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  font-size: 2.5rem;
}

.coded-youth-icon.reference-icon-wrap {
  background: transparent;
}

.coded-with-youth h3 {
  margin: 0 0 4px;
  color: #b52c76;
  font-size: clamp(1rem, 1.5vw, 2rem);
}

.coded-with-youth p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.35;
}

.coded-with-youth-compact {
  grid-template-columns: 56px minmax(0, 1fr) auto;
}

.coded-with-youth-compact p {
  font-size: 1rem;
}

.coded-with-youth-compact .btn {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .journey-cards {
    gap: 60px;
    padding-inline: 150px;
  }

  .journey-cards::before {
    left: calc(50% - 30px);
    width: 60px;
  }

  .journey-card img {
    width: 220px;
    height: 220px;
  }

  .journey-card:first-child img {
    left: -165px;
  }

  .journey-card:last-child img {
    right: -165px;
  }
}

@media (max-width: 900px) {
  .journey-cards {
    gap: 24px;
    padding: 0;
  }

  .journey-cards::before,
  .journey-cards::after {
    display: none;
  }

  .journey-card {
    min-height: 0;
    padding: 28px;
  }

  .journey-card img,
  .journey-card:first-child img,
  .journey-card:last-child img {
    position: static;
    width: 210px;
    height: 210px;
    margin: 0 auto 18px;
    transform: none;
  }

  .journey-card:first-child .journey-copy {
    padding-left: 0;
  }
}

.first-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fnp-white);
  box-shadow: var(--shadow);
}

.first-contact > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center top;
}

.first-contact-copy {
  padding: clamp(30px, 5vw, 62px);
}

.first-contact-compact {
  grid-template-columns: 220px minmax(0, 1fr);
  max-width: 940px;
  margin: 40px auto 20px;
  box-shadow: none;
}

.first-contact-compact > img {
  min-height: 0;
  aspect-ratio: 1;
  object-position: center 18%;
}

.first-contact-compact .first-contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.first-contact-compact h2 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 1.75vw, 1.7rem);
}

.first-contact-compact p:last-child {
  margin-bottom: 0;
}

.quote-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin: 22px 0;
  padding: 20px;
  border-radius: 12px;
  color: #7f1b59;
  background: #fff0f8;
}

.first-contact-feature-icon {
  width: 60px;
  height: 60px;
}

.first-contact-subheading {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.first-contact-subheading h2 {
  margin: 0;
}

.first-contact-reassurance {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.first-contact-heart {
  width: 40px;
  height: 40px;
}

.policy-hero {
  padding: 50px 0 40px;
  color: var(--fnp-white);
  background: linear-gradient(135deg, #411133, var(--fnp-magenta));
}

.policy-hero h1 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.policy-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: start;
  gap: 56px;
}

.policy-nav {
  position: sticky;
  top: 120px;
  padding: 22px;
  border-radius: 14px;
  background: #fff1f8;
}

.policy-nav a {
  display: block;
  min-height: 42px;
  color: #7a1f58;
  font-size: 0.92rem;
}

.policy-card {
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: none;
}

.notice {
  padding: 20px 24px;
  border-left: 5px solid var(--fnp-magenta);
  color: #6d164d;
  background: #fff0f7;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.donation-options .info-card {
  display: flex;
  flex-direction: column;
}

.donation-options .btn {
  margin-top: auto;
}

.error-page {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.error-code {
  color: var(--fnp-magenta);
  font-family: var(--heading);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 700;
  line-height: 0.8;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-group > .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-group > .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-group > .reveal:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card {
    grid-template-columns: minmax(132px, 40%) 1fr;
  }

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

  .services-layout {
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 24px;
  }

  .round-photo {
    width: 220px;
    height: 220px;
  }

  .service-points {
    gap: 24px;
  }

  .service-point {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
  }

  .service-point .icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 44px;
    height: 44px;
  }

  .stat {
    min-height: 320px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

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

  .site-closing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-left: 0;
  }

  .footer-help {
    grid-column: span 2;
  }

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

  .journey-track {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 0;
  }

  .journey-track::before {
    display: block;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
    padding-block: 14px;
    display: grid;
    gap: 10px 24px;
  }

  .brand img {
    width: 100px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .site-contact-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin-left: 0;
    align-items: stretch;
    padding: 24px 20px 28px;
    background: var(--fnp-white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-wrap.open {
    display: grid;
  }

  .site-nav,
  .header-actions {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
  }

  .hero {
    min-height: 320px;
    align-items: end;
  }

  .page-home .hero {
    min-height: 680px;
  }

  .hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 62% center;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.78) 48%, rgba(10, 10, 10, 0.2) 100%);
  }

  .hero-copy {
    padding: 32px 0 28px;
  }

  body:not(.page-home) .hero-copy {
    padding: 32px 0 28px;
  }

  .page-home .hero-copy {
    padding: 150px 0 40px;
  }

  .page-home .hero h1 span {
    display: inline;
  }

  .card-grid,
  .panel-grid,
  .team-grid,
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .lived-action-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .lived-action-grid .info-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lived-action-grid .info-card:last-child {
    border-bottom: 0;
  }

  .icon-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .icon-item:nth-child(2),
  .process-step:nth-child(2) {
    border-right: 0;
  }

  .icon-item:nth-child(-n + 2),
  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .services-layout {
    grid-template-columns: 1fr 1.4fr;
  }

  .services-layout > img:last-child {
    display: none;
  }

  .split,
  .split.reverse,
  .difference-layout,
  .participation,
  .acknowledgements,
  .future-card,
  .contact-audience,
  .first-contact {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-audience {
    grid-template-columns: 1fr;
  }

  .journey-track {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 720px;
    margin-inline: auto;
  }

  .journey-track::before {
    display: none;
  }

  .journey-stage {
    display: grid;
    grid-template-columns: 50px 92px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .journey-stage-icon {
    margin: 0;
  }

  .journey-stage:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -29px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .difference-collage {
    min-height: 0;
  }

  .fnp-difference .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .difference-copy {
    padding: 0 18px 10px;
  }

  .split.reverse .split-copy,
  .split.reverse .split-media,
  .future-card:nth-child(even) img {
    order: initial;
  }

  .shared-grid {
    gap: 18px;
  }

  .reach-cta-inner {
    grid-template-columns: 1fr 1fr;
    padding: 30px 0;
  }

  .reach-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .involvement {
    grid-template-columns: 1fr 1.4fr;
  }

  .involvement > img:last-child {
    display: none;
  }

  .involvement-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .disclaimer {
    white-space: normal;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .not-sure {
    grid-template-columns: 120px 1fr;
  }

  .not-sure .icon {
    width: 110px;
    height: 110px;
  }

  .not-sure-icon svg {
    width: 74px;
    height: 74px;
  }

  .not-sure > img {
    display: none;
  }

  .journey-cards {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }
}

@media (max-width: 650px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .involvement-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .involvement-item .icon {
    width: 70px;
    height: 70px;
  }

  .involvement-item strong {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.55rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2rem);
  }

  .section {
    padding: 36px 0;
  }

  .section.compact {
    padding: 28px 0;
  }

  .section.home-services {
    padding: 32px 0;
  }

  .section.vision-section {
    padding: 16px 0;
  }

  .section.about-intro {
    padding-bottom: 10px;
  }

  .about-feature-grid {
    margin-top: 26px;
  }

  .section.lived-experience-section {
    padding-top: 10px;
  }

  .header-actions,
  .card-grid,
  .panel-grid,
  .about-feature-cards,
  .team-grid,
  .shared-grid,
  .crisis-grid,
  .benefit-grid,
  .reasons-grid,
  .donation-options {
    grid-template-columns: 1fr;
  }

  .section.compact.home-commitments {
    padding: 28px 0;
  }

  .site-closing {
    padding: 30px 0;
  }

  .site-closing-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 20px), var(--container));
    gap: 36px;
  }

  .site-closing .reach-cta h2,
  .site-closing .community-panel h2 {
    min-height: 0;
  }

  .site-closing .reach-cta > img {
    width: 100%;
  }

  .site-closing .reach-cta-copy {
    padding-inline: 0;
    text-align: left;
  }

  .site-closing .reach-actions {
    grid-template-columns: 1fr;
  }

  .about-feature-cards .info-card {
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-feature-cards .info-card:last-child {
    border-bottom: 0;
  }

  .notice.leadership-banner {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: 12px 14px;
  }

  .leadership-banner strong {
    font-size: 1rem;
  }

  .leadership-icon,
  .leadership-icon svg {
    width: 44px;
  }

  .lived-action-grid .info-card {
    padding: 28px 24px;
  }

  .difference-collage {
    min-height: 0;
  }

  .fnp-difference .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .difference-copy {
    padding-inline: 4px;
  }

  .difference-copy > h2 {
    font-size: 2.25rem;
  }

  .difference-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }

  .difference-icon {
    width: 78px;
    height: 78px;
  }

  .difference-icon svg {
    width: 58px;
    height: 58px;
  }

  .council-heading {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .council-icon {
    width: 74px;
    height: 74px;
  }

  .council-icon svg {
    width: 56px;
    height: 52px;
  }

  .hero {
    min-height: 320px;
  }

  .page-home .hero {
    min-height: 700px;
  }

  .hero-copy {
    padding: 32px 0 28px;
  }

  body:not(.page-home) .hero-copy {
    padding: 32px 0 28px;
  }

  body:not(.page-home) .hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.35rem);
  }

  .page-home .hero-copy {
    padding: 140px 0 34px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .btn-row {
    display: grid;
    width: 100%;
  }

  .btn-row .btn {
    width: 100%;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-card > img {
    height: 220px;
    min-height: 0;
  }

  .icon-grid,
  .process-grid,
  .service-points,
  .stats-band,
  .participation-grid,
  .involvement-list,
  .footer-grid,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .icon-item,
  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step {
    min-height: 280px;
  }

  .process-grid,
  .disclaimer {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .disclaimer {
    white-space: normal;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-layout > img:first-child {
    width: 220px;
    height: 220px;
  }

  .stat {
    min-height: 220px;
  }

  .support-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-callout .icon {
    margin: auto;
  }

  .participation {
    gap: 30px;
  }

  .ack-card {
    grid-template-columns: 1fr;
  }

  .ack-card img {
    height: 210px;
  }

  .reach-cta-inner,
  .role-card,
  .involvement,
  .not-sure,
  .journey-card {
    grid-template-columns: 1fr;
  }

  .reach-cta-inner {
    text-align: center;
  }

  .reach-cta-inner img {
    height: 110px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-help {
    grid-column: auto;
  }

  .footer-bottom-inner,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-inner {
    padding: 18px 0;
  }

  .vision-panel,
  .contact-panel {
    min-height: 620px;
    padding: 34px 24px;
  }

  .vision-tagline {
    align-items: stretch;
    flex-direction: column;
  }

  .role-card {
    grid-template-columns: 60px minmax(0, 1fr);
    grid-template-areas:
      "title title"
      "icon copy";
    justify-items: stretch;
    text-align: left;
  }

  .leadership-card {
    grid-template-columns: 64px minmax(0, 1fr) 24px;
    padding: 24px 20px;
  }

  .leadership-accordion-panel {
    grid-template-columns: 1fr;
  }

  .leadership-accordion-media {
    min-height: 220px;
    max-height: 280px;
  }

  .leadership-accordion-content {
    padding: 28px 22px;
  }

  .leadership-accordion-content h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .leadership-accordion-actions .btn {
    width: 100%;
  }

  .reach-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .roles {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .not-sure .icon {
    justify-self: center;
  }

  .future-card > img {
    height: 250px;
    min-height: 250px;
  }

  .future-copy {
    padding: 28px;
  }

  .contact-audience .audience-card {
    grid-template-columns: 120px 1fr;
  }

  .involvement > img {
    width: 210px;
    margin: auto;
  }

  .benefit-item {
    grid-template-columns: 54px 1fr;
  }

  .reason-card {
    min-height: 0;
  }

  .journey-track {
    gap: 30px;
  }

  .journey-stage {
    display: grid;
    grid-template-columns: 32px 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .stage-number {
    width: 26px;
    height: 26px;
    margin: 0;
    font-size: 1rem;
  }

  .journey-stage-icon {
    width: 72px;
    height: 66px;
    margin: 0;
  }

  .journey-card img {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .first-contact > img {
    min-height: 500px;
  }

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

  .shared-grid > .faq-panel,
  .shared-grid > .community-panel {
    min-height: 0;
  }

  .privacy-actions {
    right: 12px;
    top: calc(clamp(92px, 6.8vw, 128px) + 10px);
  }

  .scroll-actions {
    right: 12px;
    bottom: 12px;
  }

  .privacy-exit {
    min-width: 74px;
    min-height: 46px;
    padding: 9px 15px;
  }

  .scroll-to-top {
    width: 46px;
    min-height: 46px;
  }
}

@media (max-width: 900px) {
  .coded-with-youth-compact {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .coded-with-youth-compact .btn {
    grid-column: 2;
    justify-self: start;
  }

  .first-contact-compact {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .first-contact-compact > img {
    min-height: 100%;
  }
}

@media (max-width: 650px) {
  .coded-with-youth-compact,
  .first-contact-compact {
    grid-template-columns: 1fr;
  }

  .coded-with-youth-compact .btn {
    grid-column: 1;
  }

  .first-contact-compact > img {
    width: 100%;
    min-height: 0;
    max-height: 320px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 350px) {
  .site-contact-bar-inner {
    grid-template-columns: 1fr;
  }

  .involvement-heading h2 {
    font-size: 1.55rem;
  }

  .leadership-card {
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    gap: 8px;
    min-height: 210px;
    padding: 20px 14px;
  }

  .leadership-icon,
  .leadership-icon svg {
    width: 36px;
  }

  .leadership-card strong {
    font-size: 1.05rem;
  }

  .leadership-card-copy > span {
    font-size: 0.9rem;
  }

  .leadership-arrow {
    font-size: 1.8rem;
  }

  .site-contact-bar a,
  .site-contact-bar a:last-child {
    grid-column: 1;
  }

  .site-closing .community-panel h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 390px) {

  .audience-card,
  .contact-audience .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-card > img {
    height: 220px;
    min-height: 0;
  }

  .hero {
    min-height: 320px;
  }

  .page-home .hero {
    min-height: 700px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

body.modal-open {
  overflow: hidden;
}

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

.site-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.site-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(906px, calc(100vw - 48px), calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid #efcfe1;
  border-radius: 24px;
  background: var(--fnp-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.site-modal__media {
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
}

.site-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-modal__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(34px, 5vw, 58px) clamp(28px, 4vw, 48px) clamp(28px, 4vw, 44px);
  overflow-y: auto;
}

.site-modal__content .eyebrow {
  margin-bottom: 10px;
}

.site-modal__content h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.site-modal__content p {
  margin: 0 0 18px;
  line-height: 1.55;
}

.site-modal__content .site-modal__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-modal__actions {
  margin-top: clamp(20px, 2.5vh, 26px);
}

.site-modal__primary {
  width: 100%;
}

.site-modal__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--fnp-white);
  background: var(--fnp-magenta);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.site-modal__close:hover,
.site-modal__close:focus-visible {
  background: #c80076;
}

@media (max-width: 650px) {
  .site-modal {
    padding: 14px;
  }

  .site-modal__panel {
    grid-template-columns: minmax(96px, 1fr) 2fr;
    width: min(calc(100vw - 28px), calc((100vh - 28px) * 0.75));
    max-height: calc(100vh - 28px);
    border-radius: 18px;
  }

  .site-modal__content {
    padding: 64px 18px 20px;
  }

  .site-modal__content h2 {
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .site-modal__content p {
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .site-modal__content .site-modal__note {
    font-size: 0.76rem;
  }

  .site-modal__content .eyebrow {
    font-size: 0.72rem;
  }

  .site-modal__actions {
    position: sticky;
    z-index: 1;
    bottom: -1px;
    margin-top: auto;
    padding-top: 12px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--fnp-white) 10px);
  }

  .site-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.notice.leadership-banner {
  width: 100%;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.notice.leadership-banner:hover,
.notice.leadership-banner:focus-visible {
  border-color: #efb7d8;
  box-shadow: 0 10px 28px rgba(169, 44, 103, 0.14);
}

.leadership-arrow {
  transition: transform 180ms ease;
}

.leadership-banner:hover .leadership-arrow,
.leadership-banner:focus-visible .leadership-arrow {
  transform: translateX(4px);
}
