:root {
  --brand: #0e7abe;
  --brand-dark: #0a5d92;
  --brand-tint: rgba(14, 122, 190, 0.1);
  --accent-wa: #25d366;
  --ink: #172536;
  --ink-soft: #56667a;
  --surface: #ffffff;
  --surface-alt: #f9fafb;
  --border: #dfe8e6;
  --border-blue: #c6ddec;
  --shadow: 0 10px 30px -12px rgba(15, 40, 60, 0.16);
  --radius-lg: 16px;
  --radius-md: 12px;
  --max-width: 1160px;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; }

/* Verhindert, dass ein zu breites Grid-Kind (z.B. langer Button-Text) das Grid und damit die
   ganze Seite horizontal aufsprengt - haeufigste Ursache fuer seitliches Scrollen auf Mobile. */
.hero-inner > *, .service-grid > *, .steps > *, .service-tiles > *,
.standort-choice > *, .location-grid > *, .about-grid > *, .contact-grid > * {
  min-width: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--brand-dark);
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--brand); text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .75em 1.4em;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(14, 122, 190, 0.5);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: .95em 1.8em; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.brand-mark { color: var(--brand); display: inline-flex; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { color: var(--brand); }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 0 8px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 85% 15%, #e4f1ee 0%, var(--surface) 55%);
  padding: 72px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-tint);
  color: var(--brand);
  font-weight: 600;
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  max-width: 16ch;
}
.hero h1 .accent { color: var(--brand); }
.hero-lead { font-size: 1.05rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  transition: border-color .15s ease, transform .15s ease;
}
.contact-chip:hover { border-color: var(--brand); transform: translateY(-1px); }
.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}
.chip-icon-wa { background: var(--accent-wa); }
.chip-text { display: flex; flex-direction: column; line-height: 1.25; }
.chip-label { font-size: .74rem; color: var(--ink-soft); }
.chip-value { font-size: .92rem; font-weight: 600; color: var(--ink); }

.hero-locations-label {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.location-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.location-pill {
  background: var(--brand-tint);
  color: var(--brand-dark);
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-size: .92rem;
}
.hero-trust li { padding-left: 26px; position: relative; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  width: min(320px, 80vw);
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow);
  padding: 20px;
}
.hero-badge {
  position: absolute;
  bottom: -6px;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-badge strong { font-family: var(--font-head); color: var(--brand); font-size: 1.3rem; }
.hero-badge span { font-size: .78rem; color: var(--ink-soft); }

/* Sections */
.section { padding: 88px 0; scroll-margin-top: 76px; }
.section-alt { background: var(--surface-alt); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-lead { max-width: 60ch; font-size: 1.02rem; margin-bottom: 40px; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--brand); background: var(--brand-tint); }
.service-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.service-meta { color: var(--brand); font-weight: 600; font-size: .85rem; margin-bottom: 10px; }
.service-desc { font-size: .92rem; flex-grow: 1; }
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.price { font-family: var(--font-head); font-weight: 700; color: var(--brand-dark); font-size: 1.15rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.step { position: relative; padding-left: 4px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .92rem; }

/* Booking */
.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.booking-tab {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border-blue);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.booking-tab:hover { border-color: var(--brand); }
.booking-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Grosse Leistungs-Kacheln mit Preisinfo (Variante von .booking-tab fuer die Buchungsseite) */
.service-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.service-tile.booking-tab {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  gap: 2px;
}
.service-tile.booking-tab:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-tile.booking-tab.is-active {
  background: var(--brand-tint);
  border-color: var(--brand);
  color: var(--ink);
}
.service-tile-tag {
  align-self: flex-start;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.service-tile-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.1rem;
}
.service-tile-meta {
  color: var(--brand);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 10px;
}
.service-tile-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 14px;
}
.service-tile-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.2rem;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.standort-choice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 560px;
}
.standort-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 2px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.standort-btn:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }
.standort-btn strong { font-family: var(--font-head); color: var(--brand-dark); font-size: 1.1rem; }
.standort-btn span { color: var(--ink-soft); font-size: .88rem; }

.booking-back { margin-bottom: 16px; }
.booking-back a { font-size: .88rem; font-weight: 600; }

.booking-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 780px;
}
.cal-embed {
  width: 100%;
  height: 780px;
}

/* Locations */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.location-card h3 { margin-bottom: 8px; }
.link-arrow { font-weight: 600; font-size: .92rem; display: inline-block; margin-top: 8px; }
.hint { font-size: .88rem; color: var(--ink-soft); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-list li {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.value-list strong { color: var(--brand-dark); font-family: var(--font-head); font-size: .98rem; }
.value-list span { color: var(--ink-soft); font-size: .88rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: stretch;
}
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.contact-list a { font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.contact-list a:hover { color: var(--brand); }

.contact-cta {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.contact-cta h3 { color: #fff; margin-bottom: 4px; }
.contact-cta p { color: rgba(255,255,255,.82); margin-bottom: 18px; }
.contact-cta .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: none; }
.contact-cta .btn-primary:hover { background: #eef6fb; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 32px 0;
}
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; }
.footer-inner p { margin: 0; color: inherit; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 4px; }
  .booking-frame, .cal-embed { height: auto; min-height: 640px; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 64px; }
  .section { padding: 64px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .booking-frame, .cal-embed { min-height: 560px; }
}
