/* ============================================
   Taxi Deschinger Bad Kötzting
   styles.css
   ============================================ */

/* Lokale Schriften (kein Google-Fonts-Remote-Load → DSGVO-konform) */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/manrope-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bricolage-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/bricolage-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/bricolage-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/bricolage-800.woff2') format('woff2');
}

:root {
  --gelb: #ffd500;
  --gelb-tief: #f5c500;
  --schwarz: #0a0a0a;
  --tinte: #1a1a1a;
  --grau-900: #2c2c2c;
  --grau-700: #555;
  --grau-500: #888;
  --grau-300: #d8d6cf;
  --grau-100: #efece2;
  --papier: #fafaf7;
  --papier-warm: #fffdf5;
  --weiss: #ffffff;

  --schrift-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --schrift-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --max-breite: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --gap-gross: clamp(2.5rem, 6vw, 5rem);

  --radius: 4px;
  --radius-gross: 14px;

  --schatten: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --schatten-stark: 0 4px 12px rgba(0,0,0,.08), 0 24px 56px rgba(0,0,0,.10);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--schrift-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tinte);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--schrift-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--schwarz);
}
h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); letter-spacing: -0.015em; }
p  { color: var(--grau-700); }
.eyebrow {
  font-family: var(--schrift-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grau-700);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gelb);
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-breite);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============================================
   GELBE SCHILDERLEISTE OBEN
   ============================================ */
.top-stripe {
  background: var(--gelb);
  color: var(--schwarz);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.top-stripe .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  text-align: center;
}
.top-stripe svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--papier);
  border-bottom: 1px solid var(--grau-100);
  backdrop-filter: blur(8px);
}
.header.scrolled { box-shadow: var(--schatten); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand img {
  height: 56px;
  width: auto;
}
.brand-text { display: none; }
@media (min-width: 540px) {
  .brand-text { display: block; }
  .brand-text .brand-line-1 {
    font-family: var(--schrift-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--schwarz);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .brand-text .brand-line-2 {
    font-size: 0.72rem;
    color: var(--grau-700);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 3px;
  }
}

.nav-desktop { display: none; }
@media (min-width: 880px) {
  .nav-desktop {
    display: flex;
    gap: 1.6rem;
    align-items: center;
  }
  .nav-desktop a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--grau-900);
    position: relative;
    padding: 0.3rem 0;
    transition: color .2s;
  }
  .nav-desktop a:hover { color: var(--schwarz); }
  .nav-desktop a:hover::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 3px; background: var(--gelb);
  }
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--schwarz);
  color: var(--weiss);
  padding: 0.65rem 1.05rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .15s, background .15s;
  white-space: nowrap;
}
.cta-phone:hover { background: var(--tinte); transform: translateY(-1px); }
.cta-phone svg { width: 16px; height: 16px; }
.cta-phone .label { display: none; }
@media (min-width: 420px) {
  .cta-phone .label { display: inline; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse at 80% -20%, rgba(255,213,0,.18), transparent 55%),
    radial-gradient(ellipse at 0% 110%, rgba(255,213,0,.10), transparent 50%),
    var(--papier);
  overflow: hidden;
}
.hero::before {
  /* feiner Grain-Look */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.7;
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.25fr 1fr; }
}
.hero h1 {
  margin: 1rem 0 1.3rem;
}
.hero h1 .akzent {
  background: linear-gradient(transparent 62%, var(--gelb) 62%, var(--gelb) 92%, transparent 92%);
  padding: 0 0.15em;
  white-space: nowrap;
}
.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--grau-700);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gelb);
  color: var(--schwarz);
  box-shadow: 0 4px 0 var(--gelb-tief);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--gelb-tief), 0 12px 24px rgba(255,213,0,.35);
}
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--gelb-tief); }
.btn-ghost {
  background: transparent;
  color: var(--schwarz);
  border: 2px solid var(--schwarz);
  padding: calc(0.95rem - 2px) calc(1.5rem - 2px);
}
.btn-ghost:hover { background: var(--schwarz); color: var(--weiss); }

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-visual .logo-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.08));
}
.hero-visual::before {
  /* gelbe Halbkreis-Strichgrafik im Hintergrund */
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  border: 1px dashed var(--grau-300);
  border-radius: 50%;
  animation: dreh 60s linear infinite;
}
@keyframes dreh { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .hero-visual::before { animation: none; }
}

