/* ============================================================
   KG BAU – Redesign Stylesheet
   Farben: Gold #b08762 | Dunkel #1a1a1a | Hell #f8f6f3
   Fonts: Montserrat (Headlines) + Open Sans (Body)
   ============================================================ */

:root {
  --gold:         #b08762;
  --gold-dark:    #8a6540;
  --gold-light:   #c9a87a;
  --gold-pale:    #f5ede4;
  --dark:         #1a1a1a;
  --dark-2:       #252525;
  --dark-3:       #333333;
  --text:         #444444;
  --text-light:   #777777;
  --light:        #f8f6f3;
  --light-2:      #eeeae5;
  --white:        #ffffff;
  --border:       #e5ddd5;
  --whatsapp:     #25D366;
  --shadow:       0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.15);
  --radius:       5px;
  --radius-lg:    10px;
  --transition:   0.3s ease;
  --container:    1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; font-weight: 500; color: var(--dark-3); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176,135,98,0.4);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--dark);
}
.btn-white:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Labels & Headers ── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 1rem; }

/* ╔══════════════════════════
   ║  TOPBAR
   ╚══════════════════════════ */
.topbar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 0.8rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-left a,
.topbar-left span {
  color: #aaaaaa;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
}
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right a {
  color: var(--whatsapp);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.8rem;
}
.topbar-right a:hover { opacity: 0.85; }

/* ╔══════════════════════════
   ║  HEADER / NAV
   ╚══════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.14);
}
.header .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}
.logo-text span { color: var(--gold); }

.nav { flex: 1; display: flex; justify-content: center; }
.nav ul { display: flex; gap: 2px; }
.nav ul li a {
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-3);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav ul li a:hover::after,
.nav ul li a.active::after { transform: scaleX(1); }
.nav ul li a:hover,
.nav ul li a.active { color: var(--gold); }

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark-2);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-nav ul li a {
  display: block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mobile-nav ul li a:hover { color: var(--gold-light); }

/* ╔══════════════════════════
   ║  HERO
   ╚══════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,18,15,0.92) 0%,
    rgba(26,26,26,0.75) 55%,
    rgba(176,135,98,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}
.hero-content .hero-inner {
  max-width: 680px;
  margin-left: 60px;
}
.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  line-height: 1.15;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
}
.hero-badge-item i {
  color: var(--gold);
  font-size: 1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  animation: scrollBounce 2s ease infinite;
  transition: border-color var(--transition), color var(--transition);
}
.hero-scroll a:hover { border-color: var(--gold); color: var(--gold); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ╔══════════════════════════
   ║  USP STRIP
   ╚══════════════════════════ */
.usp-strip {
  background: var(--gold);
  padding: 20px 0;
}
.usp-strip .container {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.usp-item i { font-size: 1.1rem; opacity: 0.9; }

/* ╔══════════════════════════
   ║  INTRO / ÜBER UNS
   ╚══════════════════════════ */
.intro { padding: 110px 0; background: #fff; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-content .section-label { margin-bottom: 12px; }
.intro-content h2 { margin-bottom: 18px; }
.intro-content .lead { margin-bottom: 16px; }
.intro-content > p { color: var(--text-light); }
.check-list { margin: 28px 0 36px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-2);
  color: var(--text);
  font-size: 0.95rem;
}
.check-list li:first-child { border-top: 1px solid var(--light-2); }
.check-list li i {
  width: 22px;
  height: 22px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.intro-visual { position: relative; }
.intro-image-wrap { position: relative; }
.intro-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.intro-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(176,135,98,0.45);
}
.badge-years {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 4px;
}

/* ╔══════════════════════════
   ║  SERVICES (Kernleistungen)
   ╚══════════════════════════ */
.services { padding: 110px 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-img-overlay { opacity: 1; }
.service-content { padding: 26px; }
.service-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: #fff;
}
.service-content h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-content p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
.service-link {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 13px; color: var(--gold-dark); }
.services-cta { text-align: center; margin-top: 52px; }

/* ╔══════════════════════════
   ║  STATS
   ╚══════════════════════════ */
.stats { padding: 90px 0; background: var(--dark-2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number span {
  font-size: 2rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ╔══════════════════════════
   ║  MORE SERVICES (Alle Leistungen)
   ╚══════════════════════════ */
.more-services { padding: 110px 0; background: #fff; }
.more-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.more-service-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.more-service-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: color var(--transition);
}
.more-service-item:hover {
  background: var(--gold-pale);
  border-color: var(--gold-light);
  color: var(--gold-dark);
  transform: translateX(5px);
}
.more-service-item:hover i { color: var(--gold-dark); }
.more-service-item span { line-height: 1.3; }

/* ╔══════════════════════════
   ║  GALLERY
   ╚══════════════════════════ */
.gallery { padding: 110px 0; background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item--large { grid-row: 1 / -1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(176,135,98,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ╔══════════════════════════
   ║  CTA BANNER
   ╚══════════════════════════ */
.cta-banner {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,18,15,0.92), rgba(26,26,26,0.88));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ╔══════════════════════════
   ║  CONTACT
   ╚══════════════════════════ */
.contact { padding: 110px 0; background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 36px; }
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 5px;
}
.contact-item p { margin: 0; color: var(--text); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,135,98,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ╔══════════════════════════
   ║  FOOTER
   ╚══════════════════════════ */
.footer-top {
  background: var(--dark-2);
  padding: 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.footer-logo-text span { color: var(--gold); }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}
.footer-col address p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-col address p i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.footer-col address a { color: rgba(255,255,255,0.52); }
.footer-col address a:hover { color: var(--gold-light); }
.footer-col .btn { margin-top: 18px; }

.footer-bottom {
  background: var(--dark);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin: 0;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-links a:hover { color: var(--gold-light); }

/* ╔══════════════════════════
   ║  PAGE HERO (Unterseiten)
   ╚══════════════════════════ */
.page-hero {
  position: relative;
  background: var(--dark-2);
  padding: 90px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  align-items: center;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.65rem; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

/* ╔══════════════════════════
   ║  LEISTUNGEN PAGE GRID
   ╚══════════════════════════ */
.leistungen-section { padding: 110px 0; background: var(--light); }
.l-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.l-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  color: inherit;
}
.l-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.l-card-img {
  height: 195px;
  overflow: hidden;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.l-card:hover .l-card-img img { transform: scale(1.07); }
.l-card-img-placeholder {
  font-size: 3rem;
  color: var(--gold-light);
  opacity: 0.6;
}
.l-card-body { padding: 22px; }
.l-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.l-card-body p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 14px; }
.l-link {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--transition);
}
.l-card:hover .l-link { gap: 11px; }

/* ╔══════════════════════════
   ║  BACK TO TOP
   ╚══════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(176,135,98,0.45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(176,135,98,0.55);
}

/* ╔══════════════════════════
   ║  RESPONSIVE
   ╚══════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .more-services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .intro-grid { gap: 52px; }
  .l-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-visual { order: -1; }
  .intro-image-wrap img { height: 380px; }
  .intro-badge { right: 0; bottom: -20px; }
  .intro-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .hero-content .hero-inner,
  .hero-badges { margin-left: 20px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-cta, .nav { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 34px; }

  .hero { min-height: 85vh; }
  .hero-content .hero-inner { margin-left: 0; }
  .hero-badges { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .more-services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: 1 / -1; height: 280px; }
  .gallery-item { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .l-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .more-services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .l-grid { grid-template-columns: 1fr; }
  .usp-strip .container { flex-direction: column; gap: 12px; }
}
