/* =========================================
   RK Renovierung & Innenausbau - Styles
   ========================================= */

/* ==========================================
   LOGO NAV ICON
   ========================================== */
.nav__logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(232,101,10,0.55));
  transition: filter var(--transition);
}
.nav__logo:hover .nav__logo-icon {
  filter: drop-shadow(0 0 14px rgba(232,101,10,0.85));
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.nav__logo-main .nav__logo-accent { color: var(--orange); }
.nav__logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.01em;
}

/* ==========================================
   GLOW SYSTEM
   ========================================== */

/* Primary button: pulsing glow + hover flare */
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,101,10,0.45), 0 4px 14px rgba(232,101,10,0.25); }
  55%      { box-shadow: 0 0 0 10px rgba(232,101,10,0), 0 4px 14px rgba(232,101,10,0.25); }
}
.btn-primary {
  animation: ctaPulse 2.8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  animation: none;
  box-shadow: 0 0 28px rgba(232,101,10,0.6), 0 6px 20px rgba(232,101,10,0.35);
}

/* Counter numbers — orange text glow */
[data-count], .counter__num, .hero__stat-num, .review-aggregate__num, .stats-bar__num {
  text-shadow: 0 0 22px rgba(232,101,10,0.45);
}

/* Service cards — orange glow on hover */
.service-card:hover {
  box-shadow: 0 8px 36px rgba(232,101,10,0.14), 0 2px 10px rgba(0,0,0,0.08);
  border-color: rgba(232,101,10,0.25);
}

/* Review cards — lift on hover */
.review-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 42px rgba(0,0,0,0.13), 0 0 0 1px rgba(232,101,10,0.12);
}

