/* ============================================================
   Rollladen Hofmann – Custom Overrides
   Ziel: traditionell, solide, ruhig. Bestehendes Bootstrap-Theme
   bleibt Basis; hier werden nur Anmutung und neue Sektionen
   gestaltet. Diese Datei gehört nach /css/custom.css
   ============================================================ */

/* --- Farbpalette: Handwerks-Rot (Logo-Farbe) + Anthrazit + warmes Off-White --- */
:root {
  --h-red: #c1272d;             /* Hofmann-Rot aus dem Logo */
  --h-red-dark: #9a1d22;
  --h-dark: #222222;            /* Anthrazit – ersetzt das Navy */
  --h-dark-soft: #333333;
  --h-bg: #faf7f2;              /* sehr warmes Off-White */
  --h-bg-alt: #efeae0;          /* leichter Cream-Ton */
  --h-text: #1f1f1f;
  --h-muted: #6b6b6b;
  --h-border: #e8e2d4;

  /* Backwards-Kompatibilität – alte Variablen mappen auf neue Palette */
  --h-primary: var(--h-dark);
  --h-primary-dark: #111111;
  --h-accent: var(--h-red);
}

/* --- Basics: ruhigere Typo, keine harten Cyan-Blau-Töne --- */
body { background: var(--h-bg); color: var(--h-text); }

/* Animationen aus dem Theme (WOW fadeIn etc.) entschärfen */
.wow, .animated { animation: none !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }

/* --- Navigation --- */
/* Theme hat #navigation position:absolute – für statisches Hero umstellen */
#main-navigation {
  background: #ffffff;
  border-bottom: 1px solid var(--h-border);
  position: relative;
  z-index: 100;
  transition: box-shadow .2s ease;
}
#navigation {
  position: relative !important;
  background: #ffffff !important;
  padding: 8px 0 !important;
}
#main-navigation.scrolled { box-shadow: 0 2px 6px rgba(0,0,0,.08); }
#main-navigation .navbar-brand { padding: 6px 0; display: inline-block; }
#main-navigation .navbar-brand img.logo,
#main-navigation .navbar-brand img.scrolled-logo { max-height: 64px; width: auto; }
#main-navigation .navbar-brand img.scrolled-logo { display: none; }
.navbar-default { background: transparent; padding: 0; }
#main-navigation .nav.navbar-nav > li > a {
  color: var(--h-dark);
  font-weight: 600;
  padding: 18px 14px;
  letter-spacing: .02em;
}
#main-navigation .nav.navbar-nav > li > a:hover { color: var(--h-red); }
#main-navigation .nav-cta {
  background: var(--h-red);
  color: #fff !important;
  border-radius: 3px;
  margin-left: 10px;
}
#main-navigation .nav-cta:hover { background: var(--h-red-dark); color: #fff !important; }

