@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Plus+Jakarta+Sans:wght@700&display=swap");

:root {
  --font-heading: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-label: "Inter", Arial, sans-serif;
  --weight-heading: 700;
  --weight-body: 400;
  --weight-label: 600;
  --ink: #16130f;
  --ink-soft: #3f382f;
  --paper: #fffaf1;
  --cream: #f5ead8;
  --gold: #c88a2a;
  --gold-deep: #8d5c1d;
  --charcoal: #1f1b17;
  --line: rgba(22, 19, 15, 0.14);
  --shadow: 0 24px 70px rgba(30, 22, 12, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--weight-body);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(22, 19, 15, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: var(--weight-heading);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: -3px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav .nav-item {
  position: relative;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: var(--weight-label);
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(22, 19, 15, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown a {
  display: block;
  white-space: nowrap;
}

.site-nav .has-dropdown:hover .nav-dropdown,
.site-nav .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--gold);
  color: #1d1409;
}

.site-nav .help-cta {
  box-shadow: 0 10px 28px rgba(200, 138, 42, 0.28);
}

.site-nav .nav-donate {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.88) 0%, rgba(10, 8, 6, 0.62) 42%, rgba(10, 8, 6, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 8, 6, 0.92) 0%, rgba(10, 8, 6, 0.1) 42%);
  pointer-events: none;
}

.hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero.is-reveal img {
  transform: scale(1.045);
  transform-origin: center;
  animation: heroImageDrift 6200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

.hero-title-bar {
  position: absolute;
  z-index: 2;
  top: 112px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(960px, calc(100% - 40px));
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  font-weight: var(--weight-heading);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}

.hero-title-bar i {
  position: relative;
  display: block;
  width: min(320px, 62vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-title-bar i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(22, 19, 15, 0.72);
  transform: translate(-50%, -50%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 70px;
  width: min(780px, calc(100% - 40px));
  transform: translateX(-50%);
}

.hero.is-simple .hero-content {
  top: 50%;
  bottom: auto;
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero.is-simple h1 {
  max-width: none;
  margin: 0 auto;
}

.hero.is-reveal .hero-content {
  width: min(1440px, calc(100% - 32px));
  transform: translate3d(-50%, -50%, 0);
  animation: heroRevealLift 1600ms cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
  will-change: transform;
}

.hero.is-reveal h1 {
  width: 100%;
  font-size: clamp(1rem, 5.2vw, 5rem);
  line-height: 1.04;
  white-space: nowrap;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.58);
  animation: heroTitleSettle 1600ms cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
}

.hero-reveal-panel {
  position: absolute;
  top: calc(100% + clamp(18px, 3vw, 30px));
  left: 50%;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.4vw, 24px);
  width: min(860px, 86vw);
  margin: 0;
  clip-path: inset(0 0 42% 0);
  opacity: 0;
  transform: translate3d(-50%, 26px, 0);
  filter: blur(10px);
  animation: heroRevealPanel 1500ms cubic-bezier(0.16, 1, 0.3, 1) 3.2s forwards;
  will-change: opacity, transform, filter, clip-path;
}

.hero-reveal-actions {
  justify-content: center;
  width: min(520px, 100%);
}

.hero-reveal-copy {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.82rem, 1.45vw, 1.22rem);
  font-weight: var(--weight-body);
  line-height: 1.52;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.62);
}

.hero-reveal-actions .btn {
  min-width: 150px;
}

