/* ==========================================================================
   Autohaus Bader — Website-Demo
   Design: Lack-Anthrazit + Werkstatt-Hell + Signalgelb (Opel-Erbe, eigenständig)
   Schrift: bewusst nur Systemschriften (DSGVO: keine externen Font-Server)
   ========================================================================== */

:root {
  --ink:        #17191c;   /* Lack-Anthrazit */
  --ink-soft:   #24272b;
  --paper:      #f6f5f2;   /* Werkstatt-Hell */
  --card:       #ffffff;
  --steel:      #565b61;   /* Sekundärtext */
  --line:       #e3e1da;
  --accent:     #f2c200;   /* Signalgelb — immer mit dunklem Text */
  --accent-dk:  #d9ae00;
  --ok:         #1d7a1d;
  --focus:      #1a6fd4;
  --radius:     10px;
  --maxw:       1120px;
  --display: "Bahnschrift", "Avenir Next Condensed", "HelveticaNeue-CondensedBold", "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ---------- Typografie ---------- */

h1, h2, h3 { line-height: 1.08; margin: 0 0 14px; }
h1, h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.12rem; font-weight: 700; }
p { margin: 0 0 14px; }
.lede { font-size: 1.12rem; color: var(--steel); max-width: 60ch; }
.small { font-size: 0.86rem; color: var(--steel); }
strong { font-weight: 650; }

/* Eyebrow mit Doppellinie (Signatur: Fahrbahnmarkierung) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 10px;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}
.on-dark .eyebrow { color: #b9bec4; }

/* ---------- Header ---------- */

.topbar {
  background: var(--ink);
  color: #cfd3d8;
  font-size: 0.82rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--accent); }

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 26px;
  height: 40px;
  flex: none;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 0 / 9px 100%,
    linear-gradient(var(--accent), var(--accent)) 15px 0 / 9px 100%;
  background-repeat: no-repeat;
  transform: skewX(-16deg);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .l1 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 3px;
}
.logo-text .l2 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
footer.site .logo-text .l1 { color: #9aa0a6; }
footer.site .logo-text .l2 { color: #fff; }

nav.main { margin-left: auto; display: flex; align-items: center; gap: 24px; }
nav.main a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
nav.main a:hover { border-bottom-color: var(--accent); }
nav.main a[aria-current="page"] { border-bottom-color: var(--accent); }

.btn {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-dk); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.on-dark .btn-ghost { border-color: #fff; color: #fff; }
.on-dark .btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-big { font-size: 1.05rem; padding: 15px 30px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.on-dark { background: var(--ink); color: #f2f2ef; }
.on-dark .lede { color: #b9bec4; }

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero h1 .accent { color: var(--accent); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 8px; }
.hero-note { font-size: 0.88rem; color: #9aa0a6; }
.hero-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: #e8e9e6;
}
.chip::before { content: "✓ "; color: var(--accent); font-weight: 800; }

/* ---------- Sektionen ---------- */

section.block { padding: 64px 0; }
section.block.tight { padding: 44px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 34px; }

.grid { display: grid; gap: 18px; }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
}
section.alt .card { background: var(--paper); }
.card .icon { width: 44px; height: 44px; margin-bottom: 14px; }
.card .icon svg { width: 100%; height: 100%; }
.card p:last-child { margin-bottom: 0; }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--accent-dk); }

/* Preiskarten — Werkstatt-Anhängekarten */
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  position: relative;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 22px;
  width: 34px; height: 10px;
  border-bottom: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
  transform: translateY(-4px);
  background: var(--paper);
}
.price-card .p-name { font-weight: 700; margin-bottom: 2px; }
.price-card .p-val {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.price-card .p-val small { font-size: 1rem; font-weight: 600; color: var(--steel); }
.price-card .p-sub { font-size: 0.85rem; color: var(--steel); margin-top: 4px; }

/* Schritte */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 66px; margin-bottom: 22px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--steel); margin-bottom: 0; }

/* Bild-Sektion */
.figure {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.figure img { width: 100%; object-fit: cover; }
.figcap { font-size: 0.82rem; color: var(--steel); margin-top: 8px; }

/* FAQ */
details.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
  margin-bottom: 12px;
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 34px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--accent-dk);
}
details.faq[open] summary::after { content: "–"; }
details.faq .a { padding: 0 0 18px; color: var(--steel); }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours td { padding: 7px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.today td { font-weight: 700; }

/* ---------- Formular ---------- */

form.termin { max-width: 720px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 5px; }
.f-field .opt { color: var(--steel); font-weight: 400; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%;
  font: inherit;
  padding: 11px 13px;
  border: 1.5px solid #c9c6bd;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.f-field textarea { min-height: 110px; resize: vertical; }
.f-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--steel);
  margin: 18px 0;
}
.f-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.form-ok {
  display: none;
  background: #eaf6ea;
  border: 1px solid #bfe3bf;
  color: var(--ok);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  margin-top: 18px;
}
.form-ok.show { display: block; }
.f-error { color: #c02020; font-size: 0.85rem; display: none; margin-top: 4px; }
.f-field.invalid input, .f-field.invalid select { border-color: #c02020; }
.f-field.invalid .f-error { display: block; }

/* Demo-Hinweisband */
.demo-band {
  background: repeating-linear-gradient(-45deg, var(--accent) 0 14px, var(--ink) 14px 28px);
  padding: 3px 0;
}
.demo-band-inner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  padding: 6px 16px;
}
.demo-band-inner strong { color: var(--accent); }

/* ---------- CTA-Banner ---------- */

.cta-banner { text-align: left; }
.cta-banner .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.cta-banner h2 { margin: 0; }
.cta-banner .btns { margin-left: auto; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */

footer.site { background: var(--ink); color: #b9bec4; font-size: 0.92rem; }
footer.site .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  padding-top: 48px;
  padding-bottom: 30px;
}
footer.site h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
footer.site a { color: #e4e6e2; text-decoration: none; }
footer.site a:hover { color: var(--accent); }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; }
.foot-legal {
  border-top: 1px solid #33373c;
  padding: 16px 0;
  font-size: 0.8rem;
  color: #8b9096;
}
.foot-legal .wrap { display: flex; flex-wrap: wrap; gap: 8px 26px; padding-top: 0; padding-bottom: 0; }

/* Mobile Sticky-CTA (Funnel) */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--ink);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta a { flex: 1; }

/* ---------- Artikel (Ratgeber, Rechtstexte, Über uns) ---------- */

.article { max-width: 760px; padding: 54px 0 70px; }
.article h2 { margin-top: 40px; font-size: 1.45rem; }
.article h3 { margin-top: 26px; }
.article ul, .article ol { margin: 0 0 16px; padding-left: 22px; }
.article li { margin-bottom: 6px; }
.article .tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin: 18px 0; }
.article table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.article th, .article td { text-align: left; padding: 9px 14px; border-bottom: 1px solid var(--line); }
.article thead th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); }
.article tbody tr:last-child td { border-bottom: 0; }

