:root {
  --navy: #06192b;
  --blue: #0b3958;
  --ink: #102133;
  --muted: rgba(16, 33, 51, 0.68);
  --line: rgba(16, 33, 51, 0.12);
  --teal: #2aa6a4;
  --mint: #d9f4f2;
  --coral: #ff715b;
  --gold: #f0b429;
  --paper: #f8fcff;
  --mist: #edf6f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 55, 99, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: rgba(255, 113, 91, 0.28);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.site-nav {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 15, 29, 0.64);
  color: var(--white);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: transform 0.32s ease, opacity 0.24s ease;
  will-change: transform;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.site-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -140%);
}

.site-nav:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 2px;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-links .menu-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.site-nav.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: #06172a;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(240, 180, 41, 0.28);
}

.button.secondary,
.button.glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(6, 25, 43, 0.18);
  background: var(--white);
}

.cinematic {
  position: relative;
  height: 560vh;
  min-height: 2800px;
  background: #06172a;
}

.sticky-scene {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #06172a;
}

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

.hero-visuals {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(42, 166, 164, 0.2), transparent 33%),
    radial-gradient(circle at 52% 62%, rgba(240, 180, 41, 0.18), transparent 26%),
    linear-gradient(135deg, #06172a 0%, #0b2d45 52%, #06172a 100%);
}

.chapter-image {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transform-origin: center;
  transition: opacity 0.16s linear, transform 0.24s ease-out;
  will-change: opacity, transform;
}

.scene-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 47%, rgba(42, 166, 164, 0.24), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(240, 180, 41, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(3, 15, 29, 0.68) 0%, rgba(3, 15, 29, 0.18) 42%, rgba(3, 15, 29, 0.92) 100%),
    linear-gradient(90deg, rgba(3, 15, 29, 0.95) 0%, rgba(3, 15, 29, 0.34) 50%, rgba(3, 15, 29, 0.72) 100%);
}

.hero-intro {
  position: absolute;
  z-index: 6;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 116px 24px 88px;
  color: var(--white);
  text-align: center;
  will-change: opacity, transform;
}

.hero-intro img {
  width: clamp(210px, 17vw, 280px);
  height: clamp(210px, 17vw, 280px);
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
}