/* Statistik-Streifen unter Hero */
.stats {
  background: var(--schwarz);
  color: var(--weiss);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 720px) {
  .stats .container { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: none; }
@media (max-width: 719px) {
  .stat:nth-child(2) { border-right: none; }
}
.stat-zahl {
  font-family: var(--schrift-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gelb);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* ============================================
   SEKTIONEN ALLGEMEIN
   ============================================ */
section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head h2 { margin: 1rem 0 0.8rem; }
.section-head p  { font-size: 1.08rem; max-width: 60ch; }

/* ============================================
   LEISTUNGEN
   ============================================ */
.leistungen {
  background: var(--weiss);
  border-top: 1px solid var(--grau-100);
  border-bottom: 1px solid var(--grau-100);
}
.leistungen-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .leistungen-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .leistungen-grid { grid-template-columns: repeat(3, 1fr); } }

.leistung {
  position: relative;
  padding: 1.7rem 1.5rem 1.5rem;
  border-radius: var(--radius-gross);
  background: var(--papier-warm);
  border: 1px solid var(--grau-100);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.leistung:hover {
  transform: translateY(-3px);
  box-shadow: var(--schatten);
  border-color: var(--grau-300);
}
.leistung::before {
  /* Akzentlinie oben */
  content: "";
  position: absolute;
  top: 0; left: 1.5rem;
  width: 32px;
  height: 4px;
  background: var(--gelb);
  border-radius: 0 0 4px 4px;
}
.leistung-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gelb);
  border-radius: 12px;
  margin-bottom: 1.1rem;
  color: var(--schwarz);
}
.leistung-icon svg { width: 24px; height: 24px; }
.leistung h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.leistung p {
  font-size: 0.95rem;
  color: var(--grau-700);
  line-height: 1.5;
}
.leistung ul {
  list-style: none;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--grau-900);
}
.leistung ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}
.leistung ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--gelb);
  border-radius: 50%;
}

/* ============================================
   FOKUS-BLOCK: KRANKENFAHRTEN
   ============================================ */
.fokus {
  background: var(--schwarz);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.fokus::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: var(--gelb);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(2px);
}
.fokus .container {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 880px) {
  .fokus .container { grid-template-columns: 1.1fr 1fr; align-items: center; }
}
.fokus h2 { color: var(--weiss); }
.fokus .eyebrow { color: var(--gelb); }
.fokus .eyebrow::before { background: var(--gelb); }
.fokus p { color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.fokus-liste {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}
.fokus-liste div {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,.92);
}
.fokus-liste svg { flex-shrink: 0; margin-top: 2px; }
.fokus-card {
  background: var(--gelb);
  color: var(--schwarz);
  padding: 2rem;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-stark);
}
.fokus-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.fokus-card .nummer {
  font-family: var(--schrift-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin: 0.4rem 0 0.8rem;
  color: var(--schwarz);
}
.fokus-card a.nummer { transition: opacity .15s; }
.fokus-card a.nummer:hover { opacity: 0.75; }
.fokus-card p { color: var(--grau-900); font-size: 0.92rem; }

/* ============================================
   ÜBER UNS
   ============================================ */
.ueber { background: var(--papier); }
.ueber-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 880px) {
  .ueber-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
.ueber-text p { margin-bottom: 1rem; font-size: 1.02rem; }
.ueber-text p:first-of-type {
  font-size: 1.15rem;
  color: var(--grau-900);
}
.ueber-zitat {
  border-left: 4px solid var(--gelb);
  padding: 1.2rem 1.4rem;
  background: var(--weiss);
  border-radius: 0 var(--radius-gross) var(--radius-gross) 0;
  font-style: italic;
  color: var(--grau-900);
  margin-top: 1.5rem;
}
.ueber-zitat span {
  display: block;
  font-style: normal;
  font-weight: 700;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--grau-700);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--weiss);
  border-top: 1px solid var(--grau-100);
}
.faq-liste {
  display: grid;
  gap: 0.7rem;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--papier-warm);
  border: 1px solid var(--grau-100);
  border-radius: var(--radius-gross);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--gelb);
  box-shadow: var(--schatten);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--schrift-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--schwarz);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,213,0,0.05); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform .25s ease;
  color: var(--grau-700);
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--schwarz);
}
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--grau-700);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}
.faq-item p a {
  color: var(--schwarz);
  text-decoration: underline;
  text-decoration-color: var(--gelb);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ============================================
   KONTAKT
   ============================================ */
.kontakt {
  background:
    linear-gradient(180deg, var(--papier) 0%, var(--weiss) 100%);
  border-top: 1px solid var(--grau-100);
}
.kontakt-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .kontakt-grid { grid-template-columns: repeat(3, 1fr); } }

