/* ── legal.css — Brand Reporter Studio ── */
:root {
  --black: #0C0B09; --coal: #161412; --carbon: #201D19;
  --paper: #F2EDE3; --mid: #9A9080; --gold: #C4962A;
  --gold-lt: #D4A840; --white: #FAF7F2;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--paper);
  font-family: 'Raleway', sans-serif; min-height: 100vh; margin-top: 80px;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.3; mix-blend-mode: overlay;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: rgba(12,11,9,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,150,42,0.12);
}
.nav-logo img { height: 36px; }
.nav-back {
  font-family: 'Raleway', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,237,227,0.45); text-decoration: none; transition: color 0.2s;
}
.nav-back:hover { color: var(--white); }
.nav-back::before { content: '← '; }
.page-wrap {
  max-width: 800px; margin: 0 auto;
  padding: 64px 24px 80px; position: relative; z-index: 2;
}
.legal-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.legal-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.legal-h1 {
  font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,237,227,0.25); margin-bottom: 56px;
}
.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,150,42,0.15);
}
.legal-section h3 {
  font-size: 0.82rem; font-weight: 700; color: var(--paper);
  margin-bottom: 12px; margin-top: 24px;
}
.legal-section p {
  font-size: 0.9rem; color: rgba(242,237,227,0.65);
  line-height: 1.8; margin-bottom: 14px;
}
.legal-section ul { list-style: none; padding: 0; margin-bottom: 14px; }
.legal-section ul li {
  font-size: 0.9rem; color: rgba(242,237,227,0.65);
  line-height: 1.8; padding-left: 16px; position: relative; margin-bottom: 8px;
}
.legal-section ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem;
}
.legal-section a { color: var(--gold); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.aepd-links { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.aepd-links a {
  font-size: 0.78rem; color: rgba(242,237,227,0.5);
  padding: 10px 0; border-bottom: 1px solid rgba(196,150,42,0.08);
}
.legal-footer {
  margin-top: 80px; padding-top: 32px;
  border-top: 1px solid rgba(196,150,42,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.6rem; letter-spacing: 0.08em; color: rgba(242,237,227,0.4);
}
.legal-footer a { color: rgba(242,237,227,0.4); text-decoration: none; }
.legal-footer a:hover { color: var(--white); }
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .page-wrap { padding: 40px 20px 60px; }
}