:root {
  --navy: #082b5f;
  --blue: #3f79bd;
  --green: #55a85b;
  --orange: #f26422;
  --yellow: #f5c733;
  --teal: #38b7ad;
  --purple: #9b2c94;
  --cream: #fffaf3;
  --soft: #f7f5f2;
  --text: #19314f;
  --muted: #6b7a90;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 43, 95, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6vw;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8, 43, 95, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy);
}
.brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }

.nav { display: flex; gap: 24px; font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.nav a:hover { color: var(--orange); }

.header-button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.header-button, .button.primary { background: var(--navy); color: var(--white); }
.button.primary:hover, .header-button:hover { transform: translateY(-2px); background: #0d397c; }
.button.secondary { border: 2px solid rgba(8, 43, 95, 0.16); color: var(--navy); background: var(--white); }
.button.secondary:hover { border-color: var(--orange); color: var(--orange); }
.button.light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }

.section { padding: 88px 6vw; }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 54px;
  background:
    radial-gradient(circle at top left, rgba(63,121,189,0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245,199,51,0.2), transparent 34%);
}

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

h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.05; }
h1 {
  max-width: 820px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.6rem, 9vw, 7.5rem);
}
h2 { font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: 1.35rem; margin-bottom: 12px; }

.hero-text { max-width: 650px; font-size: 1.2rem; color: var(--muted); margin: 24px 0 32px; }
.hero-actions, .donate-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(8,43,95,0.08);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-card img { width: min(340px, 100%); margin: 0 auto 24px; border-radius: 26px; }
.hero-card p { margin: 0; font-weight: 700; color: var(--navy); }

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
}
.section-copy { font-size: 1.08rem; color: var(--muted); }
.section-copy p:first-child { margin-top: 0; }

.soft-section { background: var(--soft); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.centered p { color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(8,43,95,0.08);
  border-top: 7px solid var(--blue);
}
.info-card p { color: var(--muted); margin-bottom: 0; }
.info-card.green { border-color: var(--green); }
.info-card.orange { border-color: var(--orange); }
.info-card.purple { border-color: var(--purple); }

.impact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}
.impact-section h2, .impact-section .eyebrow { color: var(--white); }
.impact-content p:not(.eyebrow) { color: rgba(255,255,255,0.78); font-size: 1.08rem; }
.impact-stats { display: grid; gap: 18px; }
.impact-stats div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 24px;
}
.impact-stats strong { display: block; font-size: 2rem; color: var(--yellow); margin-bottom: 6px; }

.donate-section {
  background:
    linear-gradient(135deg, rgba(85,168,91,0.95), rgba(56,183,173,0.95)),
    var(--teal);
}
.donate-box {
  max-width: 860px;
  margin: auto;
  text-align: center;
  color: var(--white);
}
.donate-box h2, .donate-box .eyebrow { color: var(--white); }
.donate-box p:not(.eyebrow) { font-size: 1.15rem; color: rgba(255,255,255,0.86); }
.donate-actions { justify-content: center; margin-top: 28px; }

.text-link { color: var(--orange); font-weight: 900; }

.contact-section { background: var(--white); }
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  background: var(--cream);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
label { display: grid; gap: 8px; font-weight: 800; color: var(--navy); }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(8,43,95,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(242,100,34,0.18); border-color: var(--orange); }

.site-footer {
  padding: 42px 6vw;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}
.site-footer img { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; margin: 0 auto 14px; }
.site-footer p { margin: 0 0 6px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer small { color: rgba(255,255,255,0.65); }

@media (max-width: 920px) {
  .nav { display: none; }
  .hero, .split-section, .impact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 5vw; }
  .brand span { display: none; }
  .header-button { padding: 0 16px; min-height: 40px; }
  .section { padding: 64px 5vw; }
  h1 { font-size: 3.35rem; }
  .card-grid { grid-template-columns: 1fr; }
  .hero-actions, .donate-actions { flex-direction: column; }
  .button { width: 100%; }
}

.projects-section {
  background: #ffffff;
}

.project-feature {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(135deg, rgba(69, 173, 82, 0.10), rgba(45, 174, 169, 0.10));
  border: 1px solid rgba(9, 38, 74, 0.10);
  border-radius: 28px;
  padding: 2rem;
}

.project-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #09264a;
  margin: 0 0 1rem;
}

.project-list {
  display: grid;
  gap: 1rem;
}

.project-list article {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 12px 28px rgba(9, 38, 74, 0.08);
}

.project-list h4 {
  margin: 0 0 0.4rem;
  color: #09264a;
  font-size: 1.1rem;
}

.project-list p {
  margin: 0;
}

@media (max-width: 800px) {
  .project-feature {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}
