/* DW-Kfz-Meisterbetrieb UG & Co. KG — Landingpage
   Markenfarben aus dem Logo: Grün #6cbf45, Anthrazit #2b2e34 */

:root {
  --green: #6cbf45;
  --green-dark: #579a35;
  --dark: #2b2e34;
  --ink: #303339;
  --muted: #6b7078;
  --line: #e6e8ea;
  --bg: #f5f6f7;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 46, 52, .08);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--green-dark); }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Kopf ---- */
.site-header {
  text-align: center;
  padding: 48px 20px 8px;
}
.logo {
  width: 132px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.brand {
  margin: 18px 0 2px;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--dark);
}
.brand .legal { color: var(--muted); font-weight: 600; font-size: .55em; vertical-align: middle; }
.tagline {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---- Hero / Intro ---- */
.intro {
  text-align: center;
  margin: 28px auto 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---- Kontakt-Karte ---- */
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  margin: 26px 0;
}
.contact-grid {
  display: grid;
  gap: 12px;
}
.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.12rem;
  transition: transform .08s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .ic {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid; place-items: center;
}
.btn-tel {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(108, 191, 69, .35);
}
.btn-mail {
  background: var(--dark);
  color: #fff;
}
.btn small { display: block; font-weight: 500; font-size: .72rem; opacity: .85; letter-spacing: .03em; text-transform: uppercase; }
.btn .ic svg { width: 22px; height: 22px; fill: currentColor; }

.address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 4px 2px;
  color: var(--ink);
}
.address .ic { color: var(--green-dark); flex: 0 0 auto; margin-top: 2px; }
.address .ic svg { width: 22px; height: 22px; fill: currentColor; }
.address b { color: var(--dark); }

/* ---- Leistungen ---- */
.services {
  margin: 30px 0 8px;
  text-align: center;
}
.services h2 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0 0 14px;
}
.chips {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}
.chips li {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: .93rem;
  font-weight: 600;
}

/* ---- Hinweis ---- */
.note {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  margin: 26px 0 8px;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding: 22px 20px 40px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}
.site-footer a { color: var(--muted); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--dark); text-decoration: underline; }
.site-footer .dot { margin: 0 8px; opacity: .5; }

/* ---- Impressum-Seite ---- */
.legal-page { padding: 40px 0 8px; }
.legal-page .back {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; font-weight: 700; color: var(--green-dark);
  margin-bottom: 18px;
}
.legal-page h1 { color: var(--dark); font-size: 1.8rem; margin: 0 0 22px; }
.legal-page h2 { color: var(--dark); font-size: 1.12rem; margin: 26px 0 6px; }
.legal-page p { margin: 6px 0; }
.legal-page .mini-logo { width: 64px; height: auto; display: block; margin-bottom: 18px; }
.legal-page address { font-style: normal; }