.hero-statistic {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  padding: 12px 16px;
  border: 1px solid rgba(255, 213, 145, 0.26);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-statistic-item {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.hero-statistic-item + .hero-statistic-item {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-statistic-value {
  color: #ffd591;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--weight-heading);
  line-height: 1;
}

.hero-statistic-label,
.hero-statistic-note {
  display: block;
}

.hero-statistic-label {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: var(--weight-label);
  line-height: 1.28;
}

.hero-statistic-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

@keyframes heroImageDrift {
  to {
    transform: scale(1.012) translate3d(0, -1.2%, 0);
  }
}

@keyframes heroRevealLift {
  to {
    transform: translate3d(-50%, -88%, 0);
  }
}

@keyframes heroRevealLiftCompact {
  to {
    transform: translate3d(-50%, -200%, 0);
  }
}

@keyframes heroTitleSettle {
  to {
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.72);
  }
}

@keyframes heroRevealPanel {
  45% {
    opacity: 0.78;
    filter: blur(4px);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    filter: blur(0);
    transform: translate3d(-50%, 0, 0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(8px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-reveal img,
  .hero.is-reveal h1 {
    animation: none;
  }

  .hero.is-reveal img {
    transform: scale(1.012);
  }

  .hero.is-reveal .hero-content {
    animation: none;
    transform: translate3d(-50%, -88%, 0);
  }

  .hero-reveal-panel {
    opacity: 1;
    clip-path: inset(0);
    filter: none;
    transform: translate3d(-50%, 0, 0);
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (min-width: 621px) and (max-height: 900px) {
  .hero.is-reveal .hero-content {
    animation-name: heroRevealLiftCompact;
  }

  .hero-reveal-panel {
    gap: 14px;
    width: min(760px, 82vw);
  }

  .hero-reveal-copy {
    font-size: clamp(0.82rem, 1.28vw, 1.05rem);
    line-height: 1.42;
  }

  .hero-reveal-actions {
    width: min(440px, 100%);
  }

  .hero-statistic {
    gap: 8px;
    width: min(460px, 100%);
    padding: 10px 14px;
  }

  .hero-statistic-item {
    gap: 5px;
  }

  .hero-statistic-item + .hero-statistic-item {
    padding-top: 8px;
  }

  .hero-statistic-value {
    font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  }

  .hero-statistic-label {
    font-size: 0.84rem;
  }

  .hero-statistic-note {
    font-size: 0.72rem;
  }
}

@media (min-width: 621px) and (max-height: 900px) and (prefers-reduced-motion: reduce) {
  .hero.is-reveal .hero-content {
    transform: translate3d(-50%, -200%, 0);
  }
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: var(--weight-label);
  line-height: 1.35;
}

.section-kicker::before {
  content: "";
  flex: 0 0 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

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

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

h2 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.28;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-label);
  font-weight: var(--weight-label);
  line-height: 1.1;
}

.btn-primary {
  background: var(--gold);
  color: #1d1409;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #dda13f;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary.dark {
  border-color: rgba(22, 19, 15, 0.28);
  color: var(--ink);
  background: transparent;
}

.btn-full {
  width: 100%;
}

.hero-sponsors {
  position: relative;
  max-width: 720px;
  margin-top: 32px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.sponsor-track {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
}

.sponsor-track img {
  display: block;
  min-width: 150px;
  width: 150px;
  height: 50px;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.72;
  object-fit: contain;
}

.purpose-section {
  background: linear-gradient(180deg, #fffaf1 0%, #f5ead8 100%);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.purpose-layout .section-heading {
  margin-bottom: 0;
}

.purpose-layout .section-heading h2 {
  max-width: 620px;
}

.purpose-grid {
  display: grid;
  gap: 14px;
}

.purpose-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(22, 19, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(30, 22, 12, 0.08);
}

.purpose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.purpose-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.purpose-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.purpose-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.support-stats-preview-section {
  background: var(--charcoal);
  color: #fff;
}

.support-stats-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.support-stats-preview-copy {
  max-width: 680px;
}

.support-stats-preview-copy .section-kicker {
  color: #ffd591;
}

.support-stats-preview-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.7;
}

.support-stats-preview-actions,
.urgent-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.support-stats-preview-actions .btn-secondary.dark {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.support-stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.support-stat-card::before {
  content: "";
  width: 46px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.support-stat-card strong,
.support-stat-card span,
.support-stat-card small {
  display: block;
}

.support-stat-card strong {
  margin-bottom: 14px;
  color: #ffd591;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1;
}

.support-stat-card span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.42;
}

.support-stat-card small {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 9px;
  border: 1px solid rgba(255, 213, 145, 0.24);
  border-radius: 999px;
  color: #ffd591;
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: var(--weight-label);
  line-height: 1;
}

.pathway-section {
  padding: 22px 0;
  background: var(--charcoal);
  color: #fff;
}

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

.pathway-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 213, 145, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.pathway-card.urgent {
  border-color: rgba(200, 138, 42, 0.55);
  background: rgba(200, 138, 42, 0.18);
}

.pathway-card span,
.pathway-card strong,
.pathway-card p {
  display: block;
}

.pathway-card span {
  margin-bottom: 18px;
  color: #ffd591;
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: var(--weight-label);
}

.pathway-card strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: 1.38rem;
  line-height: 1.18;
}

.pathway-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.56;
}

.quote-spotlight-section {
  padding: clamp(58px, 7vw, 90px) 0;
  background: linear-gradient(180deg, #fffaf1 0%, #f5ead8 100%);
}

.quote-spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid rgba(22, 19, 15, 0.14);
}

.quote-spotlight-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.quote-spotlight-copy {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.quote-spotlight-card blockquote {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 48px rgba(30, 22, 12, 0.08);
}

.quote-spotlight-card blockquote p {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(1.45rem, 2.6vw, 2.55rem);
  line-height: 1.22;
}

.quote-spotlight-card cite {
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-style: normal;
  font-weight: var(--weight-label);
}

.programs-section {
  background: var(--paper);
}

.program-preview-grid,
.program-detail-grid {
  display: grid;
  gap: 16px;
}

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

.program-card,
.program-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 22, 12, 0.06);
}

.program-card span,
.program-detail-card span {
  margin-bottom: 26px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: var(--weight-label);
  letter-spacing: 0;
  text-transform: uppercase;
}

.program-card p,
.program-detail-card p {
  color: var(--ink-soft);
  line-height: 1.66;
}

.program-card-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
}

.program-card-link:hover,
.program-card-link:focus-visible {
  color: var(--ink);
}

.programs-section-actions {
  margin-top: 28px;
}

.urgent-help-section {
  background: var(--charcoal);
  color: #fff;
}

.urgent-help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 213, 145, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.urgent-help-copy .section-kicker {
  color: #ffd591;
}

.urgent-help-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.72;
}

.urgent-help-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.urgent-help-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.suicide-data-section,
.helpline-section {
  background: var(--paper);
}

.support-expect-section {
  background: #fff;
}

.suicide-data-grid,
.support-info-grid,
.helpline-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

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

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

.suicide-data-card,
.support-info-card,
.helpline-card {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 22, 12, 0.06);
}

.suicide-data-card {
  display: flex;
  min-height: 230px;
  overflow: hidden;
  flex-direction: column;
  background:
    radial-gradient(circle at top right, rgba(200, 138, 42, 0.16), transparent 38%),
    linear-gradient(180deg, #fff 0%, #fff7ea 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.suicide-data-card::before {
  content: "";
  width: 54px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.suicide-data-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 138, 42, 0.35);
  box-shadow: 0 22px 52px rgba(30, 22, 12, 0.12);
}

.suicide-data-card:first-child {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(200, 138, 42, 0.24), transparent 38%),
    linear-gradient(135deg, #1f1b17 0%, #12100d 100%);
  color: #fff;
}

.suicide-data-card strong,
.suicide-data-card p,
.suicide-data-card small {
  display: block;
}

.suicide-data-card strong {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.suicide-data-card:first-child strong {
  color: #ffd591;
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
}

.suicide-data-card p,
.support-info-card p,
.helpline-card p {
  color: var(--ink-soft);
  line-height: 1.62;
}

.suicide-data-card:first-child p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.suicide-data-card small {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 9px;
  border: 1px solid rgba(200, 138, 42, 0.22);
  border-radius: 999px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: var(--weight-label);
  line-height: 1;
}

.suicide-data-card:first-child small {
  border-color: rgba(255, 213, 145, 0.24);
  color: #ffd591;
}

.resource-link,
.source-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
}

.helpline-card {
  display: flex;
  flex-direction: column;
}

.source-links-section {
  background: var(--charcoal);
  color: #fff;
}

.source-links-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.source-links-layout .section-kicker {
  color: #ffd591;
}

.source-link-list {
  display: grid;
  gap: 12px;
}

.source-link {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
}

.source-link:hover,
.source-link:focus-visible {
  border-color: rgba(255, 213, 145, 0.46);
  color: #ffd591;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.mission-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 60% 42%, rgba(200, 138, 42, 0.22), transparent 33%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(8, 6, 4, 0.78) 42%, rgba(0, 0, 0, 0.46) 70%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.82) 100%),
    var(--mission-bg, none) center / cover no-repeat;
  background-attachment: scroll;
}

.mission-content {
  display: grid;
  min-height: clamp(760px, 86vh, 940px);
  align-items: center;
}

.mission-section .section-copy {
  max-width: 860px;
}

.mission-section .section-copy p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.72;
}

.mission-section .section-kicker {
  margin-bottom: 22px;
  color: #ffd591;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.mission-heading {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.52);
}

.mission-heading-line {
  display: block;
}

.mission-heading-highlight {
  color: var(--gold);
}

.mission-points {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-top: 26px;
}

.mission-point {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.mission-point-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 213, 145, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(200, 138, 42, 0.7), rgba(96, 62, 12, 0.72));
  color: #f2a51f;
}

