:root {
  color-scheme: light;
  --ink: #193832;
  --muted: #58706b;
  --paper: #f7fbf8;
  --surface: #ffffff;
  --green: #2e7d5b;
  --green-dark: #1d5d42;
  --coral: #dc694e;
  --yellow: #f4bd44;
  --rule: #cbded7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-rounded, "SF Pro Rounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--green-dark);
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.site-header {
  min-height: 68px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-weight: 700;
  text-decoration: none;
}

.hero {
  min-height: min(76svh, 710px);
  background-color: #f6eee0;
  background-image: url("assets/feature-graphic.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  align-items: center;
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  justify-content: flex-end;
}

.hero-copy {
  width: min(47%, 520px);
  color: #17332f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 18px rgba(255, 255, 255, 0.8);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.18;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.hero p {
  max-width: 46ch;
  margin: 0 0 28px;
  font-size: 1.12rem;
  font-weight: 650;
}

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

.button {
  min-height: 48px;
  padding: 11px 18px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  text-shadow: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
}

.info-band {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.info-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.info-grid h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

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

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

.policy-heading,
.policy-content,
.site-footer-inner {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
}

.policy-heading {
  padding: 48px 0 38px;
}

.policy-heading h1 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
}

.meta {
  margin: 3px 0;
  color: var(--muted);
}

.policy-content {
  padding: 38px 0 58px;
}

.policy-content h2 {
  margin: 36px 0 10px;
  font-size: 1.25rem;
}

.policy-content p,
.policy-content ul {
  margin: 0 0 16px;
}

.policy-content ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--surface);
  color: var(--muted);
}

.site-footer-inner {
  padding: 24px 0 36px;
}

@media (max-width: 760px) {
  .nav {
    min-height: 62px;
  }

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

  .hero {
    min-height: 73svh;
    align-items: end;
    background-position: 37% center;
  }

  .hero-content {
    padding: 34px 0 40px;
    justify-content: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 33svh;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0;
  }
}

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