/* ==============================================================================
   PURE VODKA — Legal pages (Privacy Policy / Terms of Service)
   Standalone lightweight sheet reusing the brand tokens from pure-vodka.css:
   dark print surface, hairline rules, mono kickers, Fraunces display. Sections
   are numbered like the spec sheet ("01 / 02 …") — legal documents are one of
   the few places numbering genuinely carries meaning.
   ============================================================================== */
:root {
  --bg: #040406;
  --ink: #f5f5f7;
  --ink-mid: #a1a1a6;
  --ink-dim: #86868b;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-strong: rgba(255, 255, 255, 0.18);
  --accent: #e8ecf2;
  --display-stack: "Fraunces", Georgia, "Times New Roman", serif;
  --text-stack: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Space Mono", "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--ink-mid);
  font-family: var(--text-stack);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.lg-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 22px 90px;
}

/* Top bar — route back into the brand page */
.lg-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 64px;
}
.lg-back {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-dim);
  transition: color 0.3s ease;
}
.lg-back:hover { color: var(--ink); }
.lg-brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Document header */
.lg-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
h1 {
  font-family: var(--display-stack);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.lg-effective {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 8px;
}
.lg-intro {
  padding: 32px 0 8px;
  color: var(--ink-mid);
  font-size: 16px;
}

/* Numbered sections — spec-sheet register */
.lg-section { padding: 40px 0 8px; }
.lg-section + .lg-section { border-top: 1px solid transparent; }
.lg-ix {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
h2 {
  font-family: var(--display-stack);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 25px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.lg-section p { margin-bottom: 14px; }
.lg-section p:last-child { margin-bottom: 0; }

.lg-section ul {
  list-style: none;
  margin: 0 0 14px;
}
.lg-section ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}
.lg-section ul li:last-child { border-bottom: 0; }
.lg-section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-dim);
}

.lg-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color 0.3s ease;
}
.lg-section a:hover { text-decoration-color: var(--accent); }

strong { color: var(--ink); font-weight: 600; }

/* Footer */
.lg-footer {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.lg-footer a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.lg-footer a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .lg-wrap { padding: 34px 20px 70px; }
  .lg-top { margin-bottom: 46px; }
}
