/* ==========================================================================
   Schlüsseldienst Stuttgart-Wangen 24h — Design System
   Walnut-brown hero (#3A1B25/#4A2230) + Honey-Amber CTA (#CBA24A) ·
   Emerald checks (#22C55E) · warm cream/stone sections (#F7F2E9/#FBF8F1)
   Display: Playfair Display (slab-serif, Kelter/Weinort-Erbe) · Body: Mukta
   Namespace prefix: wg- (Stuttgart Wangen) · 18th identity
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primary: Walnut / Brown (Weinort / Kelter / Holz-Charakter) */
  --wg-brown-950: #1A0D11;  /* deepest */
  --wg-brown-900: #2A141B;  /* text / darkest */
  --wg-brown-850: #3A1B25;  /* hero base */
  --wg-brown-800: #4A2230;  /* hero mid / header */
  --wg-brown-700: #5C2C3C;  /* */
  --wg-brown-600: #73384B;  /* */
  --wg-brown-500: #8F4A5E;  /* */
  --wg-brown-400: #B07E8C;  /* light accent on dark */
  --wg-brown-200: #E0CAD2;  /* light text on dark */
  --wg-brown-100: #F0E2E6;  /* icon chip bg */
  --wg-brown-50:  #F7EEF0;

  /* Accent: Honey / Amber (CTA / urgency) */
  --wg-amber-900: #8A6E1C;
  --wg-amber-800: #A6862A;
  --wg-amber-700: #B5933A;  /* hover */
  --wg-amber-600: #C2A047;
  --wg-amber-500: #CBA24A;  /* primary CTA */
  --wg-amber-400: #DCBC72;
  --wg-amber-100: #F4EAD0;
  --wg-amber-50:  #FBF5E6;

  /* Neutral (warm cream / stone) */
  --wg-white:     #FFFFFF;
  --wg-stone-50:  #FBF8F1;  /* warmest section bg */
  --wg-stone-100: #F7F2E9;  /* alt section bg */
  --wg-stone-200: #EDE5D6;
  --wg-stone-300: #DBCFBC;
  --wg-stone-400: #B4A78F;
  --wg-stone-500: #857761;
  --wg-stone-600: #5E4F3C;
  --wg-stone-700: #443829;
  --wg-stone-900: #2A141B;

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

  /* Semantic aliases */
  --wg-text:        #2A141B;
  --wg-text-muted:  #5E4F3C;
  --wg-border:      #EDE5D6;
  --wg-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: 'Mukta', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--wg-text);
  line-height: 1.7;
  background: var(--wg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wg-brown-700); text-decoration: none; }
a:hover { color: var(--wg-brown-600); }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--wg-brown-900);
  font-weight: 700;
}
h1 { font-size: clamp(1.85rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
p  { margin-bottom: 1rem; }
strong { color: var(--wg-brown-900); }

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

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

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

/* ---------- Buttons ---------- */
.wg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.45rem;
  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;
}
.wg-btn:active { transform: scale(0.97); }

.wg-btn-primary {
  background: var(--wg-amber-500);
  color: #4A2230;
  box-shadow: 0 6px 18px rgba(214, 154, 60, 0.40);
}
.wg-btn-primary:hover {
  background: var(--wg-amber-700);
  color: #fff;
  box-shadow: 0 8px 22px rgba(184, 126, 36, 0.46);
}

.wg-btn-brown {
  background: var(--wg-brown-800);
  color: var(--wg-white);
  box-shadow: 0 6px 18px rgba(28, 21, 16, 0.35);
}
.wg-btn-brown:hover {
  background: var(--wg-brown-900);
  color: var(--wg-white);
}

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

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

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

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

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

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

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

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

/* Mobile hamburger (checkbox hack) */
.wg-nav-toggle { display: none; }
.wg-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;
}
.wg-burger:hover { background: rgba(255,255,255,0.12); }
.wg-burger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--wg-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* Mobile drawer — FULLY hidden when closed (visibility:hidden + opacity:0 + transform).
   This prevents the drawer from bleeding above the logo before open. */
