:root {
  color-scheme: light;
  --ink: #18322d;
  --muted: #526c66;
  --teal: #168d86;
  --coral: #ef6a5b;
  --gold: #e8ac45;
  --canvas: #f6f8f7;
  --surface: #ffffff;
  --line: #d7e4e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav,
.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.photo-hero {
  min-height: min(660px, 78vh);
  position: relative;
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink) center 44% / cover no-repeat;
  color: white;
}

.photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 39, 34, 0.68);
}

.hero-copy {
  padding: 88px 0 68px;
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 12px 0 20px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  max-width: 680px;
  color: white;
  font-size: 21px;
  line-height: 1.55;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.button-coral {
  border-color: var(--coral);
  background: var(--coral);
}

.button-light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.section {
  padding: 64px 0;
}

.section-white {
  background: var(--surface);
}

.section h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead,
.prose p,
.prose li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lead {
  max-width: 760px;
  margin: 0;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.outcome {
  border-top: 4px solid var(--teal);
  padding-top: 18px;
}

.outcome:nth-child(2) {
  border-color: var(--coral);
}

.outcome:nth-child(3) {
  border-color: var(--gold);
}

.outcome h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.outcome p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  padding: 70px 0 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 62px);
  max-width: 850px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.prose {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 76px;
}

.prose h2 {
  margin: 42px 0 10px;
  font-size: 27px;
  letter-spacing: 0;
}

.prose h3 {
  margin: 30px 0 6px;
  font-size: 20px;
}

.prose ul {
  padding-left: 22px;
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  background: #fff1ef;
}

.notice p {
  margin: 0;
  color: var(--ink);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 720px) {
  .nav,
  .wrap,
  .prose {
    width: min(100% - 28px, 1080px);
  }

  .nav-links a:first-child {
    display: none;
  }

  .photo-hero {
    min-height: 610px;
  }

  .hero-copy {
    padding: 64px 0 46px;
  }

  .hero-copy p {
    font-size: 18px;
  }

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

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