/* ============================================================
   REINIGUNGSFIRMA V2 — style.css
   Warm & Vertrauensvoll | Beige / Braun / Creme
   Asymmetrisches Layout
   ============================================================ */

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

:root {
  --sand:        #F5EFE6;
  --cream:       #FDFAF6;
  --warm:        #E8DDD0;
  --brown:       #8B6F47;
  --brown-dark:  #6B5235;
  --brown-light: #F0E8DA;
  --espresso:    #2C1F14;
  --text:        #3D2B1A;
  --muted:       #8A7560;
  --border:      #DDD0C0;
  --white:       #FFFFFF;
  --accent:      #C49A5A;
  --accent-dark: #A67C3A;
  --hero-overlay: rgba(20, 12, 5, 0.55);

  --radius:    8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(44, 31, 20, 0.10);
  --shadow-lg: 0 16px 56px rgba(44, 31, 20, 0.15);
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAFIE ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--espresso);
}
h1 { font-size: clamp(42px, 6vw, 80px); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1.5px;
  background: var(--accent);
}

/* ---------- LAYOUT ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sand { background: var(--sand); }
.section-warm { background: var(--warm); }
.section-dark { background: var(--espresso); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--accent); }
.section-dark p { color: rgba(253,250,246,0.72); }

/* Asymmetrisches Grid-System */
.asym-grid {
  display: grid;
  gap: 0;
}
.asym-grid.left  { grid-template-columns: 55% 45%; }
.asym-grid.right { grid-template-columns: 45% 55%; }
.asym-grid.wide-left  { grid-template-columns: 60% 40%; }
.asym-grid.wide-right { grid-template-columns: 40% 60%; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brown); color: var(--white);
  box-shadow: 0 4px 18px rgba(139,111,71,0.30);
}
.btn-primary:hover { background: var(--brown-dark); box-shadow: 0 8px 28px rgba(139,111,71,0.40); }
.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 18px rgba(196,154,90,0.35);
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline {
  border: 2px solid var(--cream); color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-ghost {
  color: var(--brown); padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1.5px solid var(--brown);
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--brown-dark); border-color: var(--brown-dark); transform: none; }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(44,31,20,0.09);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 10px;
}
#navbar.scrolled .nav-logo { color: var(--espresso); }
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.nav-links-list { display: flex; gap: 30px; }
.nav-links-list a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links-list a:hover { color: var(--white); }
#navbar.scrolled .nav-links-list a { color: var(--muted); }
#navbar.scrolled .nav-links-list a:hover { color: var(--espresso); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  background: var(--accent); color: var(--white);
  padding: 10px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#navbar.scrolled .nav-burger span { background: var(--espresso); }
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--espresso); z-index: 190;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--cream); }
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-close { position: absolute; top: 22px; right: 28px; font-size: 28px; color: var(--cream); cursor: pointer; }

/* ---------- HERO ---------- */
#hero { position: relative; min-height: 100vh; display: flex; }

/* Asymmetrische Hero-Aufteilung */
.hero-left {
  width: 55%; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 80px 100px 60px;
  background: var(--espresso);
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: var(--espresso);
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.hero-right {
  width: 45%; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=80');
  background-size: cover; background-position: center;
}
.hero-bg-next {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; z-index: 1;
}
.hero-bg-next.transitioning { opacity: 1; }
.hero-overlay-right {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, var(--espresso) 0%, transparent 40%);
}

.hero-content { position: relative; z-index: 3; color: var(--cream); }
.hero-content .eyebrow { color: var(--accent); }
.hero-content h1 { color: var(--cream); margin-bottom: 22px; line-height: 1.05; }
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-content p { font-size: 17px; color: rgba(253,250,246,0.78); margin-bottom: 42px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Dots */
.hero-dots {
  display: flex; gap: 8px; margin-top: 48px;
}
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(253,250,246,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--accent); width: 48px; }

/* Hero Stats — vertikal rechts */
.hero-stats-v {
  position: absolute; bottom: 40px; right: 40px;
  z-index: 5; display: flex; flex-direction: column; gap: 4px;
}
.hero-stat-v {
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(8px);
  padding: 16px 20px; border-radius: var(--radius);
  text-align: right;
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--espresso); line-height: 1; }
.hero-stat-num .acc { color: var(--accent); }
.hero-stat-label { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }

/* WhatsApp */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
#whatsapp-btn:hover { transform: scale(1.1); }
#whatsapp-btn svg { width: 26px; height: 26px; fill: white; }
.wa-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--espresso); color: var(--cream);
  padding: 6px 12px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
#whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* ---------- ÜBER UNS — asymmetrisch ---------- */
.about-block {
  display: grid; grid-template-columns: 45% 55%;
  min-height: 560px;
}
.about-img-col { position: relative; overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,31,20,0.3) 0%, transparent 60%);
}
.about-badge {
  position: absolute; bottom: 32px; right: -20px;
  background: var(--accent); color: var(--white);
  padding: 20px 28px; border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge span { display: block; font-size: 38px; font-weight: 700; line-height: 1; }
.about-badge small { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.06em; }
.about-text-col {
  padding: 80px 64px;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.about-text-col h2 { margin-bottom: 18px; }
.about-text-col p { color: var(--muted); margin-bottom: 20px; font-size: 15px; }
.about-checks { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; }
.check-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--brown-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); font-size: 11px; margin-top: 1px;
}

/* ---------- LEISTUNGEN ---------- */
.services-asym {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-feature {
  padding: 56px 52px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.service-feature::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.service-feature:hover { background: var(--brown-light); }
.service-feature:hover::before { height: 100%; }
.service-feature:nth-child(2n) { border-right: none; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: var(--warm); line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-feature:hover .service-num { color: var(--accent); }
.service-feature h3 { margin-bottom: 10px; }
.service-feature p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Slider Wrapper für Services */
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform; cursor: grab;
}
.slider-track:active { cursor: grabbing; }
.slider-track > * { flex: 0 0 50%; }
@media (max-width: 767px) { .slider-track > * { flex: 0 0 100%; } }

.slider-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}
.slider-btn:hover { background: var(--brown); border-color: var(--brown); color: white; transform: scale(1.08); }
.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active { background: var(--accent); transform: scale(1.3); }
.section-dark .slider-btn { border-color: rgba(253,250,246,0.2); background: rgba(253,250,246,0.08); color: var(--cream); }
.section-dark .slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.section-dark .slider-dot { background: rgba(253,250,246,0.25); }
.section-dark .slider-dot.active { background: var(--accent); }

/* ---------- ANGEBOTSRECHNER ---------- */
.calculator-asym {
  display: grid; grid-template-columns: 40% 60%;
}
.calc-sidebar {
  background: var(--espresso);
  padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-sidebar h2 { color: var(--cream); margin-bottom: 16px; }
.calc-sidebar p { color: rgba(253,250,246,0.65); font-size: 15px; margin-bottom: 32px; }
.calc-sidebar-features { display: flex; flex-direction: column; gap: 14px; }
.calc-sidebar-feature { display: flex; align-items: center; gap: 12px; color: rgba(253,250,246,0.8); font-size: 14px; font-family: 'DM Sans', sans-serif; }
.calc-sidebar-feature span { color: var(--accent); font-size: 18px; }
.calc-body { background: var(--cream); padding: 64px 52px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-group { display: flex; flex-direction: column; gap: 6px; }
.calc-group label { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.calc-group select,
.calc-group input[type="range"] {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px; font-family: 'Lora', serif;
  color: var(--text); background: var(--cream);
  transition: border-color var(--transition); appearance: none;
}
.calc-group select:focus { outline: none; border-color: var(--accent); }
.range-wrap { display: flex; flex-direction: column; gap: 4px; }
.range-display { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--accent); font-weight: 700; text-align: right; }
input[type="range"] {
  padding: 0; height: 5px; border-radius: 3px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 50%, var(--border) 50%);
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 2px 8px rgba(196,154,90,0.5);
}
.calc-result {
  margin-top: 28px; grid-column: 1 / -1;
  background: var(--brown-light); border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.calc-price-label { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.calc-price-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--espresso); line-height: 1; }
.calc-price-unit { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--muted); }
.calc-note { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--muted); max-width: 220px; line-height: 1.6; }

/* ---------- REGION / MAPS ---------- */
.region-asym { display: grid; grid-template-columns: 55% 45%; }
.map-col { position: relative; min-height: 480px; }
.map-col iframe { width: 100%; height: 100%; border: none; display: block; }
.region-text-col {
  padding: 72px 56px;
  background: var(--sand);
  display: flex; flex-direction: column; justify-content: center;
}
.region-text-col h2 { margin-bottom: 16px; }
.region-text-col p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.region-tag {
  background: var(--brown-light); border: 1px solid var(--border);
  color: var(--brown-dark); padding: 5px 14px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
}

