:root {
  color-scheme: light;
  --paper: #f8f7f4;
  --ink: #242724;
  --muted: #656962;
  --line: #dedfd8;
  --accent: #3e5b48;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: #dce6d9; }
a { color: var(--accent); text-underline-offset: 4px; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 2px; }

.landing {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 24px;
}
.wordmark {
  margin: 0;
  font-size: clamp(42px, 9vw, 76px);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 1.1;
}
.wordmark span { color: #7b8d79; }

.document { max-width: 792px; margin: 0 auto; padding: 0 40px; }
.document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
.document-brand { font-size: 20px; letter-spacing: -0.07em; font-weight: 650; }
.languages { display: flex; align-items: center; gap: 20px; font-size: 13px; }
.languages a, .languages span { display: inline-flex; align-items: center; min-height: 44px; }
.languages [aria-current] { color: var(--ink); font-weight: 600; }
.document-intro { padding: 64px 0 34px; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 17px; color: var(--accent); font-size: 13px; font-weight: 650; letter-spacing: 0.08em; }
h1 { margin: 0; font-size: clamp(34px, 6vw, 52px); line-height: 1.12; font-weight: 500; letter-spacing: -0.045em; }
.updated { margin: 19px 0 0; font-size: 13px; color: var(--muted); }
.summary { margin: 30px 0 0; font-size: 19px; line-height: 1.65; letter-spacing: -0.015em; }
.policy-content { padding: 7px 0 48px; }
.policy-content section { margin-top: 38px; }
h2 { margin: 0 0 13px; font-size: 19px; line-height: 1.4; font-weight: 600; letter-spacing: -0.02em; }
.policy-content p, .policy-content li { color: #4e534d; font-size: 16px; line-height: 1.8; }
.policy-content p { margin: 0 0 14px; }
.policy-content ul { margin: 0 0 15px; padding-left: 21px; }
.policy-content li { padding-left: 4px; margin: 8px 0; }
strong { color: var(--ink); font-weight: 600; }
.contact { border-top: 1px solid var(--line); padding-top: 30px; }
.document-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding: 24px 0 40px; color: var(--muted); font-size: 12px; }
.not-found { text-align: center; }
.not-found p { margin-top: 20px; color: var(--muted); font-size: 15px; }

@media (max-width: 540px) {
  .document { padding: 0 24px; }
  .document-header { padding: 18px 0 14px; }
  .document-intro { padding-top: 44px; }
  .summary { font-size: 18px; }
  .policy-content section { margin-top: 32px; }
}

@media print {
  :root { background: white; color: black; }
  .document { max-width: none; padding: 0; }
  .languages { display: none; }
  .document-header { padding-top: 0; }
  .document-intro { padding-top: 24px; }
  h1 { font-size: 30px; }
  h2 { break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  .policy-content p, .policy-content li { font-size: 11pt; line-height: 1.55; }
  a { color: inherit; }
  .document-footer { padding-bottom: 0; }
}
