/* ==========================================================================
   Schlüsseldienst Bad Cannstatt 24h — Design System
   Mineral / Kurort / Travertin identity (20th distinct Felix identity)
   Slate-petrol hero (#15323D / #1E4451) + Travertine warm gold CTA (#C2974E /
   hover #A67C33) · Emerald checks (#22C55E) · cream/stone sections
   (#F5F1E8 / #FBF8F1) · text #1A2A2E
   Display: Newsreader (elegant serif, Altstadt/Kurort) · Body: Karla
   Namespace prefix: bc- (Bad Cannstatt) · flagship — largest district
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primary: Slate-petrol / mineral (Mineralquellen / Kurort) */
  --bc-petrol-950: #0E232B;  /* deepest */
  --bc-petrol-900: #122B34;  /* text-dark / footer */
  --bc-petrol-850: #15323D;  /* hero base */
  --bc-petrol-800: #1E4451;  /* hero mid / header */
  --bc-petrol-700: #275462;  /* */
  --bc-petrol-600: #336776;  /* */
  --bc-petrol-500: #467F8E;  /* */
  --bc-petrol-400: #6FA0AD;  /* light accent on dark */
  --bc-petrol-200: #BFD6DB;  /* light text on dark */
  --bc-petrol-100: #DCEAEE;  /* icon chip bg */
  --bc-petrol-50:  #EFF5F6;

  /* Accent: Travertine warm gold / sand (CTA / urgency) */
  --bc-gold-900: #7E6021;
  --bc-gold-800: #936F28;
  --bc-gold-700: #A67C33;  /* hover */
  --bc-gold-600: #B58940;
  --bc-gold-500: #C2974E;  /* primary CTA (travertine) */
  --bc-gold-400: #D4B175;
  --bc-gold-100: #F2E6CD;
  --bc-gold-50:  #FAF3E4;

  /* Neutral (cream / travertine stone) */
  --bc-white:     #FFFFFF;
  --bc-stone-50:  #FBF8F1;  /* warmest section bg */
  --bc-stone-100: #F5F1E8;  /* alt section bg */
  --bc-stone-200: #EAE3D4;
  --bc-stone-300: #D8CEBA;
  --bc-stone-400: #B3A88F;
  --bc-stone-500: #837A65;
  --bc-stone-600: #5E5847;
  --bc-stone-700: #423E33;
  --bc-stone-900: #1A2A2E;

  /* Emerald (success / WhatsApp / checks) */
  --bc-green-600: #15915F;
  --bc-green-500: #22C55E;
  --bc-green-400: #4ADE80;
  --bc-green-100: #D6F5E3;
  --bc-whatsapp:  #25D366;

  /* Semantic aliases */
  --bc-text:        #1A2A2E;
  --bc-text-muted:  #5E5847;
  --bc-border:      #EAE3D4;
  --bc-surface:     #FBF8F1;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--bc-text);
  line-height: 1.7;
  background: var(--bc-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bc-petrol-700); text-decoration: none; }
a:hover { color: var(--bc-petrol-600); }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4, h5 {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--bc-petrol-900);
  font-weight: 600;
}
h1 { font-size: clamp(1.95rem, 4.6vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); margin-bottom: 1.1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
p  { margin-bottom: 1rem; }
strong { color: var(--bc-petrol-900); }

table { border-collapse: collapse; width: 100%; }

/* Layout */
.bc-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}
.bc-section { padding: 3.5rem 0; }
.bc-section-alt    { background: var(--bc-stone-100); }
.bc-section-petrol { background: var(--bc-petrol-900); }

