:root {
  --background: #faf8f3;
  --surface: #fffdf8;
  --surface-warm: #f2eee4;
  --foreground: #302d28;
  --muted: #716c63;
  --accent: #547760;
  --accent-dark: #395241;
  --line: #ded8cc;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
}

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

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

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 243, 0.94);
}

.site-header__inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  flex: 0 0 auto;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
}

.status {
  padding: 0.45rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 4rem;
  padding-block: 5.75rem;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 39rem;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  max-width: 15ch;
  margin-top: 1.5rem;
  font-size: 2.25rem;
  letter-spacing: normal;
  line-height: 1.05;
}

.hero__lead {
  max-width: 39rem;
  margin-top: 2rem;
  color: var(--foreground);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero__image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: var(--surface-warm);
}

.hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
}

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

.purpose__grid {
  display: grid;
  gap: 3rem;
  padding-block: 5.5rem;
}

.purpose h2,
.check-areas h2,
.outcomes h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.purpose__body {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.situation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.5rem;
}

.situation-list li {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--foreground);
  font-size: 0.75rem;
  line-height: 1.2;
}

.check-areas {
  padding-block: 5.75rem 6.5rem;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.section-heading > p {
  max-width: 25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.check-area-grid {
  display: grid;
  gap: 1px;
  margin-top: 3.75rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  overflow: hidden;
  background: var(--line);
}

.check-area-card {
  min-height: 13.5rem;
  padding: 1.75rem;
  background: var(--surface);
}

.number {
  color: var(--accent-dark);
  font-family: var(--display);
  font-size: 0.9rem;
}

.check-area-card h3 {
  margin-top: 1.25rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.check-area-card p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

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

.outcomes__grid {
  display: grid;
  gap: 3.5rem;
  padding-block: 5.75rem 6.5rem;
}

.outcomes__intro > p:last-child {
  max-width: 28rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.outcome-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: var(--surface);
}

.outcome-list p {
  font-size: 1rem;
  line-height: 1.55;
}

.prefooter {
  background: var(--foreground);
  color: var(--background);
}

.prefooter__inner {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  max-width: 52rem;
  padding-block: 6.5rem;
  text-align: center;
}

.prefooter h2 {
  max-width: 20ch;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.prefooter p {
  max-width: 35rem;
  color: rgba(250, 248, 243, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--background);
  color: var(--foreground);
}

.site-footer__inner {
  display: grid;
  gap: 1.75rem;
  padding-block: 2.5rem;
}

.brand--footer .brand__name {
  font-size: 1rem;
}

.privacy-notice {
  max-width: 47rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

@media (min-width: 48rem) {
  .shell {
    width: min(100% - 4rem, 72rem);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 1fr);
    padding-block: 7rem;
  }

  h1 {
    font-size: 3.4rem;
  }

  .purpose__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 5rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr);
  }

  .check-area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .outcomes__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }

  .site-footer__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 4rem;
  }

  .privacy-notice {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 47.99rem) {
  .site-header__inner {
    min-height: 4.25rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .status {
    padding-inline: 0.6rem;
    font-size: 0.65rem;
  }

  .hero__grid {
    gap: 3.25rem;
    padding-block: 4.25rem;
  }

  .hero__image {
    width: min(100%, 32rem);
    margin-inline: auto;
  }

  .purpose__grid,
  .check-areas,
  .outcomes__grid {
    padding-block: 4.25rem;
  }

  .check-area-grid {
    margin-top: 2.75rem;
  }

  .check-area-card {
    min-height: auto;
  }

  .prefooter__inner {
    padding-block: 5.25rem;
  }
}

@media (min-width: 40rem) and (max-width: 47.99rem) {
  h1 {
    font-size: 3rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--background);
    backdrop-filter: none;
  }
}
