:root {
  color-scheme: light;
  --ink: #0F1F18;
  --paper: #F7F5EF;
  --white: #FFFFFF;
  --palm: #1E4D3B;
  --palm-deep: #123326;
  --seaglass: #E7EFE9;
  --brass: #A18349;
  --muted: #5A695F;
  --line: #DDD8CC;
  --display: "Fraunces", Georgia, serif;
  --body: "Albert Sans", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: var(--body); font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--palm); }
a:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
.wrap { width: min(100% - 40px, 880px); margin: 0 auto; }
.site-header {
  border-bottom: 1px solid var(--line); background: rgba(247,245,239,0.96);
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px);
}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: var(--display); font-size: 1.28rem; font-weight: 520; color: var(--ink); text-decoration: none; }
.logo span { color: var(--brass); }
.back-link { font-size: 0.92rem; font-weight: 600; text-decoration: none; }
main { padding: 68px 0 88px; }
.eyebrow {
  display: block; margin-bottom: 12px; color: var(--brass); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
h1, h2 { font-family: var(--display); font-weight: 440; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin: 0 0 14px; }
h2 { font-size: 1.45rem; margin: 2.3rem 0 0.65rem; }
p, li { color: var(--muted); }
.lede { font-size: 1.08rem; max-width: 66ch; }
.updated { color: var(--muted); font-size: 0.86rem; margin: 22px 0 36px; }
.legal-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(24px, 5vw, 48px); box-shadow: 0 12px 38px rgba(16,35,27,0.06);
}
.notice {
  background: var(--seaglass); border-left: 4px solid var(--palm);
  border-radius: 8px; padding: 16px 18px; margin: 1.25rem 0;
}
.notice p { margin: 0; color: var(--ink); }
ul { padding-left: 1.25rem; }
li + li { margin-top: 0.4rem; }
.site-footer { background: var(--palm-deep); color: rgba(247,245,239,0.72); padding: 34px 0; font-size: 0.84rem; }
.site-footer a { color: var(--paper); }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
@media (max-width: 600px) {
  main { padding-top: 42px; }
  .header-inner { height: 64px; }
}

