/*
Theme Name: Rhein-Erft Entrümpelung
Theme URI: https://rhein-erft-entruempelung.de
Description: Professionelles Child Theme für Rhein-Erft Entrümpelung
Version: 1.1
Author: Rhein-Erft Entrümpelung
Text Domain: rhein-erft
*/

:root {
  --bg:            #f4f2ef;
  --bg-section:    #ffffff;
  --bg-card:       #ffffff;
  --bg-alt:        #edeae5;
  --dark:          #1a1a18;
  --dark-mid:      #242422;
  --accent:        #6b1a7a;
  --accent-mid:    #7e2291;
  --accent-light:  #f3e8f5;
  --accent-faint:  rgba(107,26,122,0.08);
  --text:          #1a1a18;
  --text-muted:    #6b6560;
  --text-light:    #9a9590;
  --border:        #e0dbd4;
  --border-dark:   rgba(255,255,255,0.08);
  --font-head:     'DM Sans', system-ui, sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --radius:        4px;
  --radius-lg:     12px;
  --section-pad:   5rem 5vw;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
p { font-weight: 300; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-mid); margin-bottom: 0.6rem; display: block;
}
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-title.on-dark { color: white; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }
.section-sub.on-dark { color: rgba(255,255,255,0.5); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: white;
  padding: 0.875rem 1.75rem; border-radius: var(--radius);
  font-size: 0.925rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--accent-mid); transform: translateY(-1px); color: white; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text);
  padding: 0.875rem 1.75rem; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.925rem; font-weight: 400;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--accent); transform: translateY(-1px); }

.btn-outline-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 0.875rem 1.75rem; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: 0.925rem; font-weight: 400;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-hero:hover { border-color: rgba(255,255,255,0.6); color: white; transform: translateY(-1px); }

/* ── NAV ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: 70px;
  background: rgba(244,242,239,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 5vw; justify-content: space-between;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  color: var(--text); line-height: 1.2; letter-spacing: -0.02em;
}
.site-logo span {
  display: block; font-family: var(--font-body);
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-mid); margin-top: 2px;
}
.nav-menu {
  display: flex; align-items: center;
  gap: 0.1rem; list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 0.875rem; color: var(--text-muted);
  transition: color 0.2s; font-weight: 400;
  padding: 0.5rem 0.8rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-menu > li > a:hover { color: var(--text); }
.nav-menu > li > a.has-dropdown::after {
  content: '▾'; font-size: 0.6rem; opacity: 0.4; margin-top: 1px;
}
.nav-menu .nav-cta {
  background: var(--accent); color: white !important;
  padding: 0.5rem 1.2rem; border-radius: var(--radius);
  font-weight: 500; font-size: 0.85rem;
  transition: background 0.2s; margin-left: 0.5rem;
}
.nav-menu .nav-cta:hover { background: var(--accent-mid); color: white !important; }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 210px; padding: 0.5rem; z-index: 300;
}
.nav-menu > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 0.5rem 0.75rem;
  font-size: 0.85rem; color: var(--text-muted);
  border-radius: var(--radius);
  transition: all 0.15s; font-weight: 400;
}
.nav-dropdown a:hover { background: var(--accent-faint); color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 70px;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5vw;
  background: var(--bg);
}
.hero-title { color: var(--text); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-mid); flex-shrink: 0; }

/* Hero right */
.hero-right {
  background: #1c0c12;
  display: flex; align-items: center;
  justify-content: center;
  padding: 4rem 3rem; min-height: 500px;
}
.hero-right-inner {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 1rem;
  width: 100%; max-width: 320px;
}
.contact-card {
  background: #261230;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem; width: 100%;
}
.contact-card-label {
  font-size: 0.63rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-mid);
  font-weight: 700; margin-bottom: 0.6rem;
}
.contact-phone {
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 800;
  color: white; letter-spacing: -0.03em; margin-bottom: 0.3rem;
}
.contact-hours { font-size: 0.77rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.btn-call {
  display: block; width: 100%;
  background: var(--accent); color: white;
  padding: 0.85rem; border-radius: var(--radius);
  text-align: center; font-weight: 500; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-call:hover { background: var(--accent-mid); color: white; }
.btn-wa {
  display: block; width: 100%;
  background: transparent; color: rgba(255,255,255,0.5);
  padding: 0.65rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 0.82rem;
  transition: all 0.2s; margin-top: 0.4rem;
}
.btn-wa:hover { border-color: var(--accent-mid); color: white; }
.divider-or {
  text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.3);
  margin: 0.5rem 0; position: relative;
}
.divider-or::before, .divider-or::after {
  content: ''; position: absolute; top: 50%;
  width: 36%; height: 1px; background: rgba(255,255,255,0.07);
}
.divider-or::before { left: 0; }
.divider-or::after { right: 0; }

/* Trust badge — stacked below card */
.trust-badge {
  background: #261230;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 0.85rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%;
}
.badge-icon {
  width: 32px; height: 32px;
  background: rgba(139,26,46,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-mid); font-weight: 700;
  font-size: 0.85rem; flex-shrink: 0;
}
.badge-text strong { display: block; font-size: 0.8rem; font-weight: 500; color: white; }
.badge-text span { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--accent); padding: 3rem 5vw;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 700; color: white; line-height: 1; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.77rem; color: rgba(255,255,255,0.65); font-weight: 300; }