.callout {
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  margin: 20px 0;
}
.callout p:last-child { margin-bottom: 0; }

.todo {
  background: #fdf3f3;
  border: 1.5px dashed #d08080;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: #8a3030;
  margin: 16px 0;
}
.todo::before { content: "⚠ OFFEN: "; font-weight: 800; }

/* Timeline (Über uns) */
.history { list-style: none; margin: 26px 0; padding: 0; position: relative; }
.history::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.history li { position: relative; padding: 0 0 26px 38px; }
.history li::before {
  content: "";
  position: absolute; left: 1px; top: 6px;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--paper);
}
.history .when { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; color: var(--steel); }
.history h3 { margin: 2px 0 4px; }
.history p { margin: 0; color: var(--steel); }

/* Breadcrumb */
.crumbs { font-size: 0.84rem; color: var(--steel); padding: 18px 0 0; }
.crumbs a { color: var(--steel); }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .grid.c3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer.site .wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  nav.main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 22px 18px;
    gap: 2px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 2px; border-bottom: 1px solid var(--line); }
  nav.main .btn { margin-top: 12px; }
  .nav-toggle { display: block; }
  .grid.c3, .grid.c2, .f-row { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
  .topbar .hide-m { display: none; }
  footer.site .wrap { grid-template-columns: 1fr; }
  .cta-banner .btns { margin-left: 0; }
  section.block { padding: 46px 0; }
}

/* Menü: Einträge nie umbrechen (seit „Mein Auto“-Link) */
nav.main a { white-space: nowrap; }
.nav-meinauto { font-weight: 600; }
@media (min-width: 901px) and (max-width: 1120px) { nav.main { gap: 14px; } nav.main a { font-size: 0.95rem; } }

