*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #f26522;
  --orange-dark: #d9541a;
  --orange-light: #fff4ed;
  --orange-glow: rgba(242, 101, 34, 0.35);
  --header-dark: #2a1f2e;
  --header-mid: #3d2c3e;
  --dark: #1a1520;
  --gray-900: #273842;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #fff;
  --gold: #f59e0b;
  --shadow: 0 4px 16px rgba(26, 21, 32, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 21, 32, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --header-h: 88px;
  --mobile-bar: 56px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.65;
  background: var(--gray-100) url('../images/bg.webp') no-repeat center top;
  background-size: 100% auto;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar – wie Original */
.top-bar {
  background: var(--header-mid) url('../images/bg-top.jpg') repeat-x center top;
  color: var(--white);
  font-size: 0.8125rem;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: var(--white); font-weight: 600; }
.top-bar a:hover { color: var(--orange); }

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.logo-text { display: none; }

@media (max-width: 480px) {
  .logo img { height: 48px; max-width: 180px; }
  .site-header .container { min-height: 72px; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--orange); }

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

@media (min-width: 600px) {
  .header-cta { display: inline-flex; }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 24px 20px 100px;
  overflow-y: auto;
  z-index: 150;
}

.nav-mobile.is-open { display: block; }

@media (min-width: 900px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.nav-mobile .mobile-call {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  border: none;
}

/* Hero slider */
.hero-banner {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-banner { min-height: 420px; }
}

.hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-banner img { min-height: 420px; }
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42, 31, 46, 0.92) 0%,
    rgba(42, 31, 46, 0.75) 45%,
    rgba(42, 31, 46, 0.35) 100%
  );
  display: flex;
  align-items: center;
}

.hero-banner .container {
  color: var(--white);
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero-banner h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-banner h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-banner .hero-lead {
  font-size: 1.0625rem;
  opacity: 0.95;
  max-width: 560px;
  margin-bottom: 20px;
}

.hero-banner .hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.0625rem;
  box-shadow: 0 6px 20px var(--orange-glow);
}

.hero-banner .hero-cta-primary:hover {
  background: var(--orange-dark);
}

/* Main hero card section below banner */
.hero {
  padding: 40px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
}

.hero-region {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(242, 101, 34, 0.3);
}

.hero h2.page-title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.hero h2.page-title span { color: var(--orange); }

.usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.usp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
}

.usp svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--orange);
  margin-top: 2px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.0625rem;
  box-shadow: 0 6px 20px var(--orange-glow);
  transition: background 0.2s, transform 0.2s;
}

.hero-cta-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hero-cta-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.hero-card {
  background: var(--gray-50);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.price-from {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.price-from small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
}

.hero-card ul { margin: 16px 0; }

.hero-card li {
  padding: 5px 0;
  font-size: 0.9375rem;
  padding-left: 22px;
  position: relative;
}

.hero-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.trust-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
}

/* ===== Premium Galerie ===== */
.gallery-premium {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #1a1520 0%, #2a1f2e 40%, #1f1a24 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.gallery-premium .container {
  position: relative;
  z-index: 1;
}

.gallery-premium::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-premium .section-head h2 {
  color: var(--white);
}

.gallery-premium .section-head h2::after {
  background: var(--orange);
}

.gallery-premium .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.gallery-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 40px;
}

.gallery-stat {
  text-align: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(242, 101, 34, 0.35);
  border-radius: var(--radius);
  min-width: 120px;
}

.gallery-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}

.gallery-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

/* Showcase: großes Hero + Thumbnails */
.gallery-showcase-wrap {
  margin-bottom: 36px;
}

#gallery-showcase {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  #gallery-showcase {
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    min-height: 380px;
  }
}

.showcase-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(242, 101, 34, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  min-height: 240px;
}

@media (min-width: 768px) {
  .showcase-hero { min-height: 100%; }
}

.showcase-hero img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-hero:hover img {
  transform: scale(1.05);
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  pointer-events: none;
}

.showcase-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 8px;
}

.showcase-hero-overlay h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.showcase-zoom {
  font-size: 0.8125rem;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.showcase-zoom::before {
  content: '⊕';
  font-size: 1rem;
}

.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .showcase-thumbs {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    overflow: visible;
  }
}

.showcase-thumb {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.25s, box-shadow 0.25s, transform 0.25s;
  border: 2px solid transparent;
  background: #000;
}

.showcase-thumb.is-active,
.showcase-thumb:hover {
  opacity: 1;
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.3);
  transform: translateX(4px);
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  min-height: 72px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .showcase-thumb img { min-height: 0; }
}

