* {
  box-sizing: border-box;
}

:root {
  --navy: #0b3a78;
  --navy-dark: #082b59;
  --gold: #df9f08;
  --green: #4f8b2f;
  --cream: #f8f4ea;
  --light: #f5f8fb;
  --text: #243444;
  --muted: #5a6875;
  --white: #ffffff;
  --border: #dbe4ec;
  --shadow: 0 20px 50px rgba(11, 58, 120, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

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

a {
  color: var(--navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--navy);
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 790px;
}

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

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link img {
  width: 285px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  padding: 9px 13px;
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(223, 159, 8, 0.12), transparent 35%),
    linear-gradient(135deg, var(--cream), #eef5f8);
  padding: 88px 0 94px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

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

.eyebrow-light {
  color: #d7ecce;
}

h1,
h2,
h3 {
  color: var(--navy-dark);
  line-height: 1.2;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.lead {
  font-size: 1.18rem;
  color: #33495c;
  max-width: 750px;
}

.button-row {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 58, 120, 0.2);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--navy-dark);
}

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

.hero-logo-card img {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-logo-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 58, 120, 0.08);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(11, 58, 120, 0.06);
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--cream);
  color: var(--gold);
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: 0;
}

.step > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.donate-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.donate-section h2,
.donate-section h3 {
  color: var(--white);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 44px;
  align-items: start;
}

.pending-notice {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

.donation-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.small-text {
  font-size: 0.88rem;
  opacity: 0.88;
}

.contact-block {
  text-align: center;
}

.contact-email {
  margin: 16px 0 4px;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-address {
  margin-top: 4px;
}

.site-footer {
  background: #061f3c;
  color: #dfe9f0;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 2px 0 0;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 78px;
  }

  .logo-link img {
    width: 215px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

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

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .card-grid,
  .split-grid,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 62px 0 70px;
  }

  .hero-logo-card img {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-logo-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .section {
    padding: 66px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .logo-link img {
    width: 175px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }

  .contact-email {
    font-size: 1.05rem;
  }
}