.bc-icon     { width: 1.1em;  height: 1.1em;  vertical-align: -0.15em; flex-shrink: 0; }
.bc-icon-md  { width: 1.5rem; height: 1.5rem; }
.bc-icon-lg  { width: 2rem;   height: 2rem; }
.bc-text-center { text-align: center; }
.bc-link-accent { color: var(--bc-gold-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.bc-link-accent:hover { color: var(--bc-gold-800); }

/* ---------- Buttons ---------- */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: inherit;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  line-height: 1.25;
  white-space: nowrap;
}
.bc-btn:active { transform: scale(0.97); }

.bc-btn-primary {
  background: var(--bc-gold-500);
  color: #16242A;
  box-shadow: 0 6px 18px rgba(194, 151, 78, 0.40);
}
.bc-btn-primary:hover {
  background: var(--bc-gold-700);
  color: #fff;
  box-shadow: 0 8px 22px rgba(166, 124, 51, 0.46);
}

.bc-btn-petrol {
  background: var(--bc-petrol-800);
  color: var(--bc-white);
  box-shadow: 0 6px 18px rgba(14, 35, 43, 0.35);
}
.bc-btn-petrol:hover {
  background: var(--bc-petrol-900);
  color: var(--bc-white);
}

.bc-btn-whatsapp {
  background: var(--bc-whatsapp);
  color: var(--bc-white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.bc-btn-whatsapp:hover {
  background: #1eb858;
  color: var(--bc-white);
}

.bc-btn-outline-white {
  background: transparent;
  color: var(--bc-white);
  border: 2px solid rgba(255,255,255,0.55);
}
.bc-btn-outline-white:hover {
  border-color: var(--bc-white);
  color: var(--bc-white);
  background: rgba(255,255,255,0.1);
}

.bc-btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  border-radius: 0.4rem;
}

/* ---------- Header / Navigation ---------- */
.bc-topbar {
  display: none;
  background: var(--bc-petrol-950);
  color: var(--bc-petrol-200);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bc-topbar .bc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.bc-topbar-left,
.bc-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.bc-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.bc-topbar-item svg { color: var(--bc-gold-400); width: 0.95rem; height: 0.95rem; }
.bc-topbar-item .bc-topbar-green { color: var(--bc-green-400); }
@media (min-width: 1024px) { .bc-topbar { display: block; } }

/* Main header */
.bc-header {
  background: var(--bc-petrol-800);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 16px rgba(14, 35, 43, 0.4);
}
.bc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

/* Logo: left-aligned */
.bc-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bc-logo img {
  height: 38px;
  width: auto;
}
.bc-logo-text {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bc-white);
  line-height: 1.2;
  display: none;
}
@media (min-width: 480px) { .bc-logo-text { display: block; } }

/* Nav links — right of center, LEFT of CTA button */
.bc-nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: flex-end;
  margin-right: 0.75rem;
}
.bc-nav a {
  color: var(--bc-petrol-200);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 0.3rem;
  transition: color 0.15s, background 0.15s;
}
.bc-nav a:hover {
  color: var(--bc-white);
  background: rgba(255,255,255,0.1);
}

/* Header CTA — rightmost */
.bc-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bc-gold-500);
  color: #16242A;
  padding: 0.55rem 1.15rem;
  border-radius: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.bc-header-cta:hover { background: var(--bc-gold-700); color: #fff; }
.bc-header-cta svg { width: 1rem; height: 1rem; }

/* Mobile hamburger (checkbox hack) */
.bc-nav-toggle { display: none; }
.bc-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 80;
  position: relative;
  padding: 4px;
  border-radius: 0.3rem;
  transition: background 0.2s;
}
.bc-burger:hover { background: rgba(255,255,255,0.12); }
.bc-burger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--bc-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Desktop: show nav, hide burger */
@media (min-width: 1024px) {
  .bc-nav     { display: flex; }
  .bc-burger  { display: none; }
}

/* Mobile drawer — FULLY hidden when closed (visibility:hidden + opacity:0 + transform). */
@media (max-width: 1023px) {
  .bc-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bc-petrol-950);
    z-index: 55;
    padding: 0.75rem 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, visibility 0.3s;
    border-bottom: 3px solid var(--bc-gold-500);
    flex: none;
    margin-right: 0;
  }
  .bc-nav a {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .bc-nav-toggle:checked ~ .bc-header .bc-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .bc-nav-toggle:checked ~ .bc-header .bc-burger .bc-burger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .bc-nav-toggle:checked ~ .bc-header .bc-burger .bc-burger-line:nth-child(2) {
    opacity: 0;
  }
  .bc-nav-toggle:checked ~ .bc-header .bc-burger .bc-burger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
}

/* ---------- Hero: slate-petrol split — text left, real photo right ---------- */
.bc-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(194, 151, 78, 0.26) 0%, rgba(194, 151, 78, 0) 60%),
    linear-gradient(135deg, #15323D 0%, #1E4451 55%, #0E232B 100%);
}

/* Decorative background layer (subtle texture only) */
.bc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}
.bc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) sepia(0.25);
}
.bc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14,35,43,0.92) 0%, rgba(30,68,81,0.78) 100%);
}

.bc-hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 3rem 0 5.5rem; /* room for overlapping stat cards */
}
.bc-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}

