:root {
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --black: #0a0a0a;
  --bg: #0a0a0a;
  --bg-dark: #111111;
  --bg-mid: #1e1e1e;
  --text-main: #f8f8f8;
  --text-muted: #aaaaaa;
  --text-faint: #777777;
  --border: rgba(255,107,0,0.15);
  --nav-bg: rgba(10,10,10,0.95);
  --input-bg: #1e1e1e;
  --logo-filter: brightness(1.1);
  --grey: #888888;
}
body.light {
  --bg: #f4f1ec;
  --bg-dark: #e8e3da;
  --bg-mid: #ffffff;
  --text-main: #1a1208;
  --text-muted: #4a3f30;
  --text-faint: #6b5e4e;
  --border: rgba(255,107,0,0.3);
  --nav-bg: rgba(244,241,236,0.96);
  --input-bg: #ffffff;
  --logo-filter: none;
}
.theme-toggle {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.25s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 4rem;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
}
.nav-logo img {
  width: 44px; height: 44px; object-fit: contain;
  filter: brightness(1.1);
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.08em;
  color: var(--text-main); line-height: 1;
}
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 70px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; right: 0; top: 5%; bottom: 5%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.95; letter-spacing: 0.03em;
  color: var(--text-main); margin-bottom: 2rem;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); max-width: 420px; margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--orange); color: var(--black);
  padding: 0.9rem 2.2rem; text-decoration: none;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,107,0,0.5); color: var(--orange);
  padding: 0.9rem 2.2rem; text-decoration: none;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline:hover { background: rgba(255,107,0,0.1); border-color: var(--orange); }

.hero-right {
  position: relative; overflow: hidden;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--orange) 1px, transparent 1px),
    linear-gradient(90deg, var(--orange) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-logo-large {
  position: relative; z-index: 2;
  width: 55%; opacity: 0.85;
  filter: drop-shadow(0 0 60px rgba(255,107,0,0.3));
  animation: float 6s ease-in-out infinite;
}
.hero-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 0.8rem 1.2rem;
}
.hero-tag-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--orange); line-height: 1;
}
.hero-tag-text {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grey);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── STATS ── */
.stats-bar {
  background: var(--orange);
  display: flex; justify-content: space-around;
  padding: 2rem 6rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: var(--black); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(0,0,0,0.65); margin-top: 0.3rem;
}

/* ── ABOUT ── */
#about {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 6rem; align-items: center;
}
.about-text .section-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.04em; line-height: 1;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--orange); }
.divider {
  width: 50px; height: 3px;
  background: var(--orange); margin: 1.5rem 0;
}
.about-body {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.85; color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.about-visual {
  position: relative;
}
.about-box {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 2.5rem;
}
.about-box-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.06em;
  margin-bottom: 0.8rem; color: var(--text-main);
}
.about-box-text {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.8; color: var(--text-faint);
}
.about-badge {
  position: absolute; top: -18px; right: -18px;
  background: var(--orange);
  padding: 1rem 1.2rem; text-align: center;
}
.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--black); line-height: 1; display: block;
}
.about-badge-text {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}

/* ── LEISTUNGEN ── */
#leistungen {
  padding: 8rem 6rem;
  background: var(--bg-dark);
}
#leistungen .section-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.services-intro {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
  gap: 2rem;
}
.services-intro-text { font-size: 0.9rem; font-weight: 300; color: var(--text-faint); max-width: 380px; line-height: 1.7; }

