:root {
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --ink: #2e3a44;
  --muted: #55656f;
  --amber: #efa92c;
  --line: #2e3a44;
  --rule: #e4daca;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.wrap { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
header { border-bottom: 2px solid var(--line); }
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; text-decoration: none; }
.brand img { width: 38px; height: 38px; border: 2px solid var(--line); border-radius: 50%; }
.home { font-weight: 650; }
main { padding: 54px 0 70px; }
.eyebrow { margin: 0 0 10px; color: #78520a; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
h1 { margin: 0 0 8px; font: 700 clamp(34px, 6vw, 50px)/1.08 Georgia, serif; }
h2 { margin: 40px 0 8px; font-size: 23px; line-height: 1.25; }
h3 { margin: 24px 0 6px; font-size: 18px; }
p, li { max-width: 72ch; }
.effective { margin: 0 0 34px; color: var(--muted); }
.notice { padding: 16px 18px; background: #fcebc6; border: 2px solid var(--line); border-radius: 12px; }
ul { padding-left: 24px; }
footer { border-top: 2px solid var(--line); padding: 28px 0 42px; color: var(--muted); font-size: 14px; }
.links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 12px; }
.links a { font-weight: 650; }
.link-button { appearance: none; border: 0; background: none; padding: 0; color: inherit; font: 650 14px/1.6 Inter, sans-serif; text-decoration: underline; cursor: pointer; }
.analytics-consent { position: fixed; z-index: 80; left: 50%; bottom: 18px; transform: translateX(-50%); width: min(760px, calc(100% - 28px)); padding: 16px 18px; background: var(--surface); border: 2px solid var(--line); border-radius: 14px; box-shadow: 5px 5px 0 var(--line); }
.analytics-consent[hidden] { display: none; }
.analytics-consent p { margin: 0; }
.analytics-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.analytics-actions button { min-height: 42px; padding: 0 16px; border: 2px solid var(--line); border-radius: 9px; background: var(--surface); font: 650 14px/1 Inter, sans-serif; cursor: pointer; }
.analytics-actions .analytics-accept { background: var(--amber); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
@media (max-width: 560px) { .home { display: none; } main { padding-top: 38px; } }
