/* ============================================================
   BLIKO Brands GmbH — Legal Pages (Impressum / Datenschutz)
   Wiederverwendet die Markenfarben & Typografie der Hauptseite.
   ============================================================ */
:root {
  --navy: #071D38;
  --navy-deep: #05182E;
  --blue: #396FA8;
  --blue-light: #7FA4C8;
  --gray-bg: #F3F5F7;
  --gray-bg-alt: #F7F8FA;
  --ink: #0B1D33;
  --muted: #59636E;
  --line: #DDE3E9;
  --white: #FFFFFF;
  --on-dark: #FFFFFF;
  --on-dark-muted: #B6C4D6;
  --line-dark: rgba(127,164,200,0.18);
  --container: 1080px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 7px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 40px; height: 38px; flex: none; }
.brand__name { font-family: "Manrope", system-ui, sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.02em; color: var(--ink); line-height: 1; }
.brand__name span { font-weight: 600; color: var(--muted); }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; color: var(--muted);
}
.back-link:hover { color: var(--ink); text-decoration: none; }
.back-link svg { width: 18px; height: 18px; }

/* ---------- Legal content ---------- */
.legal { padding-block: clamp(3rem, 6vw, 5rem); }
.legal__inner { max-width: 760px; }
.legal__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin: 0 0 1.1rem;
}
.legal__eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--blue); }
.legal h1 {
  font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1.14;
  letter-spacing: -0.005em; color: var(--ink); margin: 0 0 0.75rem;
}
.legal__meta { color: var(--muted); font-size: 0.95rem; margin: 0 0 2.5rem; }
.legal h2 {
  font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: 1.35rem; line-height: 1.25; letter-spacing: -0.005em;
  color: var(--ink); margin: 2.75rem 0 0.9rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.legal h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); margin: 1.6rem 0 0.5rem; }
.legal p { margin: 0 0 1.1em; color: var(--ink); }
.legal p.muted { color: var(--muted); }
.legal ul { margin: 0 0 1.2em; padding-left: 0; list-style: none; display: grid; gap: 0.55rem; }
.legal ul li { position: relative; padding-left: 1.6rem; color: var(--ink); }
.legal ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue); transform: rotate(-45deg);
}
.legal address { font-style: normal; color: var(--ink); }
.legal .block {
  background: var(--gray-bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin: 0 0 1.2em;
}
.legal .block p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: var(--on-dark); }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer .brand__name { color: var(--white); }
.footer .brand__name span { color: var(--on-dark-muted); }
.footer__center { text-align: center; }
.footer__center .fname { font-family: "Manrope", system-ui, sans-serif; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.footer__center .ftag { font-size: 0.9rem; color: var(--on-dark-muted); }
.footer__links { display: flex; gap: 1.5rem; justify-content: flex-end; }
.footer__links a { font-size: 0.95rem; color: var(--on-dark-muted); }
.footer__links a:hover { color: var(--white); text-decoration: none; }
.footer__bar { border-top: 1px solid var(--line-dark); padding-block: 1.4rem; font-size: 0.85rem; color: var(--on-dark-muted); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 1.75rem; }
  .footer .brand { justify-content: center; }
  .footer__links { justify-content: center; }
  .footer__bar { justify-content: center; text-align: center; }
  .brand__name { font-size: 1rem; }
}
