:root {
  --ink: #13202b;
  --muted: #5f6f7b;
  --paper: #fffaf1;
  --white: #ffffff;
  --line: #dfe8eb;
  --sun: #f7c548;
  --orange: #ec6f2d;
  --blue: #168fc2;
  --green: #2fa86f;
  --deep: #0d3b4d;
  --shadow: 0 24px 60px rgba(13, 59, 77, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Nunito, Inter, sans-serif;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(3.05rem, 8vw, 6.9rem);
  font-weight: 900;
  line-height: 0.9;
  max-width: 1000px;
  text-wrap: balance;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

h3 {
  font-size: 1.45rem;
  font-weight: 900;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(223, 232, 235, 0.82);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 900;
  min-width: 0;
}

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

.brand span {
  color: var(--deep);
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  color: #2d4654;
}

.site-nav a:hover {
  color: var(--orange);
}

.nav-donate {
  background: var(--orange);
  border-radius: 999px;
  color: var(--white) !important;
  padding: 12px 18px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  isolation: isolate;
  min-height: min(820px, 94vh);
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 59, 77, 0.96) 0%, rgba(13, 59, 77, 0.67) 50%, rgba(13, 59, 77, 0.28) 100%),
    linear-gradient(0deg, rgba(19, 32, 43, 0.42), rgba(19, 32, 43, 0));
  z-index: 1;
}

.hero-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  min-height: inherit;
  padding: 118px clamp(22px, 7vw, 94px) 116px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(236, 111, 45, 0.32);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.quick-impact {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-stat {
  border-right: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
}

.impact-stat:last-child {
  border-right: 0;
}

.impact-stat strong {
  color: var(--blue);
  display: block;
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.impact-stat span {
  color: var(--muted);
  display: block;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 12px;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.mission-band {
  background: var(--paper);
}

.mission-grid {
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  margin-top: 18px;
}

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

.photo-story {
  align-items: center;
  background: #e9f5f7;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.story-copy {
  display: grid;
  gap: 20px;
}

.story-gallery {
  aspect-ratio: 967 / 560;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.story-gallery img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 420ms ease;
  width: 100%;
}

.story-gallery img.active {
  opacity: 1;
}

.gallery-controls {
  bottom: 18px;
  display: flex;
  gap: 9px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.gallery-controls button {
  background: rgba(255, 255, 255, 0.66);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  width: 32px;
}

.gallery-controls button.active {
  background: var(--sun);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 14px;
}

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

.ministry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 59, 77, 0.08);
  overflow: hidden;
}

.ministry-card > img {
  aspect-ratio: 630 / 200;
  background: #d7eef5;
  object-fit: cover;
  width: 100%;
}

.ministry-card-body {
  padding: 26px;
}

.ministry-card p {
  margin-top: 10px;
}

.ministry-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.ministry-card li {
  background: #fff2dd;
  border-radius: 999px;
  color: #9b4b1c;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 10px;
}

.impact-section {
  background: var(--deep);
  color: var(--white);
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
}

.impact-section h2,
.impact-section h3 {
  color: var(--white);
}

.impact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.impact-panel {
  display: grid;
  gap: 22px;
}

.pathway {
  display: grid;
  gap: 1px;
}

.pathway-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 28px;
}

.pathway-item span {
  color: var(--sun);
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.leaders {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.9fr);
}

.leaders-image img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: min(680px, 76vh);
  object-fit: cover;
  object-position: center 28%;
  width: 100%;
}

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

.give-section {
  background: #f7c548;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 84px);
}

.give-inner {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.92fr);
}

.give-inner h2 {
  margin: 14px 0 18px;
}

.give-inner p {
  color: rgba(19, 32, 43, 0.76);
}

.legal-note,
.form-note {
  color: rgba(19, 32, 43, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status {
  background: #e9f5f7;
  border: 1px solid rgba(22, 143, 194, 0.24);
  border-radius: 8px;
  color: var(--deep);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.45;
  padding: 14px 16px;
}

.zeffy-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
}

.zeffy-card-top {
  align-items: center;
  display: flex;
  gap: 14px;
}

.zeffy-card-top img {
  height: 58px;
  width: auto;
}

.zeffy-card-top span {
  color: var(--blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zeffy-card-top strong {
  color: var(--ink);
  display: block;
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.05;
  margin-top: 5px;
}

.zeffy-fallback {
  margin-top: 4px;
  width: 100%;
}

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

.contact-heading {
  margin-bottom: 38px;
}

.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
}

.contact-form,
.contact-card {
  background: #f7fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 59, 77, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
}

.contact-card {
  align-self: start;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
}

.contact-card h3 {
  color: var(--deep);
}

.contact-card p {
  color: var(--muted);
}

.contact-form label {
  color: var(--deep);
  display: grid;
  font-size: 0.92rem;
  font-weight: 900;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 13px 14px;
  width: 100%;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(22, 143, 194, 0.16);
}

.optional-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.consent-row {
  align-items: start;
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: 22px minmax(0, 1fr);
}

.consent-row input {
  min-height: 0;
  margin-top: 5px;
  width: auto;
}

.consent-row span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.site-footer {
  align-items: center;
  background: #102c39;
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 34px clamp(20px, 6vw, 84px);
}

.site-footer > div {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  max-width: 720px;
}

.site-footer img {
  height: 48px;
  width: auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer p span {
  display: inline-block;
  margin-top: 8px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

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

.thanks-shell {
  display: grid;
  gap: clamp(42px, 8vw, 86px);
  min-height: 100vh;
  padding: clamp(24px, 6vw, 70px);
}

.thanks-brand {
  align-self: start;
}

.thanks-card {
  align-self: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding: clamp(30px, 6vw, 64px);
}

.thanks-card h1 {
  color: var(--ink);
  font-size: clamp(2.65rem, 7vw, 5.4rem);
}

.thanks-card .button {
  justify-self: start;
}

@media (max-width: 980px) {
  .site-nav {
    align-items: stretch;
    background: #fffaf1 !important;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 22px 48px rgba(13, 59, 77, 0.24);
    bottom: auto;
    display: none;
    flex-direction: column;
    gap: 0;
    left: 18px;
    opacity: 1 !important;
    padding: 10px 18px 18px;
    position: fixed;
    right: 18px;
    top: 81px;
    z-index: 10001;
  }

  .site-nav.open {
    display: flex;
    background: #fffaf1 !important;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.25rem;
    padding: 18px 4px;
  }

  .nav-donate {
    border-bottom: 0 !important;
    margin-top: 18px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 10002;
  }

  .quick-impact,
  .mission-grid,
  .photo-story,
  .section-heading,
  .impact-section,
  .leaders,
  .give-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .impact-stat:nth-child(2) {
    border-right: 0;
  }

  .impact-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .leaders-image img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: 0.86rem;
  }

  .brand img {
    height: 44px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-inner {
    padding-bottom: 72px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-impact {
    grid-template-columns: 1fr;
  }

  .impact-stat,
  .impact-stat:nth-child(2) {
    border-right: 0;
  }

  .impact-stat {
    border-bottom: 1px solid var(--line);
  }

  .impact-stat:last-child {
    border-bottom: 0;
  }

  .story-gallery {
    border-width: 6px;
  }

  .gallery-controls button {
    width: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
