/* Shared typography + layout for all Resonance legal pages.
   Kept deliberately simple — no orbs, no animations. Clean reading. */

:root {
  --bg: #0a0907;
  --bg-elev: #13110e;
  --ink: #f4ede3;
  --ink-dim: #a8a093;
  --ink-mute: #6b6459;
  --gold: #c9a961;
  --gold-deep: #8b7340;
  --line: rgba(201, 169, 97, 0.15);
  --line-strong: rgba(201, 169, 97, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

.wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 32px;
}

nav.legal-nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

nav.legal-nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.logo em { color: var(--gold); font-style: italic; }

.back-link {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.back-link:hover { color: var(--gold); }

main.legal {
  padding: 72px 0 96px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 400;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 24px;
}

h1 em { color: var(--gold); font-style: italic; }

.updated {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  margin-bottom: 56px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}

h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--ink-dim);
}

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

a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s, border-color 0.2s;
}

a:hover { color: var(--gold); border-bottom-color: var(--gold); }

ul {
  margin: 12px 0 20px 0;
  padding-left: 24px;
  color: var(--ink-dim);
}

li { margin-bottom: 8px; }

.callout {
  border-left: 2px solid var(--gold);
  padding: 18px 22px;
  margin: 28px 0;
  background: rgba(201, 169, 97, 0.04);
  color: var(--ink);
  font-size: 0.95rem;
}

.callout strong { color: var(--gold); }

footer.legal-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

footer.legal-footer a {
  color: var(--ink-dim);
  border-bottom: none;
  margin: 0 10px;
}

footer.legal-footer a:hover { color: var(--gold); }
