:root {
  color-scheme: light;
  --paper: #f7f5ee;
  --ink: #1f251d;
  --muted: #687063;
  --line: rgba(31, 37, 29, 0.14);
  --green: #5f7448;
  --gold: #edae2c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.55;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

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

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.status,
.back {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  color: var(--green);
}

.back {
  text-decoration: none;
}

.hero {
  padding: 13vh 0 12vh;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.lede {
  max-width: 660px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.availability {
  width: fit-content;
  margin: 34px 0 0;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps article {
  min-height: 275px;
  padding: 38px 34px 42px 0;
}

.steps article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.steps span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.steps h2,
.legal h2 {
  margin: 46px 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.steps h2 {
  margin-top: 64px;
  font-size: 1.22rem;
}

.steps p,
.note,
.legal p {
  color: var(--muted);
}

.steps p {
  max-width: 290px;
  margin-bottom: 0;
}

.note {
  padding: 72px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
}

.note p {
  max-width: 820px;
  margin: 0;
}

.footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer nav {
  display: flex;
  gap: 24px;
}

.footer a {
  text-underline-offset: 4px;
}

.legal {
  max-width: 760px;
  padding: 92px 0 110px;
}

.legal h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal .updated {
  margin: 22px 0 58px;
  font-size: 0.88rem;
}

.legal p {
  font-size: 1.04rem;
}

.legal a {
  color: var(--ink);
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 76px;
  }

  .hero {
    min-height: 560px;
    padding: 80px 0;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

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

  .steps article,
  .steps article + article {
    min-height: 0;
    padding: 32px 0 34px;
    border-left: 0;
  }

  .steps article + article {
    border-top: 1px solid var(--line);
  }

  .steps h2 {
    margin-top: 30px;
  }

  .footer {
    min-height: 96px;
  }

  .legal {
    padding: 70px 0 90px;
  }
}
