@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --hot-pink: #ff1daf;
  --deep-pink: #d9148d;
  --pale-pink: #ffe3f8;
  --soft-pink: #fff0fb;
  --wine: #4b062d;
  --plum: #511032;
  --ink: #141014;
  --muted: #655a63;
  --blue: #55bdd2;
  --gold: #f2b536;
  --coral: #f36b5f;
  --white: #ffffff;
  --line: rgba(81, 16, 50, 0.14);
  --shadow: 0 24px 70px rgba(81, 16, 50, 0.15);
  --radius: 8px;
  --max: 1350px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0 auto;
  color: var(--ink);
  background: var(--white);
  font-family: "Geist", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

main section {
  scroll-margin-top: 96px;
}

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

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

.site-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 50%;
  width: min(calc(100% - 20px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 9px 13px 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(81, 16, 50, 0.12);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 166px;
  height: 34px;
  overflow: hidden;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: var(--plum);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--hot-pink);
}

.nav-link--active {
  color: var(--hot-pink);
}

.nav-link--chevron::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

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

.pill-button,
.hero-cta,
.small-action,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(255, 29, 175, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pill-button:hover,
.hero-cta:hover,
.small-action:hover,
.light-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 29, 175, 0.28);
}

.pill-button--form {
  min-width: 108px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
  place-items: center;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 78px;
  left: 50%;
  right: auto;
  display: none;
  width: min(calc(100% - 20px), var(--max));
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.mobile-menu a {
  display: block;
  padding: 13px 6px;
  color: var(--plum);
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 745px;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  background: var(--plum);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.76) 0%, rgba(16, 13, 16, 0.34) 43%, rgba(16, 13, 16, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 174px 94px 226px;
  color: var(--white);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 84px;
  font-weight: 650;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 81px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
}

.hero p {
  max-width: 418px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.58;
}

.hero-cta {
  min-height: 44px;
  padding: 0 26px;
}

.stats-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(var(--max), calc(100% - 20px));
  margin: -82px auto 0;
}

.stat-card {
  min-height: 178px;
  padding: 27px 28px 24px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(81, 16, 50, 0.16);
}

.stat-card span {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
  opacity: 0.88;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 43px;
  font-weight: 360;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.stat-card--deep {
  background: #d01887;
}

.stat-card--bright {
  background: #ff4fc1;
}

.stat-card--pale {
  background: #ff9adb;
}

.stat-card--wine {
  background: #53062e;
}

.intro-section,
.mission-section,
.process-section,
.news-section {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 92px 72px;
}

.intro-section {
  padding: 96px 40px 81px;
}

.mission-section {
  max-width: var(--max);
  padding: 64px 25px 92px;
}

.intro-copy {
  width: min(1270px, 100%);
  margin: 0 auto;
  text-align: center;
}

.intro-copy h2,
.section-heading h2,
.programs-top h2,
.care-copy h2,
.join-copy h2 {
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.intro-copy h2 {
  margin: 0 0 72px;
  color: #090807;
  white-space: nowrap;
}

.intro-copy h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.intro-copy p {
  margin: 0 auto 70px;
  max-width: 1240px;
  color: #090807;
  font-size: clamp(19px, 1.45vw, 22px);
  font-weight: 430;
  line-height: 1.55;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 13px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
}

.section-heading em,
.news-section em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 0 auto;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(81, 16, 50, 0.12);
}

.mission-photo,
.mission-panel {
  min-height: 317px;
}

.mission-photo {
  margin: 0;
  overflow: hidden;
  background: var(--pale-pink);
}

.mission-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mission-photo--top img {
  object-position: left center;
}

.mission-photo--color {
  background: #f6d34c;
}

.mission-photo--color img {
  filter: saturate(1.15) hue-rotate(10deg);
}

.mission-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 51px;
  background: var(--pale-pink);
  color: var(--plum);
}

.mission-panel h3 {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.15;
}