/* Right: real hero photo (rounded corners) */
.bc-hero-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(14, 35, 43, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.bc-hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bc-hero-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(14,35,43,0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.bc-hero-photo-badge svg { width: 1rem; height: 1rem; color: var(--bc-gold-400); }

/* ---------- Hero overlapping stat cards (signature) ---------- */
.bc-hero-stats {
  position: relative;
  z-index: 5;
  margin-top: -3.5rem;
  margin-bottom: 2.5rem;
}
.bc-hero-stats .bc-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .bc-hero-stats .bc-container { grid-template-columns: repeat(3, 1fr); }
}
.bc-stat-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 0.85rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 14px 40px rgba(14, 35, 43, 0.14);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bc-stat-card-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  background: var(--bc-gold-100);
  color: var(--bc-gold-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bc-stat-card-icon svg { width: 1.5rem; height: 1.5rem; }
.bc-stat-card-amount {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bc-petrol-900);
  line-height: 1.1;
  display: block;
}
.bc-stat-card-amount em {
  font-style: normal;
  color: var(--bc-gold-700);
}
.bc-stat-card-label {
  font-size: 0.85rem;
  color: var(--bc-stone-500);
  display: block;
  margin-top: 0.15rem;
}

/* Left: headings + USP list */
.bc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(194, 151, 78, 0.18);
  color: var(--bc-gold-400);
  border: 1px solid rgba(194, 151, 78, 0.40);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.bc-hero-eyebrow svg { color: var(--bc-green-400); }
.bc-hero-h1 {
  color: var(--bc-white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 4.6vw, 3.15rem);
  font-weight: 600;
  line-height: 1.14;
}
.bc-hero-sub {
  color: var(--bc-petrol-200);
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
  max-width: 520px;
}
.bc-hero-checks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.bc-hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--bc-white);
  font-size: 1rem;
  font-weight: 600;
}
.bc-hero-checks li svg {
  color: var(--bc-green-400);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}
.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Desktop: two-column hero layout */
@media (min-width: 900px) {
  .bc-hero-inner {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .bc-hero-photo img { max-height: 460px; }
}

/* ---------- Emergency Strip ---------- */
.bc-strip {
  background: var(--bc-gold-500);
  padding: 1rem 0;
}
.bc-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.5rem;
}
.bc-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(22, 36, 42, 0.16);
  color: #16242A;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}
.bc-strip-badge svg { width: 1rem; height: 1rem; }
.bc-strip-tel {
  font-size: 1.25rem;
  font-weight: 800;
  color: #16242A;
  background: rgba(22, 36, 42, 0.14);
  padding: 0.35rem 1rem;
  border-radius: 0.45rem;
  letter-spacing: 0.02em;
}
.bc-strip-tel:hover { color: #0E232B; background: rgba(22, 36, 42, 0.24); }

/* ---------- Section Headers (centered) ---------- */
.bc-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.bc-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bc-gold-800);
  background: var(--bc-gold-50);
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.bc-section-title {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  color: var(--bc-petrol-900);
  margin-bottom: 0.75rem;
}
.bc-section-desc {
  color: var(--bc-stone-600);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Service Cards (left-border accent) ---------- */
.bc-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px)  { .bc-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-service-grid { grid-template-columns: repeat(3, 1fr); } }

.bc-service-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-left: 4px solid var(--bc-petrol-700);
  border-radius: 0 0.65rem 0.65rem 0;
  padding: 1.4rem 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: 0 2px 8px rgba(14, 35, 43, 0.06);
  transition: box-shadow 0.2s, border-left-color 0.2s, transform 0.2s;
}
.bc-service-card:hover {
  border-left-color: var(--bc-gold-500);
  box-shadow: 0 8px 28px rgba(14, 35, 43, 0.14);
  transform: translateX(3px);
}
.bc-service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.5rem;
  background: var(--bc-petrol-100);
  color: var(--bc-petrol-700);
  margin-bottom: 0.3rem;
  transition: background 0.2s, color 0.2s;
}
.bc-service-card:hover .bc-service-card-icon {
  background: var(--bc-gold-100);
  color: var(--bc-gold-800);
}
.bc-service-card-icon svg { width: 1.4rem; height: 1.4rem; }
.bc-service-card h3 {
  font-size: 1.1rem;
  color: var(--bc-petrol-900);
  margin-bottom: 0;
}
.bc-service-card p {
  color: var(--bc-stone-600);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  flex: 1;
}
.bc-service-card-price {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bc-petrol-700);
}
.bc-service-card a.bc-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bc-gold-800);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.bc-service-card a.bc-card-link:hover { color: var(--bc-gold-700); }

/* ---------- Stadtteil / District Grid ---------- */
.bc-viertel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px)  { .bc-viertel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-viertel-grid { grid-template-columns: repeat(3, 1fr); } }

.bc-viertel-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-left: 3px solid var(--bc-petrol-600);
  border-radius: 0 0.6rem 0.6rem 0;
  padding: 1.4rem 1.4rem 1.3rem 1.5rem;
  transition: border-left-color 0.2s, box-shadow 0.2s;
  color: var(--bc-petrol-900);
  line-height: 1.55;
}
.bc-viertel-tile:hover {
  border-left-color: var(--bc-gold-500);
  box-shadow: 0 6px 22px rgba(14, 35, 43, 0.1);
}
.bc-viertel-tile strong {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bc-petrol-900);
  display: block;
  margin-bottom: 0.15rem;
}
.bc-viertel-tile span.bc-viertel-meta {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bc-gold-800);
  display: block;
  margin-bottom: 0.5rem;
}
.bc-viertel-tile p {
  font-size: 0.9rem;
  color: var(--bc-stone-600);
  margin-bottom: 0.6rem;
}
.bc-viertel-tile .bc-viertel-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--bc-gold-800);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.bc-viertel-tile .bc-viertel-link:hover { color: var(--bc-gold-700); }

