/* Shared styles for Privacy + Terms pages */
:root {
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ink: #2a1f2e;
  --ink-soft: rgba(42,31,46,0.65);
  --ink-whisper: rgba(42,31,46,0.45);
  --accent: #c96a8b;
  --accent-2: #b294c0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans); color: var(--ink);
  background: #fdf6f3; font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent); text-decoration: underline;
  text-decoration-color: rgba(201,106,139,0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color .15s;
}
a:hover { text-decoration-color: currentColor; }
strong { font-weight: 600; color: var(--ink); }

/* Nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(42,31,46,0.05);
  background: rgba(253,246,243,0.72);
  backdrop-filter: blur(14px);
  position: sticky; top: 0; z-index: 10;
}
.wordmark {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
}
.wordmark-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #f5c0cd 60%, #c994a8);
  box-shadow: 0 0 0 3px rgba(201,106,139,0.15);
}
.nav-back {
  font-size: 15px; color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .15s;
}
.nav-back:hover { color: var(--ink); }

/* Main */
main {
  max-width: 720px; margin: 0 auto;
  padding: 80px 32px 120px;
}
.eyebrow {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-whisper); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: currentColor; opacity: 0.6;
}
h1 {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 64px);
  font-weight: 500; letter-spacing: -1.5px; line-height: 1.05;
  margin: 0 0 20px;
}
h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.lede {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--ink-soft); line-height: 1.5;
  margin: 0 0 12px; font-weight: 400;
}
.updated {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-whisper); margin: 32px 0 48px;
}
.note {
  background: #fff; border-left: 3px solid var(--accent);
  padding: 22px 26px; border-radius: 10px;
  margin: 0 0 56px; color: var(--ink-soft);
  font-size: 15.5px; line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.note strong { color: var(--ink); }

h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  letter-spacing: -0.5px; line-height: 1.2;
  margin: 56px 0 16px;
}
h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
p, ul, ol { margin: 0 0 18px; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 10px; }

/* Footer */
footer {
  background: #1f1a30; color: #f4ebe4;
  padding: 40px 48px;
}
.footer-row {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.5px; color: rgba(244,235,228,0.55);
  flex-wrap: wrap; gap: 16px;
}
footer a {
  color: rgba(244,235,228,0.8); text-decoration: none;
  margin-left: 20px; transition: color .15s;
}
footer a:hover { color: #fff; }
footer .links a:first-child { margin-left: 0; }

@media (max-width: 720px) {
  .nav { padding: 18px 24px; }
  main { padding: 56px 24px 80px; }
  h1 { font-size: 40px; }
  h2 { font-size: 24px; margin-top: 44px; }
}
