:root {
  color-scheme: light;
  --ink: #241f1b;
  --muted: #6f6258;
  --paper: #fffaf2;
  --panel: #ffffff;
  --line: #ded2c3;
  --accent: #7f1d2d;
  --accent-dark: #57131f;
  --gold: #b88942;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, #f3eadc 100%);
}

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

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 48px;
}

.hero.compact {
  min-height: 56vh;
}

.icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(36, 31, 27, 0.16);
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

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

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

article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

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

.updated {
  color: var(--muted);
  font-weight: 700;
}

.policy {
  max-width: 840px;
}

.policy h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 28px;
}

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

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

.policy li + li {
  margin-top: 8px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

footer {
  width: min(1080px, calc(100% - 32px));
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer a {
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 48px;
  }

  .grid,
  .faq,
  .split {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