.mission-point-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-point-copy strong,
.mission-point-copy span {
  display: block;
}

.mission-point-copy strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.3;
}

.mission-point-copy span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.mission-btn {
  gap: 18px;
  min-width: 300px;
  margin-top: 22px;
  padding: 15px 24px;
  border-color: rgba(255, 213, 145, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.mission-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.split,
.donate-grid,
.sponsor-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.section-copy p,
.donate-grid p,
.vision-card p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.work-card,
.donation-box,
.sponsor-list,
.vision-card,
.founder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.work-card {
  min-height: 260px;
  padding: 24px;
}

.work-card span {
  display: inline-block;
  margin-bottom: 38px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff3dd;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.work-card p,
.founder-card p,
.sponsor-list li,
.fine-print {
  color: var(--ink-soft);
  line-height: 1.62;
}

.featured-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.event-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 22, 12, 0.07);
}

.event-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-photo-card div {
  padding: 20px;
}

.event-photo-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.event-photo-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.work-archive-btn {
  margin-top: 26px;
}

.upcoming-events {
  margin-top: clamp(48px, 7vw, 82px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.upcoming-events-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.upcoming-events-heading p:not(.section-kicker) {
  color: var(--ink-soft);
  line-height: 1.72;
}

.event-list {
  display: grid;
  gap: 14px;
}

.upcoming-event-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 22, 12, 0.06);
}

.upcoming-event-card time {
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
  line-height: 1.2;
}

.upcoming-event-card h3 {
  margin-bottom: 6px;
}

.upcoming-event-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.upcoming-event-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
  line-height: 1;
}

