:root {
  --forest: #073b36;
  --forest-deep: #032925;
  --orange: #f4512c;
  --gold: #f5ad17;
  --cream: #fffaf0;
  --paper: #f8f2e6;
  --ink: #17302d;
  --muted: #64736f;
  --white: #ffffff;
  --line: rgba(7, 59, 54, 0.14);
  --shadow: 0 24px 70px rgba(4, 42, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(7, 59, 54, 0.09);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--forest);
  text-decoration: none;
}

.brand img {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  object-fit: contain;
}

.brand-copy {
  display: none;
  flex-direction: column;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: #435955;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--forest);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 173, 23, 0.2), transparent 25rem),
    var(--forest-deep);
  color: var(--white);
}

.hero::after {
  position: absolute;
  width: 37rem;
  height: 37rem;
  border: 8rem solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
  right: -12rem;
  bottom: -21rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7.3vw, 7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ff6440;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.hero-mark {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-mark::before {
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-mark::after {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: min(370px, 85%);
  border-radius: 2rem;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.22));
}

.section {
  padding-block: 7rem;
}

.section.soft {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: end;
}

.kicker {
  margin-bottom: 0.8rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.idea-card {
  min-height: 250px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(7, 59, 54, 0.05);
}

.idea-card .letter {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--forest);
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.idea-card h3 {
  margin-bottom: 0.5rem;
  color: var(--forest);
  font-size: 1.1rem;
}

.idea-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.impact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
}

.impact-copy,
.impact-quote {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.impact-copy h2 {
  color: var(--white);
}

.impact-copy p {
  max-width: 560px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.impact-quote {
  display: flex;
  align-items: center;
  background: var(--forest);
}

.impact-quote blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 740;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.page-hero {
  padding-block: 6rem;
  background: var(--forest-deep);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.statement {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.prose {
  color: var(--muted);
  font-size: 1.08rem;
}

.prose h2 {
  margin-bottom: 1.1rem;
  font-size: 2.1rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.placeholder-card {
  min-height: 280px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
}

.avatar-placeholder {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange);
  font-size: 1.7rem;
  font-weight: 850;
}

.placeholder-card h2,
.event-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.placeholder-card p,
.event-card p {
  color: var(--muted);
}

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

.event-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
}

.event-date {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-status {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.donation-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.donation-copy,
.donation-status {
  padding: clamp(2rem, 6vw, 5rem);
}

.donation-copy h2 {
  max-width: 640px;
}

.donation-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.support-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--forest);
  font-weight: 720;
}

.support-list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.donation-status {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
}

.donation-status .status-label {
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.donation-status h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.donation-status p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  padding-block: 3.5rem;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer .brand {
  color: var(--white);
}

.footer-note {
  max-width: 460px;
  margin: 0;
  text-align: right;
}

@media (max-width: 940px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    padding-block: 0.8rem;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-grid,
  .section-heading,
  .impact-band,
  .content-grid,
  .donation-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 5rem;
  }

  .hero-mark {
    min-height: 300px;
  }

  .hero-mark::before {
    width: 290px;
    height: 290px;
  }

  .ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placeholder-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav a {
    padding-inline: 0.7rem;
    font-size: 0.83rem;
  }

  .hero-grid,
  .section,
  .page-hero {
    padding-block: 4.2rem;
  }

  .ideas-grid {
    grid-template-columns: 1fr;
  }

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

  .idea-card .letter {
    margin-bottom: 1.5rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .event-status {
    width: fit-content;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