/* ---------- Local / Info two-column block ---------- */
.bc-local {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .bc-local { grid-template-columns: 1.1fr 0.9fr; }
}
.bc-local-photo {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(14, 35, 43, 0.18);
  border: 1px solid var(--bc-border);
}
.bc-local-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}
.bc-local-text h2 { margin-bottom: 1rem; }
.bc-local-text p { color: var(--bc-stone-700); }
.bc-local-facts {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.bc-local-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--bc-stone-700);
}
.bc-local-facts li svg {
  color: var(--bc-petrol-600);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ---------- Trust / Why Us Section ---------- */
.bc-trust-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .bc-trust-columns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-trust-columns { grid-template-columns: repeat(4, 1fr); } }

.bc-trust-item {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.bc-trust-item:hover { box-shadow: 0 8px 28px rgba(14, 35, 43, 0.1); }
.bc-trust-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.6rem;
  background: var(--bc-petrol-100);
  color: var(--bc-petrol-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.bc-trust-icon-wrap svg { width: 1.6rem; height: 1.6rem; }
.bc-trust-item h3 { font-size: 1.07rem; color: var(--bc-petrol-900); }
.bc-trust-item p  { font-size: 0.9rem; color: var(--bc-stone-500); margin: 0; }

/* Trust prose (Warum wir text + in-content backlink) */
.bc-trust-prose {
  max-width: 820px;
  margin: 0 auto 2.25rem;
  text-align: center;
  color: var(--bc-stone-700);
  font-size: 1.02rem;
}
.bc-trust-prose a {
  color: var(--bc-gold-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bc-trust-prose a:hover { color: var(--bc-gold-700); }

/* USP chips row */
.bc-usp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.bc-usp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}
.bc-usp-chip-petrol { background: var(--bc-petrol-100);  color: var(--bc-petrol-800); }
.bc-usp-chip-gold   { background: var(--bc-gold-100);    color: var(--bc-gold-900); }
.bc-usp-chip-green  { background: var(--bc-green-100);   color: #11603F; }
.bc-usp-chip svg { width: 0.9rem; height: 0.9rem; }

/* ---------- Preise / Price Section ---------- */
.bc-price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px)  { .bc-price-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-price-row { grid-template-columns: repeat(4, 1fr); } }

.bc-price-tile {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 0.7rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(14, 35, 43, 0.06);
  position: relative;
  overflow: hidden;
}
.bc-price-tile::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--bc-petrol-700);
  margin: -1.4rem -1.2rem 1.2rem;
}
.bc-price-tile.bc-price-highlight::before { background: var(--bc-gold-500); }
.bc-price-tile.bc-price-green::before     { background: var(--bc-green-600); }
.bc-price-tile.bc-price-gold::before      { background: var(--bc-gold-500); }
.bc-price-amount {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--bc-petrol-900);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.bc-price-tile.bc-price-highlight .bc-price-amount { color: var(--bc-gold-700); }
.bc-price-name  { font-size: 0.82rem; color: var(--bc-stone-500); display: block; }

/* Price table */
.bc-price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(14, 35, 43, 0.07);
}
.bc-price-table {
  width: 100%;
  min-width: 480px;
  background: var(--bc-white);
  border-radius: 0.75rem;
  overflow: hidden;
}
.bc-price-table th {
  background: var(--bc-petrol-800);
  color: var(--bc-white);
  text-align: left;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Newsreader', Georgia, serif;
}
.bc-price-table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--bc-border);
  font-size: 0.93rem;
  color: var(--bc-stone-700);
}
.bc-price-table tr:last-child td { border-bottom: none; }
.bc-price-table tbody tr:nth-child(even) { background: var(--bc-stone-50); }
.bc-price-table td:last-child {
  font-weight: 700;
  color: var(--bc-petrol-700);
  white-space: nowrap;
}
.bc-price-note {
  font-size: 0.88rem;
  color: var(--bc-stone-500);
  margin-top: 1rem;
}

/* ---------- Ratgeber / Blog Cards ---------- */
.bc-ratgeber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px)  { .bc-ratgeber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-ratgeber-grid { grid-template-columns: repeat(3, 1fr); } }

