/* ================================================================
   A.T.S Autohaus Hilden — Seiten-Stylesheet (datenschutz, impressum)
   ================================================================ */

:root {
  --bg: #F4F2EC;
  --bg-deep: #ECE9E1;
  --ink: #0E0E0E;
  --ink-soft: #2B2B2B;
  --ink-muted: #6B6862;
  --line: rgba(14,14,14,0.10);
  --line-strong: rgba(14,14,14,0.22);
  --accent: #C8B83A;
  --accent-deep: #A99B25;
  --paper: #FAF8F2;
  --card: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400; line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; border-radius: 4px; }

/* ============== PAGE NAV ============== */
.page-nav {
  background: rgba(244,242,236,0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  padding: 16px 28px;
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 10;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-muted); font-size: 14px; font-weight: 500;
  transition: color .2s ease;
}
.back-link:hover { color: var(--ink); text-decoration: none; }
.brand {
  margin-left: auto; display: flex; align-items: center; gap: 10px; color: var(--ink);
}
.brand img { height: 32px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Anton', sans-serif; font-size: 18px; letter-spacing: 0.02em; }
.brand-sub { font-size: 9px; letter-spacing: 0.22em; color: var(--ink-muted); font-weight: 600; text-transform: uppercase; margin-top: 3px; }

/* ============== CONTENT ============== */
.container { max-width: 820px; margin: 0 auto; padding: 72px 28px 100px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--ink-muted); text-transform: uppercase; margin-bottom: 18px;
}
.page-eyebrow .square { width: 6px; height: 6px; background: var(--accent); }
h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(44px, 6vw, 72px); line-height: 0.95;
  letter-spacing: -0.005em; text-transform: uppercase; margin-bottom: 8px;
}
.last-updated { font-size: 13px; color: var(--ink-muted); margin-bottom: 48px; letter-spacing: 0.02em; }
h2 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: 26px; letter-spacing: 0.005em; text-transform: uppercase;
  margin: 48px 0 14px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--ink);
}
h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; color: var(--ink); }
p, li { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.75; }
ul { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 6px; }
strong { color: var(--ink); font-weight: 700; }

.info-card {
  background: var(--card); border: 1px solid var(--line);
  padding: 22px 26px; margin: 18px 0; position: relative;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--accent);
}
.info-card-label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ink-muted); text-transform: uppercase; margin-bottom: 10px;
}

.ok-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.10); color: #15803D;
  border: 1px solid rgba(34,197,94,0.25);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin: 0 0 22px;
}
.ok-badge .dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; }

.placeholder {
  display: inline-block; background: rgba(200,184,58,0.18);
  border: 1px dashed var(--accent-deep);
  padding: 2px 8px; border-radius: 4px;
  font-size: 13px; color: var(--ink); font-weight: 600;
}

footer {
  border-top: 1px solid var(--line); padding: 22px 28px;
  text-align: center; font-size: 13px; color: var(--ink-muted);
}
footer a { color: var(--ink-muted); margin: 0 8px; }
footer a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .container { padding: 48px 20px 80px; }
  .info-card { padding: 20px; }
  .page-nav { padding: 14px 20px; }
  .brand-text { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
