/* ═══════════════════════════════════════════════════════════
   SwissGlow.beauty — Legal Pages Stylesheet
   Shared by privacy-policy.html, terms.html, impressum.html
═══════════════════════════════════════════════════════════ */

/* Force navbar to always show solid on legal pages */
.navbar {
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* ─── Hero banner ───────────────────────────────────────── */
.legal-hero {
  background: var(--charcoal);
  padding: 9rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-hero .section-eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.legal-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ─── Body content ──────────────────────────────────────── */
.legal-body {
  padding: 4rem 0 6rem;
  max-width: 800px;
}

/* Notice box */
.legal-notice {
  background: rgba(184,156,110,0.08);
  border: 1px solid rgba(184,156,110,0.25);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 3rem;
}
.legal-notice strong { color: var(--gold-dark); }

/* Headings */
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.legal-body h2:first-of-type { margin-top: 0; }

.legal-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

/* Body text */
.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* Lists */
.legal-body ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-body ul li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Address */
.legal-body address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Links */
.legal-body a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(154,127,84,0.3);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.legal-body a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Divider */
.legal-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 2.5rem 0;
}

/* Strong */
.legal-body strong { color: var(--text-dark); font-weight: 600; }

/* ─── Main wrapper ──────────────────────────────────────── */
.legal-main { min-height: 100dvh; background: var(--white); }