.bc-ratgeber-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 0.7rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bc-ratgeber-card:hover {
  box-shadow: 0 10px 30px rgba(14, 35, 43, 0.13);
  transform: translateY(-4px);
}
.bc-ratgeber-thumb {
  height: 160px;
  background: var(--bc-petrol-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bc-ratgeber-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc-ratgeber-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}
.bc-ratgeber-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-petrol-700);
  background: var(--bc-petrol-100);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  align-self: flex-start;
}
.bc-ratgeber-card h3 {
  font-size: 1.1rem;
  color: var(--bc-petrol-900);
  line-height: 1.3;
  margin-bottom: 0;
}
.bc-ratgeber-card p {
  font-size: 0.9rem;
  color: var(--bc-stone-600);
  flex: 1;
  margin-bottom: 0;
}
.bc-ratgeber-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bc-gold-800);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.bc-ratgeber-link:hover { color: var(--bc-gold-700); }

/* ---------- FAQ Accordion ---------- */
.bc-faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.bc-faq details {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-left: 4px solid var(--bc-petrol-600);
  border-radius: 0 0.6rem 0.6rem 0;
  transition: border-left-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.bc-faq details[open] {
  border-left-color: var(--bc-gold-500);
  box-shadow: 0 4px 18px rgba(14, 35, 43, 0.1);
}
.bc-faq summary {
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: 'Newsreader', Georgia, serif;
  color: var(--bc-petrol-900);
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
  transition: background 0.15s;
}
.bc-faq summary::-webkit-details-marker { display: none; }
.bc-faq summary:hover { background: var(--bc-stone-50); }
.bc-faq details:nth-child(1)  summary::before { content: "01"; }
.bc-faq details:nth-child(2)  summary::before { content: "02"; }
.bc-faq details:nth-child(3)  summary::before { content: "03"; }
.bc-faq details:nth-child(4)  summary::before { content: "04"; }
.bc-faq details:nth-child(5)  summary::before { content: "05"; }
.bc-faq details:nth-child(6)  summary::before { content: "06"; }
.bc-faq details:nth-child(7)  summary::before { content: "07"; }
.bc-faq details:nth-child(8)  summary::before { content: "08"; }
.bc-faq summary::before {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.35rem;
  background: var(--bc-petrol-100);
  color: var(--bc-petrol-700);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: 'Karla', sans-serif;
}
.bc-faq details[open] summary::before {
  background: var(--bc-gold-100);
  color: var(--bc-gold-800);
}
.bc-faq summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bc-petrol-600);
  line-height: 1;
  transition: transform 0.25s, color 0.2s;
}
.bc-faq details[open] summary::after {
  content: '−';
  color: var(--bc-gold-600);
}
.bc-faq-answer {
  padding: 0 1.25rem 1.25rem 1.25rem;
  padding-left: calc(1.25rem + 1.7rem + 0.75rem);
  color: var(--bc-stone-700);
  font-size: 0.95rem;
  line-height: 1.7;
}
.bc-faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Contact Section ---------- */
.bc-contact {
  background: linear-gradient(135deg, var(--bc-petrol-900) 0%, var(--bc-petrol-800) 100%);
  color: var(--bc-white);
  padding: 4rem 0;
}
.bc-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .bc-contact-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.bc-contact h2 { color: var(--bc-white); }
.bc-contact-sub { color: var(--bc-petrol-200); margin-bottom: 2rem; }
.bc-big-tel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 2.85rem);
  font-weight: 600;
  color: var(--bc-gold-400);
  margin: 0.6rem 0 1.5rem;
  line-height: 1;
}
.bc-big-tel:hover { color: var(--bc-gold-500); }
.bc-big-tel svg { width: 1.8rem; height: 1.8rem; color: var(--bc-gold-400); }
.bc-contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.bc-contact-nap {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.7rem;
  padding: 1.5rem;
}
.bc-contact-nap h3 { color: var(--bc-white); margin-bottom: 1rem; }
.bc-contact-nap-rows { display: grid; gap: 0.75rem; font-size: 0.93rem; color: var(--bc-petrol-200); }
.bc-contact-nap-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.bc-contact-nap-row svg { color: var(--bc-gold-400); width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.bc-contact-nap-row a { color: var(--bc-petrol-200); }
.bc-contact-nap-row a:hover { color: var(--bc-white); }
.bc-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bc-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.bc-hours-val { font-weight: 700; color: var(--bc-gold-400); }

/* ---------- Footer ---------- */
.bc-footer {
  background: var(--bc-petrol-950);
  color: var(--bc-white);
}
.bc-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
}
@media (min-width: 640px)  { .bc-footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.bc-footer-brand img { height: 36px; margin-bottom: 0.85rem; }
.bc-footer-brand p { font-size: 0.88rem; color: var(--bc-stone-400); line-height: 1.6; }

.bc-footer-col-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-gold-400);
  margin-bottom: 0.9rem;
}
.bc-footer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.bc-footer-list a {
  color: var(--bc-stone-400);
  font-size: 0.88rem;
  transition: color 0.15s;
}
.bc-footer-list a:hover { color: var(--bc-white); }