/* ── LEISTUNGEN SECTION ── */
.leistungen-section { background: white; padding: var(--section-pad); }
.leistungen-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.service-card {
  background: white; padding: 2.5rem 2rem;
  transition: background 0.2s; display: block;
}
.service-card:hover { background: var(--bg); }
.service-icon {
  width: 44px; height: 44px; background: var(--accent-faint);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; margin-bottom: 1.5rem;
}
.service-card h3 { color: var(--text); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.service-link { font-size: 0.7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── PROZESS ── */
.prozess-section { background: var(--bg); padding: var(--section-pad); }
.prozess-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; margin-top: 3rem;
}
.prozess-step { position: relative; }
.step-num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  line-height: 1; margin-bottom: 0.75rem;
  /* Outline style — sichtbar auf hellem Hintergrund */
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
}
.prozess-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.prozess-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.step-line {
  position: absolute; top: 1.75rem; right: -1rem;
  width: 2rem; height: 1px; background: var(--border);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: white; padding: var(--section-pad); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-meta strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.testimonial-meta span { font-size: 0.72rem; color: var(--text-muted); }

/* Google Reviews */
.google-reviews-badge {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.google-logo {
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.02em; font-family: var(--font-head);
  line-height: 1;
}
.google-logo span:nth-child(1) { color: #4285f4; }
.google-logo span:nth-child(2) { color: #ea4335; }
.google-logo span:nth-child(3) { color: #fbbc04; }
.google-logo span:nth-child(4) { color: #4285f4; }
.google-logo span:nth-child(5) { color: #34a853; }
.google-logo span:nth-child(6) { color: #ea4335; }
.google-divider { width: 1px; height: 36px; background: var(--border); }
.google-rating-num {
  font-family: var(--font-head); font-size: 1.9rem;
  font-weight: 800; color: var(--text); line-height: 1;
}
.google-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; margin-top: 2px; }
.google-count { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.google-cta { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.google-cta a { color: var(--accent); font-weight: 500; }

/* ── ÜBER UNS ── */
.ueber-section { background: var(--bg); padding: var(--section-pad); }
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.ueber-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.2rem; }
.ueber-features { list-style: none; margin-top: 1.5rem; }
.ueber-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text);
}
.ueber-features li::before { content: '✓'; color: var(--accent-mid); font-weight: 700; flex-shrink: 0; }
.ueber-visual {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.blockquote {
  font-family: var(--font-head); font-size: 1.25rem;
  color: var(--text); line-height: 1.5; margin-bottom: 1.5rem;
  padding-left: 1.25rem; border-left: 3px solid var(--accent);
}
.quote-attr { font-size: 0.82rem; color: var(--text-muted); }
.quote-attr strong { color: var(--text); font-weight: 500; }

/* ── REGIONEN ── */
.regionen-section { background: white; padding: var(--section-pad); }
.regionen-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem; margin-top: 2.5rem;
}
.region-pill {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.7rem 0.5rem;
  text-align: center; font-size: 0.82rem; color: var(--text-muted);
  transition: all 0.2s;
}
.region-pill:hover { background: var(--accent-faint); border-color: var(--accent); color: var(--accent); }

/* ── KONTAKT ── */
.kontakt-section { background: var(--bg); padding: var(--section-pad); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.kontakt-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { list-style: none; }
.contact-details li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text);
}
.contact-details li .ci { color: var(--accent-mid); width: 18px; text-align: center; }

/* ── FORM ── */
.contact-form-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.7rem 0.9rem; color: var(--text);
  font-family: var(--font-body); font-size: 0.875rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent-mid); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-privacy { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.5; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark); padding: 8rem 5vw 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero .lead { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 600px; line-height: 1.75; }
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-mid); }
.breadcrumb-sep { opacity: 0.3; }

/* ── CONTENT SECTIONS ── */
.content-section { padding: var(--section-pad); background: white; }
.content-section.alt { background: var(--bg); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.content-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.content-text h3 { color: var(--text); margin-bottom: 0.5rem; margin-top: 1.5rem; font-size: 1rem; }

.checklist { list-style: none; margin-top: 1.25rem; }
.checklist li {
  display: flex; gap: 0.75rem; padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text);
}
.checklist li::before { content: '✓'; color: var(--accent-mid); font-weight: 700; flex-shrink: 0; }

.info-box {
  background: var(--bg); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 1.5rem; margin-top: 1rem;
}
.info-box h4 { color: var(--text); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; font-family: var(--font-body); }
.info-box p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── LEISTUNGEN FULL GRID ── */
.leistungen-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.leistung-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color 0.2s, background 0.2s; display: block;
}
.leistung-card:hover { border-color: var(--accent); background: white; }
.leistung-card .icon { font-size: 1.75rem; margin-bottom: 1rem; }
.leistung-card h3 { color: var(--text); margin-bottom: 0.5rem; }
.leistung-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.leistung-card .card-link { font-size: 0.7rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── FAQ ── */
.faq-section { padding: var(--section-pad); background: var(--bg); }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-q {
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; color: var(--accent-mid); font-size: 1.2rem; font-weight: 300; }
.faq-a { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.75rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* ── REGION ── */
.region-nearby { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.nearby-link {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 0.3rem 0.8rem; transition: all 0.2s;
}
.nearby-link:hover { color: white; border-color: var(--accent-mid); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--dark); padding: 4rem 5vw; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--accent);
  padding: 0.9rem 1.8rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }
.btn-outline-white {
  background: transparent; color: white;
  padding: 0.9rem 1.8rem; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2); font-size: 0.95rem; transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: white; }

/* ── FOOTER ── */
#site-footer { background: var(--dark); padding: 4rem 5vw 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.02em; }
.footer-logo span { display: block; font-family: var(--font-body); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-mid); margin-top: 2px; }
.footer-brand-text { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 1rem; line-height: 1.65; }
.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; font-weight: 600; font-family: var(--font-body); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  padding: 1.25rem 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.7rem; color: rgba(255,255,255,0.22);
}
.footer-bottom a { color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ── STICKY MOBILE ── */
.sticky-mobile {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: white;
  padding: 1rem 1.5rem; text-align: center;
  font-weight: 500; font-size: 0.95rem; z-index: 300;
}

/* ── LEGAL ── */
.legal-section { padding: 8rem 5vw 5rem; max-width: 800px; }
.legal-section h1 { color: var(--text); margin-bottom: 2rem; }
.legal-section h2 { color: var(--text); font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; margin: 2rem 0 0.5rem; }
.legal-section p, .legal-section li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-section ul { padding-left: 1.25rem; }
.legal-section a { color: var(--accent-mid); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .regionen-grid { grid-template-columns: repeat(4, 1fr); }
  .leistungen-full-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── HERO IMAGE BACKGROUND ── */
.hero-right {
  background: #1a0c1e;
  display: flex; align-items: center;
  justify-content: center;
  padding: 4rem 3rem; min-height: 500px;
  position: relative; overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}

/* ── VORHER / NACHHER ── */
.vorher-nachher-section {
  background: var(--dark); padding: var(--section-pad);
}
.vorher-nachher-section .section-eyebrow { color: var(--accent-mid); }
.vorher-nachher-section .section-title { color: white; margin-bottom: 0.5rem; }
.vorher-nachher-section .section-sub { color: rgba(255,255,255,0.45); margin-bottom: 3rem; }
.vn-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vn-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.vn-card img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.vn-card:hover img { transform: scale(1.03); }
.vn-label {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
}
.vn-label.nachher { background: var(--accent); }
.vn-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white; font-size: 0.85rem; font-weight: 300;
}

/* ── ÜBER UNS MIT BILD ── */
.ueber-image {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.ueber-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}


/* ════════════════════════════════
   RESPONSIVE — 3 STUFEN
   Desktop  : ab 1024px (Standard)
   Tablet   : 768px – 1023px
   Mobile   : unter 768px
════════════════════════════════ */

/* ── TABLET (768px – 1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Hero: einspalt ig aber großzügig */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 5vw 2rem; }
  .hero-right {
    min-height: 320px; padding: 2.5rem 5vw;
    flex-direction: row; justify-content: flex-start; gap: 1.5rem;
  }
  .hero-right-inner { flex-direction: row; max-width: 100%; gap: 1.25rem; }
  .contact-card { max-width: 300px; }
  .trust-badge { max-width: 260px; align-self: flex-start; margin-top: 0; }

  /* Nav: Hamburger auf Tablet */
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 1.5rem 5vw;
    border-bottom: 1px solid var(--border); gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; background: var(--bg); }

  /* Leistungen: 2×2 */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Leistungen Full: 2×3 */
  .leistungen-full-grid { grid-template-columns: repeat(2, 1fr); }

  /* Prozess: 2×2 */
  .prozess-grid { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }

  /* Vorher/Nachher: nebeneinander bleibt */
  .vn-grid { grid-template-columns: 1fr 1fr; }
  .vn-card img { height: 300px; }

  /* Stats: 3 nebeneinander bleibt */
  .stats-bar { grid-template-columns: repeat(3, 1fr); }

  /* Über uns: einspalt ig */
  .ueber-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ueber-image { max-height: 360px; }

  /* Kontakt: einspalt ig */
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Content Grids */
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Regionen: 4 Spalten */
  .regionen-grid { grid-template-columns: repeat(4, 1fr); }

  /* Footer: 2×2 */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Google Badge */
  .google-reviews-badge { flex-wrap: wrap; gap: 1rem; }

  /* Sticky bar auf Tablet */
  .sticky-mobile { display: block; }
  body { padding-bottom: 60px; }
}

