/* ─── Legal Pages (Privacy & Terms) ─── */

/* ─── Hero ─── */
.legal-hero {
  background: var(--espresso);
  padding: 96px 40px 80px;
  text-align: center;
}

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

.legal-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  font-weight: 500;
  margin-bottom: 20px;
}

.legal-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}

.legal-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  font-weight: 500;
  margin-top: 8px;
}

/* ─── Body ─── */
.legal-body {
  background: var(--bg);
  padding: 80px 40px 96px;
}

.legal-body-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-body section {
  margin-bottom: 40px;
}

.legal-body section:last-child {
  margin-bottom: 0;
}

.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 16px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.legal-body p {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #6B5A47;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-body em {
  font-style: italic;
  color: var(--espresso);
}

.legal-body a {
  color: var(--olive);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.legal-body a:hover {
  border-bottom-color: var(--olive);
}

/* ─── Footer cross-links (within .quiz-footer) ─── */
.legal-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-footer-links a {
  color: var(--olive);
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.2s;
}

.legal-footer-links a:hover {
  text-decoration: underline;
}

.legal-footer-links .pipe {
  margin: 0 10px;
  color: rgba(154,138,122,0.5);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .legal-hero { padding: 72px 24px 56px; }
  .legal-body { padding: 56px 24px 72px; }
  .legal-body h2 { font-size: 1.4rem; padding-left: 14px; }
  .legal-body p { font-size: 0.92rem; }
  .legal-footer-links { flex-direction: column; gap: 4px; }
  .legal-footer-links .pipe { display: none; }
}