/* Process step numbers — glow */
.step__num {
  box-shadow: 0 0 18px rgba(232,101,10,0.4);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(72px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.from-left  { transform: translateX(-100px); }
.reveal.from-right { transform: translateX(100px); }
.reveal.visible    { opacity: 1; transform: translate(0,0); }
.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }
.reveal.delay-4 { transition-delay: 0.40s; }
.reveal.delay-5 { transition-delay: 0.50s; }

/* ==========================================
   HERO ENTRANCE
   ========================================== */
@keyframes heroUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero__label    { animation: heroUp 0.65s 0.15s both; }
.hero__title    { animation: heroUp 0.7s  0.30s both; }
.hero__subtitle { animation: heroUp 0.7s  0.48s both; }
.hero__buttons  { animation: heroUp 0.7s  0.62s both; }
.hero__stats    { animation: heroUp 0.7s  0.78s both; }

/* ==========================================
   SECTION HEADER UNDERLINE ACCENT
   ========================================== */
.section-header h2 {
  position: relative;
  padding-bottom: 20px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(232,101,10,0.55);
}

/* Trust bar item shimmer */
@keyframes trustGlow {
  0%,100% { opacity:.9; }
  50%      { opacity:1; text-shadow: 0 0 12px rgba(255,255,255,0.25); }
}
.trust-bar__item { animation: trustGlow 3s ease-in-out infinite; }
.trust-bar__item:nth-child(2) { animation-delay:.5s; }
.trust-bar__item:nth-child(3) { animation-delay:1s; }
.trust-bar__item:nth-child(4) { animation-delay:1.5s; }
.trust-bar__item:nth-child(5) { animation-delay:2s; }

/* WhatsApp float glow */
.float-btn-wa  { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.float-btn-wa:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.float-btn-call { box-shadow: 0 4px 16px rgba(232,101,10,0.4); }
.float-btn-call:hover { box-shadow: 0 6px 28px rgba(232,101,10,0.6); }

/* hw-benefit icon glow */
.hw-benefit__icon {
  box-shadow: 0 0 10px rgba(232,101,10,0.35);
}

/* ==========================================
   BUTTON ACTIVE PRESS FEEDBACK
   ========================================== */
.btn {
  transition: transform 160ms ease-out, box-shadow 160ms ease-out,
              background 160ms ease-out, border-color 160ms ease-out;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary:active {
  box-shadow: 0 2px 8px rgba(232,101,10,0.25);
}
.float-btn:active {
  transform: scale(0.95);
}

/* ==========================================
   IMAGE LOADING FADE-IN
   ========================================== */
img {
  transition: opacity 0.35s ease-out;
}
img.img-loading {
  opacity: 0;
}

/* Image container placeholders while loading */
.gallery-item picture,
.hw-image-grid picture,
.project-card picture {
  display: block;
  background: #1c1c1c;
}

/* Gallery: fill container regardless of image's natural dimensions */
.gallery-item picture {
  position: absolute;
  inset: 0;
}
.section-gray .gallery-item picture,
.project-card picture {
  background: #e8e8e8;
}

/* ==========================================
   GALLERY HOVER — FASTER, EASE-OUT
   ========================================== */
.gallery-item img {
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Caption enters ease-out */
.gallery-item__caption {
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==========================================
   SERVICE CARD — SPECIFIC TRANSITION
   ========================================== */
.service-card {
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 200ms ease-out,
              border-color 200ms ease-out;
}

/* ==========================================
   HOVER STATES — TOUCH GUARD
   ========================================== */
@media (hover: none) {
  .gallery-item:hover img { transform: none; }
  .service-card:hover { transform: none; }
  .review-card:hover { transform: none; }
  .float-btn:hover { transform: none; }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
  .trust-bar__item { animation: none; }
  .hero__label,.hero__title,.hero__subtitle,.hero__buttons,.hero__stats { animation: none; }
  .reveal { opacity:1; transform:none; transition:none; }
  .area-chips .chip { opacity:1; transform:none; }
  .area-chips.chips-visible .chip { animation:none; }
  .einsatz-pin-dot { animation:none; }
}

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ol { list-style: none; }

:root {
  --black:  #0f0f0f;
  --orange: #E8650A;
  --orange-dark: #c4540a;
  --white:  #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid:   #e0e0e0;
  --gray-text:  #555555;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Barlow', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--gray-text); }

.highlight { color: var(--orange); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,101,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.15rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

/* --- Section helpers --- */
.section { padding: 80px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark p { color: #ccc; }
.section-gray { background: var(--gray-light); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange p { color: rgba(255,255,255,0.9); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .overline {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-dark .section-header .overline { color: var(--orange); }
.section-header p { max-width: 620px; margin: 10px auto 0; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo span { color: var(--orange); }
.nav__logo-rk {
  background: var(--orange);
  color: var(--white);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 900;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  color: #ccc;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active,
.nav__link--active { color: var(--white); }
.nav__cta { margin-left: 10px; }
.nav__phone { margin-left: 8px; }
.nav__phone a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: .02em;
  padding: 6px 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__phone a:hover { color: var(--white); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1280px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid #222;
  }
  .nav__menu.open { display: flex; }
  .nav__link { width: 100%; padding: 10px 14px; }
  .nav__cta { margin: 10px 0 0; width: 100%; }
  .nav__cta .btn { width: 100%; text-align: center; }
  .nav__phone { display: none; } /* redundant im Mobile-Menü — Anrufen-Button sitzt in der CTA-Leiste */
  .nav__hamburger { display: flex; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.7) 50%, rgba(232,101,10,0.15) 100%);
  z-index: 1;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--orange);
}
.hero__title { color: var(--white); max-width: 780px; margin-bottom: 22px; }
.hero__subtitle {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 4px;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--orange);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.trust-bar__item svg { flex-shrink: 0; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 30px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(232,101,10,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { margin: 0; font-size: 0.9rem; }

/* --- Hausverwaltung Section --- */
.hw-section {
  background: var(--black);
  color: var(--white);
  padding: 90px 0;
}
.hw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hw-benefits { margin: 28px 0; }
.hw-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.hw-benefit__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-top: 2px;
}
.hw-benefit h4 { color: var(--white); margin-bottom: 4px; }
.hw-benefit p  { margin: 0; font-size: 0.9rem; color: #aaa; }
.hw-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hw-image-grid img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.hw-image-grid img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

@media (max-width: 768px) {
  .hw-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Counter Section --- */
.counters {
  background: var(--black);
  padding: 60px 0;
}
.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.counter__label {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 6px;
}

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

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 28px 16px 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item__caption { transform: translateY(0); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--black); }
.review-location { font-size: 0.82rem; color: #aaa; margin-top: 2px; }
.review-aggregate {
  text-align: center;
  margin-bottom: 40px;
}
.review-aggregate__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.review-aggregate__stars { font-size: 1.6rem; color: #f5a623; margin: 6px 0; }
.review-aggregate__count { color: #888; font-size: 0.9rem; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 30px;
  padding: 6px 16px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail__icon {
  width: 42px; height: 42px;
  background: rgba(232,101,10,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail a { color: var(--orange); font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }

.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { display: none; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.93rem;
  display: none;
}
.form-message.error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }

/* Contact form success card */
.form-success-card {
  display: none;
  text-align: center;
  padding: 48px 24px 36px;
}
.form-success-card.visible {
  display: block;
  animation: successFadeUp 450ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.form-success-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(232, 101, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 20px;
}
.form-success-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-success-card p {
  color: #666;
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
@keyframes successFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- CTA Band --- */
.cta-band {
  background: var(--orange);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 32px; }
.cta-band__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: #080808;
  color: #999;
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand p { font-size: 0.9rem; margin-top: 14px; color: #777; }
.footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul li a { font-size: 0.9rem; color: #888; transition: var(--transition); }
.footer__col ul li a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer__bottom a { color: #888; }
.footer__bottom a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- Floating Buttons --- */
.float-buttons {
  position: fixed;
  bottom: 16px;
  right: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1001;
}

/* Tawk.to – ÜBER der CTA-Bar, safe-area-aware (iPhone Notch/Home-Indicator) */
@media (max-width: 900px) {
  #tawkchat-container iframe,
  #tawkchat-minified-iframe,
  [id*="tawk"] iframe,
  iframe[src*="tawk.to"] {
    bottom: calc(110px + env(safe-area-inset-bottom, 0px)) !important;
    right: 8px !important;
  }
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.float-btn-call { background: var(--orange); color: var(--white); }
.float-btn-wa   { background: #25D366; color: var(--white); }
.float-btn-label {
  position: absolute;
  right: 62px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .float-btn-label { opacity: 1; }

@media (min-width: 901px) {
  .float-btn-call { display: none; }
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  margin-top: 68px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 0.85rem;
  color: #888;
}
.breadcrumb__list a { color: var(--orange); }
.breadcrumb__list a:hover { text-decoration: underline; }
.breadcrumb__list span { color: #bbb; }

/* --- Page Hero (non-index) --- */
.page-hero {
  background: var(--black);
  padding: 100px 0 70px;
  text-align: center;
  /* no margin-top: breadcrumb already clears the fixed nav */
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: #ccc; max-width: 580px; margin: 14px auto 0; }

/* --- Accordion --- */
.accordion { border: 1px solid var(--gray-mid); border-radius: 8px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-mid); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.accordion-btn:hover { background: var(--gray-light); }
.accordion-btn.active { color: var(--orange); background: var(--gray-light); }
.accordion-icon { transition: transform var(--transition); font-size: 1.3rem; line-height: 1; }
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 24px 20px; color: var(--gray-text); font-size: 0.95rem; }
.accordion-body.open { display: block; }

/* --- Map placeholder --- */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gray-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #888;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* --- Einsatzgebiet section upgrade --- */
.einsatz-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: center;
}

.einsatz-text .overline { margin-bottom: 0; }

.einsatz-home {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 16px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.einsatz-pin-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.einsatz-pin-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  animation: pinPulse 2.4s ease-out infinite;
}

@keyframes pinPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,101,10,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(232,101,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,101,10,0); }
}

.einsatz-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.einsatz-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.einsatz-meta-item svg { color: var(--orange); flex-shrink: 0; }

/* --- Area chips --- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Chips start hidden; entrance animation on .chips-visible */
.area-chips .chip {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes chipEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.area-chips.chips-visible .chip {
  animation: chipEnter 0.38s cubic-bezier(0.23, 1, 0.32, 1) both;
  transition: background 140ms ease, color 140ms ease,
              border-color 140ms ease, box-shadow 140ms ease;
}

.area-chips.chips-visible .chip:nth-child(1)  { animation-delay: 0ms; }
.area-chips.chips-visible .chip:nth-child(2)  { animation-delay: 45ms; }
.area-chips.chips-visible .chip:nth-child(3)  { animation-delay: 90ms; }
.area-chips.chips-visible .chip:nth-child(4)  { animation-delay: 135ms; }
.area-chips.chips-visible .chip:nth-child(5)  { animation-delay: 180ms; }
.area-chips.chips-visible .chip:nth-child(6)  { animation-delay: 225ms; }
.area-chips.chips-visible .chip:nth-child(7)  { animation-delay: 270ms; }
.area-chips.chips-visible .chip:nth-child(8)  { animation-delay: 315ms; }
.area-chips.chips-visible .chip:nth-child(9)  { animation-delay: 360ms; }
.area-chips.chips-visible .chip:nth-child(10) { animation-delay: 405ms; }
.area-chips.chips-visible .chip:nth-child(11) { animation-delay: 450ms; }

@media (hover: hover) and (pointer: fine) {
  .area-chips.chips-visible .chip:not(.chip--home):hover {
    background: rgba(232,101,10,0.18);
    border-color: rgba(232,101,10,0.5);
    box-shadow: 0 2px 12px rgba(232,101,10,0.12);
  }
}

.chip {
  background: rgba(232,101,10,0.08);
  color: var(--orange);
  border: 1px solid rgba(232,101,10,0.25);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: default;
}

.chip--home {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(232,101,10,0.3);
}

.chip-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

@media (max-width: 800px) {
  .einsatz-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: steps;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p  { font-size: 0.9rem; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeup { animation: fadeUp 0.5s ease both; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-orange  { color: var(--orange); }
.text-white   { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ==========================================
   HAUSVERWALTUNG PAGE
   ========================================== */

/* Hero — no margin-top, breadcrumb handles nav clearance */
.hw-hero {
  background: var(--black);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal accent */
.hw-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(232,101,10,0.07) 100%);
  pointer-events: none;
}

/* Staggered hero entrance */
.hw-a1 { animation: heroUp 0.6s 0.08s both; }
.hw-a2 { animation: heroUp 0.7s 0.22s both; }
.hw-a3 { animation: heroUp 0.7s 0.38s both; }
.hw-a4 { animation: heroUp 0.7s 0.54s both; }
.hw-a5 { animation: heroUp 0.7s 0.68s both; }

/* Trust strip below hero buttons */
.hw-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hw-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: #aaa;
  font-weight: 500;
}

.hw-trust-item svg { color: var(--orange); flex-shrink: 0; }

/* Problem / Solution cards */
.hw-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 200ms cubic-bezier(0.23,1,0.32,1),
              box-shadow 200ms ease-out,
              border-color 180ms ease,
              background 180ms ease;
}

.hw-card--problem {
  background: var(--gray-light);
  border-color: var(--gray-mid);
}

.hw-card--solution {
  background: rgba(232,101,10,0.05);
  border-color: rgba(232,101,10,0.2);
}

@media (hover: hover) and (pointer: fine) {
  .hw-card--problem:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    border-color: #ccc;
  }
  .hw-card--solution:hover {
    transform: translateY(-2px);
    background: rgba(232,101,10,0.09);
    border-color: rgba(232,101,10,0.45);
    box-shadow: 0 6px 20px rgba(232,101,10,0.1);
  }
}

.hw-card__emoji { font-size: 1.3rem; flex-shrink: 0; line-height: 1.4; }
.hw-card__check { color: var(--orange); font-size: 1.2rem; flex-shrink: 0; font-weight: 900; line-height: 1.4; }
.hw-card strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.hw-card p { margin: 0; font-size: 0.88rem; }

/* Problem/Solution column layout */
.hw-prob-sol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 768px) {
  .hw-prob-sol { grid-template-columns: 1fr; gap: 36px; }
  .hw-trust-strip { gap: 14px; }
  .hw-hero { padding: 70px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .hw-a1,.hw-a2,.hw-a3,.hw-a4,.hw-a5 { animation: none; }
  .hw-hero::after { display: none; }
}

/* === HW STATS STRIP === */
.hw-stats-strip {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.hw-stat-item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s cubic-bezier(0.23,1,0.32,1),
              transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.hw-stat-item:last-child { border-right: none; }
.hw-stats-strip.stats-visible .hw-stat-item { opacity: 1; transform: translateY(0); }
.hw-stats-strip.stats-visible .hw-stat-item:nth-child(1) { transition-delay: 0ms; }
.hw-stats-strip.stats-visible .hw-stat-item:nth-child(2) { transition-delay: 80ms; }
.hw-stats-strip.stats-visible .hw-stat-item:nth-child(3) { transition-delay: 160ms; }
.hw-stats-strip.stats-visible .hw-stat-item:nth-child(4) { transition-delay: 240ms; }
.hw-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hw-stat-label {
  font-size: 0.78rem;
  color: #888;
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === EXTRA REVEAL DELAYS === */
.reveal.delay-6 { transition-delay: 0.56s; }

/* === PROCESS STEPS CONNECTING LINE === */
.step__num { position: relative; z-index: 1; }
.process-steps--connected { position: relative; }
.process-steps--connected::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(232,101,10,0.12) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.23,1,0.32,1) 0.5s;
  pointer-events: none;
  z-index: 0;
}
.process-steps--connected.line-drawn::before { transform: scaleX(1); }

/* === REFERENZ STAT BOXES === */
.referenz-stat {
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms ease, border-color 200ms ease,
              transform 220ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover: hover) and (pointer: fine) {
  .referenz-stat:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(232,101,10,0.35);
    transform: translateY(-3px);
  }
}
.referenz-stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.referenz-stat__label {
  font-size: .83rem;
  color: #aaa;
  margin-top: 4px;
}

/* === SERVICE CARD ICON POP === */
@keyframes iconPop {
  from { transform: scale(0.55) rotate(-8deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.service-card.reveal.visible .service-card__icon {
  animation: iconPop 0.5s cubic-bezier(0.23,1,0.32,1) 0.12s both;
}

/* === HW RESPONSIVE === */
@media (max-width: 768px) {
  .hw-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hw-stat-item:nth-child(2) { border-right: none; }
  .hw-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .hw-stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .process-steps--connected::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hw-stat-item { opacity: 1; transform: none; transition: none; }
  .process-steps--connected::before { transform: scaleX(1); transition: none; }
  .service-card.reveal.visible .service-card__icon { animation: none; }
}

/* ==========================================
   LEISTUNGEN SERVICE GRID CLASSES
   ========================================== */

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-grid picture {
  display: block;
  width: 100%;
}
.svc-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.bad-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.fliesen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.boden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-img {
    height: auto;
    object-fit: initial;
    border-radius: 10px;
  }
  .fliesen-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .boden-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .bad-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .boden-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   HW COMPARE — PROBLEM / LÖSUNG
   ========================================== */

.hw-compare__grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 36px;
  margin-top: 52px;
  align-items: start;
}

.hw-col-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.hw-col-badge--red   { background: rgba(220,38,38,0.1);   color: #dc2626; }
.hw-col-badge--orange{ background: rgba(232,101,10,0.12);  color: var(--orange); }

.hw-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--black);
  margin: 0;
}

/* Problem cards */
.hw-prob-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #f5f5f5;
  border-radius: 10px;
  border-left: 3px solid #dc2626;
  transition: transform 220ms cubic-bezier(0.23,1,0.32,1),
              background 180ms ease-out;
  cursor: default;
}
.hw-prob-card:hover  { background: #ededed; transform: translateX(4px); }
.hw-prob-card:active { transform: scale(0.98); }

.hw-prob-card__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(220,38,38,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  margin-top: 1px;
}

/* Solution cards */
.hw-sol-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(232,101,10,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--orange);
  transition: transform 220ms cubic-bezier(0.23,1,0.32,1),
              background 180ms ease-out;
  cursor: default;
}
.hw-sol-card:hover  { background: rgba(232,101,10,0.1); transform: translateX(4px); }
.hw-sol-card:active { transform: scale(0.98); }

.hw-sol-card__check {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(232,101,10,0.35);
  margin-top: 1px;
}

/* Shared card typography */
.hw-card-title {
  font-weight: 700;
  font-size: 0.93rem;
  margin: 0 0 5px;
  color: var(--black);
  line-height: 1.35;
}
.hw-card-desc {
  font-size: 0.84rem;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

/* Center divider */
.hw-compare__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 68px;
}
.hw-compare__divider-line {
  flex: 1;
  width: 1px;
  min-height: 60px;
  background: linear-gradient(to bottom, transparent 0%, rgba(232,101,10,0.45) 30%, rgba(232,101,10,0.45) 70%, transparent 100%);
}
.hw-compare__divider-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hw-compare__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hw-compare__divider { display: none; }
}

/* ==========================================
   MOBILE OPTIMIZATIONS
   ========================================== */

/* --- Hero mobile --- */
@media (max-width: 600px) {
  .hero { min-height: 85vh; }
  .hero__content { padding: 36px 20px 56px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero__buttons { flex-direction: column; gap: 10px; margin-bottom: 40px; }
  .hero__buttons .btn { width: 100%; text-align: center; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .hero__availability { font-size: 0.76rem; padding: 5px 12px 5px 8px; }
}

/* --- HW Hero mobile --- */
@media (max-width: 600px) {
  .hw-hero { padding: 60px 0 50px; }
  .hw-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hw-a4 { flex-direction: column; }
  .hw-a4 .btn { width: 100%; text-align: center; }
}

/* --- CTA band mobile --- */
@media (max-width: 600px) {
  .cta-band { padding: 50px 0; }
  .cta-band__buttons { flex-direction: column; align-items: center; }
  .cta-band__buttons .btn { width: 100%; max-width: 320px; }
}

/* --- Footer brand name mobile --- */
@media (max-width: 600px) {
  .footer__brand [style*="font-size:1.8rem"] {
    font-size: 1.2rem !important;
  }
  .footer__brand > div { flex-wrap: wrap; }
}

/* --- Nav logo on small screens --- */
@media (max-width: 400px) {
  .nav__logo-main { font-size: 0.95rem; }
  .nav__logo-sub { font-size: 0.68rem; }
  .nav__logo-icon { width: 32px; height: 32px; }
}

/* --- Process steps mobile: single column --- */
@media (max-width: 500px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* --- Touch: remove hover-only effects on mobile --- */
@media (hover: none) {
  .gallery-item__caption { transform: translateY(0); background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%); }
  .service-card:hover { transform: none; box-shadow: none; }
  .hw-card:hover { transform: none; }
}

/* ==========================================
   GLOBAL TOUCH IMPROVEMENTS
   ========================================== */
a, button, .btn, .float-btn, .mobile-cta-btn, .service-card, .gallery-item {
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================
   MOBILE TOUCH TARGET SIZES (44px minimum)
   ========================================== */
@media (max-width: 900px) {
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .nav__hamburger { min-height: 44px; min-width: 44px; justify-content: center; align-items: center; }
  /* Trust bar kompakter */
  .trust-bar { padding: 14px 0; }
  .trust-bar__inner { gap: 8px 20px; }
  .trust-bar__item { font-size: 0.88rem; }
  /* Einsatzgebiet chips kleiner */
  .chip { font-size: 0.8rem; padding: 6px 13px; }
  /* Section header weniger Abstand */
  .section-header { margin-bottom: 40px; }
  /* Galerie 2 Spalten ab 500px */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Review cards besser lesbar */
  .review-text { font-size: 0.88rem; }
  /* Counter kleiner */
  .counter__num { font-size: 2.6rem; }
  /* HW image grid auf Mobile anzeigen (kompakt: 1 gross + 2 klein) */
  .hw-image-grid { display: grid; }
  /* Bilder sind Inhalt -> immer sichtbar, nicht von der Scroll-Animation abhängig */
  .hw-image-grid.reveal { opacity: 1; transform: none; }
  .hw-image-grid picture:first-child { grid-column: 1 / -1; }
  .hw-image-grid img { height: 150px; }
  .hw-image-grid img:first-child { height: 190px; }
  .hw-inner { grid-template-columns: 1fr; }
}

/* ==========================================
   MOBILE STICKY CTA BAR
   ========================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 8px;
  box-shadow: 0 -6px 32px rgba(0,0,0,0.55);
  animation: slideUpBar 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

@keyframes slideUpBar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}

@media (max-width: 900px) {
  .mobile-cta-bar { display: grid; }
  .float-buttons  { display: none; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

.mobile-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 10px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  min-height: 52px;
  cursor: pointer;
  transition: transform 140ms cubic-bezier(0.23, 1, 0.32, 1),
              opacity 140ms ease;
}
.mobile-cta-btn:active  { transform: scale(0.93); opacity: 0.85; }
.mobile-cta-call        { background: rgba(255,255,255,0.07); }
.mobile-cta-wa          { background: rgba(37,211,102,0.13); color: #25D366; }
.mobile-cta-offer {
  background: var(--orange);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.mobile-cta-offer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.mobile-cta-offer:active::after { transform: translateX(100%); }

@media (prefers-reduced-motion: reduce) {
  .mobile-cta-bar   { animation: none; }
  .mobile-cta-offer { animation: none; }
}

/* ==========================================
   SECTION HEADER UNDERLINE ANIMATES IN
   ========================================== */
.section-header.reveal h2::after {
  transform: translateX(-50%) scaleX(0);
}
.section-header.reveal.visible h2::after {
  transform: translateX(-50%) scaleX(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.38s;
}

/* ==========================================
   PROCESS STEP HOVER GLOW
   ========================================== */
.step {
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.step__num {
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 220ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .step:hover { transform: translateY(-4px); }
  .step:hover .step__num {
    transform: scale(1.1);
    box-shadow: 0 0 28px rgba(232,101,10,0.65);
  }
}

/* ==========================================
   GALLERY STAGGER (nth-child delays)
   ========================================== */
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.10s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.20s; }

/* ==========================================
   COUNTER SECTION STAGGER
   ========================================== */
.counters__grid > div:nth-child(2) { transition-delay: 0.10s; }
.counters__grid > div:nth-child(3) { transition-delay: 0.20s; }
.counters__grid > div:nth-child(4) { transition-delay: 0.30s; }

/* ==========================================
   REVIEW CARD ENHANCED HOVER
   ========================================== */
@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(232,101,10,0.15);
  }
}

/* ==========================================
   MOBILE GALLERY — CAPTIONS ALWAYS VISIBLE
   ========================================== */
@media (max-width: 600px) {
  .gallery-item__caption {
    transform: translateY(0);
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  }
}

/* ==========================================
   SERVICE CARD MOBILE — 2 COLUMNS
   ========================================== */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card {
    padding: 18px 16px;
  }
  .service-card__icon {
    width: 40px; height: 40px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  .service-card__icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 1rem; margin-bottom: 0; }
  .service-card p  { display: none; }
  .service-card .text-orange { font-size: .8rem; margin-top: 8px !important; }
}

/* ==========================================
   HERO STATS — BIGGER ON MOBILE
   ========================================== */
@media (max-width: 480px) {
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 2rem; }
}

/* ==========================================
   CTA BAND — REVEAL INHERITS COLORS
   ========================================== */
.cta-band h2.reveal { color: var(--white); }
.cta-band p.reveal  { color: rgba(255,255,255,0.9); }

/* ==========================================
   HW COMPARE MOBILE LABELS
   ========================================== */
@media (max-width: 768px) {
  .hw-col-title { font-size: 1.2rem; }
  .hw-compare__grid > *:nth-child(3) { margin-top: 0; }
}

/* ==========================================
   REVIEW CARDS MOBILE STACK
   ========================================== */
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px 18px; }
}

/* ==========================================
   HERO CALL LINK (Mobile only)
   ========================================== */
.hero__call-link {
  display: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: -4px;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .hero__call-link { display: block; }
}

/* ==========================================
   HERO AVAILABILITY BADGE
   ========================================== */
.hero__availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  padding: 6px 16px 6px 10px;
  font-size: 0.82rem;
  color: #ddd;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
  animation: heroUp 0.65s 0.05s both;
}
.avail-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: availPulse 2.2s ease-in-out infinite;
}
@keyframes availPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  55%       { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
}

/* ==========================================
   WHATSAPP HERO BUTTON
   ========================================== */
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
}
.btn-wa:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35), 0 0 10px rgba(37,211,102,0.15); }
  55%       { box-shadow: 0 0 0 8px rgba(37,211,102,0), 0 0 10px rgba(37,211,102,0.15); }
}
.btn-wa-outline {
  border-color: rgba(37,211,102,0.75);
  animation: waPulse 3s ease-in-out infinite;
}
.btn-wa-outline:hover {
  background: rgba(37,211,102,0.1);
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 0 28px rgba(37,211,102,0.5);
  transform: translateY(-2px);
  animation: none;
}
.btn-wa-outline:active {
  transform: scale(0.97);
  box-shadow: 0 0 12px rgba(37,211,102,0.3);
}

/* ==========================================
   HOMEPAGE QUICK CONTACT FORM
   ========================================== */
.quick-contact {
  background: var(--black);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.quick-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,101,10,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.quick-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.quick-contact__trust {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 28px;
}
.quick-contact__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #bbb;
}
.quick-contact__trust-item svg { color: var(--orange); flex-shrink: 0; }

.quick-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(232,101,10,0.12);
}
.quick-form-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.quick-form-card__sub {
  font-size: 0.84rem;
  color: #888;
  margin-bottom: 22px;
}
.quick-form-card .form-group { margin-bottom: 13px; }
.quick-form-card .form-group input,
.quick-form-card .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  min-height: 50px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.quick-form-card .form-group input:focus,
.quick-form-card .form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.12);
}
.quick-form-card .btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1.1rem;
}
.quick-form__note {
  text-align: center;
  font-size: 0.76rem;
  color: #aaa;
  margin-top: 10px;
  margin-bottom: 0;
}
.quick-form__success {
  display: none;
  text-align: center;
  padding: 24px 16px;
}
.quick-form__success-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #16a34a;
}
.quick-form__success h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 6px;
}
.quick-form__success p { font-size: 0.88rem; color: #666; margin: 0; }

/* Select dropdown custom arrow */
.quick-form-card .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

@media (max-width: 900px) {
  .quick-contact__grid { display: flex; flex-direction: column; gap: 32px; }
  .quick-form-card { order: -1; } /* Form erscheint ZUERST auf Mobile */
  .quick-contact__intro { order: 1; }
  .quick-form-card { padding: 28px 22px; }
  .quick-contact { padding: 56px 0; }
  /* Weniger Text auf Mobile — Paragraph verstecken, H2 + Trust bleiben */
  .quick-contact__intro > p { display: none; }
  .quick-contact__intro h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 0; }
}

/* ==========================================
   PROJECTS GRID (referenzen.html)
   ========================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================
   PROJECT CARD — ENHANCED ANIMATIONS
   ========================================== */
.project-card {
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 220ms ease-out !important;
}
@media (hover: hover) and (pointer: fine) {
  .project-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
  }
}

/* ==========================================
   TRUST STRIP (Kunden empfehlen uns)
   ========================================== */
.trust-strip { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-strip__item { padding: 20px 12px; border-right: 1px solid rgba(255,255,255,0.06); }
.trust-strip__item:last-child { border-right: none; }
.trust-strip__num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.trust-strip__label { font-size: .78rem; color: #888; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
@media (max-width: 640px) {
  .trust-strip { grid-template-columns: repeat(2,1fr) !important; }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .trust-strip__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  border-top: 3px solid var(--orange);
  padding: 16px 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .84rem; color: #bbb; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner p a { color: var(--orange); }
.cookie-banner__btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--orange); color: #fff; border: none; border-radius: 7px;
  padding: 9px 18px; font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: transform 160ms cubic-bezier(0.22,1,0.36,1); font-family: inherit;
}
.cookie-accept:active { transform: scale(0.97); }
.cookie-decline {
  background: transparent; color: #888; border: 1px solid #444;
  border-radius: 7px; padding: 9px 14px; font-size: .82rem; cursor: pointer;
  font-family: inherit; transition: color 160ms ease, border-color 160ms ease;
}
.cookie-decline:hover { color: #fff; border-color: #888; }
@media (max-width: 900px) {
  .cookie-banner { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}


/* --- Zurück nach oben --- */
.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1400;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(28,28,30,0.88);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }
@media (max-width: 768px) {
  .back-to-top { bottom: 76px; left: 14px; } /* über der mobilen CTA-Bar */
}

/* ============================================================
   DESIGN-REFRESH 2026-07 — "Baustellen-Vernakular"
   Marke bleibt (Ink #0F0F0F / Orange #E8650A / Barlow),
   wird aber geschärft: gestanzte Buttons, Richtscheit-Kante,
   Warnstreifen-Signatur, ruhigere Karten.
   ============================================================ */

:root {
  --orange-deep: #A84A08;
  --paper: #F6F4F0;
  --line: #E7E3DC;
}

/* Wärmeres Grau für helle Sektionen */
.section-gray { background: var(--paper); }

/* --- Typografie: Sektions-Überschriften dezent geschärft ---
   (Hero und Seiten-Header bewusst unangetastet — Original-Typografie) */
.section-header h2,
.cta-band h2 {
  letter-spacing: 0.015em;
  line-height: 1.1;
}

/* --- Signatur: Richtscheit-Kante vor der Overline --- */
.section-header .overline {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}
.section-header .overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 4px;
  background: var(--orange);
}

/* --- Buttons: gestanzt statt schwebend --- */
.btn {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  border-radius: 5px;
}
.btn-primary {
  box-shadow: 0 4px 0 var(--orange-deep);
  transform: translateY(0);
}
.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--orange-deep);
}
.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--orange-deep);
}
.btn-dark {
  box-shadow: 0 4px 0 rgba(0,0,0,0.45);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.45);
}
.btn-outline:hover { transform: translateY(1px); }

/* --- Karten: Linie statt Schatten, Orange-Topline bei Hover --- */
.service-card,
.review-card {
  border: 1px solid var(--line);
  box-shadow: none;
  border-top: 3px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--orange);
  box-shadow: 0 10px 28px rgba(15,15,15,0.10);
}

/* --- CTA-Band: Warnstreifen-Signatur --- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.30) 0 14px,
    transparent 14px 28px
  );
}

/* --- Akkordeon: klarere Affordance --- */
.accordion-btn { font-weight: 600; }
.accordion-btn:hover { color: var(--orange); }

/* --- Fokus sichtbar (Tastatur) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* --- Reduced Motion: gestanzte Buttons ohne Bewegung --- */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-primary:active,
  .btn-dark:hover, .btn-outline:hover { transform: none; }
  .service-card:hover, .review-card:hover { transform: none; }
}

/* --- Vorher/Nachher-Slider (Startseite; referenzen.html hat identische Inline-Styles) --- */
.vn-slider { position:relative; overflow:hidden; border-radius:12px; cursor:ew-resize; user-select:none; touch-action:pan-y; box-shadow:0 4px 24px rgba(0,0,0,0.13); max-width:680px; margin:0 auto; }
.vn-slider__img { display:block; width:100%; height:360px; object-fit:cover; pointer-events:none; -webkit-user-drag:none; }
@media(max-width:600px){ .vn-slider__img { height:320px; } }
.vn-slider__img--before { position:absolute; inset:0; width:100%; height:100%; clip-path:inset(0 50% 0 0); }
.vn-slider__divider { position:absolute; top:0; bottom:0; left:50%; width:2px; background:rgba(255,255,255,0.95); transform:translateX(-50%); pointer-events:none; box-shadow:0 0 8px rgba(0,0,0,0.25); }
.vn-slider__handle { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:42px; height:42px; border-radius:50%; background:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 12px rgba(0,0,0,0.25); transition:transform 160ms cubic-bezier(0.22,1,0.36,1), box-shadow 160ms ease; }
.vn-slider.dragging .vn-slider__handle { transform:translate(-50%,-50%) scale(0.91); box-shadow:0 4px 20px rgba(0,0,0,0.32); }
.vn-label { position:absolute; top:12px; font-family:'Barlow Condensed',sans-serif; font-size:.8rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; padding:3px 10px; border-radius:5px; pointer-events:none; z-index:2; }
.vn-label--before { left:12px; background:rgba(0,0,0,0.6); color:#fff; }
.vn-label--after  { right:12px; background:var(--orange); color:#fff; }
.vn-hint { text-align:center; font-size:.78rem; color:#999; margin-top:10px; letter-spacing:.04em; }
.vn-section { background:var(--gray-light); }

/* ============================================================
   DESIGN-REFRESH 2026-07-B — "Werkstoffqualität"
   Schatten wirken materiell statt flach, dunkle Flächen
   bekommen Filmkorn.
   ============================================================ */

.gallery-item img,
.project-card__img {
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- Materielle Schatten: zwei Schichten statt einer ---
   Kontaktschatten (eng, dunkel) + Umgebungslicht (weit, hell)
   — so liest das Auge echte Tiefe statt eines CSS-Presets. */
:root {
  --shadow-contact:  0 1px 2px rgba(15,15,15,0.08), 0 2px 5px rgba(15,15,15,0.06);
  --shadow-ambient:  0 14px 34px rgba(15,15,15,0.10), 0 4px 12px rgba(15,15,15,0.05);
  --shadow-orange:   0 1px 2px rgba(232,101,10,0.18), 0 16px 32px rgba(232,101,10,0.14);
}

.service-card,
.review-card,
.price-card,
.form-card {
  box-shadow: var(--shadow-contact);
}
.service-card:hover,
.review-card:hover {
  box-shadow: var(--shadow-contact), var(--shadow-ambient);
}
.btn-primary {
  box-shadow: var(--shadow-orange), 0 4px 0 var(--orange-deep);
}


/* ============================================================
   FEINSCHLIFF 2026-07-C — Inhaber-Sektion, Marquee,
   permanente Galerie-Labels, Nav-Underline
   ============================================================ */

/* --- Inhaber-Sektion (Foto links, Inhaber rechts) --- */
.about-owner { background: #1C1C1E; padding: 100px 0; }
.about-owner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;          /* beide Spalten gleich hoch — kein Rand */
  gap: 0;
}
.about-owner__photo {
  overflow: hidden;
  padding: 0;
  margin: 0;
  min-height: 520px;             /* solide Grundhöhe, wächst mit dem Text mit */
  border-left: 4px solid var(--orange);
  border-radius: 12px;           /* leicht abgerundet */
}
.about-owner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* Ausschnitt oben → Kopf/Haare sichtbar */
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.about-owner__body {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* Text mittig zur Foto-Höhe */
}
.about-owner__eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-owner__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
  text-transform: none;
}
.about-owner__rule {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 16px 0;
}
.about-owner__text {
  font-size: 1rem;
  color: #999999;
  line-height: 1.9;
  margin: 0 0 18px;
  max-width: 560px;
}
.about-owner__text:last-of-type { margin-bottom: 32px; }
.about-owner__checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-owner__checks li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #CCCCCC;
  line-height: 1.5;
}
.about-owner__checks li span {
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .about-owner { padding: 60px 0; }
  .about-owner__inner { grid-template-columns: 1fr; padding: 0; }
  .about-owner__photo {
    min-height: 0;
    border-left: none;
    border-top: 4px solid var(--orange);
    max-width: 300px;
    margin: 0 auto;
  }
  .about-owner__photo img { height: auto; }
  .about-owner__body { padding: 40px 24px; }
}

/* --- Nav: aktive Seite mit orangem Unterstrich --- */
.nav__link.active {
  position: relative;
}
.nav__link.active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
@media (max-width: 1280px) {
  .nav__link.active::after { left: 14px; right: auto; width: 28px; }
}

/* --- Service-Cards: Lift beim Hover (nur echte Pointer) --- */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { transform: translateY(-4px); }
}

/* --- Galerie-Labels: permanent sichtbar (Touch sieht sonst nichts) --- */
.gallery-item__caption {
  transform: translateY(0);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
}

/* --- Trust-Bar: Marquee auf Mobile --- */
@media (max-width: 640px) {
  .trust-bar { overflow: hidden; padding: 14px 0; }
  .trust-bar__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 36px;
    width: max-content;
    animation: trustMarquee 22s linear infinite;
  }
  .trust-bar__item {
    white-space: nowrap;
    animation: none; /* Glow-Puls aus – Marquee ist Bewegung genug */
  }
  @keyframes trustMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}
@media (min-width: 641px) {
  .trust-bar__clone { display: none; } /* Klone nur für den Mobile-Loop */
}
@media (prefers-reduced-motion: reduce) {
  .trust-bar__inner { animation: none !important; flex-wrap: wrap; justify-content: center; width: auto; }
  .trust-bar__clone { display: none; }
}

/* --- Service-Cards: einspaltig auf sehr kleinen Displays --- */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SPLIT-HERO + EMOTIONAL + STATS — 2026-07 Redesign
   Ein bewusster mutiger Moment: die Barlow-Condensed-900 H1
   „…ohne Stress." — der Rest bleibt ruhig und diszipliniert.
   Marken-Orange (--orange) durchgängig, kein zweites Orange.
   ============================================================ */

.hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: #1C1C1E;
}