/* --- HERO (statisch) --- */
.hero-static {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0 90px;
  overflow: hidden;
}
.hero-static .hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-static .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.85) 0%, rgba(20,20,20,.55) 65%, rgba(20,20,20,.25) 100%);
}
.hero-static .hero-content { position: relative; z-index: 2; }
.hero-static .hero-eyebrow {
  display: inline-block;
  background: var(--h-accent);
  color: #fff;
  padding: 6px 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-static h1 {
  color: #fff;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 500;          /* leichter, eleganter */
  letter-spacing: -0.005em;
  margin: 0 0 20px;
}
.hero-static h1 strong,
.hero-static h1 b { font-weight: 600; }
.hero-static .hero-lead {
  color: #f1ece1;
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-static .hero-cta { margin-bottom: 32px; }
.hero-static .hero-cta .button { margin-right: 10px; margin-bottom: 10px; }
.hero-static .hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.hero-static .hero-trust li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.hero-static .hero-trust li .fa { color: var(--h-red); margin-right: 6px; }

@media (max-width: 767px) {
  .hero-static { min-height: 500px; padding: 80px 0 60px; }
  .hero-static h1 { font-size: 30px; }
  .hero-static .hero-lead { font-size: 16px; }
}

/* --- Einheitliche Buttons: eckiger, solider --- */
.button,
.button.default,
.button.whitehole {
  display: inline-block;
  padding: 13px 26px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 2px;          /* kaum gerundet = solide */
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  border: 2px solid transparent;
}
.button.default {
  background: var(--h-red);
  color: #fff;
  border-color: var(--h-red);
}
.button.default:hover { background: var(--h-red-dark); border-color: var(--h-red-dark); color: #fff; }
.button.whitehole {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.button.whitehole:hover { background: #fff; color: var(--h-primary); }

/* --- Sektion Heads --- */
.section-head { margin-bottom: 50px; }
.heading-title {
  display: inline-block;
  color: var(--h-red) !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
/* Theme (blue.css) setzt ::before auf cyan – hier hart auf Rot überschreiben */
.heading-title::before,
.whitecolor.heading-title::before,
.darkcolor.heading-title::before {
  background: var(--h-red) !important;
  width: 28px !important;
  height: 2px !important;
  margin-right: 10px !important;
}
.whitecolor.heading-title { color: #fff !important; }
.whitecolor.heading-title::before { background: #fff !important; }
.heading-title::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--h-red);
  vertical-align: middle;
  margin-left: 10px;
}
.whitecolor.heading-title::after { background: #fff; }
.darkcolor { color: var(--h-primary-dark) !important; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; }
h2 { font-size: 32px; line-height: 1.25; font-weight: 600; letter-spacing: -0.005em; }
h3, h4 { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.section-intro { color: var(--h-muted); max-width: 720px; margin: 0 auto; font-size: 16px; }

/* --- LEISTUNGEN Grid (klar, clean, handwerklich) --- */
.services-section { background: var(--h-bg); padding: 90px 0; }
.services-grid { margin-top: 10px; }
.services-grid > [class*="col-"] { margin-bottom: 32px; display: flex; }
.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 10px rgba(20,20,20,.05);
  transition: box-shadow .25s ease, transform .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--h-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
  z-index: 3;
}
.service-card:hover {
  box-shadow: 0 12px 28px rgba(20,20,20,.10);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .service-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-card h3 {
  font-size: 19px;
  margin: 20px 22px 6px;
  color: var(--h-dark);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.service-card p {
  margin: 0 22px 22px;
  color: var(--h-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex-grow: 1;
}
.services-cta { margin-top: 30px; }

/* --- Info-Sektionen (Reparatur / Über uns): ruhig, zweispaltig --- */
.info-section { padding: 0; background: #fff; }
.info-section .box-info-wrap { align-items: stretch; }
.info-section .col-md-6,
.info-section .col-sm-6 { display: flex; }
.info-section .box-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Bild & Text mittig mit der Gegenspalte */
}
.info-section .box-info.container-padding { padding: 70px 60px; }
.info-section .box-info .image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-section .box-info .image img { width: 100%; height: 100%; object-fit: cover; }
.info-section .intro-text h2 { margin-bottom: 24px; }
.info-section .intro-text p { color: var(--h-text); font-size: 16px; line-height: 1.65; }
.usp-list { list-style: none; padding: 0; margin: 0 0 22px; }
.usp-list li {
  padding: 6px 0;
  font-size: 16px;
  color: var(--h-text);
}
.usp-list li .fa { color: var(--h-red); margin-right: 10px; }
.region-text { font-size: 14px; color: var(--h-muted); line-height: 1.7; }

/* --- Reparatur-Block: scanbar, ruhig --- */
.repair-lead { font-size: 17px; line-height: 1.6; margin-bottom: 22px; color: var(--h-text); }
.repair-list { list-style: none; padding: 0; margin: 0 0 24px; }
.repair-list li {
  padding: 10px 0 10px 0;
  font-size: 15.5px;
  color: var(--h-text);
  border-bottom: 1px solid var(--h-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.repair-list li:last-child { border-bottom: 0; }
.repair-list li .fa {
  color: var(--h-red);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.repair-region {
  font-size: 14px;
  color: var(--h-muted);
  margin-bottom: 24px;
  padding: 12px 14px;
  background: var(--h-bg);
  border-left: 3px solid var(--h-red);
}
.repair-region strong { color: var(--h-dark); }

@media (max-width: 991px) {
  .info-section .box-info.container-padding { padding: 50px 30px; }
  .info-section .box-info .image { min-height: 260px; }
}

/* --- Quote Banner --- */
.quote-banner {
  background: var(--h-dark);
  color: #fff;
  padding: 70px 0;
  position: relative;
}
.quote-banner::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--h-red);
  margin: 0 auto 28px;
}
.quote-banner blockquote {
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 14px;
  padding: 0;
  border: 0;
  color: #fff;
}
.quote-banner .quote-author { color: #aaa; font-size: 14px; margin: 0; letter-spacing: .02em; }

/* --- Partner Grid (statisch, kein Carousel) --- */
.partners-section { background: var(--h-bg-alt); padding: 80px 0; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
.partner-item {
  background: #fff;
  border: 1px solid var(--h-border);
  padding: 22px 14px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-item img {
  max-width: 100%;
  max-height: 50px;
  filter: grayscale(30%);
  transition: filter .2s ease;
}
.partner-item:hover img { filter: grayscale(0%); }

@media (max-width: 991px) { .partner-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 575px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- CTA Band --- */
.cta-band {
  background: var(--h-primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #d9d9d9; max-width: 640px; margin: 0 auto 26px; font-size: 16px; }
.cta-band .button { margin: 6px; }

/* --- Kontakt --- */
.contact-section { background: #fff; }
.contact-section .find-us {
  background: var(--h-bg);
  padding: 70px 60px;
  height: 100%;
  border-right: 1px solid var(--h-border);
}
.contact-section .contact-logo { max-width: 200px; margin-bottom: 24px; }
.contact-section .contact-heading {
  color: var(--h-primary-dark);
  margin-bottom: 26px;
  font-size: 28px;
}
.contact-section .contact-block { margin-bottom: 22px; }
.contact-section .contact-label {
  display: block;
  color: var(--h-accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-section .contact-block a { color: var(--h-primary); text-decoration: none; }
.contact-section .contact-block a:hover { color: var(--h-accent); }

@media (max-width: 991px) {
  .contact-section .find-us { padding: 50px 30px; border-right: 0; }
}

/* --- Footer --- */
.site-footer {
  background: var(--h-primary-dark);
  color: #cfd3da;
  padding: 50px 0 30px;
}
.site-footer a { color: #cfd3da; text-decoration: none; }
.site-footer a:hover { color: var(--h-accent); }
.site-footer h4 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; }
.site-footer .footer-logo { max-width: 180px; margin-bottom: 16px; }
.site-footer hr { border-color: rgba(255,255,255,.1); margin: 30px 0 20px; }
.site-footer .footer-legal p { color: #8b94a3; font-size: 13px; margin: 0; }
.site-footer .footer-col { margin-bottom: 24px; }

/* --- Sticky-Buttons (Side) behalten, aber ruhiger --- */
.icon-bar a { border-radius: 0; }

/* --- Preloader falls noch gerendert: sofort weg --- */
.loader { display: none !important; }

/* --- Utility --- */
.no-gutters { margin-left: 0; margin-right: 0; }
.no-gutters > [class*="col-"] { padding-left: 0; padding-right: 0; }

/* --- Eilservice-Marquee-Band (über Reparaturservice) --- */
.eilservice-bar {
  background: var(--h-red);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.eilservice-bar__track {
  display: inline-flex;
  align-items: center;
  animation: eil-marquee 38s linear infinite;
  will-change: transform;
}
.eilservice-bar:hover .eilservice-bar__track { animation-play-state: paused; }
.eilservice-bar__group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.eilservice-bar__item {
  display: inline-block;
  padding: 0 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  color: #fff;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.eilservice-bar__item i.fa { margin-right: 2px; }
.eilservice-bar__sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 22px;
  background: #fff;
  border-radius: 50%;
  opacity: .55;
  vertical-align: middle;
}
@keyframes eil-marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 600px) {
  .eilservice-bar { padding: 10px 0; }
  .eilservice-bar__item { font-size: 13px; }
  .eilservice-bar__sep { margin: 0 14px; }
  .eilservice-bar__track { animation-duration: 30s; }
}
@media (prefers-reduced-motion: reduce) {
  .eilservice-bar__track { animation: none; }
}

/* ==================================================================
   Stuttgart/Weissach – Erweiterungen (Multi-Standort + Formular)
   ================================================================== */

/* ---- Locations-Picker auf Hauptseite ---------------------------- */
.locations-section { padding: 72px 0; background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.location-card {
  display: block;
  background: var(--h-bg);
  border: 1px solid var(--h-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  border-color: var(--h-red);
}
.location-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.location-card__body { padding: 24px 26px 28px; }
.location-card__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--h-red);
  font-weight: 700;
  margin-bottom: 6px;
}
.location-card h3 {
  font-size: 26px;
  margin: 0 0 14px;
  color: var(--h-dark);
}
.location-card__address,
.location-card__phone {
  margin: 4px 0;
  color: var(--h-dark);
  font-size: 15px;
}
.location-card__phone { font-weight: 600; }
.location-card__area {
  margin: 14px 0 18px;
  color: var(--h-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.location-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--h-red);
  font-weight: 600;
  font-size: 15px;
}
.location-card:hover .location-card__cta i { transform: translateX(3px); }
.location-card__cta i { transition: transform .2s ease; }

/* ---- Quick-Info-Bar (Standortseiten) ---------------------------- */
.quick-info-section { padding: 28px 0; background: var(--h-bg); border-bottom: 1px solid var(--h-border); }
.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.quick-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--h-dark);
}
.quick-info__item i {
  color: var(--h-red);
  font-size: 22px;
  margin-top: 2px;
  flex: 0 0 22px;
}
.quick-info__item strong { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--h-muted); font-weight: 700; }
.quick-info__item a { color: var(--h-dark); }
.quick-info__item a:hover { color: var(--h-red); }

/* ---- Einzugsgebiet ---------------------------------------------- */
.area-section { padding: 72px 0; background: #fff; }
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
}
.area-tag {
  display: inline-block;
  padding: 10px 18px;
  background: var(--h-bg);
  border: 1px solid var(--h-border);
  border-radius: 999px;
  font-size: 15.5px;
  color: var(--h-dark);
  font-weight: 500;
}
.area-section__note {
  margin-top: 24px;
  text-align: center;
  color: var(--h-muted);
  font-size: 14.5px;
}
.area-section__note a { color: var(--h-red); font-weight: 600; }

/* ---- Kontaktformular -------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid__info {
  background: #fff;
  border: 1px solid var(--h-border);
  border-radius: 14px;
  padding: 28px 30px;
}
.contact-grid__info h3 { margin-top: 0; color: var(--h-dark); font-size: 22px; }
.contact-grid__info p { font-size: 15px; color: var(--h-dark); margin: 10px 0; }
.contact-grid__info i { color: var(--h-red); width: 18px; }
.contact-grid__info a { color: var(--h-dark); }
.contact-grid__info a:hover { color: var(--h-red); }
.contact-grid__hint { font-size: 13.5px; color: var(--h-muted); margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--h-border); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--h-border);
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.contact-form .form-row { margin-bottom: 16px; }
.contact-form .form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) { .contact-form .form-row--split { grid-template-columns: 1fr; } }
.contact-form label {
  display: block;
  font-size: 13.5px;
  color: var(--h-dark);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--h-border);
  border-radius: 8px;
  background: #fcfaf6;
  font-size: 15px;
  font-family: inherit;
  color: var(--h-dark);
  transition: border-color .15s ease, background .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--h-red);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input[type="file"] {
  font-size: 14px;
  padding: 8px 0;
  color: var(--h-dark);
}
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0 20px;
  font-size: 14px;
  color: var(--h-dark);
}
.form-check input[type="checkbox"] { margin-top: 3px; flex: 0 0 auto; }
.form-check a { color: var(--h-red); }
.form-hint { font-size: 13px; color: var(--h-muted); margin: 6px 0 0; }
.form-hint--small { margin-top: 12px; }
.req { color: var(--h-red); font-weight: 700; }

/* Honeypot – unsichtbar, aber im DOM */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---- Partner-Grid kompakt (5 Logos) ----------------------------- */
.partner-grid--small { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.partner-grid--small .partner-grid__item img { max-height: 56px; }

/* ---- Hero auf Standortseiten etwas kompakter ------------------- */
.hero-location { min-height: 440px; }
.hero-location .hero-static__inner { padding: 70px 0; }

/* ---- Legal-/Danke-Seiten ---------------------------------------- */
.legal-section { padding: 64px 0 80px; background: #fff; }
.legal-wrap { max-width: 820px; margin: 0 auto; color: var(--h-dark); }
.legal-wrap h1 { font-size: 34px; margin-bottom: 24px; color: var(--h-dark); }
.legal-wrap h2 { font-size: 20px; margin-top: 32px; margin-bottom: 10px; color: var(--h-dark); }
.legal-wrap p, .legal-wrap li { font-size: 15.5px; line-height: 1.7; }
.legal-wrap ul { padding-left: 22px; }
.legal-wrap a { color: var(--h-red); }

.thanks-section { padding: 80px 0; background: var(--h-bg); }
.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--h-border);
  border-radius: 16px;
  padding: 48px 42px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.thanks-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--h-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
}
.thanks-card h1 { color: var(--h-dark); margin-bottom: 14px; }
.thanks-card .lead { font-size: 17px; color: var(--h-dark); }
.thanks-card__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 22px 0 14px; }
.thanks-card__back { margin-top: 26px; }
.thanks-card__back a { color: var(--h-red); font-weight: 600; }

/* ---- Footer mit 4 Spalten für Multi-Standort ------------------- */
.site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
@media (max-width: 860px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ==================================================================
   BEM-Aliase + fehlende Layout-Basics (Stuttgart/Weissach-Build)
   Die neuen HTML-Seiten verwenden __-Suffixe; hier definieren wir sie
   (bzw. setzen fehlendes Layout nach), damit das Rendering stimmt.
   ================================================================== */

html, body { margin: 0; padding: 0; font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif; color: var(--h-dark); background: #fff; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--h-red); text-decoration: none; }
a:hover { color: var(--h-red-dark); }

/* Container (falls Theme-Override nicht greift) */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ---- Icon-Bar ---- */
.icon-bar {
  background: var(--h-dark);
  color: #e8e8e8;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.icon-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}
.icon-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0f0f0;
}
.icon-bar__item i { color: var(--h-red); }
.icon-bar__item:hover { color: #fff; }
.icon-bar__item--muted { color: #bdbdbd; }

/* ---- Site-Navigation ---- */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--h-border);
  padding: 14px 0;
  position: relative;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.site-nav__brand img { max-height: 58px; width: auto; }
.site-nav__menu { display: flex; flex-wrap: wrap; gap: 6px; }
.site-nav__menu a {
  color: var(--h-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 14px;
  border-radius: 6px;
  letter-spacing: .01em;
}
.site-nav__menu a:hover,
.site-nav__menu a.is-active {
  color: var(--h-red);
  background: var(--h-bg);
}

/* ---- Hero (BEM-Variante) ---- */
.hero-static {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-static__inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 760px;
}
.hero-static__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--h-red);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 22px;
  font-weight: 700;
}
.hero-static__title {
  font-size: 44px;
  line-height: 1.18;
  margin: 0 0 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.01em;
}
.hero-static__lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin-bottom: 26px;
  max-width: 640px;
}
.hero-static__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Buttons ---- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none !important;
}
.button.default { background: var(--h-red); color: #fff; border-color: var(--h-red); }
.button.default:hover { background: var(--h-red-dark); border-color: var(--h-red-dark); color: #fff; }
.button.whitehole { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.button.whitehole:hover { background: #fff; color: var(--h-red); border-color: #fff; }

/* ---- Heading-Title (BEM) ---- */
.heading-title { text-align: center; margin-bottom: 30px; }
.heading-title__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--h-red);
  font-weight: 700;
  margin-bottom: 8px;
}
.heading-title h2 {
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--h-dark);
  font-weight: 500;
}
.heading-title__lead {
  color: var(--h-muted);
  font-size: 16.5px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- Services-Grid (BEM-Kacheln) ---- */
.services-section { padding: 72px 0; background: var(--h-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--h-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.08); }
.service-card__img {
  height: 170px;
  background-size: cover;
  background-position: center;
}
.service-card__body { padding: 20px 22px 24px; }
.service-card__body h3 { margin: 0 0 8px; font-size: 19px; color: var(--h-dark); }
.service-card__body p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--h-muted); }

/* ---- Eilservice-Marquee ---- */
.eilservice-bar {
  background: var(--h-red);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
}
.eilservice-bar__track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marq 32s linear infinite;
}
.eilservice-bar__group {
  display: flex;
  gap: 40px;
  /* kein padding-right: gleichmäßige 40px-Abstände
     dank Track-Gap auch zwischen den Gruppen */
  white-space: nowrap;
  font-size: 14.5px;
}
.eilservice-bar__group span i { margin-right: 6px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Partner-Grid ---- */
.partner-section { padding: 64px 0; background: #fff; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}
.partner-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 10px;
}
.partner-grid__item img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  filter: grayscale(25%);
  opacity: .92;
  transition: filter .2s ease, opacity .2s ease;
}
.partner-grid__item img:hover { filter: none; opacity: 1; }

/* ---- Kontaktsektion (Basis) ---- */
.contact-section { padding: 72px 0; background: var(--h-bg); border-top: 1px solid var(--h-border); }

/* ---- Footer (4 Spalten) ---- */
.site-footer { background: var(--h-dark); color: #cfd3da; padding: 54px 0 24px; margin-top: 0; }
.site-footer__grid {
  display: grid;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 12px; letter-spacing: .04em; text-transform: uppercase; }
.site-footer p { font-size: 14.5px; line-height: 1.65; color: #cfd3da; margin: 0 0 10px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--h-red); }
.site-footer__logo { max-width: 150px; margin-bottom: 14px; }
.site-footer__nav { list-style: none; padding: 0; margin: 0; }
.site-footer__nav li { padding: 3px 0; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  font-size: 13.5px;
  color: #9aa0a8;
}
.site-footer__bottom a { color: #cfd3da; }
.site-footer__bottom a:hover { color: var(--h-red); }

/* =================================================================
   Addendum 2026-04 – sauberer Aufbau ohne Bootstrap-Reste
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 20px; }
html, body { margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--h-red); text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; }
ul { list-style: none; padding: 0; margin: 0; }

/* Container */
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* Icon-Bar oben (dünn, anthrazit) */
.icon-bar {
  background: var(--h-dark);
  color: #cfd3da;
  font-size: 13.5px;
  padding: 6px 0;
}
.icon-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}
.icon-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8dadf;
}
.icon-bar__item:hover { color: #fff; }

/* Service-Card Variante mit Icon (kein Bild nötig) */
.service-card--icon { padding: 30px 26px 26px; text-align: left; }
.service-card--icon .service-card__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(193, 39, 45, .08);
  color: var(--h-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.service-card--icon h3 { margin: 0 0 8px; font-size: 19px; color: var(--h-dark); font-family: Georgia, serif; }
.service-card--icon p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--h-muted); }

/* Locations-Grid (2 Spalten, Bild-Karte) */
.locations-section { padding: 72px 0; background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}
.location-card {
  display: block;
  background: #fff;
  border: 1px solid var(--h-border);
  border-radius: 14px;
  overflow: hidden;
  color: var(--h-dark);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.10); color: var(--h-dark); }
.location-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.location-card__body { padding: 24px 26px 28px; }
.location-card__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--h-red); font-weight: 700; margin-bottom: 6px;
}
.location-card h3 { margin: 0 0 12px; font-size: 26px; color: var(--h-dark); }
.location-card__row {
  display: flex; align-items: center; gap: 10px;
  margin: 6px 0; font-size: 15px; color: var(--h-dark);
}
.location-card__row i { color: var(--h-red); width: 16px; }
.location-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; color: var(--h-red); font-weight: 700; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
}

/* About-Sektion (Über uns) */
.about-section { padding: 72px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-grid__media img {
  width: 100%; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.about-grid__copy h2 { margin: 4px 0 14px; font-size: 32px; color: var(--h-dark); font-weight: 500; }
.about-grid__copy p { color: var(--h-text); font-size: 16px; line-height: 1.7; }
.about-grid__list { margin-top: 18px; display: grid; gap: 8px; }
.about-grid__list li {
  display: flex; gap: 10px; align-items: center;
  font-size: 15px; color: var(--h-dark);
}
.about-grid__list i { color: var(--h-red); }

/* Quote-Banner */
.quote-banner {
  background: var(--h-dark);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.quote-banner blockquote {
  margin: 0 auto 14px;
  max-width: 780px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}
.quote-banner cite { color: #b0b3ba; font-size: 14px; font-style: normal; letter-spacing: .04em; }

/* CTA-Band */
.cta-band {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: 28px; margin: 0 0 12px; }
.cta-band p { color: #d4d6db; max-width: 620px; margin: 0 auto 22px; font-size: 16px; }
.cta-band .button { margin: 4px 6px; }

/* Footer Grid – 4 Spalten nebeneinander */
.site-footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
.site-footer h4 { font-family: Georgia, serif; }
.site-footer__nav a { color: #cfd3da; }
.site-footer__nav a:hover { color: var(--h-red); }

/* Page-Title (für Impressum/Datenschutz statt Hero) */
.page-title { background: var(--h-dark); color: #fff; padding: 50px 0 36px; }
.page-title h1 { margin: 0; font-size: 36px; color: #fff; }

/* Section-Heading-Title (eyebrow-Variante mit Strich) */
.heading-title__bar {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin-bottom: 6px;
}
.heading-title__bar::before,
.heading-title__bar::after {
  content: ""; height: 2px; width: 28px; background: var(--h-red);
}
.heading-title__bar span {
  font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--h-red); font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 880px) {
  .locations-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-static__title { font-size: 32px; }
  .icon-bar__inner { justify-content: center; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { justify-content: center; text-align: center; }
  .site-nav__menu { width: 100%; justify-content: center; }
  .hero-static { min-height: 420px; }
  .hero-static__title { font-size: 26px; }
}

/* ---- Danke-Hero (Vielen Dank Seite) ---- */
.thanks-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
}
.thanks-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.thanks-hero__icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--h-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  box-shadow: 0 12px 30px rgba(193, 39, 45, .4);
}
.thanks-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-weight: 700;
}
.thanks-hero h1 {
  font-size: 44px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 500;
}
.thanks-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 0 0 22px;
}
.thanks-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  margin: 0 0 18px;
}
.thanks-hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.thanks-hero__back a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.thanks-hero__back a:hover { color: #fff; }
@media (max-width: 600px) {
  .thanks-hero { min-height: 520px; padding: 60px 0; }
  .thanks-hero h1 { font-size: 32px; }
  .thanks-hero__lead { font-size: 16px; }
}

/* ============================================================
   Heading-Title (BEM-Container) — Block, vollständig zentriert.
   Überschreibt das alte Inzell-Inline-Block-Eyebrow-Styling,
   das hier sonst die Block-Ausrichtung kaputtmacht.
   ============================================================ */
.services-section .heading-title,
.locations-section .heading-title,
.partner-section .heading-title,
.partners-section .heading-title,
.contact-section .heading-title,
.about-section .heading-title,
.area-section .heading-title,
.cta-band .heading-title {
  display: block !important;
  text-align: center !important;
  max-width: 760px;
  margin: 0 auto 36px !important;
  color: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: inherit !important;
  font-weight: normal !important;
}
.services-section .heading-title::before,
.services-section .heading-title::after,
.locations-section .heading-title::before,
.locations-section .heading-title::after,
.partner-section .heading-title::before,
.partner-section .heading-title::after,
.partners-section .heading-title::before,
.partners-section .heading-title::after,
.contact-section .heading-title::before,
.contact-section .heading-title::after,
.about-section .heading-title::before,
.about-section .heading-title::after,
.area-section .heading-title::before,
.area-section .heading-title::after,
.cta-band .heading-title::before,
.cta-band .heading-title::after {
  content: none !important;
  display: none !important;
}
.services-section .heading-title h2,
.locations-section .heading-title h2,
.partner-section .heading-title h2,
.partners-section .heading-title h2,
.contact-section .heading-title h2,
.about-section .heading-title h2,
.area-section .heading-title h2 {
  text-align: center !important;
  margin: 0 auto 12px !important;
  font-size: 32px;
  color: var(--h-dark);
  font-weight: 500;
  font-family: Georgia, serif;
}
.heading-title__lead {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 720px;
}

/* ============================================================
   Hamburger / Mobile-Menü
   ============================================================ */
.site-nav__check { display: none; }
.site-nav__burger { display: none; }

@media (max-width: 800px) {
  .site-nav__inner { flex-wrap: wrap; align-items: center; }
  .site-nav__brand { flex: 0 0 auto; margin-right: auto; }
  .site-nav__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--h-border);
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
  }
  .site-nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--h-dark);
    transition: transform .25s ease, opacity .15s ease;
    transform-origin: center;
  }
  .site-nav__menu {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    padding-top: 8px;
    border-top: 1px solid var(--h-border);
  }
  .site-nav__menu a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 0;
    border-bottom: 1px solid var(--h-border);
    background: #fff;
  }
  .site-nav__menu a:last-child { border-bottom: 0; }
  .site-nav__check:checked ~ .site-nav__menu { display: flex; }
  .site-nav__check:checked ~ .site-nav__burger { background: var(--h-bg); }
  .site-nav__check:checked ~ .site-nav__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav__check:checked ~ .site-nav__burger span:nth-child(2) {
    opacity: 0;
  }
  .site-nav__check:checked ~ .site-nav__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Icon-Bar (Telefon/E-Mail oben) auf Mobile ausblenden */
@media (max-width: 800px) {
  .icon-bar { display: none; }
}

/* ============================================================
   Mobile-Feinschliff
   ============================================================ */
@media (max-width: 600px) {
  /* Kontaktformular passgenau (kein Overflow) */
  .contact-form-wrap {
    padding: 22px 18px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form textarea,
  .contact-form input[type="file"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-form .form-row--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-grid__info,
  .contact-form-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .container { padding: 0 16px; }

  /* Hero kompakter (Hauptseite + Standortseiten) */
  .hero-static { min-height: 380px; padding: 32px 0 36px; }
  .hero-static__inner { padding: 24px 0 24px; }
  .hero-location { min-height: 340px; }
  .hero-location .hero-static__inner { padding: 20px 0; }
}

/* Form-Fehler-Box (über dem Kontaktformular bei Server-Validierungsfehler) */
.form-error {
  background: #fef2f2;
  border: 2px solid var(--h-red);
  color: var(--h-red);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.form-error .fa { margin-top: 2px; }