.upcoming-event-card a:hover,
.upcoming-event-card a:focus-visible {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.podcast-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 10, 7, 0.9) 0%, rgba(14, 10, 7, 0.68) 52%, rgba(14, 10, 7, 0.28) 100%),
    var(--podcast-bg, none) center / cover no-repeat;
}

.podcast-grid {
  display: grid;
  min-height: 620px;
  align-items: center;
}

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

.podcast-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.72;
}

.podcast-section .section-kicker {
  color: #ffd591;
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-label);
  font-weight: var(--weight-label);
  line-height: 1.1;
}

.platform-link:hover,
.platform-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.donate-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 15, 10, 0.9) 0%, rgba(20, 15, 10, 0.72) 48%, rgba(20, 15, 10, 0.42) 100%),
    var(--donate-bg, none) center / cover no-repeat;
}

.donate-section .section-kicker {
  color: #ffd591;
}

.donate-section .donate-grid > div:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.donation-box {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  box-shadow: var(--shadow);
}

.donation-box.is-disabled > :not(.donation-disabled-overlay) {
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.donation-disabled-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(31, 27, 23, 0.9);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
}

.donation-disabled-card {
  max-width: 360px;
}

.donation-disabled-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffd591;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.donation-disabled-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.donation-disabled-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

.donation-box-heading {
  margin-bottom: 22px;
}