/* Featured top service */
.service-featured {
  background: var(--orange);
  padding: 4rem; margin-bottom: 2px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.service-featured::before {
  content: 'SCHWERPUNKT';
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(0,0,0,0.4);
}
.service-featured-icon { font-size: 5rem; line-height: 1; }
.service-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: 0.04em;
  color: var(--black); line-height: 1; margin-bottom: 0.8rem;
}
.service-featured-desc {
  font-size: 1rem; font-weight: 400;
  color: rgba(0,0,0,0.7); line-height: 1.7; max-width: 500px;
}
.service-featured-list {
  display: flex; gap: 1.5rem; margin-top: 1.2rem;
  flex-wrap: wrap;
}
.service-featured-tag {
  background: rgba(0,0,0,0.12);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.75);
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg-mid);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; left: 0; bottom: 0; top: 0; width: 3px;
  background: var(--orange);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s;
}
.service-card:hover { background: rgba(255,107,0,0.07); border-color: rgba(255,107,0,0.3); }
.service-card:hover::after { transform: scaleY(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.05em;
  color: var(--text-main); margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.75; color: var(--text-faint);
}

/* ── KONTAKT ── */
#kontakt {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
}
#kontakt .section-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.contact-item {
  display: flex; align-items: flex-start;
  gap: 1.2rem; margin-bottom: 2rem;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail strong {
  display: block; font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.3rem;
}
.contact-detail span { font-size: 0.9rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--input-bg);
  border: 1px solid var(--border);
  border-bottom: 2px solid rgba(255,107,0,0.4);
  padding: 0.85rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  color: var(--text-main); outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange); background: rgba(255,107,0,0.08);
}
.form-group select option { background: var(--bg-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }


/* ── TOOLS ── */
#tools {
  padding: 7rem 6rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,107,0,0.14), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(255,107,0,0.08), transparent 35%),
    var(--bg);
}
.tools-intro {
  margin-bottom: 2rem;
}
.tools-sub {
  margin-top: 0.8rem;
  max-width: 640px;
  color: var(--text-faint);
  font-size: 0.95rem;
  line-height: 1.7;
}
.tools-launcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.tool-launch {
  border: 1px solid var(--border);
  background: var(--bg-mid);
  color: var(--text-main);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.tool-launch:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  background: rgba(255,107,0,0.08);
}
.tool-launch:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.tool-launch.is-active {
  border-color: var(--orange);
  background: rgba(255,107,0,0.14);
}
.tool-launch-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255,107,0,0.12);
}
.tool-launch-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.tool-launch-copy strong {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  line-height: 1;
}
.tool-launch-copy small {
  font-size: 0.83rem;
  color: var(--text-faint);
  line-height: 1.4;
}
.tool-launch-state {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.tools-panels {
  margin-top: 1rem;
}
.tool-panel {
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  background: var(--bg-mid);
  padding: 1.3rem;
  margin-top: 0.8rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.38s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
}
.tool-panel.is-open {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
}
.tool-panel-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.tool-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.tool-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tool-field span {
  font-size: 0.76rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.tool-field input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-bottom: 2px solid rgba(255,107,0,0.4);
  padding: 0.8rem 0.9rem;
  color: var(--text-main);
  font-family: 'Barlow', sans-serif;
}
.tool-field input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,107,0,0.08);
}
.tool-submit {
  width: fit-content;
}
.tool-result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  background: rgba(255,107,0,0.06);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ── GALERIE ── */
#galerie { padding: 6rem 4rem; background: var(--bg-dark); }
.galerie-intro { margin-bottom: 3rem; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.galerie-item {
  position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
  background: var(--border);
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  color: inherit;
}
.galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galerie-item:nth-child(4) { grid-column: span 2; }
.galerie-item-inner {
  width: 100%; height: 100%; min-height: 200px;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  transition: transform 0.4s ease;
}
.galerie-item:nth-child(1) .galerie-item-inner { min-height: 420px; }
.galerie-item-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.galerie-item:hover .galerie-item-inner img { transform: scale(1.04); }
.galerie-item:hover .galerie-item-inner { transform: none; }
.galerie-item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.galerie-placeholder-icon { font-size: 2.5rem; opacity: 0.3; }
.galerie-placeholder-text {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.4;
  font-family: 'Barlow', sans-serif;
}
.galerie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  color: #fff; letter-spacing: 0.08em;
}
.galerie-cta { margin-top: 3rem; text-align: center; }
.galerie-upload-box {
  display: inline-block;
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 3rem 4rem;
  max-width: 600px;
  background: rgba(255,107,0,0.03);
  transition: border-color 0.3s;
}
.galerie-upload-box:hover { border-color: var(--orange); }
.galerie-upload-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.6; }
.galerie-upload-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.1em;
  color: var(--text-main); margin-bottom: 0.75rem;
}
.galerie-upload-sub {
  font-size: 0.9rem; color: var(--text-faint);
  letter-spacing: 0.03em; line-height: 1.6;
}
.galerie-filter {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 1.5rem; margin-bottom: 0;
}
.filter-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  padding: 0.5rem 1.4rem; border-radius: 2rem;
  font-family: 'Barlow', sans-serif; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange); border-color: var(--orange);
  color: #fff;
}
.galerie-placeholder-sub {
  font-size: 0.78rem; opacity: 0.45; margin-top: 0.3rem;
  font-family: 'Barlow', sans-serif; font-weight: 300;
}
.galerie-overlay-zoom {
  font-size: 1.8rem; margin-top: 0.5rem; display: block;
  opacity: 0.8;
}
.galerie-item--wide {
  grid-column: span 3;
}
.galerie-item-inner--banner {
  min-height: 180px !important;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-mid),
    var(--bg-mid) 10px,
    var(--bg-dark) 10px,
    var(--bg-dark) 20px
  ) !important;
}
.galerie-item.hidden { display: none; }
/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  background: var(--bg-mid); border-radius: 8px;
  padding: 3rem; max-width: 600px; width: 90%;
  text-align: center; position: relative;
}
.lightbox-placeholder { display: flex; flex-direction: column; align-items: center; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 1.5rem;
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,107,0,0.2); border: 1px solid var(--orange);
  color: var(--orange); font-size: 2.5rem; cursor: pointer;
  width: 50px; height: 80px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; border-radius: 4px;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); color: #fff; }

