* {
  box-sizing: border-box;
}

:root {
  --navy: #062b6f;
  --deep: #031f52;
  --green: #2e7d32;
  --lime: #64b246;
  --gold: #e59a12;
  --purple: #6b2fa0;
  --white: #ffffff;
  --text: #10213f;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

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

.topbar {
  background: var(--deep);
  color: white;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
}

.socials {
  margin-left: auto;
  letter-spacing: 12px;
}

.header {
  background: white;
  box-shadow: 0 3px 18px rgba(0,0,0,.08);
}

.nav {
  max-width: 1240px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 34px;
  letter-spacing: 1px;
}

.brand span {
  display: block;
  color: var(--green);
  font-size: 28px;
  letter-spacing: 10px;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--purple);
  font-size: 16px;
  letter-spacing: 8px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.nav-links a {
  padding: 12px 0;
}

.nav-links .active {
  color: var(--green);
  border-bottom: 3px solid var(--green);
}

.donate-nav {
  background: var(--purple);
  color: white !important;
  padding: 14px 22px !important;
  border-radius: 6px;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 24px;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 70px 5%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,31,82,.96) 0%, rgba(3,31,82,.86) 42%, rgba(3,31,82,.25) 100%),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  color: white;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.15;
  margin: 0 0 26px;
}

.hero h1 span {
  color: var(--lime);
}

.hero p {
  font-size: 21px;
  line-height: 1.75;
  max-width: 690px;
  margin-bottom: 38px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.primary,
.outline,
.purple-btn,
.green-btn,
.donate-now {
  display: inline-block;
  border-radius: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary {
  background: var(--purple);
  color: white;
  padding: 18px 38px;
}

.outline {
  border: 2px solid rgba(255,255,255,.9);
  color: white;
  padding: 16px 38px;
}

.hero-logo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(480px, 90%);
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.25));
}

.donation-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  color: var(--text);
  width: min(410px, 100%);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

.donation-icon {
  background: var(--green);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 44px;
}

.donation-card strong {
  display: block;
  line-height: 1.5;
  margin-bottom: 10px;
}

.donate-now {
  background: var(--green);
  color: white;
  padding: 12px 24px;
}

.about-section {
  max-width: 1240px;
  margin: auto;
  padding: 64px 28px;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-photo {
  min-height: 360px;
}

.photo-placeholder {
  height: 360px;
  border-radius: 12px;
  background:
    linear-gradient(rgba(5,35,88,.1), rgba(5,35,88,.15)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: 24px;
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-copy h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 22px;
}

.about-copy p {
  line-height: 1.8;
}

.purple-btn {
  background: var(--purple);
  color: white;
  padding: 18px 32px;
  margin-top: 20px;
}

.values {
  border-left: 1px solid #d8dfeb;
  padding-left: 40px;
  display: grid;
  gap: 30px;
}

.value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.circle {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 900;
}

.green { background: var(--green); }
.gold { background: var(--gold); }
.purple { background: var(--purple); }

.value h3 {
  color: var(--navy);
  font-size: 24px;
  margin: 0 0 6px;
}

.value p {
  margin: 0;
  line-height: 1.65;
}

.cta-strip {
  background: linear-gradient(90deg, var(--purple), #4d207e);
  color: white;
  padding: 30px 8%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.heart {
  width: 92px;
  height: 92px;
  border: 6px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 50px;
}

.cta-strip h2 {
  font-size: 34px;
  margin: 0;
}

.cta-strip p {
  margin: 5px 0 0;
}

.green-btn {
  background: var(--lime);
  color: white;
  padding: 18px 38px;
}

.footer {
  background: var(--deep);
  color: white;
  padding: 52px 6% 26px;
}

.footer-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr .75fr 1fr 1.25fr;
  gap: 48px;
}

.footer-logo {
  width: 140px;
  border-radius: 8px;
}

.footer h3 {
  color: var(--lime);
  text-transform: uppercase;
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 10px 0;
}

.footer-donate {
  background: var(--purple);
  padding: 16px;
  border-radius: 7px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 18px !important;
}

.newsletter {
  display: flex;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 16px;
  border-radius: 6px 0 0 6px;
}

.newsletter button {
  border: 0;
  background: var(--purple);
  color: white;
  padding: 0 18px;
  border-radius: 0 6px 6px 0;
  font-weight: 800;
  text-transform: uppercase;
}

.copyright {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 18px;
  }

  .socials {
    margin-left: 0;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand span {
    font-size: 18px;
    letter-spacing: 6px;
  }

  .brand small {
    font-size: 11px;
    letter-spacing: 5px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 150px;
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    flex-direction: column;
    align-items: stretch;
    z-index: 10;
  }

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

  .hero,
  .about-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .values {
    border-left: 0;
    padding-left: 0;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .newsletter {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 6px;
  }
}