.donation-box-heading h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.donation-box-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

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

.amount {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-label);
  font-weight: var(--weight-label);
}

.amount.active {
  border-color: var(--gold);
  background: #fff3dd;
  color: var(--gold-deep);
}

.donation-box label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: var(--weight-label);
}

.donation-box input {
  width: 100%;
  height: 52px;
  margin-bottom: 14px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.fine-print {
  margin: 13px 0 0;
  font-size: 0.86rem;
}

.sponsor-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(200, 138, 42, 0.18), transparent 32%),
    linear-gradient(180deg, #fffaf1 0%, #f5ead8 100%);
}

.sponsor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), transparent 42%);
  pointer-events: none;
}

.sponsor-section .container {
  position: relative;
  z-index: 1;
}

.sponsor-section .section-kicker {
  color: var(--gold-deep);
}

.sponsor-section .section-copy p {
  color: var(--ink-soft);
}

.sponsor-cta-btn {
  margin-top: 10px;
  box-shadow: 0 16px 38px rgba(200, 138, 42, 0.2);
}

.sponsor-list {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(200, 138, 42, 0.24);
  background: #fff;
  box-shadow: 0 24px 70px rgba(30, 22, 12, 0.14);
}

.sponsor-list h3 {
  color: var(--ink);
}

.sponsor-list ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sponsor-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: var(--weight-body);
}

.sponsor-directory {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: clamp(28px, 5vw, 48px);
  border-top: 1px solid rgba(22, 19, 15, 0.14);
}

.sponsor-directory-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.sponsor-directory-heading h3 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  line-height: 1.08;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.sponsor-directory-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
}

.sponsor-logo-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 145px;
  padding: 12px;
  border: 1px solid rgba(22, 19, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(30, 22, 12, 0.1);
}

.sponsor-logo-card img {
  width: min(330px, 100%);
  max-height: 118px;
  object-fit: contain;
}

.sponsor-logo-card::after {
  content: attr(data-sponsor);
  color: var(--ink-soft);
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: var(--weight-label);
  line-height: 1.25;
  text-align: center;
}

.sponsor-logo-card:hover,
.sponsor-logo-card:focus-visible {
  border-color: rgba(200, 138, 42, 0.55);
  box-shadow: 0 18px 44px rgba(30, 22, 12, 0.11);
}

.vision-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 15, 10, 0.9) 0%, rgba(20, 15, 10, 0.68) 52%, rgba(20, 15, 10, 0.36) 100%),
    var(--vision-bg, none) center / cover no-repeat;
  background-attachment: fixed;
}