/* Terminanfrage: Live-Auslastungskalender (js/termin.js) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.label-text { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 5px; }
.radio-row { display: flex; gap: 18px; flex-wrap: wrap; padding: 11px 0; }
.radio-row label { display: flex; gap: 6px; align-items: center; font-size: 0.95rem; }
.radio-row input { width: 18px; height: 18px; flex: none; margin: 0; }
.ausl-wrap { max-width: 1040px; padding-top: 54px; }
.ausl-wrap .lede { max-width: 70ch; }
.ausl-sektion { margin: 26px 0 10px; }
.ausl-kopf { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.ausl-empfehlung .label { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 0.74rem; color: var(--steel); margin-bottom: 6px; }
.ausl-empfehlung .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.empf-chip { font: inherit; display: grid; gap: 1px; text-align: left; padding: 8px 14px; border-radius: 10px; border: 2px solid var(--ink); background: var(--accent); color: var(--ink); cursor: pointer; line-height: 1.2; }
.empf-chip b { font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: 0.95rem; }
.empf-chip span { font-size: 0.78rem; }
.empf-chip:hover { background: #ffd633; }
.kalender { display: none; }
.kalender.show { display: block; }
.kal-nav { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.kal-nav-titel { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1.15rem; }
.kal-pfeil { font: inherit; font-size: 1.5rem; line-height: 1; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--ink); background: #fff; cursor: pointer; color: var(--ink); }
.kal-pfeil:disabled { opacity: .3; cursor: default; }
.kal-monate { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.kal-monat { background: #fff; border: 1.5px solid #c9c6bd; border-radius: var(--radius); padding: 14px 14px 12px; }
.kal-kopf { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; margin-bottom: 8px; }
.kal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.kal-wt { font-size: 0.72rem; color: var(--steel); text-align: center; text-transform: uppercase; letter-spacing: .05em; padding-bottom: 2px; }
.kal-tag { position: relative; font: inherit; display: grid; align-content: start; min-height: 54px; padding: 5px 6px 10px; border-radius: 9px;
  border: 1.5px solid transparent; background: #eaf6ea; color: var(--ink); cursor: pointer; text-align: left; overflow: hidden; }
.kal-tag .nr { font-weight: 700; font-size: 0.95rem; line-height: 1; }
.kal-tag .pz { font-size: 0.68rem; color: var(--steel); line-height: 1.2; margin-top: 2px; white-space: nowrap; }
.kal-tag .bar { position: absolute; left: 6px; right: 6px; bottom: 5px; height: 4px; border-radius: 99px; background: rgba(0,0,0,.08); overflow: hidden; }
.kal-tag .bar i { display: block; height: 100%; background: #2f9e44; }
.kal-tag.s-knapp { background: #fdf3dd; } .kal-tag.s-knapp .bar i { background: #e08700; }
.kal-tag.s-voll { background: #fdecec; color: #9a3d3d; cursor: not-allowed; } .kal-tag.s-voll .bar i { background: #c02020; } .kal-tag.s-voll .nr { text-decoration: line-through; }
.kal-tag.s-geschlossen { background: #f1efe9; color: #a7a49c; cursor: not-allowed; min-height: 54px; }
.kal-tag.heute { box-shadow: inset 0 0 0 2px var(--ink); }
.kal-tag:not(:disabled):hover { border-color: var(--ink); transform: translateY(-1px); }
.kal-tag.gewaehlt { background: var(--ink) !important; color: #fff !important; border-color: var(--ink); }
.kal-tag.gewaehlt .pz { color: #d8d9d6; } .kal-tag.gewaehlt .bar { background: rgba(255,255,255,.2); } .kal-tag.gewaehlt .bar i { background: var(--accent); }
.kal-legende { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: var(--steel); }
.kal-legende i { display: inline-block; width: 14px; height: 14px; border-radius: 4px; margin-right: 6px; vertical-align: -2px; }
.kal-legende .s-frei { background: #eaf6ea; border: 1px solid #bfe3bf; } .kal-legende .s-knapp { background: #fdf3dd; border: 1px solid #f0d9a0; } .kal-legende .s-voll { background: #fdecec; border: 1px solid #f3c1c1; } .kal-legende .s-geschlossen { background: #f1efe9; border: 1px solid #ddd9cf; }
.ausl-offline { background: #fdf3dd; border: 1px solid #f0d9a0; color: #7a5200; border-radius: var(--radius); padding: 12px 16px; font-size: 0.92rem; margin: 10px 0 0; }
.gewaehlt { margin-top: 14px; background: var(--ink); color: #fff; border-radius: var(--radius); padding: 14px 18px; display: flex; gap: 10px 16px; align-items: center; flex-wrap: wrap; font-size: 1rem; }
.gewaehlt .gew-label { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 0.74rem; color: var(--accent); }
.gewaehlt .gew-ausl { color: #c9cbce; font-size: 0.9rem; }
.gewaehlt .btn { margin-left: auto; }
.article .anfrage-titel { margin-top: 0; }
#anfrage { padding-top: 30px; }
@media (max-width: 720px) {
  .ausl-wrap { padding-top: 34px; }
  .kal-tag { min-height: 50px; padding: 4px 5px 9px; }
  .kal-tag .nr { font-size: 0.9rem; }
  .kal-tag .pz { font-size: 0.62rem; }
  .gewaehlt .btn { margin-left: 0; width: 100%; justify-content: center; }
}
.form-fehler { display: none; background: #fdecec; border: 1px solid #f3c1c1; color: #c02020; border-radius: var(--radius); padding: 12px 16px; margin-top: 14px; font-weight: 600; }
.form-fehler.show { display: block; }
.form-ok .klein { font-weight: 400; font-size: 0.85rem; }

@media print {
  header.site, .mobile-cta, .demo-band, .topbar { display: none; }
}

/* Terminformular: fixiertes Anliegen (nur §57a-Pickerl) + Upload-Hinweis */
.anliegen-fix { display: flex; align-items: center; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line, #d7d5cf); border-radius: 8px; background: var(--hell, #f6f5f2); font-weight: 600; }
.f-field .hint { margin: 6px 0 0; font-size: .85rem; color: var(--muted, #6b6b6b); }
.f-field input[type="file"] { padding: 9px 0; }

/* Header: Anmelden + Registrieren (Kundenportal) */
.nav-register { border: 1.5px solid currentColor; border-radius: 8px; padding: 5px 12px; font-weight: 600; }
.nav-register:hover { background: rgba(0,0,0,.06); }
