:root {
  color-scheme: light;
  --ink: #152c33;
  --muted: #5b6870;
  --soft: #f6f3ec;
  --paper: #fffdf8;
  --sea: #0b6f73;
  --sea-deep: #084d52;
  --leaf: #6f8c3f;
  --coral: #d86c55;
  --gold: #d6a84d;
  --blue: #315b7c;
  --line: rgba(21, 44, 51, 0.16);
  --shadow: 0 24px 70px rgba(21, 44, 51, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  clip: auto;
  background: var(--ink);
  color: white;
  height: auto;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  width: auto;
  z-index: 20;
}

.site-header {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--sea);
  border-radius: var(--radius);
  color: white;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-mark svg {
  height: 32px;
  width: 32px;
}

.brand-mark path:first-child {
  fill: white;
  opacity: 0.95;
}

.brand-mark path:last-child {
  fill: none;
  stroke: var(--sea);
  stroke-linecap: round;
  stroke-width: 3;
}

.brand-name,
.brand-place {
  display: block;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand-place {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--sea);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  text-decoration: none;
}

.nav-cta {
  background: var(--ink);
  color: white;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.nav-toggle svg {
  height: 24px;
  width: 24px;
}

.nav-toggle path,
.icon-circle path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  min-height: 78svh;
  overflow: hidden;
  position: relative;
}

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

.hero-home img {
  object-position: center;
}

.hero-initiative img {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 37, 42, 0.78), rgba(8, 37, 42, 0.4) 42%, rgba(8, 37, 42, 0.08) 75%),
    linear-gradient(0deg, rgba(8, 37, 42, 0.26), rgba(8, 37, 42, 0));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  margin: 0 auto;
  max-width: var(--container);
  padding: clamp(84px, 15svh, 150px) 0 64px;
  position: relative;
}

.hero-content.narrow {
  max-width: min(920px, calc(100vw - 40px));
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd995;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.9rem);
  letter-spacing: 0;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0;
  margin-bottom: 12px;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  border: 1px solid transparent;
}

.button.primary {
  background: var(--coral);
  color: white;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
}

.intro-band {
  background: var(--soft);
}

.split {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.copy-stack p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 16px;
}

.copy-stack a {
  color: var(--sea);
  font-weight: 800;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.initiative-feature,
.donation-layout,
.contact-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.feature-media img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-copy {
  align-self: center;
}

.label {
  background: rgba(11, 111, 115, 0.1);
  border-radius: 999px;
  color: var(--sea-deep);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 7px 12px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stat-row {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
  padding: 18px 0;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  color: var(--sea);
  font-size: 1.18rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  color: var(--ink);
  font-weight: 900;
  text-underline-offset: 5px;
}

.support-band {
  background: var(--sea-deep);
  color: white;
}

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

.support-grid article {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 28px;
}

.support-grid p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.icon-circle {
  align-items: center;
  background: rgba(255, 217, 149, 0.18);
  border-radius: 50%;
  color: #ffd995;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

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

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

.contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.contact-layout p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.contact-panel,
.sticky-note {
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: white;
  padding: 28px;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-panel a,
.contact-panel p {
  color: white;
  font-size: 1rem;
  font-weight: 750;
  margin: 0;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer {
  background: #10252b;
  color: white;
  padding: 48px 0 24px;
}

.footer-layout {
  align-items: start;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.footer-brand .brand-place,
.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}

.footer-links a {
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
}

.donation-layout {
  align-items: start;
  grid-template-columns: minmax(290px, 380px) minmax(0, 1fr);
}

.sticky-note {
  background: var(--sea);
  position: sticky;
  top: 104px;
}

.sticky-note .eyebrow {
  color: #ffd995;
}

.sticky-note p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.sticky-note .button.primary {
  background: white;
  color: var(--sea-deep);
  margin-top: 10px;
}

.guidance-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.guidance-steps article {
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 20px;
}

.guidance-steps span {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.guidance-steps h3,
.guidance-steps p {
  grid-column: 2;
  margin: 0;
}

.guidance-steps p {
  font-size: 0.98rem;
}

.list-section {
  background: var(--soft);
}

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

.item-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.item-grid article:nth-child(2n) {
  border-top: 4px solid var(--sea);
}

.item-grid article:nth-child(2n + 1) {
  border-top: 4px solid var(--coral);
}

.item-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.cannot-section {
  background: #f9fbf9;
}

.restricted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.restricted-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  padding: 9px 13px;
}

.small-print {
  color: var(--muted);
  margin: 28px 0 0;
}

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

  .nav-links {
    align-items: stretch;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 44px rgba(21, 44, 51, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 76px 0 auto;
    padding: 14px 20px 24px;
    position: fixed;
  }

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

  .nav-links a {
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero {
    min-height: 72svh;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 37, 42, 0.82), rgba(8, 37, 42, 0.5) 58%, rgba(8, 37, 42, 0.18)),
      linear-gradient(0deg, rgba(8, 37, 42, 0.34), rgba(8, 37, 42, 0));
  }

  .split,
  .initiative-feature,
  .donation-layout,
  .contact-layout,
  .support-grid,
  .item-grid {
    grid-template-columns: 1fr;
  }

  .sticky-note {
    position: static;
  }

  .support-grid article {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-place {
    font-size: 0.7rem;
  }

  .nav-links {
    inset: 68px 0 auto;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .footer-layout,
  .footer-bottom {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .guidance-steps h3,
  .guidance-steps p {
    grid-column: auto;
  }
}