/* Filter-Tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-filter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter:hover {
  border-color: var(--orange);
  color: var(--white);
}

.gallery-filter.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
}

/* Quadrat-Raster (Galerie-Seite): immer 2 Spalten, gleiche Größe */
#gallery-grid.gallery-grid--square {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #gallery-grid.gallery-grid--square {
    gap: 16px;
    max-width: 840px;
  }
}

#gallery-grid.gallery-grid--square .gallery-card--large {
  grid-column: span 1;
  grid-row: span 1;
}

#gallery-grid.gallery-grid--square .gallery-card-btn {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

#gallery-grid.gallery-grid--square .gallery-card-btn img {
  min-height: 0;
}

@media (min-width: 600px) {
  #gallery-grid.gallery-grid--square {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  #gallery-grid.gallery-grid--square {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
}

/* Masonry-Grid */
#gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  #gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (min-width: 900px) {
  #gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.gallery-card--large {
  grid-column: span 2;
}

@media (min-width: 900px) {
  .gallery-card--large { grid-row: span 2; }
  .gallery-card--large .gallery-card-btn img {
    min-height: 100%;
  }
}

.gallery-card-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #111;
  aspect-ratio: 4/3;
}

.gallery-card--large .gallery-card-btn {
  aspect-ratio: auto;
  min-height: 280px;
}

.gallery-card-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.gallery-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  text-align: left;
  transform: translateY(8px);
  transition: transform 0.3s;
}

.gallery-card-tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 4px;
}

.gallery-card-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.gallery-card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-card-btn:hover img {
  transform: scale(1.08);
}

.gallery-card-btn:hover .gallery-card-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-card-btn:hover .gallery-card-content {
  transform: translateY(0);
}

.gallery-cta-row {
  text-align: center;
  margin-top: 40px;
}

.gallery-cta-row p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

/* Lightbox */
#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 94vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 3px solid var(--orange);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--white);
}

.lightbox-caption strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.lightbox-caption span {
  font-size: 0.875rem;
  color: var(--orange);
}

.lightbox-count {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  cursor: pointer;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 600px) {
  .lightbox-prev { left: 8px; width: 44px; height: 44px; }
  .lightbox-next { right: 8px; width: 44px; height: 44px; }
}

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-head p { color: var(--gray-600); }

.divider-title {
  text-align: center;
  margin-bottom: 32px;
}

.divider-title h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--orange);
}

/* Content blocks from Klempner page */
.content-block {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.content-block p {
  color: var(--gray-600);
  margin: 0;
}

.content-blocks { max-width: 900px; margin: 0 auto; }

.team-sign {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.125rem;
}

.team-sign span { color: var(--orange); }

/* ===== Google Bewertungen ===== */
.reviews-section {
  padding: 64px 0;
  background: var(--gray-50);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 40px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}

.reviews-score { text-align: center; min-width: 140px; }

.reviews-score .score-number {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.reviews-score-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 10px 0;
}

.reviews-score-stars svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.reviews-score .score-count {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.reviews-divider {
  width: 1px;
  height: 72px;
  background: var(--gray-200);
}

.reviews-google-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  max-width: 320px;
}

.reviews-google-link:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.reviews-google-link svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.reviews-google-link strong {
  display: block;
  color: var(--gray-900);
  font-size: 1rem;
  margin-bottom: 4px;
}

.reviews-google-link span {
  font-size: 0.875rem;
  color: var(--orange-dark);
  font-weight: 600;
}

.reviews-google-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--gray-900);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.2s;
  text-decoration: none;
}

.reviews-google-cta:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  box-shadow: var(--shadow);
}

.reviews-google-cta svg {
  width: 22px;
  height: 22px;
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.reviews-track:active { cursor: grabbing; }

.review-card {
  position: relative;
  min-width: calc(100% - 8px);
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

@media (min-width: 641px) {
  .review-card { min-width: calc(50% - 14px); }
}

@media (min-width: 1025px) {
  .review-card { min-width: calc(33.333% - 14px); }
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(242, 101, 34, 0.35);
}

.review-card-google {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.35;
}

.review-g-icon { width: 22px; height: 22px; }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 28px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(242, 101, 34, 0.25);
}

.review-meta { min-width: 0; }

.review-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1rem;
}