.hs__text {
  height: 100%;               /* exakt gleich hoch wie die Bildspalte */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 108px 80px 80px;   /* top klärt die fixe Nav (68px) + Luft */
}

.hs__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
  opacity: 0;
  animation: hsIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s forwards;
}

.hs__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 26px;
  text-transform: none;
  text-wrap: balance;            /* saubere, ausgeglichene Umbrüche bei langer Zeile 1 */
}
.hs__line {
  display: block;
  opacity: 0;
  transform: translateX(-24px);
  animation: hsInX 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hs__line:nth-child(1) { animation-delay: 0.12s; }
.hs__line:nth-child(2) { animation-delay: 0.22s; }
.hs__line:nth-child(3) { animation-delay: 0.32s; }
.hs__accent { color: var(--orange); font-weight: 700; }

.hs__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: #888888;
  max-width: 460px;
  margin: 0;
  opacity: 0;
  animation: hsIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.42s forwards;
}

.hs__cta {
  align-self: flex-start;
  margin-top: 38px;
  background: var(--orange);
  color: #fff;
  padding: 18px 40px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  opacity: 0;
  animation: hsInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.52s forwards,
             hsPulse 4s ease-out 2s infinite;
  transition: background 0.2s ease, transform 0.18s cubic-bezier(0.23,1,0.32,1);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .hs__cta:hover { background: var(--orange-dark, #c4540a); transform: translateY(-2px); }
}
.hs__cta:active { transform: translateY(0) scale(0.98); }

.hs__trust {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #6a6a6c;
  opacity: 0;
  animation: hsIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.62s forwards;
}
.hs__stars { color: var(--orange); letter-spacing: 0.05em; }

.hs__media {
  margin: 0;
  height: 100%;              /* exakt gleich hoch wie die Textspalte */
  border-left: 4px solid var(--orange);
  overflow: hidden;
  position: relative;
}
.hs__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.0) 100%
  );
}
.hs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@keyframes hsIn   { to { opacity: 1; } }
@keyframes hsInX  { to { opacity: 1; transform: translateX(0); } }
@keyframes hsInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,101,10,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(232,101,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,101,10,0); }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; height: auto; overflow: visible; }
  .hs__media { order: -1; border-left: none; border-bottom: 4px solid var(--orange); }
  .hs__media img { height: 35vh; }                 /* #1 Bild kleiner */
  .hs__text { padding: 30px 20px; }                /* #4 weniger Padding */
  .hs__title { font-size: 1.8rem; }                /* #2 H1 kleiner */
  .hs__title .hs__line { display: inline; }        /* Zeile 1+2 fließen zusammen */
  .hs__title .hs__accent { display: block; }       /* „Nicht stresst." eigene Zeile */
  .hs__sub { font-size: 0.9rem; }                  /* #5 Subtext kleiner */
  .hs__cta { align-self: stretch; text-align: center; }
}