.vision-card {
  padding: clamp(30px, 6vw, 64px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.vision-card h2 {
  max-width: 990px;
}

.vision-card p {
  max-width: 830px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.founder-card {
  overflow: hidden;
  background: #fff;
}

.founder-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.founder-card div {
  padding: 22px;
}

.contact-section {
  padding: 72px 0;
  background: var(--charcoal);
  color: #fff;
}

.contact-section .section-kicker {
  color: #ffd591;
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions .btn-primary {
  border-color: rgba(255, 213, 145, 0.44);
  background: rgba(200, 138, 42, 0.14);
  color: #ffd591;
}

.contact-actions .btn-secondary,
.contact-actions .btn-secondary.dark {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, 0.6fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: 1.35rem;
  line-height: 1.25;
}

.site-footer p {
  max-width: 360px;
  margin: 0 0 10px;
  line-height: 1.6;
}

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

.footer-column h3 {
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffd591;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(255, 213, 145, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #ffd591;
}

.social-links .social-instagram {
  color: rgba(255, 255, 255, 0.82);
}

.social-links .social-facebook {
  color: rgba(255, 255, 255, 0.82);
}

.social-links .social-youtube {
  color: rgba(255, 255, 255, 0.82);
}

.social-links .social-tiktok {
  color: rgba(255, 255, 255, 0.82);
}

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

.page-hero {
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 150px 0 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 10, 7, 0.9) 0%, rgba(14, 10, 7, 0.68) 50%, rgba(14, 10, 7, 0.28) 100%),
    var(--page-hero-bg, none) center / cover no-repeat;
}

.page-hero-content {
  max-width: 900px;
  text-align: center;
}

.page-hero .section-kicker {
  justify-content: center;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.page-hero p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.programs-page-section {
  background: var(--paper);
}

.program-detail-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.program-detail-card {
  min-height: 300px;
}

.programs-cta-section {
  padding: clamp(58px, 7vw, 92px) 0;
  background: var(--charcoal);
  color: #fff;
}

.programs-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.programs-cta-copy {
  max-width: 760px;
}

.programs-cta-copy .section-kicker {
  color: #ffd591;
}

.programs-cta-copy h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.programs-cta-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: var(--weight-body);
}

.programs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.programs-cta-actions .btn-primary {
  border-color: rgba(255, 213, 145, 0.44);
  background: rgba(200, 138, 42, 0.14);
  color: #ffd591;
}

.programs-cta-actions .btn-secondary,
.programs-cta-actions .btn-secondary.dark {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.donate-page-giving-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at top right, rgba(200, 138, 42, 0.18), transparent 34%),
    linear-gradient(180deg, #fffaf1 0%, #f5ead8 100%);
}

.donate-page-giving-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.donate-page-giving-copy {
  max-width: 760px;
}

.donate-page-giving-copy h2 {
  max-width: 760px;
}

.donate-page-giving-copy > p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.76;
}

.donate-page-giving-grid .donation-box {
  position: relative;
  border: 1px solid rgba(200, 138, 42, 0.24);
  box-shadow: 0 28px 80px rgba(30, 22, 12, 0.16);
}

.donate-impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.donate-impact-stats div {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(22, 19, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.donate-impact-stats strong,
.donate-impact-stats span {
  display: block;
}

.donate-impact-stats strong {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1;
}

.donate-impact-stats span {
  color: var(--ink-soft);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: var(--weight-label);
  line-height: 1.38;
}

.donate-impact-section {
  background: #fff;
}

.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.donate-impact-card {
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.donate-impact-card h3 {
  color: var(--ink);
}

.donate-impact-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.66;
}

.donate-closing-section {
  padding: clamp(48px, 6vw, 76px) 0;
  background: var(--charcoal);
  color: #fff;
}

.donate-closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.donate-closing h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.donate-closing p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: var(--weight-body);
}

.donate-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.donate-closing-actions .btn-primary {
  border-color: rgba(255, 213, 145, 0.44);
  background: rgba(200, 138, 42, 0.14);
  color: #ffd591;
}

.donate-closing-actions .btn-secondary,
.donate-closing-actions .btn-secondary.dark {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-form-section {
  background: var(--paper);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.contact-reason-list,
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 22, 12, 0.06);
}

.contact-reason-list {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.contact-reason-list h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: var(--weight-label);
  text-transform: uppercase;
}

.contact-reason-link {
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
  line-height: 1.2;
}

.contact-reason-link:hover,
.contact-reason-link:focus-visible,
.contact-reason-link.active {
  background: #fff3dd;
  color: var(--gold-deep);
}

.contact-form-card {
  padding: clamp(24px, 5vw, 46px);
}

.contact-form-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-form-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-form-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.66;
}

.contact-form-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff3dd;
  color: var(--ink);
  font-weight: var(--weight-body);
}

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

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--ink-soft);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: var(--weight-label);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-field input,
.contact-field select {
  height: 52px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 20px;
}

