/* ════════════════════════════════════════════
   PROFIX – UNTERSEITEN (pages.css)
   Einheitlicher Look für Impressum / Datenschutz
   – nutzt dieselbe Topbar/Nav/Footer wie die Startseite –
════════════════════════════════════════════ */

/* Seiten-Hero (schlanke Version des Start-Heros) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 5% 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {  /* gleiches Raster + Rotglow wie Start-Hero */
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(224,26,26,.10) 0%, transparent 65%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.015) 39px, rgba(255,255,255,.015) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.015) 39px, rgba(255,255,255,.015) 40px);
}
.page-hero .page-hero-watermark {
  position: absolute; top: 50%; right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  color: rgba(255,255,255,.02);
  letter-spacing: 4px; line-height: 1;
  pointer-events: none; user-select: none; z-index: 0; white-space: nowrap;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1250px; width: 95%; margin: 0 auto; }
.page-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: .8rem;
}
.page-label::before { content: ''; width: 22px; height: 2px; background: var(--red); display: inline-block; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: 2px; line-height: .95; color: #fff;
}
.page-hero .page-sub { color: var(--gray); font-size: .92rem; margin-top: .7rem; max-width: 560px; line-height: 1.7; }

/* Inhalt */
.legal { max-width: 860px; margin: 0 auto; padding: 56px 5% 40px; }
.legal h2 {
  font-family: var(--font-condensed); font-size: 1.25rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: #fff;
  margin: 2.4rem 0 .9rem; padding-bottom: .55rem;
  border-bottom: 1px solid var(--border); scroll-margin-top: 110px;
}
.legal h2:first-of-type { margin-top: .5rem; }
.legal h2 .num {
  display: inline-block; color: var(--red); margin-right: .5rem;
  font-family: var(--font-display); letter-spacing: 1px;
}
.legal h3 {
  font-family: var(--font-condensed); font-size: 1.02rem; font-weight: 700;
  letter-spacing: .5px; color: #ddd; margin: 1.6rem 0 .5rem;
}
.legal p, .legal li { color: var(--gray-light); font-size: .92rem; line-height: 1.8; }
.legal p { margin-bottom: .8rem; }
.legal ul { padding-left: 1.3rem; margin: 0 0 1rem; list-style: disc; }
.legal li { margin-bottom: .35rem; }
.legal li::marker { color: var(--red); }
.legal a { color: var(--red); }
.legal a:hover { opacity: .8; }
.legal strong { color: #eee; }

/* Info-Box (Verantwortlicher / Adresse) */
.legal .info-box {
  background: var(--dark2); border: 1px solid var(--border);
  border-left: 4px solid var(--red); padding: 1.5rem 1.8rem;
  border-radius: var(--radius-md); margin: 1.6rem 0;
}
.legal .info-box p { margin: 0; color: #ccc; line-height: 1.9; }
.legal .info-box strong { color: #fff; }

/* dezenter Hinweis-Kasten für „Stand"/Update */
.legal .legal-updated {
  display: inline-block; margin-top: 2.4rem;
  font-size: .8rem; color: var(--gray);
  border: 1px dashed var(--border-light); border-radius: var(--radius-md);
  padding: .5rem .9rem;
}

/* „Nach oben" */
.legal-top {
  margin: 2.6rem 0 .5rem;
}
.legal-top a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; font-size: .8rem; color: var(--gray-light);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: .6rem 1.2rem; transition: var(--transition);
}
.legal-top a:hover { color: #fff; border-color: var(--red); opacity: 1; }

@media (max-width: 600px) {
  .page-hero { padding: 50px 5% 40px; }
  .legal { padding: 40px 5% 30px; }
}
