:root {
  color-scheme: light;
  --ink: #1a1614;
  --muted: #5e564f;
  --soft: #f8f2ea;
  --surface: #fffdf8;
  --line: #e7d9c8;
  --bronze: #a6662c;
  --green: #e9f0e8;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background: var(--soft);
}

.wrap {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.wordmark .period {
  color: var(--bronze);
  font-family: "Iowan Old Style", Georgia, serif;
  font-weight: 700;
}

.signin {
  color: color-mix(in srgb, var(--ink) 58%, transparent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: end;
  padding: 74px 0 54px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: color-mix(in srgb, var(--ink) 76%, transparent);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.38;
}

.mark {
  width: 220px;
  justify-self: end;
}

.band {
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  display: block;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.card p {
  margin: 0;
}

.answer {
  max-width: 850px;
  padding: 58px 0 80px;
}

.answer p {
  margin: 0 0 20px;
}

.answer ul {
  margin: 0 0 28px;
  padding-left: 22px;
}

.answer li {
  margin: 10px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.direct-answer {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.direct-answer p {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.related a,
.button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fact {
  padding: 18px;
  border-radius: 8px;
  background: var(--green);
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100vw - 28px, 1120px);
  }

  .nav {
    padding: 22px 0;
  }

  .wordmark {
    font-size: 24px;
  }

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

  .mark {
    width: 132px;
    justify-self: start;
  }

  .grid,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}
