/* Neukundenexpress — Platzhalter (Stand: August 2026)
   Eigenständige NKE-Identität: Rot auf Schwarz, keine externen Ressourcen. */

:root {
  --red: #ED1C24;
  --red-dark: #C1151C;
  --black: #0D0D0D;
  --dark: #161616;
  --line: rgba(255, 255, 255, .12);
  --white: #FFFFFF;
  --text: rgba(255, 255, 255, .82);
  --muted: rgba(255, 255, 255, .58);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --r: 5px;
  --rl: 14px;
  --mw: 720px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Weicher roter Schein im Hintergrund — keine harten Kanten */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 50% 0%, rgba(237, 28, 36, .16), transparent 70%),
    radial-gradient(45% 40% at 85% 100%, rgba(237, 28, 36, .08), transparent 70%);
}

a { color: var(--white); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 28px;
}

.main {
  flex: 1;
  width: 100%;
  max-width: var(--mw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.logo {
  width: min(290px, 74vw);
  height: auto;
  display: block;
  margin-bottom: 26px;
}

/* ---------- Baustellensymbol ---------- */

.baustelle {
  width: min(178px, 50vw);
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.stripes { animation: stripe-move 2.4s linear infinite; }
@keyframes stripe-move { to { transform: translateX(40px); } }

.lamp { animation: lamp-blink 1.6s steps(1, end) infinite; }
.lamp-b { animation-delay: .8s; }
@keyframes lamp-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .22; } }

@media (prefers-reduced-motion: reduce) {
  .stripes, .lamp { animation: none; }
}

/* ---------- Text ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(237, 28, 36, .14);
  border: 1px solid rgba(237, 28, 36, .34);
  color: #FF6167;
  padding: 6px 15px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(30px, 6.4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
}

.lead {
  margin: 0 0 32px;
  max-width: 32em;
  text-wrap: pretty;
  font-size: clamp(16px, 2.4vw, 18px);
  color: var(--text);
}

/* ---------- Kontakt ---------- */

.kontakt {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  width: 100%;
}

.kontakt a {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1 1 260px;
  max-width: 320px;
  padding: 17px 22px;
  background: var(--dark);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  text-decoration: none;
  text-align: left;
  transition: border-color .2s, background .2s, transform .2s;
}

.kontakt a:hover {
  border-color: rgba(237, 28, 36, .55);
  background: #1C1414;
  transform: translateY(-2px);
}

.kontakt svg { flex: none; color: var(--red); }

.kontakt .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.kontakt .value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}

@media (prefers-reduced-motion: reduce) {
  .kontakt a { transition: none; }
  .kontakt a:hover { transform: none; }
}

/* ---------- Footer ---------- */

.footer {
  width: 100%;
  max-width: var(--mw);
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.footer nav { display: flex; gap: 22px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Rechtsseite ---------- */

.legal {
  width: 100%;
  max-width: var(--mw);
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 8px;
}

.legal .logo { width: min(230px, 62vw); margin-bottom: 40px; }

.legal h1 {
  font-size: clamp(26px, 5vw, 34px);
  margin-bottom: 8px;
}

.legal h2 {
  margin: 48px 0 4px;
  color: var(--white);
  font-size: clamp(20px, 3.6vw, 24px);
  font-weight: 800;
  letter-spacing: -.3px;
}

.legal h2:first-of-type { margin-top: 40px; }

.legal p { margin: 0 0 18px; font-size: 15.5px; }
.legal strong { color: var(--white); }
.legal a { color: #FF6167; }

.legal .stand { color: var(--muted); font-size: 13px; margin-top: 28px; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.back:hover { color: var(--white); }