.review-tag-new {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.review-date {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.review-badge {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.3;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card:hover .review-text {
  -webkit-line-clamp: unset;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.reviews-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.reviews-btn:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.reviews-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--gray-700);
}

.reviews-btn:hover svg { fill: var(--orange-dark); }

.reviews-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.reviews-dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .reviews-summary { flex-direction: column; }
  .reviews-divider { width: 80%; height: 1px; }
  .reviews-google-link { max-width: 100%; justify-content: center; }
}

/* Services */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: var(--shadow); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.375rem;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card p { font-size: 0.875rem; color: var(--gray-600); }

/* Teaser auf Startseite → Galerie & Preise */
.home-teasers {
  padding: 48px 0;
  background: var(--gray-50);
}

.teaser-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}

.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.teaser-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(242, 101, 34, 0.4);
}

.teaser-card-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  background: #1a1520;
}

.teaser-card-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.teaser-card-visual--price {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff5f0 100%);
}

.teaser-card-visual--price span {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}

.teaser-card-body {
  padding: 20px 22px 24px;
}

.teaser-card-body h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.teaser-card-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.teaser-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
}

.two-col {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 20px 0 10px;
}

.prose p { margin-bottom: 14px; color: var(--gray-600); }

.check-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9375rem;
}

.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.price-box {
  background: linear-gradient(145deg, var(--header-mid) 0%, var(--header-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--orange);
}

.price-box h3 { font-size: 1.125rem; margin-bottom: 16px; }

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9375rem;
}

.price-item strong { color: var(--orange); font-size: 1.125rem; }

.price-disclaimer { margin-top: 14px; font-size: 0.75rem; opacity: 0.85; }

.price-box .hero-cta-primary { width: 100%; margin-top: 16px; }

.steps {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step { text-align: center; padding: 20px; }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 14px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--orange);
}

.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.districts-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.districts-preview a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.districts-preview a:hover { background: var(--orange-dark); }

.cta-band {
  background: var(--header-mid) url('../images/bg-top.jpg') repeat-x center top;
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}

.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { opacity: 0.9; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Footer – wie Original */
.site-footer {
  background: var(--header-mid) url('../images/bg-top.jpg') repeat-x center top;
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 90px;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer { text-align: left; padding-bottom: 48px; }
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-logo img {
  height: 56px;
  width: auto;
  margin: 0 auto 16px;
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .footer-logo img { margin: 0 0 16px; }
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer a { color: rgba(255, 255, 255, 0.8); }
.site-footer a:hover { color: var(--orange); }

.footer-contact a { color: var(--orange); font-weight: 700; }
.footer-contact li { margin-bottom: 8px; }

.districts-seo {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.districts-seo summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  list-style: none;
}

.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 12px;
}

.districts-grid a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer-bottom { justify-content: space-between; }
}

.horiz-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 20px;
  padding-top: 16px;
}

.horiz-links a {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.horiz-links a:first-child {
  padding-left: 0;
  border-left: none;
}

/* Mobile sticky – orange */
.mobile-notruf-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 -4px 16px var(--orange-glow);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: var(--mobile-bar);
}

.mobile-notruf-button:hover { background: var(--orange-dark); }

.mobile-notruf-button .icon {
  animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (min-width: 768px) {
  .mobile-notruf-button { display: none; }
}

.cookie-banner {
  position: fixed;
  bottom: var(--mobile-bar);
  left: 16px;
  right: 16px;
  max-width: 420px;
  background: var(--header-dark);
  color: var(--gray-300);
  padding: 16px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  z-index: 9998;
  font-size: 0.8125rem;
  display: none;
}

@media (min-width: 768px) {
  .cookie-banner { bottom: 16px; }
}

.cookie-banner.is-visible { display: block; }
.cookie-banner a { color: var(--orange); }
.cookie-actions { display: flex; gap: 8px; margin-top: 12px; }
.cookie-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-accept { background: var(--orange); color: var(--white); }
.btn-decline { background: transparent; color: var(--gray-400); border: 1px solid var(--gray-500) !important; }

.page-hero {
  background: var(--header-mid) url('../images/bg-top.jpg') repeat-x;
  color: var(--white);
  padding: 40px 0;
}

.page-hero h1 { font-size: 2rem; font-weight: 800; }

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  background: var(--white);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--gray-900);
  border-left: 4px solid var(--orange);
  padding-left: 12px;
}

.legal-content p, .legal-content li { margin-bottom: 12px; color: var(--gray-600); }
.legal-content ul { list-style: disc; padding-left: 24px; }

.lp-hero {
  padding: 40px 0;
  background: var(--white);
}

.lp-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gray-900);
}

.lp-hero h1 span { color: var(--orange); }
.breadcrumb { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--orange); }
