/* ══════════════════════════════════════
   BRAYMONT — LEGAL PAGES CSS (privacy + terms)
══════════════════════════════════════ */

/* ── HERO ── */
.legal-hero {
  padding: 9rem 5% 4rem;
  border-bottom: 1px solid var(--border);
  background: rgba(43,53,255,0.02);
}
.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.legal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
}
.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── BODY LAYOUT ── */
.legal-body {
  padding: 4rem 5% 7rem;
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── TOC ── */
.legal-toc {
  position: sticky;
  top: 100px;
  padding: 1.5rem;
  border-radius: 14px;
}
.toc-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}
.toc-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toc-list a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.toc-list a:hover { color: var(--blue-primary); }

/* ── CONTENT ── */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.legal-intro {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.85;
  padding: 1.4rem 1.6rem;
  background: rgba(43,53,255,0.04);
  border-left: 3px solid var(--blue-primary);
  border-radius: 0 10px 10px 0;
}
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.legal-h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a0a0a;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.legal-content p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.85;
}
.legal-content a {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 500;
}
.legal-content a:hover { text-decoration: underline; }
.legal-list {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-list li {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.75;
}
.legal-contact-box {
  padding: 1.4rem 1.6rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.legal-contact-box p {
  font-size: 0.88rem !important;
  margin: 0 !important;
}

/* ── RESPONSIVE ── */
@media(max-width:700px) {
  .legal-container { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { position: static; }
  .legal-hero { padding: 8rem 5% 3rem; }
}