:root {
  color-scheme: light;
  --ink: #102039;
  --muted: #5d6a6f;
  --cream: #fffaf0;
  --paper: #ffffff;
  --gold: #e4b452;
  --green: #577a34;
  --line: rgba(16, 32, 57, 0.14);
  --shadow: 0 28px 80px rgba(16, 32, 57, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(680px, 92vh, 900px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #dbe6df;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 250, 240, 0.82) 37%, rgba(255, 250, 240, 0.2) 72%),
    linear-gradient(0deg, rgba(16, 32, 57, 0.52) 0%, rgba(16, 32, 57, 0) 48%);
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 3vw, 32px);
  color: var(--ink);
}

.brand,
.nav {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 38px rgba(16, 32, 57, 0.12);
}

.brand {
  gap: 10px;
  padding: 6px 14px 6px 7px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.nav {
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
}

.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #34434b;
  font-size: 0.84rem;
  font-weight: 800;
}

.nav a:hover {
  background: rgba(228, 180, 82, 0.22);
}

.hero__content {
  width: min(980px, calc(100% - 64px));
  margin-left: clamp(42px, 6vw, 126px);
  padding-top: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.8vw, 0.84rem);
}

h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

p {
  overflow-wrap: anywhere;
}

.hero-title {
  max-width: 920px;
  color: #071b3f;
  font-size: clamp(4.2rem, 7.4vw, 8.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #233441;
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.55;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(16, 32, 57, 0.14);
}

.button--primary {
  background: var(--gold);
  color: #061739;
}

.button--quiet {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 32, 57, 0.14);
  color: #1d3447;
  backdrop-filter: blur(14px);
}

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

.section__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0;
}

.section--intro {
  position: relative;
  margin-top: -28px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.intro-grid,
.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.final-cta h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.intro-copy p,
.section-heading p,
.final-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.intro-copy p + p {
  margin-top: 16px;
}

.section--hope {
  background: #f8fbf7;
}

.hope-panel {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

blockquote {
  max-width: 940px;
  margin: 0;
}

blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  margin-top: 18px;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.need-card {
  min-height: 158px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff8e7 100%);
}

.need-card h3 {
  color: var(--ink);
  font-size: 1.28rem;
}

.need-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  background: var(--ink);
  color: #fff;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 18px;
}

.actions--final {
  justify-content: flex-end;
  align-self: center;
  margin-top: 0;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.82) 45%, rgba(16, 32, 57, 0.62) 100%),
      linear-gradient(90deg, rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.2));
  }

  .hero__content {
    width: min(100% - 28px, 620px);
    margin: 0 auto clamp(42px, 8vh, 72px);
    padding-top: 0;
  }

  .hero-title {
    font-size: clamp(3.1rem, 12vw, 4.8rem);
    line-height: 0.94;
  }

  .lead {
    color: #17293a;
  }

  .intro-grid,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

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

  .actions--final {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 18px 14px;
  }

  .brand {
    max-width: calc(100vw - 28px);
  }

  .brand span:last-child {
    font-size: 0.82rem;
  }

  .hero__content {
    width: calc(100% - 28px);
  }

  .hero-title {
    font-size: clamp(2.65rem, 11vw, 3.45rem);
  }

  .lead {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.52;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .section__inner {
    width: calc(100% - 28px);
  }

  .intro-grid h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  blockquote p {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

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