.kontakt-card {
  background: var(--weiss);
  border: 1px solid var(--grau-100);
  border-radius: var(--radius-gross);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform .2s, box-shadow .2s;
}
.kontakt-card:hover { transform: translateY(-2px); box-shadow: var(--schatten); }
.kontakt-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--schwarz);
  color: var(--gelb);
  border-radius: 12px;
}
.kontakt-icon svg { width: 22px; height: 22px; }
.kontakt-card h3 { font-size: 1rem; color: var(--grau-700); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.kontakt-card .wert {
  font-family: var(--schrift-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--schwarz);
  letter-spacing: -0.01em;
  line-height: 1.15;
  word-break: break-word;
}
.kontakt-card .meta { font-size: 0.88rem; color: var(--grau-500); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--schwarz);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: var(--gelb); }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer h4 {
  color: var(--weiss);
  font-size: 0.85rem;
  font-family: var(--schrift-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.45rem; }
.footer .brand-footer {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1rem;
}
.footer .brand-footer img {
  height: 56px;
  filter: brightness(1.1);
}
.footer .brand-footer .name {
  font-family: var(--schrift-display);
  font-weight: 800;
  color: var(--weiss);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.footer .brand-footer .sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer .tag { color: rgba(255,255,255,.6); max-width: 32ch; line-height: 1.55; font-size: 0.9rem; }
.footer .notruf {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  margin-top: 0.3rem;
}
.footer .notruf dt { color: rgba(255,255,255,.6); }
.footer .notruf dd { color: var(--weiss); font-weight: 700; font-variant-numeric: tabular-nums; }
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ============================================
   IMPRESSUM / DATENSCHUTZ TEMPLATE
   ============================================ */
.legal {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5rem);
  background: var(--papier);
  min-height: 60vh;
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.4rem;
}
.legal .legal-sub {
  color: var(--grau-700);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.legal h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grau-300);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 1rem; }
.legal h3 { font-size: 1.05rem; margin: 1.2rem 0 0.4rem; color: var(--grau-900); }
.legal p, .legal address, .legal li {
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
  color: var(--grau-900);
  line-height: 1.65;
}
.legal address { font-style: normal; }
.legal a { color: var(--schwarz); text-decoration: underline; text-decoration-color: var(--gelb); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal a:hover { background: var(--gelb); }
.legal ul { padding-left: 1.2rem; }
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--grau-700);
  text-decoration: none;
}
.legal .back:hover { color: var(--schwarz); background: none; }

/* ============================================
   SCROLL-REVEAL UTILITY
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .header, .footer, .top-stripe, .cta-phone { display: none; }
  body { background: white; color: black; }
}
