:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5d6874;
  --paper: #fbf8f1;
  --white: #ffffff;
  --orange: #ef6b2d;
  --orange-dark: #b94017;
  --green: #2f7c4f;
  --blue: #2467a8;
  --line: rgba(23, 33, 43, 0.14);
  --shadow: 0 24px 80px rgba(23, 33, 43, 0.18);
}

* {
  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;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 40px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(23, 33, 43, 0.34);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero {
  position: relative;
  min-height: 84svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0f1a24;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 20, 28, 0.8), rgba(12, 20, 28, 0.42) 45%, rgba(12, 20, 28, 0.18)),
    linear-gradient(0deg, rgba(12, 20, 28, 0.78), rgba(12, 20, 28, 0) 55%);
}

.hero-content {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 138px 0 76px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffd39a;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--orange-dark);
}

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

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.statement-section {
  padding: 76px 0;
  background: var(--white);
}

.statement-copy {
  color: var(--muted);
  font-size: 1.15rem;
}

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

.mission-section {
  padding: 84px 0;
}

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

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

.mission-card {
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 33, 43, 0.06);
}

.card-number {
  display: block;
  margin-bottom: 38px;
  color: var(--blue);
  font-weight: 900;
}

.mission-card p,
.give-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.give-section {
  padding: 84px 0;
  background: #eaf3ec;
}

.give-list {
  display: grid;
  gap: 20px;
}

.give-item {
  border-left: 4px solid var(--green);
  padding-left: 20px;
}

.contact-section {
  padding: 78px 0;
  background: var(--white);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-band h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 40px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 18px 24px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding: 118px 0 54px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section-inner {
    width: min(100% - 32px, 680px);
  }

  .two-column,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .statement-section,
  .mission-section,
  .give-section,
  .contact-section {
    padding: 58px 0;
  }

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

  .card-number {
    margin-bottom: 22px;
  }

  .contact-band,
  .site-footer {
    display: grid;
  }

  .contact-band {
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.95rem;
  }

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

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.72rem;
  }
}
