/* ── Legal Hero ── */
.legal-hero {
  background: var(--hero-bg);
  padding: calc(var(--nav-h) + 56px) 24px 56px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 12px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── Layout ── */
.legal-body {
  padding: 64px 0 96px;
}
.legal-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Table of Contents ── */
.legal-toc {
  position: sticky;
  top: calc(var(--nav-bar-h) + 24px);
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.toc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 12px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc ol li a {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.5;
  padding: 4px 0;
  display: block;
  transition: color 0.15s;
}
.legal-toc ol li a:hover { color: var(--blue); }

/* ── Content ── */
.legal-content {
  max-width: 720px;
}
.legal-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 8px;
}
.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}
.legal-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--navy); }

.contact-list li { padding-left: 0 !important; }
.contact-list li::before { display: none; }

/* ── Responsive ── */
@media (max-width: 800px) {
  .legal-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .legal-toc {
    position: static;
  }
}