.mission-panel p {
  margin: 0 0 24px;
  color: rgba(81, 16, 50, 0.74);
  font-size: 15.5px;
  line-height: 1.65;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(81, 16, 50, 0.28);
  border-radius: 999px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 760;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.outline-link::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 8px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5l7 7-7 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.outline-link:hover {
  color: var(--hot-pink);
  border-color: var(--hot-pink);
  transform: translateY(-1px);
}

.programs-section {
  padding: 78px 72px 86px;
  background: var(--pale-pink);
}

.programs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1089px, 100%);
  margin: 0 auto 28px;
}

.programs-top h2 {
  margin: 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(81, 16, 50, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: var(--hot-pink);
  cursor: pointer;
}

.slider-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1089px, 100%);
  margin: 0 auto;
}

.program-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 34px rgba(81, 16, 50, 0.1);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}

.program-card div {
  padding: 22px 22px 24px;
}

.program-card h3 {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 19px;
  font-weight: 720;
  line-height: 1.2;
}

.program-card p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.56;
}

.small-action {
  min-height: 31px;
  padding: 0 16px;
  font-size: 11px;
}

.process-section {
  max-width: none;
  padding: 92px 10px 70px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.process-card {
  position: relative;
  --card-bg: #d01887;
  min-height: 178px;
  padding: 27px 28px 24px;
  border: 0;
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--white);
  text-align: left;
  box-shadow: 0 18px 34px rgba(81, 16, 50, 0.16);
}

.process-card::before {
  display: none;
}

.process-card::after {
  display: none;
}

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.process-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-icon svg path,
.process-icon svg rect,
.process-icon svg circle {
  stroke: currentColor;
}

.process-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(24px, 2.1vw, 30px);
  font-weight: 520;
  line-height: 1.05;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.process-card--pink {
  --card-bg: #d01887;
}

.process-card--gold {
  --card-bg: #ff4fc1;
}

.process-card--coral {
  --card-bg: #ff9adb;
}

.process-card--blue {
  --card-bg: #53062e;
}

.care-banner {
  position: relative;
  width: min(calc(var(--max) - 50px), calc(100% - 50px));
  min-height: 396px;
  margin: 32px auto 88px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--plum);
  color: var(--white);
  box-shadow: var(--shadow);
}

.care-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.care-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 13, 18, 0.18), rgba(18, 13, 18, 0.78));
}

.care-copy {
  position: relative;
  z-index: 1;
  width: min(462px, 100%);
  margin-left: auto;
  padding: 78px 56px 72px 0;
}

.care-copy h2 {
  margin: 0 0 16px;
  color: var(--white);
}

.care-copy p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15.5px;
  line-height: 1.6;
}

.light-button {
  min-height: 38px;
  background: var(--white);
  color: var(--plum);
  box-shadow: none;
}

.news-section {
  padding-top: 6px;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 57px;
  align-items: center;
  width: min(935px, 100%);
  margin: 0 auto 34px;
}

.news-feature img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: var(--radius);
}

.news-feature article > span,
.news-list span {
  display: block;
  margin-bottom: 14px;
  color: var(--hot-pink);
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
}

.news-feature h3 {
  margin: 0 0 15px;
  max-width: 429px;
  font-size: 32px;
}

.news-feature p {
  margin: 0 0 23px;
  max-width: 451px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.66;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(935px, 100%);
  margin: 0 auto;
}

.news-list article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.news-list h3 {
  margin: 0;
  color: var(--plum);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 79px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 72px 92px;
}

.join-section figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.join-section img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.join-copy {
  max-width: 429px;
}

.join-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(48px, 4.55vw, 64px);
}

.join-copy h2 span {
  display: block;
  color: var(--hot-pink);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.join-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
}

.contact-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
  background: var(--plum);
}

.contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.78) 0%, rgba(16, 13, 16, 0.42) 48%, rgba(16, 13, 16, 0.1) 100%);
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 168px 94px 154px;
  color: var(--white);
}

.contact-hero h1 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 650;
  line-height: 0.96;
}

.contact-hero h1 em {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.contact-hero p {
  max-width: 520px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.6;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 20px));
  margin: -82px auto 0;
}

.contact-quick {
  min-height: 178px;
  padding: 27px 28px 24px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(81, 16, 50, 0.16);
}

.contact-quick span {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
  opacity: 0.88;
  text-transform: uppercase;
}

.contact-quick strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 430;
  line-height: 1.04;
  overflow-wrap: normal;
}