@media (max-width: 1023px) {
  .wg-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--wg-brown-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(--wg-amber-500);
    flex: none;
    margin-right: 0;
  }
  .wg-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);
  }
  .wg-nav-toggle:checked ~ .wg-header .wg-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .wg-nav-toggle:checked ~ .wg-header .wg-burger .wg-burger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .wg-nav-toggle:checked ~ .wg-header .wg-burger .wg-burger-line:nth-child(2) {
    opacity: 0;
  }
  .wg-nav-toggle:checked ~ .wg-header .wg-burger .wg-burger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
}

/* ---------- Hero: walnut-brown split — text left, real photo right ---------- */
.wg-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(214, 154, 60, 0.22) 0%, rgba(214, 154, 60, 0) 60%),
    linear-gradient(135deg, #3A1B25 0%, #4A2230 55%, #2A141B 100%);
}

/* Decorative background layer (subtle texture only) */
.wg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}
.wg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) sepia(0.3);
}
.wg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(42,32,24,0.92) 0%, rgba(58,44,32,0.78) 100%);
}

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

/* Right: real hero photo (rounded corners) */
.wg-hero-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28, 21, 16, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.wg-hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wg-hero-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(42,32,24,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);
}
.wg-hero-photo-badge svg { width: 1rem; height: 1rem; color: var(--wg-amber-400); }

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

/* Left: headings + USP list */
.wg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(214, 154, 60, 0.18);
  color: var(--wg-amber-400);
  border: 1px solid rgba(214, 154, 60, 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;
}
.wg-hero-eyebrow svg { color: var(--wg-green-400); }
.wg-hero-h1 {
  color: var(--wg-white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.wg-hero-sub {
  color: var(--wg-brown-200);
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
  max-width: 520px;
}
.wg-hero-checks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.wg-hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--wg-white);
  font-size: 1rem;
  font-weight: 600;
}
.wg-hero-checks li svg {
  color: var(--wg-green-400);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}
.wg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

/* ---------- Emergency Strip ---------- */
.wg-strip {
  background: var(--wg-amber-500);
  padding: 1rem 0;
}
.wg-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.5rem;
}
.wg-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(58, 44, 32, 0.16);
  color: #4A2230;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}
.wg-strip-badge svg { width: 1rem; height: 1rem; }
.wg-strip-tel {
  font-size: 1.25rem;
  font-weight: 800;
  color: #4A2230;
  background: rgba(58, 44, 32, 0.14);
  padding: 0.35rem 1rem;
  border-radius: 0.4rem;
  letter-spacing: 0.02em;
}
.wg-strip-tel:hover { color: #2A141B; background: rgba(58, 44, 32, 0.24); }

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

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

.wg-service-card {
  background: var(--wg-white);
  border: 1px solid var(--wg-border);
  border-left: 4px solid var(--wg-brown-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(28, 21, 16, 0.06);
  transition: box-shadow 0.2s, border-left-color 0.2s, transform 0.2s;
}
.wg-service-card:hover {
  border-left-color: var(--wg-amber-500);
  box-shadow: 0 8px 28px rgba(28, 21, 16, 0.14);
  transform: translateX(3px);
}
.wg-service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.45rem;
  background: var(--wg-brown-100);
  color: var(--wg-brown-700);
  margin-bottom: 0.3rem;
  transition: background 0.2s, color 0.2s;
}
.wg-service-card:hover .wg-service-card-icon {
  background: var(--wg-amber-100);
  color: var(--wg-amber-800);
}
.wg-service-card-icon svg { width: 1.4rem; height: 1.4rem; }
.wg-service-card h3 {
  font-size: 1.05rem;
  color: var(--wg-brown-900);
  margin-bottom: 0;
}
.wg-service-card p {
  color: var(--wg-stone-600);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  flex: 1;
}
.wg-service-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wg-brown-700);
}
.wg-service-card a.wg-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wg-amber-800);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.wg-service-card a.wg-card-link:hover { color: var(--wg-amber-700); }

