/* assets/css/privacy.css */

.privacy-hero::before { content: '⚖'; font-size: 14rem; }

.privacy-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: start;
  border-top: 1px solid var(--bd);
}

/* ── TOC ──────────────────────────────────────────────────────────────── */
.privacy-toc {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--bd);
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.privacy-toc-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx3);
  margin-bottom: .75rem;
}
.privacy-toc a {
  font-size: .78rem;
  color: var(--tx2);
  padding: .3rem .5rem;
  border-radius: 4px;
  transition: background .12s, color .12s;
  line-height: 1.4;
}
.privacy-toc a:hover {
  background: var(--bg3);
  color: var(--ac);
}

/* ── CONTENT ──────────────────────────────────────────────────────────── */
.privacy-content {
  padding: 2.5rem 4rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--bd);
}
.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section h2 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.privacy-section h3 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tx3);
  margin: 1.25rem 0 .5rem;
}
.privacy-section p {
  font-size: .92rem;
  line-height: 1.82;
  color: var(--tx2);
  margin-bottom: .85rem;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section a { color: var(--ac); text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .privacy-body { grid-template-columns: 1fr; }
  .privacy-toc { position: static; border-right: none; border-bottom: 1px solid var(--bd); padding: 1.5rem 1.5rem; flex-direction: row; flex-wrap: wrap; gap: .4rem; align-items: center; }
  .privacy-toc-label { width: 100%; margin-bottom: .25rem; }
  .privacy-content { padding: 2rem 1.5rem; }
}
@media (max-width: 500px) {
  .privacy-content { padding: 1.5rem 1.25rem; }
}