.contact-quick p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.contact-quick--deep {
  background: #d01887;
}

.contact-quick--bright {
  background: #ff4fc1;
}

.contact-quick--pale {
  background: #ff9adb;
}

.contact-quick--wine {
  background: #53062e;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 52px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 102px 25px 104px;
}

.contact-intro > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-intro h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.contact-intro h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.contact-intro p {
  max-width: 570px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-details a,
.contact-details span {
  color: rgba(81, 16, 50, 0.82);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 24px 70px rgba(81, 16, 50, 0.12);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(81, 16, 50, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--plum);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-row input,
.form-row select {
  min-height: 48px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 154px;
  resize: vertical;
  padding: 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--hot-pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 29, 175, 0.12);
}

.contact-submit {
  width: max-content;
  min-height: 44px;
  padding: 0 26px;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--deep-pink);
  font-size: 13px;
  font-weight: 700;
}

.donate-hero::after {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.82) 0%, rgba(16, 13, 16, 0.48) 50%, rgba(16, 13, 16, 0.1) 100%);
}

.donate-hero__content h1 {
  max-width: 930px;
}

.donate-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 25px 48px;
  text-align: center;
}

.donate-intro .section-heading {
  margin-bottom: 28px;
}

.donate-intro p {
  max-width: 1010px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.donate-methods {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 25px 112px;
}

.donate-methods__intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.donate-methods__intro > span,
.donate-impact__copy > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.donate-methods__intro h2,
.donate-impact__copy h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.donate-methods__intro h2 em,
.donate-impact__copy h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.donate-methods__intro p,
.donate-impact__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

#transfer,
#formular-230 {
  scroll-margin-top: 92px;
}

.donate-card {
  display: flex;
  min-height: 548px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.12);
}

.donate-card--accent {
  background: #53062e;
  color: var(--white);
}

.donate-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 24px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--deep-pink);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.donate-card--accent .donate-card__label {
  background: var(--hot-pink);
  color: var(--white);
}

.donate-card h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  line-height: 0.98;
}

.donate-card p {
  margin: 0 0 26px;
  color: rgba(81, 16, 50, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.donate-card--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.donate-details {
  display: grid;
  gap: 12px;
  width: 100%;
  margin: 0 0 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(81, 16, 50, 0.16);
  border-bottom: 1px solid rgba(81, 16, 50, 0.16);
}

.donate-details div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
}

.donate-details dt,
.donate-details dd {
  margin: 0;
  line-height: 1.35;
}

.donate-details dt {
  color: rgba(81, 16, 50, 0.58);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.donate-details dd {
  color: var(--plum);
  font-size: 15px;
  font-weight: 740;
  overflow-wrap: anywhere;
}

.donate-card .pill-button {
  margin-top: auto;
}

.donate-card .text-link {
  display: inline-flex;
  margin-top: 18px;
  color: currentColor;
  font-size: 14px;
  font-weight: 790;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.donate-impact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 58px;
  align-items: center;
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto 104px;
}

.donate-impact figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.donate-impact img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.donate-impact__copy {
  max-width: 520px;
}

.donate-impact__copy p {
  margin-bottom: 28px;
}

.resources-hero::after {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.8) 0%, rgba(16, 13, 16, 0.48) 48%, rgba(16, 13, 16, 0.12) 100%);
}

.resources-hero__content h1 {
  max-width: 980px;
}

.resources-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 25px 88px;
}

.resources-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.resources-feature article > span,
.resources-guides > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.resources-feature h2,
.resources-guides h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.resources-feature p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.articles-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 25px 104px;
}

.articles-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.articles-top .section-heading {
  margin-bottom: 0;
  text-align: left;
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.article-filters button {
  min-height: 36px;
  border: 1px solid rgba(81, 16, 50, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--plum);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.article-filters button:hover,
.article-filters button.is-active {
  border-color: var(--hot-pink);
  background: var(--hot-pink);
  color: var(--white);
  transform: translateY(-1px);
}

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

.article-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.1);
}

.article-card[hidden] {
  display: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.article-card div {
  padding: 26px 26px 28px;
}

.article-card span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep-pink);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 680;
  line-height: 1.04;
}

