:root {
  color-scheme: light;
  --ink: #2b130b;
  --muted: #74645b;
  --paper: #fffaf5;
  --canvas: #fff7ef;
  --line: #e6d6c9;
  --accent: #b7202a;
  --green: #0f4c45;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff 0, transparent 34%), var(--canvas);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  line-height: 1.72;
}
.legal-document a { color: var(--accent); text-underline-offset: 3px; }
.policy-nav-shell {
  position: relative;
  z-index: 5;
  background: rgba(255, 250, 245, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.policy-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  margin: 0;
}
.policy-nav a {
  width: auto !important;
  height: 42px !important;
  min-height: 42px !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--muted) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.policy-nav a:hover,
.policy-nav a[aria-current="page"] {
  color: #fff !important;
  background: var(--accent) !important;
}
main { padding: clamp(34px, 6vw, 76px) 20px; }
.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 68px);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(43, 19, 11, .08);
}
.legal-document h1,
.legal-document h2,
.legal-document h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.18; }
.legal-document h1 { margin: 0 0 10px; font-size: clamp(2.35rem, 6vw, 4.35rem); }
.legal-document h2 { margin: 46px 0 12px; padding-top: 22px; border-top: 1px solid var(--line); font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-document h3 { margin: 30px 0 10px; font-size: 1.25rem; }
.legal-document p { margin: 0 0 18px; }
.legal-document h1 + p { color: var(--accent); font-weight: 700; }
.legal-document ul { margin: 10px 0 24px; padding-left: 24px; }
.legal-document li { margin: 7px 0; padding-left: 5px; }
.legal-document li::marker { color: var(--accent); }
.legal-document > h2:last-of-type { border-top-color: var(--green); }
@media (max-width: 700px) {
  .policy-nav { justify-content: flex-start; overflow-x: auto; }
  .legal-document { padding: 26px 20px; border-radius: 16px; }
  .legal-document h2 { margin-top: 34px; }
}
