/* ==========================================================================
   NexVolt – Elektro-Meisterbetrieb Offenbach
   Designsystem nach Nilsson-Referenz: monochrom (Schwarz/Weiß/Grau)
   + Signalgelb als einziger Akzent. Signaturform: weiche Rundungen (--radius)
   + Label-in-Ecke (Notch-Komposition) wie im Referenzbild.
   ========================================================================== */

:root {
  --dark: #0a0a0a;      /* ink – Hero/Footer/dunkle Sektionen */
  --dark-2: #161719;    /* dunkle Karten */
  --dark-3: #26282b;    /* Panels, Glass-dark */
  --sage: #6e6e6e;      /* neutrales Grau */
  --sage-light: #9a9a9a;
  --paper: #ffffff;     /* Haupt-Hintergrund (hell, editorial) */
  --off-white: #f4f4f2; /* warmes Off-White / helle Flächen */
  --yellow: #ffe500;    /* SIGNALGELB – Akzent */
  --glow: #f2c200;      /* Akzent-Variante auf Weiß */
  --yellow-ink: #8a7d00;/* gedämpftes Gelb für Text/Kicker auf Weiß (AA-Kontrast) */
  --text-light: #f4f4f2;
  --text-muted: rgba(244, 244, 242, 0.62);
  --text-dark: #0a0a0a;
  --text-dark-muted: #5a5f5c;
  --line: #e5e5e2;      /* Trennlinien auf hell */
  --radius: 24px;       /* weiche Rundung (Nilsson-Signatur) */
  --radius-sm: 16px;
  --nav-h: 72px;
  --font: "Archivo", system-ui, sans-serif;
}

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

html { scroll-behavior: auto; }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1200px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.015em; margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; font-weight: 600; }

/* --- Eyebrow / Kicker mit gelbem Punkt (wie „• WHAT WE DO") --- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.kicker .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.kicker-dark { color: var(--text-dark-muted); }

.accent { color: var(--yellow); }
.accent-dark { color: var(--yellow-ink); }

/* --- Blitz-Logo --- */
.bolt { width: 24px; height: 24px; fill: var(--yellow); flex-shrink: 0; }
.bolt path { fill: inherit; }
.bolt-sm { width: 15px; height: 15px; }
.bolt-md { width: clamp(28px, 4vw, 46px); height: clamp(28px, 4vw, 46px); }

/* --- Glassmorphism --- */
.glass {
  background: rgba(18, 20, 22, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 244, 242, 0.16);
}
.glass-dark {
  background: rgba(244, 244, 242, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 244, 242, 0.12);
}

/* --- Buttons (Pill) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.7rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--yellow); color: var(--text-dark); }
.btn-primary .bolt { fill: var(--text-dark); }
.btn-primary:hover { transform: translateY(-2px); background: #fff04d; box-shadow: 0 12px 26px rgba(255, 229, 0, 0.25); }
.btn-full { width: 100%; justify-content: center; }

/* ==========================================================================
   Navbar (schwebende Pill wie Referenz)
   ========================================================================== */

.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: min(1180px, 94vw);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 0 1rem 0 1.6rem;
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(244, 244, 242, 0.14);
  border-radius: 999px;
  transition: background 0.4s ease, height 0.4s ease;
}
.nav.is-scrolled { background: rgba(10, 10, 10, 0.85); height: 60px; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.brand-r { font-size: 0.5em; font-weight: 500; vertical-align: 0.7em; margin-left: 0.05em; }
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta { white-space: nowrap; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 12, 13, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.8rem; text-align: center; }
.mobile-menu a { font-size: 1.6rem; font-weight: 300; color: var(--text-light); }
.mobile-menu .btn { font-size: 0.9rem; margin-top: 1rem; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07080a;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

/* Scroll-Explode: Haus → Elektrik-Explosion, gescrubbt als Frame-Sequence */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-canvas.is-ready { opacity: 1; }
.hero-gradient {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,8,10,0.42) 0%, rgba(7,8,10,0) 18%, rgba(7,8,10,0) 42%, rgba(7,8,10,0.92) 100%),
    radial-gradient(85% 65% at 12% 82%, rgba(7,8,10,0.85), transparent 62%);
}

/* Loader – vorgeladene Frames vor Scrub-Start; blendet sich danach aus */
.hero-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hero.is-loaded .hero-loader { opacity: 0; visibility: hidden; pointer-events: none; }
.hero-loader-track {
  width: min(220px, 55vw);
  height: 3px;
  border-radius: 3px;
  background: rgba(244, 244, 242, 0.14);
  overflow: hidden;
}
.hero-loader-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  transition: width 0.2s ease;
}

