:root {
  --ink: #17211f;
  --muted: #5d6b68;
  --teal: #0f665d;
  --teal-dark: #084d47;
  --coral: #d65f4f;
  --gold: #e7b94f;
  --mint: #e7f4ef;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #dce5e0;
  --shadow: 0 20px 60px rgba(18, 39, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(220, 229, 224, 0.86);
  backdrop-filter: blur(16px);
}

.brand img,
.footer-brand img {
  width: 196px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

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

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--teal);
}

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

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 34, 31, 0.9), rgba(8, 34, 31, 0.56), rgba(8, 34, 31, 0.08)),
    linear-gradient(0deg, rgba(8, 34, 31, 0.65), transparent 44%);
}

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

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 8vw, 88px) clamp(18px, 6vw, 76px);
  padding-top: 130px;
}

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

.hero .eyebrow {
  color: #ffd9d4;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 640px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

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

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.intro,
.programs,
.trust,
.leadership,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.intro-text,
.contact-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.program-summary {
  margin-top: 30px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 35, 0.08);
}

.program-summary p {
  color: var(--muted);
}

.program-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.program-steps span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 850;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 280px;
}

.image-strip img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

.program-card,
.people-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 35, 0.08);
}

.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.program-card p,
.people-grid p,
.trust-list p,
.care-network-copy p {
  color: var(--muted);
}

.impact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--teal);
}

.impact-band .eyebrow {
  color: #ffe5ab;
}

.impact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

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

.metrics div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.metrics strong {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.metrics span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

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

.trust-list article {
  padding: 26px;
  border-top: 4px solid var(--gold);
  background: var(--white);
}

.care-network-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--mint);
}

.care-network-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.care-network-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 86px);
}

.care-network-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 720;
}

.small-note {
  margin-top: 22px;
  padding: 16px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

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

.people-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.people-grid h3,
.people-grid p {
  padding-inline: 22px;
}

.people-grid h3 {
  margin-top: 22px;
}

.people-grid p {
  padding-bottom: 22px;
}

.donate-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.donate-section .eyebrow {
  color: #ffe5ab;
}

.donate-section p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.donation-form,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

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

textarea {
  resize: vertical;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--ink);
  font-weight: 800;
}

.contact-details span {
  padding: 12px 14px;
  border-radius: 8px;
}

.contact-email {
  color: var(--teal-dark);
  background: var(--mint);
}

.contact-phone {
  color: #7a342b;
  background: #fde7e2;
}

.contact-address {
  color: #6a4a00;
  background: #fff2c8;
}

.contact-form {
  align-self: start;
}

.bottom-connect {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 5vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.bottom-connect h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

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

.connect-link {
  display: grid;
  min-height: 126px;
  align-content: space-between;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 35, 0.08);
}

.connect-link span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.connect-link strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.facebook {
  background: #275ea8;
}

.instagram {
  background: #b23a6f;
}

.donate-link {
  background: var(--teal);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  padding: 34px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.82);
  background: #0b1513;
}

.footer-small {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .menu-button span {
    width: 21px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 22px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .programs,
  .trust,
  .leadership,
  .contact,
  .impact-band,
  .care-network-section,
  .donate-section,
  .bottom-connect,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .trust-list,
  .people-grid,
  .metrics,
  .connect-actions {
    grid-template-columns: 1fr;
  }

  .care-network-image img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .brand img,
  .footer-brand img {
    width: 166px;
  }

  .hero {
    min-height: 82vh;
  }

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

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

  .image-strip {
    grid-template-columns: 1fr;
  }

  .section,
  .impact-band,
  .donate-section {
    padding-block: 54px;
  }
}
