/* ============================================================
   Reifenservice Schander — Rechtstexte (Impressum, Datenschutz)
   Nutzt dieselbe Palette und Typografie wie die Startseite.
   ============================================================ */

:root {
  --red:       #E01E1E;
  --bg:        #15161a;
  --surface:   #202127;
  --line:      #2c2e35;
  --head:      #f1f2f4;
  --text:      #d4d7dd;
  --muted:     #969ba3;

  --maxw: 820px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Oswald", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg); color: var(--text);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; min-height: 100vh;
}

a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #fff; }

.bar { height: 6px; background: var(--red); flex: 0 0 auto; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 72px; flex: 1 0 auto; }

.back {
  display: inline-block; margin-bottom: 22px; color: var(--muted);
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .08em; font-size: .85rem;
}
.back:hover { color: var(--red); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 5vw, 48px);
  box-shadow: 0 24px 60px -40px rgba(0, 0, 0, .8);
}

h1 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  color: var(--head); font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1.1; letter-spacing: .01em; margin-bottom: 10px;
}

h2 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  color: var(--head); font-size: 1.15rem; letter-spacing: .04em;
  margin: 32px 0 8px;
}

h1 + h2 { margin-top: 24px; }

p, li { margin-bottom: 12px; }
p:last-child, li:last-child { margin-bottom: 0; }

ul { padding-left: 22px; margin-bottom: 12px; }
li::marker { color: var(--red); }

.addr { color: var(--head); }

/* ---------- Footer ---------- */
.footer {
  flex: 0 0 auto; background: #101116; border-top: 3px solid var(--red);
  padding: 22px 24px; color: #6f747c; font-size: .88rem;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; align-items: center;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--red); }