/* ---------- TEAM ---------- */
.team-grid-asym {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.team-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,31,20,0.88) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 20px;
  transition: background var(--transition);
}
.team-card:hover .team-card-overlay { background: linear-gradient(to top, rgba(44,31,20,0.95) 0%, rgba(44,31,20,0.2) 100%); }
.team-card-overlay h3 { color: var(--cream); font-size: 16px; margin-bottom: 2px; }
.team-card-overlay p { color: var(--accent); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- BEWERTUNGEN ---------- */
.review-card {
  background: rgba(253,250,246,0.06);
  border: 1px solid rgba(253,250,246,0.12);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: background var(--transition);
}
.review-card:hover { background: rgba(253,250,246,0.10); }
.review-stars { color: var(--accent); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: rgba(253,250,246,0.72); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
}
.review-name { color: var(--cream); font-weight: 600; font-size: 14px; }
.review-date { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(253,250,246,0.45); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(253,250,246,0.2); border-radius: 100px;
  padding: 8px 18px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: rgba(253,250,246,0.7);
  margin-top: 40px; transition: border-color var(--transition), color var(--transition);
}
.google-badge:hover { border-color: var(--accent); color: var(--cream); }
.google-badge svg { width: 18px; }

/* ---------- FAQ ---------- */
.faq-asym { display: grid; grid-template-columns: 38% 62%; gap: 0; align-items: start; }
.faq-sidebar {
  padding: 80px 56px 80px 0;
  position: sticky; top: 100px;
}
.faq-sidebar h2 { margin-bottom: 16px; }
.faq-sidebar p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.faq-list { padding: 80px 0 80px 56px; border-left: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; color: var(--text); gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover, .faq-question.open { color: var(--brown); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--brown-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); font-size: 18px; font-weight: 400;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ---------- NEWS ---------- */
.news-grid-asym {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.news-card {
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.news-card:last-child { border-right: none; }
.news-card:hover { background: var(--brown-light); }
.news-img { width: 100%; height: 200px; object-fit: cover; }
.news-body { padding: 28px 28px 36px; }
.news-tag {
  display: inline-block; background: var(--brown-light);
  color: var(--brown); font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}
.news-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.news-meta { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--muted); display: flex; gap: 8px; }

/* ---------- KARRIERE ---------- */
.jobs-list { display: flex; flex-direction: column; }
.job-card {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: padding-left var(--transition);
}
.job-card:hover { padding-left: 12px; }
.job-info h3 { font-size: 18px; margin-bottom: 8px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  background: var(--sand); border: 1px solid var(--border);
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 100px;
}
.job-tag.highlight { background: var(--brown-light); border-color: transparent; color: var(--brown-dark); }

/* ---------- KONTAKT ---------- */
.contact-asym { display: grid; grid-template-columns: 42% 58%; }
.contact-sidebar {
  background: var(--espresso); padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-sidebar h2 { color: var(--cream); margin-bottom: 16px; }
.contact-sidebar > p { color: rgba(253,250,246,0.65); margin-bottom: 40px; font-size: 15px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(196,154,90,0.15); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-detail-text strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text span { font-size: 15px; font-weight: 500; color: var(--cream); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--accent); }

.contact-form-col { background: var(--sand); padding: 80px 64px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px;
  font-family: 'Lora', serif; color: var(--text);
  background: var(--cream); transition: border-color var(--transition); resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--muted); }
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-check a { color: var(--brown); text-decoration: underline; }
.form-status { padding: 12px 16px; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; display: none; }
.form-status.success { background: var(--brown-light); color: var(--brown-dark); }
.form-status.error { background: #FFF0F0; color: #C0392B; }

/* ---------- FOOTER ---------- */
footer { background: var(--espresso); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 72px 0 56px;
  border-bottom: 1px solid rgba(253,250,246,0.08);
}
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: rgba(253,250,246,0.55); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; background: rgba(253,250,246,0.08); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,250,246,0.5); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer-social:hover { background: var(--accent); color: white; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; color: var(--cream); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(253,250,246,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(253,250,246,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(253,250,246,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- SCROLL-ANIMATIONEN ---------- */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .fade-in.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .asym-grid.left, .asym-grid.right, .asym-grid.wide-left, .asym-grid.wide-right { grid-template-columns: 1fr; }
  .about-block, .calculator-asym, .region-asym, .contact-asym { grid-template-columns: 1fr; }
  .hero-left { width: 100%; padding: 140px 32px 80px; }
  .hero-left::after { display: none; }
  .hero-right { display: none; }
  .faq-asym { grid-template-columns: 1fr; }
  .faq-sidebar { padding: 60px 0 0; position: static; }
  .faq-list { padding: 40px 0; border-left: none; border-top: 1px solid var(--border); }
  .team-grid-asym { grid-template-columns: repeat(2, 1fr); }
  .news-grid-asym { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-asym { grid-template-columns: 1fr; }
  .slider-track > * { flex: 0 0 100% !important; }
}
@media (max-width: 768px) {
  .nav-links-list, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .about-badge { right: 16px; }
  .calc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-grid-asym { grid-template-columns: 1fr 1fr; }
  .job-card { grid-template-columns: 1fr; }
  .contact-form-col, .calc-body, .calc-sidebar, .region-text-col { padding: 48px 24px; }
  .about-text-col { padding: 48px 24px; }
  .faq-sidebar { padding: 48px 24px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   CMS Ergänzungen — Reinigungsfirma 3
   ============================================================ */
.template-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--brown-dark);
  background: var(--cream);
}
.cms-logo {
  max-height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
#navbar:not(.scrolled) .cms-logo {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.calc-extras label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}
.calc-extras input {
  accent-color: var(--accent);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.footer-bottom-links a {
  color: rgba(253,250,246,0.55);
}
.footer-bottom-links a:hover {
  color: var(--accent);
}