.contact-form-status {
  margin: 12px 0 0;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-weight: var(--weight-label);
}

.statement-header {
  position: sticky;
}

.statement-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 150px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 10, 7, 0.9) 0%, rgba(14, 10, 7, 0.68) 50%, rgba(14, 10, 7, 0.28) 100%),
    var(--statement-hero-bg, none) center / cover no-repeat;
}

.statement-hero-content {
  max-width: 860px;
  text-align: center;
}

.statement-hero .section-kicker {
  justify-content: center;
}

.statement-hero h1 {
  margin: 0 auto 18px;
}

.statement-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.statement-section {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--paper);
}

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

.statement-card,
.statement-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(30, 22, 12, 0.08);
}

.statement-card {
  padding: clamp(28px, 5vw, 56px);
}

.statement-card h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.statement-card p:not(.section-kicker) {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

.statement-sidebar {
  position: sticky;
  top: 110px;
  padding: 26px;
}

.statement-sidebar h3 {
  margin-bottom: 18px;
}

.statement-sidebar ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.statement-sidebar li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: var(--weight-body);
  line-height: 1.48;
}

.statement-vision {
  grid-column: 1 / -1;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 15, 10, 0.9) 0%, rgba(20, 15, 10, 0.74) 58%, rgba(20, 15, 10, 0.44) 100%),
    var(--statement-vision-bg, none) center / cover no-repeat;
}

.statement-vision .section-kicker {
  color: #ffd591;
}

