/* ═══════════════════════════════════════════════
   AskSimona Brand Design System
   Extracted from app: dark espresso + warm gold
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0f0902;
  --bg2:       #1a1108;
  --surface:   #231608;
  --card:      #2c1e0c;
  --card2:     #352410;
  --gold:      #c8a84b;
  --gold-lt:   #e2c876;
  --gold-dim:  rgba(200,168,75,0.12);
  --gold-bdr:  rgba(200,168,75,0.22);
  --green:     #5c8a6a;
  --green-dim: rgba(92,138,106,0.15);
  --cream:     #f0e8d5;
  --text:      #ede3cc;
  --muted:     #8a7a60;
  --muted2:    #5a4e3a;
  --border:    rgba(200,168,75,0.14);
  --shadow:    0 24px 64px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 2rem;
  height: 68px;
  background: rgba(15,9,2,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), #a8862e);
  display: grid; place-items: center; flex-shrink: 0;
}

.nav-mark span {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 11px; color: var(--bg);
}

.nav-word {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem; color: var(--text);
  letter-spacing: 0.01em;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }

.nav-links a {
  display: block; padding: 7px 14px; border-radius: 7px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--muted);
  transition: color .2s, background .2s;
}

.nav-links a:hover, .nav-links a.act {
  color: var(--gold); background: var(--gold-dim);
}

.nav-dl {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold);
  color: var(--bg) !important;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 9px 20px; border-radius: 100px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.nav-dl:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.82rem; line-height: 1.7; color: var(--muted);
  max-width: 240px; margin-top: 0.75rem; font-style: italic;
}

.footer-col h4 {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.82rem; color: var(--muted); transition: color .18s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted2);
}

/* ── LEGAL PAGES ─────────────────────────────── */
.legal-hero {
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.legal-hero-inner { max-width: 800px; margin: 0 auto; }

.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--gold-bdr);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 1.25rem;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; margin-bottom: 1rem;
}

.legal-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: 0.68rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.legal-layout {
  display: grid; grid-template-columns: 220px 1fr;
  max-width: 1100px; margin: 0 auto; align-items: start;
}

.legal-toc {
  position: sticky; top: 84px;
  padding: 2.5rem 1.5rem 2rem 2rem;
  border-right: 1px solid var(--border);
}

.toc-label {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted2); margin-bottom: 1rem;
}

.toc-list { list-style: none; }
.toc-list li { margin-bottom: 0.05rem; }
.toc-list a {
  display: block; font-size: 0.75rem; color: var(--muted);
  padding: 4px 8px; border-radius: 5px; line-height: 1.45;
  transition: color .18s, background .18s;
}
.toc-list a:hover { color: var(--gold); background: var(--gold-dim); }

.legal-body { padding: 3.5rem 2.5rem 5rem; }

.legal-section { margin-bottom: 2.75rem; }

.legal-section h2 {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  padding: 0.5rem 0 0.5rem 0.9rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 0.9rem; line-height: 1.8; color: var(--muted); margin-bottom: 0.85rem;
}

.legal-section ul { margin: 0.4rem 0 0.85rem 1.3rem; }
.legal-section li { font-size: 0.9rem; line-height: 1.75; color: var(--muted); margin-bottom: 0.3rem; }
.legal-section strong { color: var(--text); font-weight: 500; }

.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
  font-size: 0.82rem; color: var(--muted); line-height: 2;
}
.contact-card strong { color: var(--text); }
.contact-card a { color: var(--gold); }
.contact-card a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