.bc-footer-contacts { display: grid; gap: 0.6rem; margin-top: 0; }
.bc-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--bc-stone-400);
}
.bc-footer-contact-item svg { color: var(--bc-gold-400); width: 0.95rem; height: 0.95rem; flex-shrink: 0; margin-top: 0.15rem; }
.bc-footer-contact-item a { color: var(--bc-stone-400); }
.bc-footer-contact-item a:hover { color: var(--bc-white); }

.bc-footer-accent-bar {
  background: var(--bc-petrol-800);
  padding: 0.9rem 0;
  text-align: center;
}
.bc-footer-accent-bar .bc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--bc-petrol-200);
  font-weight: 600;
}

.bc-footer-legal {
  background: var(--bc-petrol-950);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.9rem 0;
  font-size: 0.82rem;
  color: var(--bc-stone-500);
}
.bc-footer-legal .bc-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .bc-footer-legal .bc-container { flex-direction: row; }
}
.bc-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  align-items: center;
}
.bc-footer-legal a { color: var(--bc-stone-500); }
.bc-footer-legal a:hover { color: var(--bc-white); }

/* ---------- Desktop Sticky Call-Bar (bottom) ---------- */
.bc-callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--bc-petrol-900);
  border-top: 3px solid var(--bc-gold-500);
  box-shadow: 0 -8px 32px rgba(14, 35, 43, 0.45);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) { .bc-callbar { display: block; } }
.bc-callbar.bc-callbar-visible { transform: translateY(0); }

.bc-callbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  max-width: 1180px;
  margin: 0 auto;
}
.bc-callbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}
.bc-callbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bc-petrol-200);
}
.bc-callbar-badge svg { color: var(--bc-gold-400); width: 0.95rem; height: 0.95rem; }
.bc-callbar-price {
  font-size: 0.88rem;
  color: var(--bc-stone-400);
  display: none;
}
@media (min-width: 1024px) { .bc-callbar-price { display: block; } }
.bc-callbar-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}
.bc-callbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.bc-callbar-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bc-gold-500);
  color: #16242A;
  padding: 0.6rem 1.25rem;
  border-radius: 0.45rem;
  font-weight: 800;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.bc-callbar-tel:hover { background: var(--bc-gold-700); color: #fff; }
.bc-callbar-tel svg { width: 1.1rem; height: 1.1rem; }
.bc-callbar-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bc-whatsapp);
  color: var(--bc-white);
  padding: 0.6rem 1rem;
  border-radius: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s;
}
.bc-callbar-wa:hover { background: #1eb858; color: var(--bc-white); }
.bc-callbar-wa svg { width: 1rem; height: 1rem; }
.bc-callbar-close {
  background: none;
  border: none;
  color: var(--bc-stone-400);
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 0.3rem;
  transition: color 0.15s, background 0.15s;
  display: none;
}
@media (min-width: 1024px) { .bc-callbar-close { display: block; } }
.bc-callbar-close:hover { color: var(--bc-white); background: rgba(255,255,255,0.1); }

/* ---------- Mobile CTA Bar ---------- */
.bc-mobile-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) { .bc-mobile-bar { display: none; } }
.bc-mobile-bar.bc-mobile-bar-visible { transform: translateY(0); }