.article-card p {
  margin: 0;
  color: rgba(81, 16, 50, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.article-card--feature {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.article-card--feature img {
  height: 100%;
  min-height: 354px;
  aspect-ratio: auto;
}

.article-card .text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--deep-pink);
  font-size: 14px;
  font-weight: 790;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.resources-guides {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: start;
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto 104px;
  padding: 58px;
  border-radius: var(--radius);
  background: #53062e;
  color: var(--white);
}

.resources-guides h2 {
  color: var(--white);
}

.resources-guides h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.resources-guides ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resources-guides li {
  position: relative;
  padding: 20px 22px 20px 50px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
}

.resources-guides li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--hot-pink);
}

.article-main {
  padding-top: 104px;
}

.article-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 25px 96px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 30px;
  padding: 0 17px;
  border: 1px solid rgba(81, 16, 50, 0.18);
  border-radius: 999px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 790;
}

.article-detail__hero {
  padding-top: 30px;
}

.article-detail__intro {
  max-width: 1040px;
}

.article-detail__intro > span,
.article-summary > span,
.article-next > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-detail h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 560;
  line-height: 0.96;
}

.article-detail__intro p {
  max-width: 780px;
  margin: 26px 0 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pale-pink);
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-detail figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.article-detail figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.article-detail__body {
  display: grid;
  grid-template-columns: 330px minmax(0, 760px);
  gap: 72px;
  align-items: start;
  justify-content: center;
  padding-top: 72px;
}

.article-summary {
  position: sticky;
  top: 98px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.1);
}

.article-summary ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-summary li {
  position: relative;
  padding-left: 24px;
  color: rgba(81, 16, 50, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.article-summary li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot-pink);
}

.article-prose {
  color: var(--ink);
}

.article-prose p,
.article-prose li {
  color: rgba(20, 16, 20, 0.76);
  font-size: 19px;
  line-height: 1.8;
}

.article-prose p {
  margin: 0 0 28px;
}

.article-prose .article-lead {
  color: var(--plum);
  font-size: 24px;
  line-height: 1.58;
}

.article-prose h2 {
  margin: 54px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 560;
  line-height: 1.02;
}

.article-prose ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding-left: 24px;
}

.article-prose blockquote {
  margin: 46px 0;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: #53062e;
  color: var(--white);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 3vw, 48px);
  font-style: italic;
  line-height: 1.08;
}

.article-disclaimer {
  margin: 46px 0 0;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: rgba(81, 16, 50, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.article-sources {
  display: grid;
  gap: 10px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin-top: 0;
}

.article-sources a {
  color: var(--deep-pink);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-next {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 58px;
  align-items: center;
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto 104px;
}

.article-next figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.article-next img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.article-next h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.article-next h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.article-next p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.campaigns-hero::after {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.82) 0%, rgba(16, 13, 16, 0.46) 50%, rgba(16, 13, 16, 0.12) 100%);
}

.campaigns-hero__content h1 {
  max-width: 980px;
}

.campaigns-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 25px 88px;
}

.campaigns-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.campaigns-feature article > span,
.campaigns-steps > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.campaigns-feature h2,
.campaigns-steps h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.campaigns-feature p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.campaigns-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 25px 104px;
}

.campaigns-top {
  display: block;
}

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

.campaign-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.1);
}

.campaign-card img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.campaign-card div {
  padding: 28px 28px 30px;
}

.campaign-card span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep-pink);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.campaign-card h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 680;
  line-height: 1.04;
}

.campaign-card p {
  margin: 0;
  color: rgba(81, 16, 50, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.campaign-card--wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.campaign-card--wide img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.campaign-card .text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--deep-pink);
  font-size: 14px;
  font-weight: 790;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.campaigns-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto 104px;
  padding: 58px;
  border-radius: var(--radius);
  background: #53062e;
  color: var(--white);
}

.campaigns-steps h2 {
  color: var(--white);
}

.campaigns-steps h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.campaigns-steps ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: campaign-step;
}

.campaigns-steps li {
  position: relative;
  padding: 22px 24px 22px 74px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  counter-increment: campaign-step;
}