/* Bodenraster (dezent, wie im Referenzbild) */
.grid-overlay {
  position: absolute;
  left: -20%; right: -20%; bottom: -12%;
  height: 42%;
  background:
    repeating-linear-gradient(90deg, rgba(244,244,242,0.08) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(244,244,242,0.08) 0 1px, transparent 1px 90px);
  transform: perspective(600px) rotateX(58deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  height: 100%;
}
/* Header-Copy: kompakter Block unten links über dem Haus-Visual */
.hero-copy {
  position: absolute;
  left: 0;
  bottom: clamp(6rem, 19vh, 11rem);
  max-width: 640px;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(244, 244, 242, 0.66);
  margin-bottom: 1.1rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px 1px rgba(255, 229, 0, 0.55);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.01em;
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
}
.hero-title-left, .hero-title-right { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  margin-top: 1.3rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: rgba(244, 244, 242, 0.78);
}
.hero-copy .spec-link { margin-top: 1.4rem; }
.spec-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.spec-link:hover { color: var(--yellow); }

/* Callouts */
.callout {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.callout-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 229, 0, 0.22);
}
.callout-line {
  width: 66px; height: 1px;
  background: rgba(244, 244, 242, 0.7);
  transform-origin: left center;
}
.callout-label {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(244, 244, 242, 0.95);
  color: var(--text-dark);
  border-radius: 999px;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll-hint span {
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, var(--yellow));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero.is-static .hero-scroll-hint { display: none; }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ==========================================================================
   Trust-/Logo-Leiste
   ========================================================================== */

.trust-strip {
  background: var(--paper);
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-light);
  margin-bottom: 1.4rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem 2.8rem;
}
.trust-logos li {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9a9a97;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.trust-logos li:hover { color: var(--text-dark); }

/* ==========================================================================
   Sektionen allgemein
   ========================================================================== */

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.section-light { background: var(--off-white); color: var(--text-dark); }
.section-dark { background: var(--dark); overflow: hidden; }
.section-dark h2 { color: var(--off-white); }
.grid-overlay-static { opacity: 0.5; }

/* --- Über uns --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-text p { color: var(--text-dark-muted); margin-bottom: 1.2rem; max-width: 54ch; }
.about-text .btn { margin-top: 1rem; }

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(150deg, #23282b, #14171a);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-media.no-img img { display: none; }
.about-media-tag {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  background: rgba(10, 12, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}

.about-stats {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stat {
  padding: 1.7rem 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.stat-num { font-size: 2.5rem; font-weight: 300; color: var(--text-dark); line-height: 1.05; }
.stat-num span { color: var(--yellow-ink); }
.stat-label { font-size: 0.85rem; color: var(--text-dark-muted); margin-top: 0.3rem; }

/* --- Leistungen --- */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.services-head h2 { margin-bottom: 0; }
.services-intro { color: var(--text-dark-muted); max-width: 34ch; font-size: 1rem; }
.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(10, 12, 13, 0.12); }
.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(150deg, #dfe1de, #c7cac6);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-media.no-img { background: linear-gradient(150deg, #e7e8e4, #d3d5d0); }
.service-media.no-img img { display: none; }
.service-body { padding: 1.7rem 1.7rem 1.9rem; }
.service-icon { width: 40px; height: 40px; color: var(--yellow-ink); margin-bottom: 1rem; }
.service-body h3 { margin-bottom: 0.5rem; font-weight: 600; }
.service-body p { font-size: 0.94rem; color: var(--text-dark-muted); }

/* --- Ablauf --- */
.steps h2 { color: var(--off-white); }
.steps-track {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.steps-line {
  position: absolute;
  top: 24px;
  left: 6%; right: 6%;
  height: 2px;
  background: rgba(244,244,242,0.14);
  border-radius: 2px;
}
.steps-line-fill { display: block; height: 100%; width: 0%; background: var(--yellow); border-radius: 2px; }
.step { position: relative; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--dark-3);
  color: var(--yellow);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.step h3 { font-weight: 500; margin-bottom: 0.4rem; color: var(--off-white); }
.step p { font-size: 0.92rem; color: var(--text-muted); }

/* --- Referenzen (Bildkarten mit Label unten links, wie Nilsson) --- */
.references-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.reference-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reference-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(10, 12, 13, 0.1); }
.reference-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(150deg, #23282b, #14171a);
}
.reference-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.reference-card:hover .reference-media img { transform: scale(1.05); }
.reference-media.no-img img { display: none; }
.reference-label {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
  background: rgba(10, 12, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.reference-body { padding: 1.5rem 1.7rem 1.8rem; }
.reference-body p { font-size: 0.95rem; color: var(--text-dark-muted); }

/* --- Bewertungen --- */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.reviews-big { font-size: 3.6rem; font-weight: 300; line-height: 1; }
.reviews-big span { font-size: 1.4rem; color: var(--sage); }
.stars { display: flex; gap: 4px; margin: 0.5rem 0 0.3rem; }
.star { width: 20px; height: 20px; fill: var(--yellow); }
.reviews-caption { font-size: 0.85rem; color: var(--text-dark-muted); }
.reviews-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.review-stars { display: flex; gap: 3px; }
.review-stars .star { width: 18px; height: 18px; }
.review-card blockquote { font-size: 1rem; color: #3d423f; line-height: 1.6; }
.review-card figcaption { display: flex; align-items: center; gap: 0.9rem; font-size: 0.88rem; color: var(--text-dark-muted); }
.review-card strong { color: var(--text-dark); font-weight: 600; }
.review-monogram {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  background: var(--yellow);
}

/* --- FAQ --- */
.faq-list {
  margin-top: 2.6rem;
  max-width: 820px;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 50%;
  transition: transform 0.3s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 14px no-repeat, linear-gradient(#000 0 0);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 14px no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-answer { overflow: hidden; padding: 0 0.2rem 1.5rem; }
.faq-answer p { color: var(--text-dark-muted); max-width: 68ch; }

/* --- Kontakt --- */
.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  text-align: center;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-lead { font-size: 1.12rem; color: var(--off-white); max-width: 44ch; margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-list li { display: flex; flex-direction: column; font-size: 1rem; color: var(--text-light); }
.contact-list a { color: var(--text-light); }
.contact-list a:hover { color: var(--yellow); }
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.2rem;
}
.contact-form {
  padding: 2.3rem 2.1rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-white);
  background: rgba(244,244,242,0.07);
  border: 1px solid rgba(244,244,242,0.15);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--yellow); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(244,244,242,0.4); }
.form-note { font-size: 0.85rem; color: var(--yellow); min-height: 1.2em; }

.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.24; }
.contact-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,13,0.78) 0%, rgba(10,12,13,0.6) 50%, var(--dark) 100%);
}
.contact .container { position: relative; z-index: 2; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #121517;
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(244,244,242,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; color: var(--text-muted); max-width: 34ch; }
.footer-head {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.95rem; }
.footer a { color: var(--text-muted); transition: color 0.2s ease; }
.footer a:hover { color: var(--yellow); }
.footer .nav-logo { color: var(--text-light); }
.footer-contact li { color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid rgba(244,244,242,0.08);
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Rechtliche Seiten (Impressum / Datenschutz)
   ========================================================================== */

.legal-page { padding: calc(var(--nav-h) + 4rem) 0 5rem; min-height: 70vh; background: var(--paper); }
.legal-page h1 { font-size: 2.6rem; font-weight: 300; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.3rem; font-weight: 600; margin: 2rem 0 0.6rem; }
.legal-page p { color: var(--text-dark-muted); max-width: 70ch; margin-bottom: 0.6rem; }
.legal-page a { color: var(--yellow-ink); }
.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

/* ==========================================================================
   Fokus-States (Barrierefreiheit / UI-UX-Pro-Max-Checkliste)
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.service-card:focus-visible,
.reference-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-light a:focus-visible,
.section-light summary:focus-visible,
.trust-strip a:focus-visible { outline-color: var(--yellow-ink); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-copy { bottom: clamp(3rem, 10vh, 5rem); max-width: 560px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .references-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .steps-line { display: none; }
  .about-media { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.1rem, 10.5vw, 3.4rem); }
  .hero-copy { bottom: clamp(2.5rem, 8vh, 4rem); right: 0; max-width: none; }
  .hero-sub { font-size: 0.98rem; }
  .callout-line { width: 34px; }
  .services-grid, .reviews-grid, .steps-track, .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-scroll-hint span { animation: none; }
}

/* Logo-Zeichen: Blitz + Stecker (Outline, Marken-Akzent) */
.mark {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
