:root {
  color: #20251f;
  background: #f3efe5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --ink: #20251f;
  --muted: #697065;
  --paper: #fffdf7;
  --line: #d9d3c3;
  --green: #315d4b;
  --green-dark: #244638;
  --amber: #b86635;
  --shadow: 0 14px 36px rgb(55 49 34 / 10%);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #fff8e5 0, transparent 35%), #f3efe5;
}

.shell { width: min(760px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 80px; }

a { color: var(--amber); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.brand { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.brand__logo { height: 56px; width: auto; display: block; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.page-title {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.lede { margin: 0 0 40px; color: var(--ink); font-size: 1.1rem; line-height: 1.6; max-width: 46rem; }

section { margin: 0 0 44px; }
section:last-of-type { margin-bottom: 0; }

.section-title {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

p { line-height: 1.65; color: var(--ink); }
p.muted { color: var(--muted); }

.direction-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.direction-list li {
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: .75rem;
  box-shadow: var(--shadow);
  line-height: 1.55;
}
.direction-list strong { color: var(--green-dark); }

.direction-note { margin-top: 16px; color: var(--muted); font-size: .92rem; }

.read-more-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.read-more-list a { font-weight: 600; text-decoration-thickness: 1.5px; }

.site-footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}
.site-footer a { color: var(--green); font-weight: 600; }

@media (max-width: 560px) {
  .shell { padding-top: 32px; }
  .brand__logo { height: 44px; }
}