.hero-intro p,
.hero-intro span {
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

.hero-intro p {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-intro span {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.55;
}

.hero-intro h1 {
  width: min(760px, 100%);
  margin: 0;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 5.35rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(820px, calc(100% - 40px));
  height: 100%;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  align-content: center;
  padding-top: 76px;
  color: var(--white);
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-line {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 820px;
  margin: 0;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 5.45rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
}

.hero-line.final {
  color: #fff6d6;
}

.hero-copy .kicker {
  position: absolute;
  top: calc(50% - 235px);
  opacity: 0;
  transform: translateY(18px);
}

.hero-brand-card {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 2vw, 36px);
  bottom: 38px;
  width: min(390px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  color: var(--white);
  background: rgba(4, 20, 38, 0.5);
  backdrop-filter: blur(18px);
}

.hero-brand-card > img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 3px;
}

.hero-brand-card small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-brand-card strong {
  display: block;
  margin: 4px 0 5px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.panel-label {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter-meter {
  position: absolute;
  z-index: 5;
  left: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(4, 42px);
  gap: 8px;
}

.chapter-meter span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.chapter-meter span::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chapter-meter span.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.scroll-cue span:first-child {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-panel,
.values-section,
.programs-section,
.method-section,
.identity-section,
.transparency-section,
.contact-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.intro-panel {
  padding: 118px 0 98px;
}

.values-section {
  padding: 0 0 112px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.value-card {
  min-height: 218px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 55, 99, 0.08);
}

.value-card h3 {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.intro-copy,
.section-heading {
  max-width: 820px;
}

.intro-copy h2,
.section-heading h2,
.identity-copy h2,
.support-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.identity-copy p,
.support-copy p,
.contact-copy p,
.intro-card p,
.program-card p,
.method-step p,
.chart-copy p,
.document-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading p:not(.eyebrow) {
  max-width: 710px;
  margin-top: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.intro-card,
.metric-card,
.method-step,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 55, 99, 0.08);
}

.intro-card {
  min-height: 254px;
  padding: 28px;
}

.intro-card span,
.program-card span,
.legal-card > span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-card strong {
  display: block;
  margin: 58px 0 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.programs-section {
  padding: 0 0 112px;
}

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

.program-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.program-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s ease;
}

.program-card:hover img {
  transform: scale(1.07);
}

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

.program-card h3,
.method-step h3,
.chart-copy h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.impact-lab {
  padding: 104px 0 116px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 113, 91, 0.24), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(42, 166, 164, 0.26), transparent 28%),
    linear-gradient(135deg, #06172a 0%, #083f5e 54%, #16243a 100%);
}

.impact-lab > * {
  width: min(calc(100% - 40px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.invert h2,
.invert p:not(.eyebrow) {
  color: var(--white);
}

.invert p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.metric-card {
  min-height: 170px;
  padding: 24px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.metric-card strong {
  display: block;
  color: var(--gold);
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.metric-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.chart-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.chart-copy h3 {
  color: var(--white);
  font-size: 2rem;
}

.chart-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.bar-chart {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 190px) 1fr 38px;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.bar-row::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 13px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--teal), var(--gold) var(--value), rgba(255, 255, 255, 0.16) var(--value));
  transform: scaleX(0.08);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar-row span {
  grid-column: 1;
  min-width: 0;
}

.bar-row strong {
  grid-column: 3;
  color: var(--gold);
  text-align: right;
}

.chart-board.in .bar-row::before {
  transform: scaleX(1);
}

.method-section {
  padding: 112px 0;
}

.method-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.method-step {
  min-height: 282px;
  padding: 26px;
}

.method-step span {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.identity-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 0 0 112px;
}

.identity-mark {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 244, 242, 0.92), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(45deg, rgba(7, 55, 99, 0.07) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.story-logo {
  width: min(72%, 360px);
  border-radius: 50%;
  filter: drop-shadow(0 26px 48px rgba(7, 55, 99, 0.18));
}

.identity-copy {
  display: grid;
  gap: 24px;
}

.transparency-section {
  padding: 100px 0;
}

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

.legal-card {
  min-height: 360px;
  padding: 26px;
}

.legal-card dl,
.legal-card ul {
  display: grid;
  gap: 18px;
  margin: 52px 0 0;
  padding: 0;
}

.legal-card ul {
  list-style: none;
}

.legal-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-card dt {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.document-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.document-strip strong {
  display: block;
  margin: 6px 0;
  font-size: 1.2rem;
}

.document-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.support-section {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(135deg, #07182b 0%, #114d63 54%, #19283f 100%);
}

.support-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.support-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 34, 0.18), rgba(4, 18, 34, 0.72)),
    linear-gradient(180deg, transparent, rgba(4, 18, 34, 0.55));
}

.support-badge {
  position: relative;
  z-index: 2;
  width: clamp(150px, 16vw, 210px);
  height: clamp(150px, 16vw, 210px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.support-badge img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: contain;
  border-radius: 50%;
}

.donation-details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.donation-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.donation-card h3,
.donation-card strong,
.donation-card span,
.donation-card small {
  overflow-wrap: anywhere;
}

.donation-card h3 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.donation-card strong {
  font-size: 0.9rem;
  line-height: 1.4;
}

.donation-card span,
.donation-card small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  line-height: 1.5;
}

.support-copy {
  display: grid;
  gap: 22px;
}

.support-copy h2,
.support-copy p {
  color: var(--white);
}

.support-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-section {
  display: block;
  padding: 100px 0;
}

.contact-copy {
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7, 55, 99, 0.08);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-main {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 54px;
  align-items: end;
  padding: 54px 0 38px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-brand span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-main p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.footer-columns {
  display: grid;
  grid-template-columns: 0.72fr 0.92fr 1.28fr;
  gap: 18px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-column a {
  width: fit-content;
  font-weight: 800;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1440px), (max-height: 860px) {
  .hero-intro {
    gap: 12px;
    padding: 98px 22px 70px;
  }

  .hero-intro img {
    width: clamp(150px, 13vw, 205px);
    height: clamp(150px, 13vw, 205px);
    padding: 8px;
  }

  .hero-intro p {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .hero-intro h1 {
    width: min(660px, 100%);
    font-size: clamp(3.7rem, 6.2vw, 4.75rem);
    line-height: 0.98;
  }

  .hero-intro span {
    width: min(500px, 100%);
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 8px;
  }

  .hero-actions .button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.76rem;
  }

  .hero-line {
    max-width: 700px;
    font-size: clamp(3.6rem, 6vw, 4.8rem);
  }

  .hero-copy .kicker {
    top: calc(50% - 200px);
  }

  .hero-brand-card,
  .scroll-cue {
    display: none;
  }

  .chapter-meter {
    bottom: 32px;
  }
}

@media (max-height: 760px) {
  .hero-intro {
    gap: 10px;
    padding-top: 86px;
    padding-bottom: 48px;
  }

  .hero-intro img {
    width: clamp(130px, 11vw, 170px);
    height: clamp(130px, 11vw, 170px);
  }

  .hero-intro h1 {
    width: min(600px, 100%);
    font-size: clamp(3.25rem, 5.4vw, 4.2rem);
  }

  .hero-intro span {
    max-width: 460px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 6px;
  }
}

@media (max-width: 1050px) {
  .site-nav {
    position: fixed;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 100%);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(3, 15, 29, 0.9);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }

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

  .nav-links a {
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
  }

  .nav-links .menu-cta {
    display: inline-grid;
    place-items: center;
    min-height: 44px;
    margin-top: 4px;
    color: #06172a;
    background: var(--gold);
    box-shadow: 0 14px 34px rgba(240, 180, 41, 0.28);
  }

  .nav-links .menu-cta:hover,
  .nav-links .menu-cta:focus-visible {
    color: #06172a;
    background: var(--gold);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .hero-intro h1 {
    font-size: 3.85rem;
  }

  .hero-line {
    font-size: 4rem;
  }

  .intro-grid,
  .values-grid,
  .program-grid,
  .transparency-grid,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-timeline,
  .chart-board,
  .identity-section,
  .support-section,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1050px) and (max-height: 760px) {
  .hero-intro h1 {
    font-size: 3.35rem;
  }

  .hero-line {
    font-size: 3.45rem;
  }
}

@media (max-width: 700px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px;
    gap: 10px;
  }

  .brand {
    grid-template-columns: 42px auto;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: 100%;
  }

  .cinematic {
    height: 520vh;
  }

  .sticky-scene {
    min-height: 650px;
  }

  .hero-intro {
    padding: 94px 18px 116px;
    gap: 13px;
  }

  .hero-intro img {
    width: 170px;
    height: 170px;
  }

  .hero-intro h1 {
    font-size: 3.15rem;
  }

  .hero-intro span {
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 10px;
  }

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

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-copy .kicker {
    top: calc(50% - 190px);
    max-width: 260px;
    line-height: 1.5;
  }

  .hero-line {
    max-width: calc(100vw - 32px);
    font-size: 3.35rem;
  }

  .hero-brand-card {
    right: 16px;
    bottom: 22px;
    width: calc(100% - 32px);
    grid-template-columns: 54px 1fr;
    border-radius: 8px;
  }

  .hero-brand-card > img {
    width: 54px;
    height: 54px;
  }

  .chapter-meter {
    left: 16px;
    bottom: 112px;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 32px);
  }

  .scroll-cue {
    display: none;
  }

  .intro-panel {
    padding: 80px 0 72px;
  }

  .programs-section,
  .identity-section,
  .method-section,
  .transparency-section,
  .contact-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .intro-copy h2,
  .section-heading h2,
  .identity-copy h2,
  .support-copy h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .intro-grid,
  .values-grid,
  .program-grid,
  .transparency-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .value-card,
  .metric-card,
  .method-step,
  .legal-card {
    min-height: auto;
    padding: 22px;
  }

  .intro-card strong,
  .method-step span,
  .legal-card dl,
  .legal-card ul {
    margin-top: 34px;
    margin-bottom: 10px;
  }

  .program-card img {
    height: 230px;
  }

  .impact-lab {
    padding: 76px 0;
  }

  .metric-card strong {
    font-size: 3.2rem;
  }

  .chart-board {
    padding: 22px;
  }

  .bar-row {
    grid-template-columns: 1fr 34px;
    gap: 8px 10px;
  }

  .bar-row span {
    grid-column: 1;
  }

  .bar-row strong {
    grid-column: 2;
  }

  .bar-row::before {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .identity-mark {
    min-height: 300px;
    padding: 24px;
  }

  .story-logo {
    width: min(76%, 250px);
  }

  .document-strip,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    padding-top: 42px;
    gap: 26px;
  }

  .footer-brand {
    grid-template-columns: 64px 1fr;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

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

  .support-section {
    padding-top: 74px;
    padding-bottom: 74px;
    gap: 38px;
  }

  .support-visual {
    min-height: 330px;
  }

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

@media (max-width: 700px) {
  .donation-details {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
