:root {
  --ink: #29251f;
  --muted: #6b645b;
  --paper: #fbfaf7;
  --cream: #f2ece2;
  --gold: #a36a22;
  --teal: #2f7773;
  --line: #ded5c8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: var(--teal); }
img { max-width: 100%; }
.site { width: min(1160px, 96%); margin: 12px auto 42px; }
.banner { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
.nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.nav a {
  padding: 12px 7px;
  color: #fff;
  background: #151515;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.nav a:hover, .nav a.active { background: #4f4b45; }
.hero {
  padding: clamp(32px, 7vw, 80px) clamp(20px, 7vw, 82px);
  text-align: center;
  background: linear-gradient(135deg, #efe7da, #faf8f3 55%, #e5efed);
  border: 1px solid var(--line);
  border-top: 0;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.16; }
h1 { margin: 0 auto 16px; max-width: 850px; font-family: Georgia, serif; font-size: clamp(35px, 6vw, 64px); font-weight: 500; }
h2 { margin: 0 0 12px; font-family: Georgia, serif; font-size: clamp(28px, 4vw, 42px); font-weight: 500; }
h3 { margin: 0 0 8px; font-size: 20px; }
.lead { max-width: 790px; margin: 0 auto 25px; color: var(--muted); font-size: 19px; }
.buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.button {
  display: inline-block;
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.button.alt { background: transparent; color: var(--ink); }
.section { padding: clamp(34px, 6vw, 70px) clamp(12px, 3vw, 30px); }
.section.intro { text-align: center; }
.section.intro > p { max-width: 800px; margin: 0 auto 22px; color: var(--muted); }
.choices, .steps, .facts { display: grid; gap: 18px; }
.choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: step; }
.facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(60, 45, 25, .06);
}
.card p { margin: 8px 0 18px; color: var(--muted); }
.step { counter-increment: step; }
.step::before {
  content: counter(step);
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}
.example {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 18px;
  align-items: start;
}
.example figure { margin: 0; }
.example img { display: block; width: 100%; border: 1px solid var(--line); background: #fff; }
.example figcaption { padding: 9px 3px; color: var(--muted); font-size: 14px; }
.notice {
  margin: 22px 0;
  padding: 16px 19px;
  border-left: 5px solid var(--gold);
  background: var(--cream);
}
.archive-frame {
  width: 100%;
  height: 760px;
  border: 1px solid var(--line);
  background: #fff;
}
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.contact-box { padding: 24px; background: var(--cream); border: 1px solid var(--line); }
.footer {
  padding: 28px 12px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.small { font-size: 14px; color: var(--muted); }
@media (max-width: 820px) {
  .nav { grid-template-columns: repeat(2, 1fr); }
  .choices, .facts, .example, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .archive-frame { height: 620px; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .archive-frame { height: 540px; }
}