.campaigns-steps li::before {
  content: counter(campaign-step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.campaigns-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.campaigns-steps li span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.mission-hero::after {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.82) 0%, rgba(16, 13, 16, 0.46) 50%, rgba(16, 13, 16, 0.1) 100%);
}

.mission-hero__content h1 {
  max-width: 980px;
}

.mission-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.96fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 25px 88px;
}

.mission-story article > span,
.mission-principles > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-story h2,
.mission-principles h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.mission-story h2 em,
.mission-principles h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.mission-story p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mission-story p:last-child {
  margin-bottom: 0;
}

.mission-story figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.mission-story img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.mission-directions {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 25px 104px;
}

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

.mission-directions__grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.1);
}

.mission-directions__grid img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
}

.mission-directions__grid div {
  padding: 30px 30px 32px;
}

.mission-directions__grid div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.mission-directions__grid h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 680;
  line-height: 1.04;
}

.mission-directions__grid p {
  margin: 0 0 24px;
  color: rgba(81, 16, 50, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.mission-principles {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto 104px;
  padding: 58px;
  border-radius: var(--radius);
  background: #53062e;
  color: var(--white);
}

.mission-principles h2 {
  color: var(--white);
}

.mission-principles ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-principles li {
  position: relative;
  min-height: 116px;
  padding: 22px 24px 22px 74px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.mission-principles li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow: 0 0 0 8px rgba(255, 17, 166, 0.14);
}

.mission-principles strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.mission-principles li span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.about-hero::after {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.82) 0%, rgba(16, 13, 16, 0.48) 50%, rgba(16, 13, 16, 0.12) 100%);
}

.about-hero__content h1 {
  max-width: 1080px;
}

.about-story {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 25px 72px;
}

.about-story__body {
  display: grid;
  gap: 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-story__body p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.45vw, 22px);
  font-weight: 430;
  line-height: 1.55;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 25px 104px;
}

.about-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.about-feature article > span,
.about-values > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-feature h2,
.about-values h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 4.55vw, 64px);
  font-weight: 460;
  line-height: 0.98;
}

.about-feature h2 em,
.about-values h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.about-feature p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto 104px;
  padding: 58px;
  border-radius: var(--radius);
  background: #53062e;
  color: var(--white);
}

.about-values h2 {
  color: var(--white);
}

.about-values ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values li {
  position: relative;
  padding: 22px 24px 22px 74px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.about-values li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow: 0 0 0 8px rgba(255, 17, 166, 0.14);
}

.about-values strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.about-values li span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.about-approach {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 25px 104px;
}

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

.about-approach__grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.1);
}

.about-approach__grid img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.about-approach__grid div {
  padding: 28px 28px 30px;
}

.about-approach__grid h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 680;
  line-height: 1.04;
}

.about-approach__grid p {
  margin: 0;
  color: rgba(81, 16, 50, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.legal-hero {
  min-height: 520px;
}

.legal-hero::after {
  background: linear-gradient(90deg, rgba(16, 13, 16, 0.84) 0%, rgba(16, 13, 16, 0.52) 50%, rgba(16, 13, 16, 0.14) 100%);
}

.legal-hero__content {
  padding-bottom: 118px;
}

.legal-hero__content h1 {
  max-width: 980px;
}

.legal-content {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 25px 110px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--pale-pink);
  color: var(--plum);
  box-shadow: 0 18px 42px rgba(81, 16, 50, 0.1);
}

.legal-toc span {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.legal-toc a {
  color: rgba(81, 16, 50, 0.82);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
}

.legal-card {
  padding: 56px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(81, 16, 50, 0.08);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 22px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pale-pink);
  color: var(--deep-pink);
  font-size: 12px;
  font-weight: 820;
}

.legal-lead {
  margin: 0 0 42px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 450;
  line-height: 1.28;
}

.legal-card section {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 640;
  line-height: 1.08;
}

.legal-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--deep-pink);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  border-radius: 30px 30px 0 0;
  background: var(--pale-pink);
  color: var(--plum);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 72px 58px;
}