/* --- Emotionale Sektion (dunkel — fließt in Hero & Stats) --- */
.why {
  background: #1C1C1E;
  padding: 84px 0 64px;
  position: relative;
}
.why::before {                 /* saubere Trennung Hero ↔ Warum, beide dunkel */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--orange) 20%,
    var(--orange) 80%,
    transparent
  );
}
.why__head { margin-bottom: 44px; }
.why__head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #F5F4F0;
  margin: 0;
}
.why__rule {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-top: 24px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;               /* Abstand trennt die Spalten — keine durchgehende Linie */
  margin-bottom: 0;
}
.why__col {
  padding: 26px 0 0;
  border-top: 3px solid var(--orange);   /* je Versprechen eine eigene kurze Kante */
}
.why__col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5F4F0;
  line-height: 1.3;
  margin: 0 0 14px;
}
.why__col p {
  font-size: 0.95rem;
  color: #9a9a9c;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 760px) {
  .why { padding: 60px 0 48px; }
  .why__head { margin-bottom: 32px; }
  .why__grid { grid-template-columns: 1fr; gap: 32px; }
  .why__col { padding: 24px 0 0; }
}

/* --- Dunkle Stats-Sektion --- */
.statsx {
  background: #1C1C1E;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.08);   /* feine Naht innerhalb der dunklen Zone */
}
.statsx__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.statsx__item {
  text-align: center;
  padding: 8px 16px;
}
.statsx__item + .statsx__item { border-left: 1px solid rgba(255,255,255,0.1); }
.statsx__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.statsx__label {
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
@media (max-width: 700px) {
  .statsx { padding: 52px 0; }
  .statsx__grid { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .statsx__item:nth-child(3) { border-left: none; }
  .statsx__num { font-size: 2.6rem; }
}

/* --- Motion-Reduktion: Bewegung raus, Sichtbarkeit bleibt --- */
@media (prefers-reduced-motion: reduce) {
  .hs__label, .hs__line, .hs__sub, .hs__cta, .hs__trust {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hs__cta:hover, .hs__cta:active { transform: none; }
}

/* ============================================================
   PREMIUM-DETAILS 2026-07 — Grain, Cursor, Page-Fade,
   Formular-Politur, Footer-Grid. Alles reduced-motion-fest.
   ============================================================ */

/* --- #2 Hero-Grain: sehr feine Textur nur auf der dunklen Textspalte --- */
.hs__text {
  background-color: #1C1C1E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* --- #4 Page-Transitions: Fade-in (rein CSS, JS-unabhängig) + Fade-out --- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
  body { animation: pageIn 0.32s ease-out both; }
  body.is-leaving { opacity: 0; transition: opacity 0.3s ease-out; }
}

/* --- #6 Formular: orange Bottom-Border statt Rahmen + Fokus --- */
.form-group input,
.form-group select,
.form-group textarea {
  border: none;
  border-bottom: 2px solid var(--gray-mid);
  border-radius: 0;
  padding: 11px 2px;
  background: transparent;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

/* Submit-Spinner */
.btn-spinner {
  display: inline-block;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 8px;
  animation: btnSpin 0.6s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* --- #7 Footer: feines Grid-Pattern (als Hintergrund, hinter Inhalt) --- */
.footer {
  background-color: #080808;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Klickbare Einsatzgebiet-Chips */
a.chip { text-decoration: none; cursor: pointer; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
@media (hover: hover) and (pointer: fine) {
  a.chip:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
  a.chip.chip--home:hover { background: var(--orange-dark, #c4540a); }
}
a.chip:active { transform: scale(0.97); }
