/**
 * Impactiqa — legal.css
 * Shared styles for Privacy Policy and Terms of Service pages.
 * Loaded via $page_css = ['legal'] in privacy.php and terms.php.
 * Near-white background (#f7f6f4).
 */

/* ── Panel variables ────────────────────────────────────────────────────────── */
:root {
  --panel-mute: rgba(10,10,10,.55);
  --panel-rule: rgba(10,10,10,.12);
}

/* ── Base ───────────────────────────────────────────────────────────────────── */
html, body { height: 100%; }
body {
  background: var(--panel-bg, #f7f6f4);
  color: var(--panel-fg, #0a0a0a);
  overflow-x: hidden;
}
main {
  min-height: 100vh;
  padding: 140px 8vw 0;
  display: flex;
  flex-direction: column;
}

/* ── Legal hero ─────────────────────────────────────────────────────────────── */
.legal-hero {
  max-width: 860px;
  padding-bottom: 64px;
}

/* ── Meta (last-updated line) ───────────────────────────────────────────────── */
.meta {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--panel-mute); margin-bottom: 40px;
}

/* ── Heading ────────────────────────────────────────────────────────────────── */
h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(40px, 6vw, 80px); line-height: .9;
  letter-spacing: -.025em; text-transform: uppercase;
}

/* ── Article content ────────────────────────────────────────────────────────── */
.legal-content {
  max-width: 860px;
  padding-bottom: 96px;
  border-top: 1px solid var(--panel-rule);
  margin-top: 4px;
}

.legal-content h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -.01em;
  padding: 40px 0 14px;
  border-top: 1px solid var(--panel-rule);
  margin-top: 0;
}
.legal-content h2:first-child {
  border-top: none;
  padding-top: 48px;
}

.legal-content p,
.legal-content li {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px); line-height: 1.75;
  color: rgba(10,10,10,.78);
  margin-bottom: 14px;
}
.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content li {
  margin-bottom: 6px;
}

/* ── Legal link ─────────────────────────────────────────────────────────────── */
.legal-link {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity .2s;
}
.legal-link:hover {
  opacity: .55;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  main { padding: 120px 6vw 0; }
  .legal-hero { padding-bottom: 48px; }
  .legal-content { padding-bottom: 72px; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .legal-link { transition: none; }
}