/* ── MAP ── */
#standort { padding: 0; }
.map-wrapper {
  display: grid; grid-template-columns: 1fr 2fr;
}
.map-info {
  background: var(--orange); color: #fff;
  padding: 4rem 3rem; display: flex;
  flex-direction: column; justify-content: center; gap: 1.5rem;
}
.map-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 0.05em;
  line-height: 1;
}
.map-info-detail { display: flex; flex-direction: column; gap: 0.3rem; }
.map-info-detail strong {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.8;
}
.map-info-detail span { font-size: 0.95rem; line-height: 1.5; }
.map-frame { height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  min-height: 420px;
  height: 100%;
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.72)),
    repeating-linear-gradient(45deg, var(--bg-mid), var(--bg-mid) 14px, var(--bg-dark) 14px, var(--bg-dark) 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.map-placeholder-inner {
  max-width: 420px;
  color: #fff;
}
.map-placeholder-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.map-placeholder-text {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

@media (max-width: 900px) {
  .map-wrapper { grid-template-columns: 1fr; }
  .map-frame { height: 300px; }
  .map-placeholder { min-height: 300px; }
  .map-info { padding: 2.5rem 1.5rem; }
  #galerie { padding: 4rem 1.5rem; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-item:nth-child(1) { grid-column: span 2; }
  .galerie-item:nth-child(1) .galerie-item-inner { min-height: 280px; }
  .galerie-item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item:nth-child(1), .galerie-item:nth-child(4), .galerie-item--wide { grid-column: span 1; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { display: flex; align-items: center; gap: 0.8rem; }
.footer-logo img { width: 36px; filter: brightness(0.9); }
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.08em; color: var(--text-main);
}
.footer-logo-text span { color: var(--orange); }
.footer-copy { font-size: 0.8rem; color: var(--text-faint); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  text-decoration: none; font-size: 0.8rem; color: var(--text-faint);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(25px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-main); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--nav-bg); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; z-index: 99;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text-muted);
  font-size: 1rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-quick-contact {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--orange);
  color: var(--orange) !important;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ── TABLET 900px ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  body { padding-bottom: 70px; }

  /* Hero */
  #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-left::after { display: none; }
  .hero-right { height: 280px; }
  .hero-ctas { flex-direction: column; gap: 0.8rem; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; }

  /* Stats */
  .stats-bar { padding: 1.5rem; flex-wrap: wrap; gap: 0; }
  .stat { flex: 1 1 50%; padding: 1rem; border-bottom: 1px solid rgba(255,107,0,0.15); }

  /* About */
  #about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }

  /* Services */
  #leistungen { padding: 4rem 1.5rem; }
  .services-intro { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .service-featured { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 2rem; }
  .service-featured-icon { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr; }

  /* Contact */
  #kontakt { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Tools */
  #tools { padding: 4rem 1.5rem; }
  .tools-launcher { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-submit { width: 100%; }

  /* Footer */
  footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── MOBILE 480px ── */
@media (max-width: 480px) {
  .nav-logo-text { font-size: 1.2rem; }
  .hero-title { font-size: 3.2rem; }
  .hero-tag { bottom: 1rem; left: 1rem; padding: 0.6rem 0.9rem; }
  .hero-tag-num { font-size: 1.4rem; }
  .section-title { font-size: 2.2rem; }
  .hero-right { height: 240px; }
  .hero-logo-large { width: 65%; }
  .stat { flex: 1 1 100%; }
  .stat-num { font-size: 2.2rem; }
  #about { padding: 3rem 1.2rem; }
  .about-badge { top: -12px; right: -12px; padding: 0.8rem 1rem; }
  .about-badge-num { font-size: 1.3rem; }
  #leistungen { padding: 3rem 1.2rem; }
  .service-featured { padding: 2rem 1.5rem; }
  .service-featured-title { font-size: 2rem; }
  .service-featured-list { gap: 0.8rem; }
  .service-card { padding: 2rem 1.5rem; }
  #kontakt { padding: 3rem 1.2rem; }
  #tools { padding: 3rem 1.2rem; }
  footer { padding: 1.5rem 1.2rem; }
  .btn-primary, .btn-outline { padding: 0.85rem 1.6rem; font-size: 0.78rem; }
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  grid-template-columns: 1fr 1fr;
  background: var(--nav-bg);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.sticky-mobile-cta a {
  padding: 1rem 0.8rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
}
.sticky-mobile-cta-call { color: var(--orange); border-right: 1px solid var(--border); }
.sticky-mobile-cta-request { background: var(--orange); color: var(--black); }

@media (max-width: 900px) {
  .sticky-mobile-cta { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
