:root {
  --forest: #0b2f22;
  --forest-deep: #061c14;
  --cream: #f8f4e9;
  --paper: #fffdf7;
  --gold: #b68a43;
  --ink: #18352a;
  --muted: #5e6f67;
  --line: #dfe5dc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

.site-header {
  background: var(--forest-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.header-inner, .page, .footer-inner {
  width: min(100% - 36px, 920px);
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: .02em;
}

.nav { display: flex; gap: 20px; font-size: .9rem; }
.nav a { color: rgba(255,255,255,.78); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }

.page { padding: 68px 0 84px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 750;
  font-size: .77rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.18;
  color: var(--forest);
}

h1 { margin: 0; font-size: clamp(2.25rem, 6vw, 4rem); }
h2 { margin: 42px 0 12px; font-size: clamp(1.4rem, 3vw, 1.85rem); }
h3 { margin: 26px 0 8px; color: var(--forest); font-size: 1rem; }

.lead { max-width: 760px; margin: 18px 0 8px; color: var(--muted); font-size: 1.08rem; }
.updated { margin: 14px 0 36px; color: var(--muted); font-size: .86rem; }

.document {
  padding: clamp(24px, 5vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(11,47,34,.07);
}

p, li { max-width: 74ch; }
ul, ol { padding-left: 1.3rem; }
li + li { margin-top: 8px; }

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  background: #f3eee0;
  border-left: 4px solid var(--gold);
  border-radius: 4px 12px 12px 4px;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  min-height: 44px;
  padding: 4px 0 16px 54px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: 750;
  font-size: .86rem;
}

.button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--forest);
  text-decoration: none;
  font-weight: 700;
}
.button:hover { background: #14533c; }

.site-footer { padding: 30px 0; color: rgba(255,255,255,.62); background: var(--forest-deep); font-size: .84rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #fff; }

@media (max-width: 680px) {
  .header-inner { padding: 15px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
  .nav { gap: 14px; flex-wrap: wrap; font-size: .8rem; }
  .page { padding-top: 44px; }
  .footer-inner { flex-direction: column; }
}
