/* ============================================================
   AZURE COLOGNE — Legal Pages (Impressum & Datenschutz)
   Standalone stylesheet, mirrors the brand design system.
   ============================================================ */

:root {
  --onyx:       #090E16;
  --charcoal:   #101C27;
  --bronze:     #C08A3E;
  --champagne:  #F5D9A5;
  --azure:      #2FB7FF;
  --emerald:    #074F3B;
  --warm-light: #F5F5F2;
  --muted:      #A0A7B5;

  --hairline:   rgba(245, 217, 165, 0.14);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, -apple-system, sans-serif;

  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
}

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1100px 600px at 80% -5%, rgba(47, 183, 255, 0.07), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(192, 138, 62, 0.05), transparent 55%),
    var(--onyx);
  color: var(--warm-light);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Top Nav ─────────────────────────────────────────────── */

.mnav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  background: rgba(9, 14, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.mnav__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  color: var(--warm-light);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(194, 139, 62, 0.45);
  border-radius: 2px;
  background: rgba(192, 138, 62, 0.08);
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base);
}
.mnav__back:hover {
  color: var(--champagne);
  border-color: var(--bronze);
  background: rgba(192, 138, 62, 0.16);
}
.mnav__arrow {
  color: var(--bronze);
  font-size: 14px;
  transition: transform var(--t-base);
  line-height: 1;
}
.mnav__back:hover .mnav__arrow { transform: translateX(-4px); }

.mnav__title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--champagne);
  text-align: center;
}

.mnav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--onyx);
  background: var(--bronze);
  border-radius: 2px;
  transition: background var(--t-base);
}
.mnav__cta:hover { background: var(--champagne); }

/* ── Page Hero ───────────────────────────────────────────── */

.lhero {
  padding: 72px 28px 52px;
  max-width: 860px;
  margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
}

.lhero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

.lhero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--warm-light);
  margin-bottom: 16px;
}

.lhero__sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 520px;
}

/* ── Main Content ────────────────────────────────────────── */

.lcontent {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 28px 100px;
}

.lsection {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 217, 165, 0.09);
}
.lsection:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.lsection__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(192, 138, 62, 0.28);
}

.lsection__subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 28px;
  margin-bottom: 10px;
}

.lsection p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.lsection p:last-child { margin-bottom: 0; }

.lsection a {
  color: var(--azure);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.lsection a:hover { color: var(--champagne); }

.lsection ul,
.lsection ol {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.lsection li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ── Info Row (label: value) ─────────────────────────────── */

.linfo-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.linfo-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
}
.linfo-row__label {
  color: var(--bronze);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 2px;
}
.linfo-row__value {
  color: var(--warm-light);
}
.linfo-row__value a {
  color: var(--azure);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.linfo-row__value a:hover { color: var(--champagne); }

@media (max-width: 520px) {
  .linfo-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .linfo-row__label { font-size: 11px; }
}

/* ── Rechtliche Basis Tag ────────────────────────────────── */

.lbasis {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  border: 1px solid rgba(47, 183, 255, 0.3);
  border-radius: 2px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

/* ── Footer ──────────────────────────────────────────────── */

.lfooter {
  border-top: 1px solid var(--hairline);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lfooter__copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.lfooter__links {
  display: flex;
  gap: 20px;
}

.lfooter__link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast);
}
.lfooter__link:hover,
.lfooter__link[aria-current="page"] { color: var(--champagne); }

@media (max-width: 520px) {
  .mnav__title { display: none; }
  .mnav { padding: 14px 18px; }
  .lhero { padding: 48px 20px 40px; }
  .lcontent { padding: 40px 20px 80px; }
  .lfooter { padding: 24px 20px; }
}
