@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap');

:root {
  --ink: #2c2134;
  --paper: #fff9e9;
  --surface: #fffdf6;
  --rose: #a64f61;
  --violet: #72517e;
  --muted: #6f6573;
  --line: #dfd2bc;
  --notice: #f3e7c8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: Geist, Arial, sans-serif; line-height: 1.72; margin: 0; }
a { color: inherit; }
.page { margin: 0 auto; width: min(820px, calc(100% - 44px)); }
.legal-header { align-items: center; border-bottom: 1px solid var(--line); display: flex; height: 78px; justify-content: space-between; }
.brand { align-items: center; display: inline-flex; font-weight: 700; gap: 10px; letter-spacing: .16em; text-decoration: none; }
.brand img { border-radius: 8px; height: 34px; width: 34px; }
.back-link { color: var(--violet); font-size: 14px; font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.legal-main { padding-bottom: 110px; padding-top: 80px; }
.eyebrow { color: var(--rose); font-size: 12px; font-weight: 700; letter-spacing: .15em; margin: 0 0 14px; }
h1, h2 { font-family: Newsreader, Georgia, serif; letter-spacing: 0; line-height: 1.12; }
h1 { font-size: clamp(46px, 8vw, 72px); margin: 0 0 18px; }
.legal-meta { color: var(--muted); margin-bottom: 32px; }
.draft-note { background: var(--notice); border-left: 3px solid #b58a29; margin: 32px 0 38px; padding: 16px 18px; }
.legal-summary { border-bottom: 1px solid var(--line); display: grid; gap: 10px; margin-bottom: 58px; padding-bottom: 32px; }
.legal-summary p { margin: 0; overflow-wrap: anywhere; }
h2 { color: var(--violet); font-size: 29px; margin: 52px 0 14px; }
p, li { font-size: 16px; }
ul { padding-left: 22px; }
li + li { margin-top: 12px; }
.contact-box { background: var(--ink); color: var(--surface); margin-top: 22px; padding: 22px; }
.contact-box a { color: #ffe29a; overflow-wrap: anywhere; }
.legal-footer { background: #211928; color: #ddd0e0; font-size: 13px; padding: 26px 0; }
.legal-footer .page { display: flex; flex-wrap: wrap; gap: 20px; }
.legal-footer a { text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid #d5a643; outline-offset: 4px; }

@media (max-width: 560px) {
  .page { width: min(820px, calc(100% - 32px)); }
  .legal-header { height: 68px; }
  .brand img { height: 30px; width: 30px; }
  .legal-main { padding-bottom: 80px; padding-top: 56px; }
  h1 { font-size: 48px; }
  h2 { font-size: 26px; margin-top: 42px; }
  p, li { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