/* ---------- Lage / District Grid ---------- */
.wg-viertel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 768px)  { .wg-viertel-grid { grid-template-columns: repeat(3, 1fr); } }

.wg-viertel-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--wg-white);
  border: 1px solid var(--wg-border);
  border-left: 3px solid var(--wg-brown-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(--wg-brown-900);
  line-height: 1.55;
}
.wg-viertel-tile:hover {
  border-left-color: var(--wg-amber-500);
  box-shadow: 0 6px 22px rgba(28, 21, 16, 0.1);
}
.wg-viertel-tile strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wg-brown-900);
  display: block;
  margin-bottom: 0.15rem;
}
.wg-viertel-tile span.wg-viertel-meta {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wg-amber-800);
  display: block;
  margin-bottom: 0.5rem;
}
.wg-viertel-tile p {
  font-size: 0.9rem;
  color: var(--wg-stone-600);
  margin-bottom: 0.6rem;
}
.wg-viertel-tile .wg-viertel-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--wg-amber-800);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.wg-viertel-tile .wg-viertel-link:hover { color: var(--wg-amber-700); }

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

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

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

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

/* USP chips row */
.wg-usp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.wg-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;
}
.wg-usp-chip-brown { background: var(--wg-brown-100);  color: var(--wg-brown-800); }
.wg-usp-chip-amber { background: var(--wg-amber-100);  color: var(--wg-amber-900); }
.wg-usp-chip-green { background: var(--wg-green-100);  color: #11603F; }
.wg-usp-chip svg { width: 0.9rem; height: 0.9rem; }

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

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

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

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

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

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

/* ---------- Contact Section ---------- */
.wg-contact {
  background: linear-gradient(135deg, var(--wg-brown-900) 0%, var(--wg-brown-800) 100%);
  color: var(--wg-white);
  padding: 4rem 0;
}
.wg-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .wg-contact-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.wg-contact h2 { color: var(--wg-white); }
.wg-contact-sub { color: var(--wg-brown-200); margin-bottom: 2rem; }
.wg-big-tel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--wg-amber-400);
  margin: 0.6rem 0 1.5rem;
  line-height: 1;
}
.wg-big-tel:hover { color: var(--wg-amber-500); }
.wg-big-tel svg { width: 1.8rem; height: 1.8rem; color: var(--wg-amber-400); }
.wg-contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.wg-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;
}
.wg-contact-nap h3 { color: var(--wg-white); margin-bottom: 1rem; }
.wg-contact-nap-rows { display: grid; gap: 0.75rem; font-size: 0.93rem; color: var(--wg-brown-200); }
.wg-contact-nap-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.wg-contact-nap-row svg { color: var(--wg-amber-400); width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.wg-contact-nap-row a { color: var(--wg-brown-200); }
.wg-contact-nap-row a:hover { color: var(--wg-white); }
.wg-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);
}
.wg-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.wg-hours-val { font-weight: 700; color: var(--wg-amber-400); }

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

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

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

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

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

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

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

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

/* ---------- Mobile CTA Bar ---------- */
.wg-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) { .wg-mobile-bar { display: none; } }
.wg-mobile-bar.wg-mobile-bar-visible { transform: translateY(0); }

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

/* ---------- WhatsApp Sticky ---------- */
.wg-wa-float {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 46;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--wg-whatsapp);
  color: var(--wg-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;
}
.wg-wa-float:hover { background: #1eb858; color: var(--wg-white); transform: scale(1.08); }
.wg-wa-float svg { width: 1.6rem; height: 1.6rem; }
@media (min-width: 768px) { .wg-wa-float { bottom: 4.5rem; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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