/* Handwerker — markant & vertrauenswürdig: Anthrazit, Amber, kantige Akzente */
:root {
  --bg: #f6f5f3;
  --panel: #ffffff;
  --dunkel: #22262a;
  --dunkler: #17191c;
  --akzent: #f59e0b;
  --akzent-tief: #d97706;
  --text: #2d3238;
  --muted: #5c646c;
  --radius: 12px;
  --schatten: 0 8px 28px rgba(20, 24, 28, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.7;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }

/* ---- Header ---- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23, 25, 28, .88); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--akzent);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; }
.logo { color: #fff; font-weight: 800; font-size: 1.12rem; letter-spacing: .4px; text-decoration: none; }
nav a { color: #c9cfd5; text-decoration: none; margin-left: 24px; font-size: .95rem; font-weight: 600; }
nav a:hover { color: var(--akzent); }

/* ---- Hero ---- */
.hero {
  position: relative; color: #fff; padding: 108px 0 128px; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(245, 158, 11, .22), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(245, 158, 11, .12), transparent 60%),
    linear-gradient(155deg, var(--dunkel), var(--dunkler));
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(45deg, #fff 0 2px, transparent 2px 26px);
}
.kicker {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--akzent);
  border: 1px solid rgba(245, 158, 11, .45); border-radius: 999px; padding: 5px 14px;
  margin-bottom: 20px; background: rgba(245, 158, 11, .08);
}
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 850; line-height: 1.12; }
.hero .claim { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d6dade; margin: 18px 0 36px; max-width: 640px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta {
  display: inline-block; background: var(--akzent); color: #17191c;
  font-weight: 800; padding: 15px 34px; border-radius: 8px; text-decoration: none;
  box-shadow: 0 6px 22px rgba(245, 158, 11, .35); transition: transform .15s, box-shadow .15s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245, 158, 11, .45); }
.tel-cta {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700;
  text-decoration: none; padding: 14px 22px; border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px; transition: border-color .15s, background .15s;
}
.tel-cta:hover { border-color: var(--akzent); background: rgba(245,158,11,.1); }
.hero-fade { position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: linear-gradient(transparent, var(--bg)); }

/* ---- Sektionen ---- */
section { padding: 84px 0; }
section.alt { background: var(--panel); }
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 34px; position: relative;
  padding-bottom: 14px; font-weight: 800;
}
h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 58px; height: 4px;
  background: var(--akzent); border-radius: 2px; }

/* ---- Leistungs-Karten ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--panel); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--schatten); border-top: 4px solid var(--akzent);
  transition: transform .2s, box-shadow .2s;
}
section.alt .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(20,24,28,.14); }
.card .icon {
  width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(245, 158, 11, .13); color: var(--akzent-tief); border-radius: 10px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* ---- USPs ---- */
.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-bottom: 34px; }
.usp { display: flex; gap: 14px; align-items: flex-start; background: var(--bg);
  border-radius: var(--radius); padding: 20px; }
.usp .punkt { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--akzent); color: #17191c; font-weight: 800; display: grid; place-items: center; }
.usp h3 { font-size: 1rem; margin-bottom: 4px; }
.usp p { color: var(--muted); font-size: .92rem; }
.ueber { max-width: 720px; color: var(--muted); }

/* ---- FAQ ---- */
details {
  background: var(--panel); border-radius: var(--radius); box-shadow: var(--schatten);
  margin-bottom: 12px; overflow: hidden;
}
summary { cursor: pointer; padding: 18px 22px; font-weight: 700; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; color: var(--akzent-tief);
  font-size: 1.3rem; font-weight: 800; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 22px 18px; color: var(--muted); }

/* ---- Kontakt ---- */
.kontakt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 34px; align-items: start; }
.kontakt-info a { color: var(--akzent-tief); text-decoration: none; font-weight: 700; }
.kontakt-info h3 { margin: 18px 0 6px; font-size: 1rem; }
.kontakt-info .tel-cta { color: var(--dunkel); border-color: var(--akzent); margin-top: 16px; }
.karte iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--schatten); }

/* ---- Footer ---- */
footer { background: var(--dunkler); color: #9aa2aa; padding: 24px 0; font-size: .88rem; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
footer a { color: #9aa2aa; }

/* ---- Sanftes Einblenden ---- */
.card, .usp, section h2, .ueber { opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease; }
.sichtbar { opacity: 1 !important; transform: none !important; }
.reveal-group > *:nth-child(2) { transition-delay: .08s; }
.reveal-group > *:nth-child(3) { transition-delay: .16s; }
.reveal-group > *:nth-child(4) { transition-delay: .24s; }
.reveal-group > *:nth-child(5) { transition-delay: .32s; }
.reveal-group > *:nth-child(6) { transition-delay: .4s; }

@media (max-width: 640px) {
  nav a { margin-left: 14px; font-size: .88rem; }
  .hero { padding: 80px 0 96px; }
  section { padding: 60px 0; }
}

/* ---- Bewertungs-Badge (nur wenn eine echte Bewertung gefunden wurde) ---- */
.bewertung {
  display: inline-flex; align-items: center; gap: 8px; margin: 4px 0 26px;
  padding: 8px 16px; border-radius: 999px; font-size: .92rem; font-weight: 700;
  background: rgba(255, 200, 60, .15); border: 1px solid rgba(255, 200, 60, .45);
}
.bewertung .sterne { color: #ffc83c; letter-spacing: 2px; }
.bewertung .quelle { font-weight: 400; opacity: .75; font-size: .82rem; }