.bc-mobile-bar-strip {
  background: var(--bc-petrol-800);
  padding: 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.bc-mobile-bar-strip .bc-mb-usps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--bc-petrol-200);
  font-weight: 600;
}
.bc-mobile-bar-strip .bc-mb-price {
  color: var(--bc-gold-400);
  font-weight: 800;
  font-size: 0.75rem;
}
.bc-mobile-bar-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bc-mobile-bar-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1rem;
}
.bc-mobile-bar-btns a:first-child {
  background: var(--bc-gold-500);
  color: #16242A;
}
.bc-mobile-bar-btns a:first-child:hover { background: var(--bc-gold-700); color: #fff; }
.bc-mobile-bar-btns a:last-child {
  background: var(--bc-whatsapp);
  color: var(--bc-white);
}
.bc-mobile-bar-btns a:last-child:hover { background: #1eb858; color: var(--bc-white); }
.bc-mobile-bar-btns svg { width: 1.1rem; height: 1.1rem; }

/* ---------- WhatsApp Sticky ---------- */
.bc-wa-float {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 46;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--bc-whatsapp);
  color: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: background 0.2s, transform 0.2s;
}
.bc-wa-float:hover { background: #1eb858; color: var(--bc-white); transform: scale(1.08); }
.bc-wa-float svg { width: 1.6rem; height: 1.6rem; }
@media (min-width: 768px) { .bc-wa-float { bottom: 4.5rem; } }

/* ---------- Breadcrumb ---------- */
.bc-breadcrumb {
  font-size: 0.83rem;
  color: var(--bc-stone-500);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.bc-breadcrumb a { color: var(--bc-petrol-600); }
.bc-breadcrumb a:hover { color: var(--bc-petrol-800); }
.bc-breadcrumb-sep { color: var(--bc-stone-400); }

/* ---------- Page Hero (subpages) ---------- */
.bc-page-hero {
  background: linear-gradient(135deg, var(--bc-petrol-950) 0%, var(--bc-petrol-800) 100%);
  color: var(--bc-white);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.bc-page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bc-gold-500);
}
.bc-page-hero h1 { color: var(--bc-white); font-size: clamp(1.7rem, 4vw, 2.7rem); margin-bottom: 0.5rem; }
.bc-page-hero .bc-page-hero-sub { color: var(--bc-petrol-200); font-size: 1.05rem; }

/* ---------- Process Steps ---------- */
.bc-steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .bc-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-steps { grid-template-columns: repeat(4, 1fr); } }

.bc-step {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 0.65rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.bc-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bc-petrol-600);
}
.bc-step-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--bc-petrol-800);
  color: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.bc-step h3 { font-size: 1rem; color: var(--bc-petrol-900); }
.bc-step p  { font-size: 0.88rem; color: var(--bc-stone-600); margin: 0; }

/* ---------- Area / Location Pills ---------- */
.bc-area-pills {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bc-area-pills li a {
  display: inline-block;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bc-stone-700);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bc-area-pills li a:hover {
  border-color: var(--bc-petrol-600);
  color: var(--bc-petrol-700);
  background: var(--bc-petrol-50);
}

/* ---------- CTA Banner ---------- */
.bc-cta-banner {
  background: linear-gradient(135deg, var(--bc-petrol-800) 0%, var(--bc-petrol-900) 100%);
  border-radius: 0.9rem;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--bc-white);
  position: relative;
  overflow: hidden;
}
.bc-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bc-gold-500);
}
.bc-cta-banner h2, .bc-cta-banner h3 { color: var(--bc-white); }
.bc-cta-banner p { color: var(--bc-petrol-200); }
.bc-cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.5rem; }

/* ---------- SEO text / content sections ---------- */
.bc-seo-block { padding: 2.5rem 0; }
.bc-seo-block p    { color: var(--bc-stone-700); }
.bc-seo-block h2   { margin-top: 2rem; }
.bc-seo-block h2:first-child { margin-top: 0; }
.bc-seo-block ul, .bc-seo-block ol { margin-bottom: 1rem; display: grid; gap: 0.4rem; }
.bc-seo-block li { color: var(--bc-stone-700); }

/* ---------- 404 ---------- */
.bc-error-page { text-align: center; padding: 5rem 0; }
.bc-error-code {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 6rem;
  font-weight: 600;
  color: var(--bc-petrol-700);
  line-height: 1;
  display: block;
}

/* ---------- Nearby links block ---------- */
.bc-nearby {
  background: var(--bc-stone-50);
  border: 1px solid var(--bc-border);
  border-radius: 0.8rem;
  padding: 1.5rem;
}
.bc-nearby h3 { margin-bottom: 0.85rem; font-size: 1rem; }
.bc-nearby-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bc-nearby-list a {
  display: inline-block;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bc-stone-700);
  transition: border-color 0.15s, color 0.15s;
}
.bc-nearby-list a:hover { border-color: var(--bc-petrol-600); color: var(--bc-petrol-700); }

/* ---------- Ratgeber article (prose) ---------- */
.bc-article { max-width: 820px; margin: 0 auto; }
.bc-article > p { color: var(--bc-stone-700); margin-bottom: 1rem; line-height: 1.75; }
.bc-article h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--bc-petrol-900);
  scroll-margin-top: 90px;
}
.bc-article h2:first-of-type { margin-top: 0.5rem; }
.bc-article h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
  color: var(--bc-petrol-800);
}
.bc-article ul, .bc-article ol {
  margin: 0 0 1.2rem 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.45rem;
}
.bc-article li { color: var(--bc-stone-700); line-height: 1.65; }
.bc-article ul li::marker { color: var(--bc-gold-600); }
.bc-article ol li::marker { color: var(--bc-petrol-600); font-weight: 700; }
.bc-article a { color: var(--bc-gold-700); font-weight: 600; text-underline-offset: 2px; text-decoration: underline; }
.bc-article a:hover { color: var(--bc-gold-800); }
.bc-article strong { color: var(--bc-petrol-900); }

