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

:root {
  --map-purple: #8e24aa;
  --rose: #b0425c;
  --rose-dark: #8a3047;
  --rose-light: #f5e6ea;
  --rose-pale: #fdf2f5;
  --ink: #1a1410;
  --ink-mid: #4a3f3a;
  --ink-muted: #8a7e79;
  --ink-muted-dark: #6d6460;
  --cream: #faf8f5;
  --white: #ffffff;
  --carbon-black: #252627;
  --border: rgba(26, 20, 16, 0.1);
  --max-content: 1400px;
  --section-pad-x: max(4rem, calc((100% - var(--max-content)) / 2));
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: "DM Sans", sans-serif;
  background: transparent;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* <b>/<strong> default to "bolder", which only reaches 400 inside
   light-weight (300) text — force true bold */
b,
strong {
  font-weight: 700;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--section-pad-x);
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  /* font-family: "Playfair Display", serif; */
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--rose);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--rose);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--rose-dark) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem var(--section-pad-x) 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: radial-gradient(
    ellipse at 70% 40%,
    rgba(176, 66, 92, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 52%;
  max-width: 780px;
  padding-right: 3rem;
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  /* right: max(0px, calc((100% - 1920px) / 2)); */
  width: min(50%, 1400px);
  height: 100%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% top;
  display: block;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  animation-duration: 18s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
/* Anchor the crop on the hand (~60% across, ~45% down in the photo) so the
   focal point survives every container aspect ratio continuously as the width
   is dragged. Trade-off: the wide "lips sliver top-left" composition is lost,
   because no single anchor can keep both the hand and the lips as the column
   narrows. */
.hero-image img.hero-slide-1,
.hero-image img.hero-slide-2 {
  object-position: 60% 45%;
}
.hero-slide-1 {
  animation-name: heroSlide1;
}
.hero-slide-2 {
  animation-name: heroSlide2;
}
.hero-slide-3 {
  animation-name: heroSlide3;
}
/* Center woman is the subject (~51% across, ~30% down). */
.hero-image img.hero-slide-3 {
  object-position: 51% 30%;
}
.hero-slide:only-child {
  animation: none;
  opacity: 1;
}

@keyframes heroSlide1 {
  0% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  58% {
    opacity: 0;
  }
  83% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heroSlide3 {
  0% {
    opacity: 0;
  }
  42% {
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  83% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.hero-stat {
  padding: 2.5rem 0;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  position: relative;
  z-index: 1;
}
.hero-stat:nth-child(1) {
  animation-delay: 0.5s;
}
.hero-stat:nth-child(3) {
  animation-delay: 0.65s;
}
.hero-stat:nth-child(5) {
  animation-delay: 0.8s;
}
.hero-stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.hero-stat-label {
  font-weight: 300;
  color: var(--rose);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  max-width: 220px;
}
.hero-stat-divider {
  width: 100%;
  height: 0.5px;
  background: var(--border);
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-rule {
  width: 40px;
  height: 2px;
  background: var(--rose);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-headline {
  max-width: 780px;
}
.hh-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s forwards;
}
.hh-fact {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.55em;
  animation-delay: 0.2s;
}

.hh-power {
  font-family: "DM Sans", sans-serif;
  /* font-size: clamp(34px, 4.6vw, 56px); */
  font-style: italic;
  /* text-decoration: underline; */
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  /* color: var(--rose); */
  animation-delay: 0.7s;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 520px;
  margin-top: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-mission {
  margin-top: 5.5rem;
  padding-top: 1.75rem;
  border-top: 0.5px solid var(--border);
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-mission h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.hero-mission p {
  /* font-family: "Playfair Display", serif; */
  font-family: "DM Sans", sans-serif;
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 400;
  /* font-style: italic; */
  line-height: 1.4;
  color: var(--ink);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--rose);
  border: 1.5px solid var(--rose);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}
.btn-hero-cta {
  font-size: 14px;
  padding: 16px 34px;
  box-shadow: 0 10px 28px rgba(176, 66, 92, 0.35);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-hero-cta .btn-arrow {
  transition: transform 0.2s;
}
.btn-hero-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(176, 66, 92, 0.45);
}
.btn-hero-cta:hover .btn-arrow {
  transform: translateX(3px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1.5px solid var(--rose);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  background: var(--rose);
  color: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-muted);
}
/* ── DIVIDER BAND ── */
.divider-band {
  background: var(--rose-dark);
  color: var(--white);
  /* margin-top: 4rem; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  height: 1rem;
}
/* ── STAT BAND ── */
.stat-band {
  background: var(--ink);
  color: var(--white);
  padding: 4rem var(--section-pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 2rem 2.5rem;
  border-right: 0.5px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number em {
  color: var(--rose);
  font-style: italic;
}
.stat-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 200px;
}

/* ── CAMPAIGN SECTION ── */
.campaign {
  padding: 8rem var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
}
.campaign-left,
.campaign-right {
  min-width: 0;
}
.section-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}
.campaign h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.campaign h2 em {
  font-style: italic;
  color: var(--rose);
}
.campaign h2.campaign-headline {
  font-size: clamp(20px, 2.4vw, 30px);
}
.pink-text-highlight {
  color: var(--rose);
}
p a:not([class]),
h3 a:not([class]),
.overview-stat-label a:not([class]),
.p-desc a:not([class]) {
  color: var(--rose);
  text-decoration: underline;
  text-decoration-color: rgba(176, 66, 92, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
p a:not([class]):hover,
h3 a:not([class]):hover,
.overview-stat-label a:not([class]):hover,
.p-desc a:not([class]):hover {
  text-decoration-color: var(--rose);
}
.campaign-divider {
  width: 40px;
  height: 2px;
  background: var(--rose);
  margin: 2rem 0;
}
.campaign-bridge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.campaign-resolve {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.campaign-resolve em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.logo-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
.logo-carousel {
  margin-top: 2.5rem;
  overflow: hidden;
  width: 100%;
}
.logo-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.carousel-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.6;
  margin-right: 3rem;
}

.challenge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.challenge-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.challenge-item:hover {
  border-color: var(--rose);
}
.challenge-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.challenge-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.challenge-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.challenge-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ── SOLUTION SECTION ── */
.solution {
  padding: 8rem var(--section-pad-x);
  /* background: var(--white); */
}
.solution-header {
  /* max-width: 600px; */
  margin-bottom: 4rem;
}
.solution-header p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 640px;
  margin-top: 1.25rem;
}
.solution h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
.solution h2 em {
  /* font-style: italic; */
  color: var(--rose);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  /* background: var(--border); */
  /* border: 0.5px solid var(--border); */
}
.solution-grid--no-image {
  grid-template-columns: repeat(2, 1fr);
}
.solution-category-title {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  padding-bottom: 0.25rem;
  margin-top: 2rem;
}
.solution-category-title:first-child {
  margin-top: 0;
}
.solution-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
product-card {
  display: contents;
}
.solution-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  cursor: default;
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--border);
  overflow: hidden;
}
.solution-card:hover {
  background: var(--rose-pale);
}
.solution-card-img {
  display: block;
  width: calc(100% + 4rem);
  height: 280px;
  object-fit: cover;
  margin: -2.5rem -2rem 1.25rem;
}
.solution-card h3 {
  /* font-family: "Playfair Display", serif; */
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.solution-card hr {
  /* width: 30px; */
  height: 2px;
  background: var(--rose);
  border: none;
  margin: 0.75rem 0 1.25rem;
}
.solution-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.solution-card > a {
  margin-top: auto;
  width: fit-content;
}
/* .solution-card .price {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--rose);
  border-top: 1px solid var(--rose-light);
} */

/* ── RESEARCH SECTION ── */
.research {
  padding: 4rem var(--section-pad-x);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
}

.research-inner {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* ── RESEARCH CHART PANEL ── */
.research-chart-panel {
  flex: 1;
  /* min-width: 0; */
  max-width: 50%;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
  align-self: center;
}
.research-chart-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.research-chart-study-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.6rem;
}
.research-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}
.research-chart-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.research-lb {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}
.research-chart-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.research-chart-col-title {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2px;
}
.research-chart-col-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 6px;
}
.research .section-eyebrow {
  color: var(--rose);
}
.research h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  margin: 1rem 0 3rem;
}
.research h2 em {
  font-style: italic;
  color: var(--rose);
}
.research-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 4rem;
  /* border-top: 0.5px solid var(--cream); */
}
.research-metric {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 0.5px solid var(--cream);
}
.research-metric:last-child {
  border-right: none;
  padding-right: 0;
}
.research-metric:not(:first-child) {
  padding-left: 2.5rem;
}
.research-metric-name {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  /* font-style: italic; */
  color: var(--rose);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.research-metric-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.65;
}
.pillar-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.pillar-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}
.pillar-legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pillar-legend-swatch--found {
  background: var(--rose);
}
.pillar-legend-swatch--missed {
  background: none;
  border: 1px solid var(--cream);
}
.research-metric-img {
  display: block;
  margin-top: 0.75rem;
  width: 250px;
  /* height: auto; */
  /* border-radius: 4px; */
  margin: 0.75rem auto 0 auto;
  transition: opacity 0.4s ease;
}
.metric-indicator {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 30px;
  font-weight: 500;
  transition: opacity 0.4s ease;
}
.metric-indicator--no {
  color: #c0392b;
}
.metric-indicator--yes {
  color: #2e7d4f;
}

.research-funders {
  margin-top: 1rem;
}
.research-funders-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.research-funders-cta {
  text-align: center;
  margin-bottom: 2.5rem;
}
.research-funders-logos {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.btn-research {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--rose);
  border: none;
  padding: 16px 48px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-research:hover {
  background: var(--rose-dark);
}
.funder-logo-item img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.funder-logo-item img:hover {
  opacity: 0.7;
}
.nci-svg-logo {
  height: 72px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.nci-svg-logo:hover {
  opacity: 1;
}
.research-source {
  margin-top: 2.5rem;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-muted);
  font-style: italic;
}

/* ── MISSION CTA ── */
.mission-cta {
  background: var(--cream);
  padding: 8rem var(--section-pad-x);
  text-align: center;
  border-top: 0.5px solid rgba(176, 66, 92, 0.15);
}
.mission-cta h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 940px;
  margin: 0 auto 1.5rem;
  text-wrap: balance;
}
.mission-cta h2 em {
  /* font-style: italic; */
  color: var(--rose);
}
.mission-cta p {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
/* ── MAP + SIDEBAR WRAPPER ── */
.map-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 600px;
  margin: 2.5rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid rgba(176, 66, 92, 0.2);
  box-shadow: 0 4px 32px rgba(176, 66, 92, 0.08);
  text-align: left;
}

.map-pane {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
}

#map {
  flex: 1;
  min-width: 0;
  height: 600px;
}

/* ── MAP LEGEND ── */
.map-legend {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--white);
  border: 0.5px solid rgba(176, 66, 92, 0.25);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(176, 66, 92, 0.15);
  pointer-events: none;
}

.map-legend-pin {
  width: 15px;
  height: 25px;
  flex-shrink: 0;
}

.map-legend span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* ── FACILITIES SIDEBAR ── */
.facilities-sidebar {
  width: 300px;
  flex-shrink: 0;
  height: 600px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 0.5px solid var(--border);
  background: var(--white);
}

.facilities-sidebar-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--white);
  padding: 0.875rem 1.125rem;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.facilities-sidebar-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.facilities-total {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

/* ── ACCORDION ── */
.facilities-accordion {
  flex: 1;
}

.accordion-country {
  border-bottom: 0.5px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.accordion-trigger:hover {
  background: var(--rose-pale);
}

.accordion-country-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.accordion-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
  background: var(--rose-light);
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

.accordion-chevron {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.22s ease;
}

.accordion-country.open .accordion-chevron {
  transform: rotate(180deg);
}

/* smooth height animation via grid trick */
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-country.open .accordion-body {
  grid-template-rows: 1fr;
}

.accordion-body > ul {
  overflow: hidden;
  min-height: 0;
  list-style: none;
  padding: 0 1.125rem 0.5rem;
}

.accordion-body > ul li {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-mid);
  padding: 0.35rem 0;
  border-bottom: 0.5px solid var(--border);
  line-height: 1.45;
}

.accordion-body > ul li:last-child {
  border-bottom: none;
}

/* Leaflet tooltip override */
.facility-tooltip {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.facility-tooltip::before {
  border-top-color: var(--ink) !important;
}
.mission-cta-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root {
    /* The centering calc goes negative below the content max-width, so this
       floor is what actually applies. Tighten it as the screen shrinks. */
    --section-pad-x: 2.5rem;
  }
  nav {
    padding: 1.25rem 2rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  nav.nav-open .nav-links {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 14px;
    letter-spacing: 0.06em;
  }
  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
    display: inline-block;
    padding: 9px 20px;
  }
  .campaign,
  .solution,
  .research,
  .mission-cta,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .stat-band {
    padding: 2rem;
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .campaign {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    padding-top: 7rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .hero::before {
    display: none;
  }
  .hero-copy {
    width: auto;
    padding: 0 0 4rem 0;
    margin: 0 auto;
  }
  .hero-image {
    display: block;
    position: relative;
    width: 100%;
    height: 45vw;
    min-height: 260px;
    max-height: 420px;
  }
  .hero-scroll {
    display: none;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .research {
    flex-direction: column;
  }
  .research-inner {
    width: 100%;
  }
  .research-metrics {
    grid-template-columns: 1fr;
  }
  .research-metric {
    border-right: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
    padding: 2rem 0;
  }
  .research-metric:last-child {
    border-bottom: none;
  }
  .research-metric:not(:first-child) {
    padding-left: 0;
  }
  .research-chart-panel {
    display: none;
  }
  footer {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .map-wrapper {
    flex-direction: column;
    height: auto;
  }
  .map-pane {
    flex: none;
    width: 100%;
  }
  #map {
    flex: none;
    height: 340px;
    width: 100%;
  }
  .map-legend {
    bottom: 10px;
    left: 10px;
    padding: 0.4rem 0.65rem;
  }
  .map-legend span {
    font-size: 10px;
  }
  .facilities-sidebar {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-left: none;
    border-top: 0.5px solid var(--border);
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad-x: 1.5rem;
  }
  .hero-copy {
    padding: 0 2rem 3rem 2rem;
  }

  #map {
    height: 220px;
  }

  .solution-card {
    padding: 1.75rem 1.25rem;
  }
  /* Keep the full-bleed image flush with the tighter padding. */
  .solution-card-img {
    width: calc(100% + 2.5rem);
    margin-top: -1.75rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}

/* ── Form submission (contact / inquiry / cert forms) ────────────────── */
/* Honeypot: off-screen, never shown to real users, skipped by tab order. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  margin: 0.25rem 0 0.75rem;
}

.form-status {
  display: none;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  color: #1a7f4b;
}
.form-status.is-error {
  color: var(--rose-dark);
}

/* Success panel: on a successful submit the form's contents are hidden and a
   confirmation card takes their place. !important guarantees the hide wins
   over per-page display rules (.form-row/.form-field are flex/grid). */
form.is-submitted > *:not(.form-success) {
  display: none !important;
}
.form-success {
  /* Center within the height the form reserved on submit (see forms.js), so the
     confirmation doesn't sit at the top of a tall empty card. Only takes effect
     in the flex-column forms; harmless in block layouts. */
  margin-block: auto;
  text-align: center;
  padding: 2.75rem 1.75rem;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  color: var(--ink);
}
.form-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: #1a7f4b;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-title {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.55rem;
  color: var(--ink);
}
.form-success-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-muted);
}

button[type="submit"][disabled] {
  opacity: 0.6;
  cursor: default;
}

/* Required-field marker + legend, shared across every mammacare.org form.
   The rose asterisk reads on both dark and light form backgrounds; the
   legend color defaults to dark-background forms and is overridden for the
   light-background forms (contact, grant application). */
.form-field label .req,
.form-legend .req {
  color: var(--rose);
  margin-left: 0.25em;
}
.form-legend {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.form-legend .req {
  margin-left: 0;
  margin-right: 0.15em;
}
/* A revealed .form-field (e.g. an "Other" specify field) starts [hidden];
   .form-field is display:flex, so the attribute needs this to take effect. */
.form-field[hidden] {
  display: none;
}
