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

:root {
  --bg: #F8F2E6;
  --bg-2: #F2EADA;
  --surface: #FFFFFF;
  --ink: #2B2018;
  --ink-muted: #6D5D49;
  --ink-dim: #A39784;
  --border: #E6DCC8;
  --border-strong: #D8CBB0;
  --accent: #D4622E;
  --accent-ink: #8C3E1A;
  --font-display: 'Instrument Serif', 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.125 0 0 0 0 0.09 0 0 0 0.14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
}

/* Nav */
.legal-nav {
  border-bottom: 1px solid var(--border);
  background: rgba(248, 242, 230, 0.82);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
}
.legal-nav .container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo .tld { color: var(--accent); }
.back {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.back:hover { color: var(--ink); }

/* Content */
.legal {
  padding: 72px 40px 96px;
  max-width: 760px;
}
@media (max-width: 560px) {
  .legal { padding: 48px 20px 72px; }
}

.legal .eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.legal .lede {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 58ch;
  margin-bottom: 48px;
}

.legal section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.legal p {
  color: var(--ink-muted);
  max-width: 66ch;
}

.legal p + p { margin-top: 12px; }

.legal a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.legal .updated {
  margin-top: 48px;
  font-size: 13px;
  color: var(--ink-dim);
  font-style: italic;
}

/* Footer */
.legal-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--ink-dim);
  font-size: 13px;
}
.legal-footer .container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-footer nav {
  display: flex;
  gap: 20px;
}
.legal-footer a {
  color: var(--ink-muted);
  text-decoration: none;
}
.legal-footer a:hover { color: var(--ink); }