/* Callout / info box */
.bc-callout {
  display: flex;
  gap: 0.85rem;
  background: var(--bc-stone-50);
  border: 1px solid var(--bc-petrol-100);
  border-left: 4px solid var(--bc-petrol-600);
  border-radius: 0.7rem;
  padding: 1.1rem 1.25rem;
  margin: 1.6rem 0;
}
.bc-callout svg { flex-shrink: 0; width: 1.4rem; height: 1.4rem; color: var(--bc-petrol-600); margin-top: 0.15rem; }
.bc-callout p { margin: 0; color: var(--bc-stone-700); font-size: 0.95rem; line-height: 1.6; }
.bc-callout strong { color: var(--bc-petrol-900); }
.bc-callout.bc-callout-gold {
  background: var(--bc-gold-50);
  border-color: var(--bc-gold-100);
  border-left-color: var(--bc-gold-600);
}
.bc-callout.bc-callout-gold svg { color: var(--bc-gold-700); }

/* Related Leistung/Lage chips */
.bc-related {
  margin: 1.8rem 0;
  padding: 1.3rem 1.4rem;
  background: var(--bc-stone-50);
  border: 1px solid var(--bc-border);
  border-radius: 0.8rem;
}
.bc-related h3 { margin: 0 0 0.85rem; font-size: 1rem; color: var(--bc-petrol-900); }
.bc-related-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bc-related-chips a {
  display: inline-block;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bc-stone-700);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.bc-related-chips a:hover { border-color: var(--bc-petrol-600); color: var(--bc-petrol-700); background: var(--bc-petrol-50); }

/* Ratgeber hub intro */
.bc-ratgeber-intro { max-width: 780px; margin: 0 auto 2.2rem; text-align: center; }
.bc-ratgeber-intro p { color: var(--bc-stone-600); font-size: 1.02rem; line-height: 1.7; }

/* ---------- Utility ---------- */
.bc-mt-1 { margin-top: 1rem; }
.bc-mt-2 { margin-top: 2rem; }
.bc-mb-1 { margin-bottom: 1rem; }
.bc-mb-2 { margin-bottom: 2rem; }
.bc-hidden { display: none; }

/* ---------- Mobile safeguards (no overflow at 375/390px) ---------- */
@media (max-width: 767px) {
  .bc-price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
  .bc-price-table { min-width: 340px; }
}
@media (max-width: 480px) {
  .bc-btn { font-size: 0.98rem; padding: 0.8rem 1.3rem; }
  .bc-hero-actions .bc-btn { flex: 1 1 auto; }
  .bc-strip-tel { font-size: 1.1rem; }
}

/* ============================================================
   Subpage helpers (service & Stadtteil pages)
   ============================================================ */
.bc-page-hero-title {
  color: var(--bc-white);
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 0.6rem;
}
.bc-page-hero-title .bc-accent { color: var(--bc-gold-400); display: inline; }
.bc-page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

/* Article content list */
.bc-list {
  margin: 0 0 1.2rem 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.45rem;
  list-style: disc;
}
.bc-list li { color: var(--bc-stone-700); line-height: 1.65; }
.bc-list li::marker { color: var(--bc-gold-600); }

/* Tinted section (alias of bc-section-alt) */
.bc-section-tinted { background: var(--bc-stone-100); }

/* FAQ item variant used on subpages (icon-based) */
.bc-faq-item { }
.bc-faq-summary { }
.bc-faq summary .bc-faq-icon {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bc-petrol-600);
  line-height: 1;
  transition: transform 0.25s, color 0.2s;
}
.bc-faq details[open] summary .bc-faq-icon { transform: translateY(-50%) rotate(45deg); color: var(--bc-gold-600); }
/* hide the global ::after plus when an explicit icon span exists */
.bc-faq details:has(.bc-faq-icon) summary::after { content: none; }

/* CTA band (subpage variant) */
.bc-cta {
  background: linear-gradient(135deg, var(--bc-petrol-800) 0%, var(--bc-petrol-900) 100%);
  color: var(--bc-white);
  padding: 2.6rem 0;
  position: relative;
}
.bc-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--bc-gold-500);
}
.bc-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.bc-cta-title { color: var(--bc-white); font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 0.35rem; }
.bc-cta p { color: var(--bc-petrol-200); margin: 0; }
.bc-cta .bc-cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 0; }

/* Large buttons */
.bc-btn-lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }

@media (max-width: 600px) {
  .bc-cta-inner { flex-direction: column; align-items: flex-start; }
  .bc-cta .bc-cta-actions { width: 100%; }
  .bc-cta .bc-cta-actions .bc-btn { flex: 1 1 auto; justify-content: center; }
  .bc-page-hero-actions .bc-btn { flex: 1 1 auto; justify-content: center; }
}
