    /* ── LEGAL/PRIVACY PAGE ── */
    .legal-header { margin-bottom: 32px; }
    .legal-header h1 {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 12px;
    }
    .legal-header .legal-sub {
      font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent);
    }
    .legal-intro {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 4px;
      padding: 24px;
      margin-bottom: 32px;
      font-size: 14px; font-weight: 300; line-height: 1.7;
      color: var(--text2);
    }

    .legal-section {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 4px;
      margin-bottom: 20px;
      overflow: hidden;
    }
    .legal-section-header {
      padding: 16px 24px;
      background: var(--navy);
    }
    .legal-section-header h2 {
      font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(255,255,255,0.9);
    }
    .legal-section-body { padding: 24px; }
    .legal-section-body h3 {
      font-size: 14px; font-weight: 600; color: var(--text);
      margin: 18px 0 8px;
    }
    .legal-section-body h3:first-child { margin-top: 0; }
    .legal-section-body p {
      font-size: 14px; font-weight: 300; line-height: 1.7;
      color: var(--text2);
      margin-bottom: 12px;
    }
    .legal-section-body p:last-child { margin-bottom: 0; }
    .legal-section-body ul {
      list-style: none; padding: 0; margin: 0 0 12px;
    }
    .legal-section-body li {
      font-size: 14px; font-weight: 300; color: var(--text2);
      line-height: 1.7;
      padding-left: 18px;
      position: relative;
      margin-bottom: 6px;
    }
    .legal-section-body li::before {
      content: '';
      position: absolute; left: 0; top: 11px;
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
    }
    .legal-section-body .contact-block {
      font-family: var(--mono);
      font-size: 13px; color: var(--text);
      line-height: 1.8;
      padding: 16px;
      background: var(--off);
      border: 1px solid var(--border-light);
      border-radius: 3px;
      margin-top: 12px;
    }
    .legal-update {
      font-size: 12px; color: var(--muted);
      letter-spacing: 0.04em;
      margin-top: 8px;
    }