/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --c-bg: #F5F0EB;
  --c-green: #1A3B27;
  --c-green-mid: #2D6A4F;
  --c-gold: #C9A96E;
  --c-gold-light: #D8BC8C;
  --c-anthracite: #2A2A2A;
  --c-dark: #1C1C1C;
  --c-text: #333333;
  --c-text-light: #666666;
  --c-border: #E0D8CF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --header-h: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION BASICS ===== */
.section { padding: 96px 0; }
.section-dark { background: var(--c-green); color: #fff; }
.section-charcoal { background: #2d2d2d; color: #fff; }
.section-beige { background: #EDE8E1; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.65); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: inherit;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { color: var(--c-text-light); max-width: 560px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--c-green);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--c-green-mid); transform: translateY(-1px); }
.btn-primary.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-primary.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-primary.btn-full { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--c-green);
  color: var(--c-green);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--c-green); color: #fff; }
.btn-outline.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-outline.btn-white { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline.btn-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline-hero { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-hero:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn-dark {
  display: inline-block;
  background: var(--c-anthracite);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover { background: #111; transform: translateY(-1px); }
.btn-dark.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(245,240,235,0.97);
  border-bottom: 1px solid var(--c-border);
  z-index: 100;
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { height: 40px; width: auto; }
.logo-link { flex-shrink: 0; }
.nav-desktop { display: flex; gap: 28px; margin-left: auto; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-anthracite);
  transition: color var(--transition);
}
.nav-desktop a:hover { color: var(--c-green); }
.nav-cta { margin-left: 16px; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-anthracite);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}
.mobile-overlay.visible { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 280px;
  height: 100%;
  background: var(--c-bg);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 80px 24px 32px;
  transition: right 0.3s ease;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-anthracite);
}
.mobile-menu .btn-primary { margin-top: 16px; text-align: center; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
}
.hero-location {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.hero-stats-bar {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 32px 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 56px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: #fff;
  border-radius: 0;
  padding: 36px 32px;
  border: none;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.service-card:hover { background: #f9f7f3; }
.service-card:nth-child(4n) { border-right: none; }
.service-icon {
  width: 30px;
  height: 30px;
  color: var(--c-dark);
  margin-bottom: 20px;
}
.service-icon--light { color: rgba(255,255,255,0.85); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--c-dark);
}
.service-card p { font-size: 14px; color: var(--c-text-light); line-height: 1.6; }
.service-card--wide {
  grid-column: 1 / -1;
  background: var(--c-green);
  color: #fff;
  padding: 52px 56px;
  border-right: none;
  border-bottom: none;
}
.service-card--wide:hover { background: var(--c-green); }
.service-card--wide h3 { color: #fff; font-size: 1.8rem; margin-bottom: 16px; }
.service-card--wide p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; }
.service-card-wide-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.service-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.service-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-item { padding: 8px 0; text-align: center; }
.why-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.18);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
.why-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== ABLAUF ===== */
.ablauf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.ablauf-header .section-label { display: block; }
.ablauf-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.ablauf-header p {
  font-size: 15px;
  color: var(--c-text-light);
  line-height: 1.7;
}
.ablauf-cta { margin-top: 32px; }
.ablauf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ablauf-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: flex-start;
}
.ablauf-step:first-child { padding-top: 0; }
.ablauf-step:last-child { border-bottom: none; }
.ablauf-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-green);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.ablauf-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 6px;
}
.ablauf-step-content p { font-size: 14px; color: var(--c-text-light); line-height: 1.6; }

/* ===== REFERENZEN ===== */
.ref-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.ref-row:last-child { margin-bottom: 0; }
.ref-row--reverse .ref-details-col { order: -1; }
.ref-slider-col { border-radius: var(--radius); overflow: hidden; }
.ref-details-col { padding: 8px 0; }
.ref-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 12px;
}
.ref-details-col h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.25;
  margin-bottom: 32px;
}
.ref-specs { display: flex; flex-direction: column; gap: 0; }
.ref-spec {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--c-border);
}
.ref-specs .ref-spec:last-child { border-bottom: 1px solid var(--c-border); }
.ref-spec-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: auto;
  padding-top: 1px;
}
.ref-spec-value { font-size: 14px; color: var(--c-dark); line-height: 1.5; }

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  background: #111;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-after img, .ba-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ba-line { flex: 1; width: 2px; background: rgba(255,255,255,0.9); }
.ba-btn {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
  color: var(--c-green);
}
.ba-labels {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 5;
}
.ba-label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 3;
  column-gap: 10px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 28px 12px 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

/* ===== ERFAHRUNG ===== */
.erfahrung-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.erfahrung-text .section-label { display: block; }
.erfahrung-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.erfahrung-text p { font-size: 15px; color: var(--c-text-light); line-height: 1.7; }
.erfahrung-p2 { margin-top: 16px; }
.erfahrung-cta { margin-top: 36px; }
.erfahrung-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.erfahrung-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.erfahrung-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1;
}
.erfahrung-stat-label {
  font-size: 13px;
  color: var(--c-text-light);
  line-height: 1.4;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--c-green); flex-shrink: 0; }
.faq-q.open::after { content: '\2212'; }
.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-a p { font-size: 14px; color: var(--c-text-light); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.section-cta { text-align: center; }
.cta-content .section-label { display: block; margin-bottom: 12px; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}
.cta-btn {
  background: #fff;
  color: var(--c-dark);
  display: inline-block;
  margin-bottom: 28px;
}
.cta-btn:hover { background: var(--c-green-mid); color: #fff; }
.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}
.cta-contact a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.cta-contact a:hover { color: #fff; }
.cta-sep { color: rgba(255,255,255,0.35); }

/* ===== FOOTER ===== */
#footer {
  background: rgba(245,240,235,0.97);
  border-top: 1px solid var(--c-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--c-text-light); line-height: 1.7; max-width: 260px; }
.footer-links h4, .footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-anthracite);
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--c-green); }
.footer-contact p { font-size: 14px; color: var(--c-text-light); line-height: 1.8; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--c-text-light); }
.footer-bottom a { color: var(--c-text-light); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--c-green); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.2rem;
  color: var(--c-text-light);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.modal-close:hover { background: #f0f0f0; }
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.modal-box > p { font-size: 14px; color: var(--c-text-light); margin-bottom: 28px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--c-anthracite); }
.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--c-dark);
  transition: border-color var(--transition);
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--c-green);
}
.form-group textarea { resize: vertical; }
.form-success {
  text-align: center;
  padding: 24px;
  background: #f0f9f4;
  border-radius: var(--radius);
  color: var(--c-green);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: 1 / -1; }
  .service-card-wide-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-tags { flex-direction: row; flex-wrap: wrap; }
  .service-card:nth-child(4n) { border-right: 1px solid var(--c-border); }
  .service-card:nth-child(2n) { border-right: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ablauf-inner { grid-template-columns: 1fr; gap: 48px; }
  .erfahrung-inner { grid-template-columns: 1fr; gap: 48px; }
  .ref-row { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .ref-row { grid-template-columns: 1fr; gap: 32px; }
  .ref-row--reverse .ref-details-col { order: 0; }
  .ref-row:not(.ref-row--reverse) .ref-details-col { order: -1; }
  .gallery-grid { columns: 2; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-contact { flex-direction: column; gap: 6px; }
  .cta-sep { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card--wide { padding: 36px 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats-bar { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 0; }
  .erfahrung-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal-box { padding: 32px 24px; }
  .gallery-grid { columns: 2; padding: 0 12px; }
}