.footer-brand img {
  width: 184px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0 0 26px;
  color: rgba(81, 16, 50, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.newsletter label,
.footer-links h2,
.footer-contact h2 {
  display: block;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 820;
}

.newsletter div {
  display: flex;
  width: min(360px, 100%);
  padding: 3px;
  border: 1px solid rgba(81, 16, 50, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--plum);
  font-size: 13px;
  outline: none;
}

.newsletter button {
  min-height: 34px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  margin-bottom: 11px;
  color: rgba(81, 16, 50, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact {
  font-style: normal;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 7px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  border: 1px solid rgba(81, 16, 50, 0.25);
  border-radius: 50%;
  color: var(--plum);
}

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

.social-links svg path:first-child {
  fill: none;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero-content {
    padding-left: 64px;
    padding-right: 64px;
  }

  .stats-strip {
    width: calc(100% - 44px);
  }

  .intro-section,
  .process-section,
  .news-section,
  .programs-section,
  .join-section,
  .contact-content,
  .donate-intro,
  .donate-methods,
  .resources-feature,
  .articles-section,
  .article-detail,
  .campaigns-feature,
  .campaigns-section,
  .mission-story,
  .mission-directions,
  .about-story,
  .about-feature,
  .about-approach,
  .legal-content,
  .footer-inner {
    padding-left: 46px;
    padding-right: 46px;
  }

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

  .donate-card {
    padding: 32px;
  }

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

  .article-card--feature {
    grid-column: span 2;
  }

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

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

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

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

}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    left: 50%;
    right: auto;
    width: min(calc(100% - 20px), var(--max));
  }

  .desktop-nav,
  .pill-button--form {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 138px 34px 192px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: 55px;
  }

  .hero h1 span {
    font-size: 55px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -120px;
  }

  .contact-hero {
    min-height: 620px;
  }

  .contact-hero__content {
    padding: 138px 34px 168px;
  }

  .contact-hero h1 {
    max-width: 560px;
    font-size: 55px;
  }

  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 44px);
    margin-top: -120px;
  }

  .intro-section {
    padding-top: 84px;
  }

  .intro-copy h2 {
    margin-bottom: 40px;
    white-space: normal;
  }

  .intro-copy p {
    margin-bottom: 36px;
    max-width: none;
    font-size: 19px;
  }

  .intro-break {
    display: none;
  }

  .intro-copy h2,
  .section-heading h2,
  .programs-top h2,
  .care-copy h2,
  .join-copy h2 {
    font-size: 34px;
  }

  .mission-grid,
  .contact-content,
  .donate-methods__grid,
  .donate-impact,
  .resources-feature,
  .article-card--feature,
  .resources-guides,
  .article-detail__body,
  .article-next,
  .campaigns-feature,
  .campaign-card--wide,
  .campaigns-steps,
  .mission-story,
  .mission-principles,
  .about-feature,
  .about-values,
  .legal-content,
  .news-feature,
  .join-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

  .donate-impact__copy {
    max-width: none;
  }

  .article-summary {
    position: static;
  }

  .article-detail__body {
    gap: 42px;
    justify-content: stretch;
  }

  .campaign-card--wide {
    grid-column: auto;
  }

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

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

  .mission-panel--left {
    order: 4;
  }

  .mission-grid .mission-photo:nth-of-type(2) {
    order: 3;
  }

  .programs-top {
    align-items: flex-start;
  }

  .articles-top {
    display: block;
  }

  .article-filters {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .program-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .program-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .join-section {
    gap: 34px;
  }

  .footer-inner {
    gap: 32px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 54px;
    padding: 8px 9px 8px 14px;
  }

  .brand {
    width: 124px;
  }

  .brand img {
    width: 124px;
  }

  .header-actions .pill-button {
    min-height: 35px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 600px;
    border-radius: 0 0 20px 20px;
  }

  .hero-image {
    object-position: 48% top;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(17, 10, 16, 0.72) 0%, rgba(17, 10, 16, 0.28) 48%, rgba(17, 10, 16, 0.7) 100%);
  }

  .hero-content {
    display: flex;
    min-height: 600px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 116px 24px 166px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero h1 span {
    font-size: 45px;
  }

  .hero p {
    max-width: 310px;
    font-size: 14px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: -132px;
  }

  .contact-hero {
    min-height: 600px;
    border-radius: 0 0 20px 20px;
  }

  .contact-hero img {
    object-position: 48% top;
  }

  .contact-hero::after {
    background: linear-gradient(180deg, rgba(17, 10, 16, 0.72) 0%, rgba(17, 10, 16, 0.32) 48%, rgba(17, 10, 16, 0.72) 100%);
  }

  .contact-hero__content {
    display: flex;
    min-height: 600px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 116px 24px 166px;
  }

  .contact-hero h1 {
    font-size: 43px;
  }

  .contact-hero p {
    max-width: 320px;
    font-size: 14px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: -132px;
  }

  .stat-card {
    min-height: 128px;
    padding: 19px 20px;
  }

  .contact-quick {
    min-height: 128px;
    padding: 19px 20px;
  }

  .contact-quick span {
    margin-bottom: 12px;
  }

  .contact-quick strong {
    font-size: 26px;
  }

  .stat-card span {
    margin-bottom: 12px;
  }

  .stat-card strong {
    font-size: 34px;
  }

  .intro-section,
  .mission-section,
  .process-section,
  .news-section,
  .programs-section,
  .join-section,
  .contact-content,
  .donate-intro,
  .donate-methods,
  .resources-feature,
  .articles-section,
  .article-detail,
  .campaigns-feature,
  .campaigns-section,
  .mission-story,
  .mission-directions,
  .about-story,
  .about-feature,
  .about-approach,
  .legal-content,
  .footer-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .intro-section {
    padding-top: 70px;
    padding-bottom: 54px;
  }

  .intro-copy {
    text-align: left;
  }

  .intro-copy h2 {
    margin-bottom: 30px;
  }

  .intro-copy p {
    margin-bottom: 28px;
    font-size: 16.5px;
  }

  .intro-copy h2,
  .section-heading h2,
  .programs-top h2,
  .care-copy h2,
  .join-copy h2,
  .contact-intro h2,
  .donate-methods__intro h2,
  .donate-impact__copy h2,
  .resources-feature h2,
  .resources-guides h2,
  .article-next h2,
  .campaigns-feature h2,
  .campaigns-steps h2,
  .mission-story h2,
  .mission-principles h2,
  .about-feature h2,
  .about-values h2 {
    font-size: 30px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .mission-section,
  .process-section,
  .news-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mission-photo,
  .mission-panel {
    min-height: 230px;
  }

  .mission-panel {
    padding: 32px 26px;
  }

  .mission-panel h3 {
    font-size: 20px;
  }

  .programs-section {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .programs-top {
    display: block;
  }

  .slider-controls {
    margin-top: 18px;
  }

  .program-card {
    flex-basis: 86%;
  }

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

  .care-banner {
    width: calc(100% - 44px);
    min-height: 430px;
    margin-top: 0;
    margin-bottom: 66px;
  }

  .care-banner::after {
    background: linear-gradient(180deg, rgba(18, 13, 18, 0.12), rgba(18, 13, 18, 0.82));
  }

  .care-copy {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px 24px;
  }

  .news-section {
    padding-top: 0;
  }

  .news-feature {
    gap: 26px;
  }

  .news-feature h3 {
    font-size: 25px;
  }

  .join-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .contact-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .donate-intro {
    padding-top: 70px;
    padding-bottom: 28px;
    text-align: left;
  }

  .donate-intro p {
    font-size: 16.5px;
  }

  .donate-methods {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .donate-methods__intro p,
  .donate-impact__copy p {
    font-size: 16px;
  }

  .donate-card {
    padding: 26px 22px;
  }

  .donate-card h3 {
    font-size: 28px;
  }

  .donate-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .donate-impact {
    width: calc(100% - 44px);
    gap: 30px;
    margin-bottom: 66px;
  }

  .donate-impact img {
    min-height: 310px;
  }

  .resources-feature {
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 56px;
  }

  .resources-feature img {
    min-height: 310px;
  }

  .resources-feature p {
    font-size: 16px;
  }

  .articles-section {
    padding-top: 8px;
    padding-bottom: 64px;
  }

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

  .article-card--feature {
    grid-column: auto;
  }

  .article-card--feature img {
    min-height: 240px;
  }

  .article-card div {
    padding: 24px 22px 26px;
  }

  .resources-guides {
    width: calc(100% - 44px);
    gap: 30px;
    margin-bottom: 66px;
    padding: 32px 22px;
  }

  .resources-guides li {
    padding: 18px 18px 18px 44px;
    font-size: 15px;
  }

  .resources-guides li::before {
    left: 18px;
  }

  .article-main {
    padding-top: 88px;
  }

  .article-detail {
    padding-bottom: 64px;
  }

  .article-detail__hero {
    padding-top: 20px;
  }

  .article-back {
    margin-bottom: 24px;
  }

  .article-detail h1 {
    font-size: 43px;
  }

  .article-detail__intro p {
    font-size: 16px;
  }

  .article-meta {
    margin-bottom: 28px;
  }

  .article-detail figure img {
    min-height: 320px;
  }

  .article-detail__body {
    padding-top: 44px;
  }

  .article-summary {
    padding: 24px 22px;
  }

  .article-prose .article-lead {
    font-size: 20px;
  }

  .article-prose p,
  .article-prose li {
    font-size: 17px;
    line-height: 1.75;
  }

  .article-prose h2 {
    margin-top: 40px;
    font-size: 29px;
  }

  .article-prose blockquote {
    margin: 34px 0;
    padding: 26px 24px;
    font-size: 31px;
  }

  .article-next {
    width: calc(100% - 44px);
    gap: 30px;
    margin-bottom: 66px;
  }

  .article-next img {
    min-height: 310px;
  }

  .campaigns-feature {
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 56px;
  }

  .campaigns-feature img {
    min-height: 310px;
  }

  .campaigns-feature p {
    font-size: 16px;
  }

  .campaigns-section {
    padding-top: 8px;
    padding-bottom: 64px;
  }

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

  .campaign-card--wide img {
    min-height: 240px;
  }

  .campaign-card div {
    padding: 24px 22px 26px;
  }

  .campaigns-steps {
    width: calc(100% - 44px);
    gap: 30px;
    margin-bottom: 66px;
    padding: 32px 22px;
  }

  .campaigns-steps li {
    padding: 18px 18px 18px 62px;
  }

  .campaigns-steps li::before {
    top: 18px;
    left: 18px;
  }

  .mission-story {
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 56px;
  }

  .mission-story img {
    min-height: 310px;
  }

  .mission-story p {
    font-size: 16px;
  }

  .mission-directions {
    padding-top: 8px;
    padding-bottom: 64px;
  }

  .mission-directions__grid div {
    padding: 24px 22px 26px;
  }

  .mission-principles {
    width: calc(100% - 44px);
    gap: 30px;
    margin-bottom: 66px;
    padding: 32px 22px;
  }

  .mission-principles li {
    min-height: 0;
    padding: 18px 18px 18px 62px;
  }

  .mission-principles li::before {
    top: 22px;
    left: 22px;
    width: 18px;
    height: 18px;
  }

  .about-story {
    padding-top: 70px;
    padding-bottom: 52px;
  }

  .about-story__body {
    gap: 22px;
    text-align: left;
  }

  .about-story__body p {
    font-size: 16.5px;
  }

  .about-feature {
    gap: 30px;
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .about-feature img {
    min-height: 310px;
  }

  .about-feature p {
    font-size: 16px;
  }

  .about-values {
    width: calc(100% - 44px);
    gap: 30px;
    margin-bottom: 66px;
    padding: 32px 22px;
  }

  .about-values li {
    padding: 18px 18px 18px 62px;
  }

  .about-values li::before {
    top: 22px;
    left: 22px;
    width: 18px;
    height: 18px;
  }

  .about-approach {
    padding-top: 0;
    padding-bottom: 64px;
  }

  .about-approach__grid div {
    padding: 24px 22px 26px;
  }

  .legal-content {
    gap: 22px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .legal-card {
    padding: 30px 22px;
  }

  .legal-card p {
    font-size: 16px;
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .contact-submit {
    width: 100%;
  }

  .join-copy {
    max-width: none;
  }

  .footer-inner {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .site-footer {
    border-radius: 24px 24px 0 0;
  }

  .footer-brand img {
    width: 154px;
  }
}

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