.statement-vision p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(22, 19, 15, 0.98);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .site-nav .nav-item {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 4px 12px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown a {
    white-space: normal;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-content {
    bottom: 48px;
  }

  .hero-title-bar {
    top: 102px;
    width: min(100% - 28px, 720px);
    gap: 8px;
    font-size: clamp(1.2rem, 6vw, 1.9rem);
  }

  .hero-title-bar i {
    width: min(220px, 52vw);
  }

  .split,
  .podcast-grid,
  .donate-grid,
  .sponsor-grid,
  .contact-grid,
  .donate-page-giving-grid,
  .purpose-layout,
  .support-stats-preview,
  .urgent-help-card,
  .source-links-layout {
    grid-template-columns: 1fr;
  }

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

  .program-preview-grid,
  .program-detail-grid,
  .donate-impact-grid,
  .support-stats-preview-grid,
  .suicide-data-grid,
  .support-info-grid,
  .helpline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .quote-spotlight-card blockquote {
    grid-column: auto;
    grid-row: auto;
  }

  .vision-section {
    background-attachment: scroll;
  }

  .mission-content {
    min-height: auto;
  }

  .mission-heading {
    font-size: clamp(2.7rem, 8vw, 4.4rem);
  }

  .podcast-grid {
    min-height: 560px;
  }

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

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

  .upcoming-event-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .programs-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .programs-cta-actions {
    justify-content: flex-start;
  }

  .donate-closing {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .donate-closing-actions {
    justify-content: flex-start;
  }

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

  .contact-reason-list {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-reason-list h3 {
    grid-column: 1 / -1;
  }

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

  .statement-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .site-header {
    padding: 14px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 0.86rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-content .section-kicker {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-content .section-kicker::before {
    flex-basis: 26px;
    height: 2px;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero.is-reveal .hero-content {
    width: min(100% - 18px, 620px);
    animation-name: heroRevealLiftMobile;
  }

  .hero.is-reveal h1 {
    font-size: clamp(0.95rem, 5.15vw, 2.45rem);
  }

  .hero-reveal-panel {
    top: calc(100% + 18px);
    width: min(100%, 560px);
    gap: 14px;
  }

  .hero-reveal-copy {
    font-size: clamp(0.76rem, 3.2vw, 0.98rem);
    line-height: 1.42;
  }

  .hero-reveal-actions {
    width: min(100%, 360px);
  }

  .hero-statistic {
    gap: 7px;
    width: min(100%, 360px);
    padding: 12px;
    text-align: center;
  }

  .hero-statistic-item {
    gap: 7px;
  }

  .hero-statistic-value {
    font-size: 2rem;
  }

  @keyframes heroRevealLiftMobile {
    to {
      transform: translate3d(-50%, calc(-100% - 250px), 0);
    }
  }

  @media (max-width: 360px) and (max-height: 640px) {
    .hero.is-reveal .hero-content {
      width: min(100% - 16px, 620px);
    }

    .hero.is-reveal h1 {
      font-size: clamp(0.82rem, 4.8vw, 1.05rem);
      line-height: 1.05;
    }

    .hero-reveal-panel {
      top: calc(100% + 10px);
      gap: 8px;
    }

    .hero-reveal-copy {
      font-size: 0.66rem;
      line-height: 1.25;
    }

    .hero-reveal-actions {
      gap: 8px;
    }

    .hero-reveal-actions .btn {
      min-height: 38px;
      padding: 8px 12px;
    }

    .hero-statistic {
      gap: 5px;
      padding: 8px;
    }

    .hero-statistic-item {
      gap: 4px;
    }

    .hero-statistic-item + .hero-statistic-item {
      padding-top: 6px;
    }

    .hero-statistic-value {
      font-size: 1.55rem;
    }

    .hero-statistic-label {
      font-size: 0.76rem;
      line-height: 1.16;
    }

    .hero-statistic-note {
      font-size: 0.64rem;
      line-height: 1.2;
    }

    @keyframes heroRevealLiftMobile {
      to {
        transform: translate3d(-50%, calc(-100% - 190px), 0);
      }
    }
  }

  p,
  .section-copy p,
  .section-heading > p:not(.section-kicker),
  .donate-grid p,
  .vision-card p,
  .podcast-copy p,
  .event-photo-card p,
  .upcoming-event-card p,
  .sponsor-directory-heading p,
  .statement-card p:not(.section-kicker) {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .mission-point-copy span,
  .pathway-card p,
  .quote-spotlight-copy,
  .founder-card p,
  .sponsor-list li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .quote-spotlight-card blockquote {
    padding: 22px;
  }

  .quote-spotlight-card blockquote p {
    font-size: 1.35rem;
  }

  .mission-heading {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .mission-section .section-copy p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .mission-point {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .mission-point-icon {
    width: 42px;
    height: 42px;
  }

  .mission-point-icon svg {
    width: 25px;
    height: 25px;
  }

  .mission-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .btn,
  .podcast-actions .btn,
  .support-stats-preview-actions .btn,
  .urgent-help-actions .btn,
  .upcoming-event-card a,
  .platform-link,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-sponsors {
    margin-top: 24px;
  }

  .sponsor-track img {
    min-width: 130px;
    width: 130px;
    height: 44px;
  }

  .work-grid,
  .pathway-grid,
  .featured-events,
  .program-preview-grid,
  .program-detail-grid,
  .donate-impact-grid,
  .donate-impact-stats,
  .support-stats-preview-grid,
  .suicide-data-grid,
  .support-info-grid,
  .helpline-grid,
  .contact-reason-list,
  .contact-field-grid,
  .founder-grid,
  .amounts {
    grid-template-columns: 1fr;
  }

  .suicide-data-card:first-child {
    grid-column: auto;
  }

  .page-hero {
    min-height: 470px;
    padding: 130px 0 58px;
  }

  .program-card,
  .program-detail-card,
  .donate-impact-card,
  .donate-impact-stats div {
    min-height: auto;
  }

  .donate-page-giving-section {
    padding: 64px 0;
  }

  .donate-closing {
    gap: 20px;
  }

  .work-card {
    min-height: auto;
  }

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

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

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

  .footer-column a {
    font-size: 0.88rem;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .hero.is-reveal .hero-content {
    transform: translate3d(-50%, calc(-100% - 250px), 0);
  }
}