/* ── MOBILE (unter 768px) ── */
@media (max-width: 767px) {
  :root { --section-pad: 3rem 1.25rem; }

  /* Hero: einspalt ig kompakt */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 2.5rem 1.25rem 2rem; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-right { min-height: auto; padding: 2rem 1.25rem; }
  .hero-right-inner { max-width: 100%; }
  .contact-card { max-width: 100%; }
  .trust-badge { max-width: 100%; }

  /* Nav: Hamburger */
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border); gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; background: var(--bg); }

  /* Leistungen: 1 Spalte */
  .services-grid { grid-template-columns: 1fr; }
  .leistungen-full-grid { grid-template-columns: 1fr; }
  .leistungen-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 2rem; }
  .leistungen-header .section-sub { font-size: 0.875rem; }

  /* Prozess: 1 Spalte */
  .prozess-grid { grid-template-columns: 1fr; }
  .step-line { display: none; }

  /* Vorher/Nachher: 1 Spalte */
  .vn-grid { grid-template-columns: 1fr; }
  .vn-card img { height: 240px; }

  /* Stats: 1 Spalte */
  .stats-bar { grid-template-columns: 1fr; padding: 2rem 1.25rem; text-align: center; }

  /* Über uns: 1 Spalte */
  .ueber-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ueber-image { max-height: 280px; aspect-ratio: 16/9; margin: 0 auto; width: 100%; }

  /* Kontakt */
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Content */
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Regionen: 2 Spalten */
  .regionen-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 1 Spalte */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Testimonials: 1 Spalte */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Google Badge */
  .google-reviews-badge { flex-direction: column; gap: 0.75rem; }
  .google-divider { display: none; }

  /* Sticky Call Bar */
  .sticky-mobile { display: block; }
  body { padding-bottom: 58px; }
}

