/* ============================================================
   UZ Innenausbau — Stylesheet
   Systemschriften bewusst: keine Google Fonts (DSGVO, LG München 3 O 17493/20)
   ============================================================ */

:root {
  /* ----------------------------------------------------------
     Palette direkt aus dem Firmenlogo entnommen:
       #171717  das "Z"  -> Primärton
       #6b6c6e  das "U"  -> Sekundärton
     Bewusst monochrom. Das Logo führt keine Akzentfarbe, also
     führt die Website auch keine. Ein Farbtupfer würde neben
     Briefpapier und Fahrzeugbeschriftung fremd wirken.
     ---------------------------------------------------------- */
  --ink:        #171717;
  --ink-2:      #1f1f1f;
  --ink-3:      #2b2b2b;
  --paper:      #ffffff;
  --paper-2:    #f5f5f5;
  --paper-3:    #e9e9e9;
  --line:       #dcdcdc;
  --line-dark:  #333333;

  --text:       #171717;
  --text-2:     #5a5b5d;
  --text-3:     #8a8b8d;
  --on-dark:    #f2f2f2;
  --on-dark-2:  #a8a9ab;

  /* "brand" = der Primärton des Logos. Auf hellem Grund schwarz,
     auf dunklem Grund weiß — die Umkehrung steht bei .on-ink. */
  --brand:      #171717;
  --brand-2:    #6b6c6e;
  --brand-deep: #3d3e40;
  --brand-tint: #f2f2f2;

  --ok:         #1f7a4d;
  --err:        #b4342b;

  /* Maße */
  --wrap:       1180px;
  --wrap-narrow: 780px;
  --r-sm:       6px;
  --r:          10px;
  --r-lg:       16px;

  --shadow-sm:  0 1px 2px rgba(20,22,26,.06), 0 2px 6px rgba(20,22,26,.05);
  --shadow:     0 4px 12px rgba(20,22,26,.07), 0 12px 32px rgba(20,22,26,.07);
  --shadow-lg:  0 8px 24px rgba(20,22,26,.10), 0 30px 60px rgba(20,22,26,.12);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.021em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.65rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.85vw, 2.45rem); letter-spacing: -.027em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: -9999px;
  top: 8px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: var(--r);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 12px; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-alt { background: var(--paper-2); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.section-head.center { margin-inline: auto; text-align: center; }

/* Weit gesperrte Versalien wie die Logo-Zeile "DESIGNBÖDEN | INDUSTRIEBÖDEN" */
.kicker {
  margin: 0 0 12px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-2);
}
.section-lede {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--text-2);
}
.lede { font-size: 1.14rem; color: var(--text-2); }

.grid-3 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 650;
  font-size: .96rem;
  letter-spacing: -.008em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn .ico { width: 18px; height: 18px; flex: none; fill: currentColor; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  --btn-bg: var(--ink);
  --btn-fg: #ffffff;
  --btn-bd: var(--ink);
  box-shadow: 0 1px 2px rgba(23,23,23,.18), 0 6px 18px rgba(23,23,23,.16);
}
.btn-primary:hover {
  --btn-bg: #000000;
  --btn-bd: #000000;
  box-shadow: 0 2px 4px rgba(23,23,23,.22), 0 10px 26px rgba(23,23,23,.24);
  transform: translateY(-1px);
}

.btn-outline { --btn-fg: var(--text); --btn-bd: var(--line); background: var(--paper); }
.btn-outline:hover { --btn-bd: var(--text-3); background: var(--paper-2); }

/* Auf dunklem Grund dreht sich der Primärbutton um — sonst wäre ein
   #171717-Button auf dem #171717-Hero unsichtbar. */
.on-ink .btn-primary {
  --btn-bg: #ffffff;
  --btn-fg: var(--ink);
  --btn-bd: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
}
.on-ink .btn-primary:hover {
  --btn-bg: var(--on-dark);
  --btn-bd: var(--on-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,.34), 0 12px 30px rgba(0,0,0,.4);
}

.btn-ghost { --btn-fg: var(--text-2); --btn-bd: transparent; }
.btn-ghost:hover { --btn-fg: var(--text); background: var(--paper-2); }

.btn-sm { padding: 9px 15px; font-size: .89rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ============================================================
   Logo-Intro, Scroll-Reveal, Klick-Ripple
   Alles hier respektiert @media (prefers-reduced-motion) oben:
   die globale Regel setzt Dauer/Iteration bereits auf ~0.
   ============================================================ */

/* ---------- Erster Bildschirm: großes Logo ----------
   Ganz normaler Seiteninhalt, kein Overlay — dadurch gibt es auch
   ohne JavaScript nie einen "hängenden" schwarzen Bildschirm. Man
   verlässt ihn einfach durch normales Scrollen/Swipen. */
.intro {
  position: relative;
  height: 100svh;
  min-height: 460px;
  display: grid;
  place-items: center;
  background: var(--ink);
  overflow: hidden;
}
.intro-inner {
  display: grid;
  justify-items: center;
  gap: clamp(30px, 7vw, 60px);
  padding: 24px;
  text-align: center;
  will-change: transform, opacity, filter;
}
.intro-logo {
  width: min(72vw, 440px);
  height: auto;
  opacity: 0;
  transform: scale(.9) translateY(16px);
  filter: invert(1) blur(10px);
  animation: introLogoIn 1.2s cubic-bezier(.16,1,.3,1) .15s forwards;
}
@keyframes introLogoIn {
  to { opacity: 1; transform: scale(1) translateY(0); filter: invert(1) blur(0); }
}

.intro-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-2);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  animation: introHintIn .9s var(--ease) .8s forwards;
  transition: color .2s var(--ease);
}
.intro-scroll:hover { color: #fff; }
.intro-scroll:hover .ico { transform: translateY(3px); }
.intro-scroll .ico {
  width: 20px; height: 20px;
  transition: transform .25s var(--ease);
  animation: introBounce 2.2s cubic-bezier(.45,0,.55,1) .8s infinite;
}
@keyframes introHintIn { to { opacity: 1; } }
@keyframes introBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* Die Hero-Inhalte werden Teil des normalen Scroll-Reveals (siehe unten:
   .reveal / .in-view) — sie blenden also genau dann ein, wenn man vom
   Intro-Bildschirm zur eigentlichen Seite runterscrollt. */

/* ---------- Sanftes Scroll-Reveal für Abschnitte ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.98);
  filter: blur(4px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* ---------- Logo im Header: kleine Lebendigkeit beim Hover ---------- */
.logo-mark { transition: transform .35s var(--ease); }
.logo:hover .logo-mark { transform: scale(1.05) rotate(-2deg); }

/* ---------- Klick-Ripple auf allen Buttons ----------
   Bewusst OHNE overflow:hidden auf .btn: das würde den
   box-shadow der Primary-Buttons mit abschneiden. Der Ripple
   ist selbst ein weicher Kreis mit geringer Deckkraft, ein
   minimales Überstehen an abgerundeten Ecken fällt nicht auf. */
.btn { position: relative; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: currentColor;
  opacity: .32;
  transform: scale(0);
  pointer-events: none;
  animation: rippleFx .6s ease-out forwards;
}
@keyframes rippleFx { to { transform: scale(1); opacity: 0; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
/* Das echte Monogramm aus der Logodatei. Der komplette Logo-Block mit
   Schriftzug wäre auf Headerhöhe unleserlich, darum hier nur das UZ und
   der Wortmarken-Text daneben in passender Schrift. */
.logo-mark {
  width: auto; height: 34px;
  flex: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text strong {
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo-text small {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
/* Auf dunklem Grund: Monogramm invertieren (aus #171717 wird nahezu Weiß,
   aus dem Grau ein helles Grau — das Verhältnis U/Z bleibt erhalten). */
.on-ink .logo-mark { filter: invert(1); }
.on-ink .logo-text strong { color: var(--on-dark); }

.nav {
  display: flex;
  gap: 4px;
  margin-inline: auto;
}
.nav a {
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  font-weight: 550;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--paper-2); }

.header-cta { display: flex; gap: 8px; flex: none; }
.header-cta .phone-link { font-variant-numeric: tabular-nums; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 3.5px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .24s var(--ease), opacity .18s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 84px) 0 0;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(255,255,255,.09), transparent 62%),
    radial-gradient(700px 420px at 8% 82%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(178deg, #232323 0%, #191919 55%, #121212 100%);
}
/* Feine Struktur — erinnert an Dielung, ohne kitschig zu sein */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.030) 0 1px,
    transparent 1px 124px
  );
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 72%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 72%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding-bottom: clamp(48px, 6vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 14px 7px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  font-size: .8rem;
  font-weight: 600;
  color: var(--on-dark-2);
  letter-spacing: .005em;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.55);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Grau tragende Zeile, weiße Betonung — dasselbe Verhältnis wie das
   graue "U" und das schwarze "Z" im Logo. */
.hero h1 { color: var(--on-dark-2); margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: #ffffff;
}
.hero .lede {
  max-width: 33em;
  color: var(--on-dark-2);
  font-size: clamp(1.04rem, .96rem + .35vw, 1.19rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}
.hero-actions .btn-outline {
  --btn-fg: #fff;
  --btn-bd: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  font-variant-numeric: tabular-nums;
}
.hero-actions .btn-outline:hover {
  --btn-bd: rgba(255,255,255,.42);
  background: rgba(255,255,255,.11);
}
.hero-note { font-size: .88rem; color: var(--text-3); }

.hero-media { position: relative; margin: 0; }
.hero-media .img-placeholder,
.hero-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

/* Kennzeichnung für Stockfotos. Solange hier keine eigenen Arbeiten stehen,
   muss klar sein, dass das Bild illustriert und keine Referenz zeigt. */
.symbolbild {
  position: absolute;
  right: 10px; bottom: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,.9);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---------- Trustbar ---------- */
.trustbar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
}
.trustbar li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 26px 24px 30px;
  background: var(--ink);
}
.trustbar strong {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
}
.trustbar span {
  font-size: .855rem;
  line-height: 1.5;
  color: var(--on-dark-2);
}

/* ---------- Bild-Platzhalter ---------- */
.img-placeholder {
  position: relative;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 9px;
  padding: 24px;
  border: 2px dashed var(--line);
  border-radius: var(--r);
  background:
    repeating-linear-gradient(45deg,
      var(--paper-2) 0 11px,
      var(--paper-3) 11px 22px);
  color: var(--text-3);
  text-align: center;
}
.img-placeholder svg { width: 34px; height: 34px; opacity: .5; }
.img-placeholder span { font-size: .9rem; font-weight: 600; color: var(--text-2); }
.img-placeholder small {
  font-size: .73rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  opacity: .8;
}
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.round { border-radius: 50%; }

/* ---------- Cards / Zielgruppen ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card > p { color: var(--text-2); font-size: .96rem; }

.ticks {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.ticks li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--text-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 15px; height: 9px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .93rem;
  font-weight: 650;
  color: var(--brand-deep);
  text-decoration: none;
}
.card-link .ico {
  width: 17px; height: 17px;
  transition: transform .2s var(--ease);
}
.card-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.card-link:hover .ico { transform: translateX(3px); }

/* ---------- Leistungen ---------- */
.service {
  position: relative;
  padding: 32px 28px;
  border-top: 3px solid var(--ink);
  background: var(--paper);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-sm);
}
.service-no {
  display: block;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
}
.service h3 { margin-bottom: 12px; }
.service > p { font-size: .95rem; color: var(--text-2); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.tags li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper-2);
  font-size: .8rem;
  font-weight: 550;
  color: var(--text-2);
}

/* ---------- USP ---------- */
.usp-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.usp-copy h2 { margin-bottom: 20px; }
.usp-copy > p { color: var(--text-2); }
.usp-punch {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--brand-tint);
  font-size: 1.06rem;
  font-weight: 550;
  color: var(--text) !important;
}
.usp-points { display: grid; gap: 18px; margin: 28px 0 32px; }
.usp-point { display: flex; gap: 14px; align-items: flex-start; }
.usp-point .ico {
  width: 24px; height: 24px;
  flex: none;
  margin-top: 2px;
  color: var(--brand-deep);
}
.usp-point strong { display: block; font-size: .97rem; margin-bottom: 3px; }
.usp-point span { font-size: .9rem; line-height: 1.55; color: var(--text-2); }

.usp-media { position: relative; margin: 0; }
.usp-media .img-placeholder,
.usp-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.usp-media img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step { position: relative; padding-top: 26px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: -24px;
  height: 2px;
  background: var(--line);
}
.step:last-child::before { right: 0; }
.step-no {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin: -43px 0 16px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: .87rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 0 5px var(--paper-2);
}
.step h3 { margin-bottom: 8px; font-size: 1.08rem; }
.step p { font-size: .93rem; color: var(--text-2); }

/* ---------- Über mich ---------- */
.about-copy h2 { margin-bottom: 18px; }
.about-copy .lede { margin-bottom: 1.05em; }
.about-copy > p:not(.lede):not(.kicker) { color: var(--text-2); font-size: .98rem; }

.facts {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-3);
}
.facts dd { margin: 0; font-size: .93rem; color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-size: 1.03rem;
  font-weight: 620;
  letter-spacing: -.012em;
  cursor: pointer;
  list-style: none;
  transition: color .16s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-deep); }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .24s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq-item[open] summary { color: var(--brand-deep); }
.faq-body {
  padding: 0 4px 22px;
  max-width: 62ch;
}
.faq-body p { font-size: .96rem; color: var(--text-2); }

/* ---------- Kontakt ---------- */
.contact { background: var(--ink); color: var(--on-dark); }
.contact .kicker { color: var(--on-dark-2); }
.contact h2 { color: #fff; }
.contact .lede { color: var(--on-dark-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.contact-direct { display: grid; gap: 10px; margin-top: 32px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 19px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  transition: border-color .2s var(--ease), background-color .2s var(--ease),
              transform .2s var(--ease);
}
a.contact-row:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.07);
  transform: translateX(3px);
}
.contact-row .ico { width: 21px; height: 21px; flex: none; color: var(--on-dark-2); }
.contact-row strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.contact-row span { font-size: .84rem; color: var(--text-3); }
.contact-row.static { cursor: default; }

/* Formular */
.contact-form {
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: var(--paper);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
/* Die Formularkarte ist hell, obwohl der Abschnitt dunkel ist: hier gilt
   wieder der normale dunkle Button, sonst wäre er weiß auf weiß. */
.on-ink .contact-form .btn-primary {
  --btn-bg: var(--ink);
  --btn-fg: #ffffff;
  --btn-bd: var(--ink);
  box-shadow: 0 1px 2px rgba(23,23,23,.18), 0 6px 18px rgba(23,23,23,.16);
}
.on-ink .contact-form .btn-primary:hover {
  --btn-bg: #000000;
  --btn-bd: #000000;
}
.contact-form h3 { margin-bottom: 22px; font-size: 1.22rem; }

.field { margin-bottom: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .855rem;
  font-weight: 640;
  color: var(--text);
}
.req { color: var(--brand-deep); font-weight: 700; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper-2);
  font-size: .95rem;
  transition: border-color .16s var(--ease), background-color .16s var(--ease),
              box-shadow .16s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { cursor: pointer; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(23,23,23,.12);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--err); }
.field.invalid input:focus,
.field.invalid select:focus { box-shadow: 0 0 0 3px rgba(180,52,43,.14); }

.error {
  margin: 6px 0 0;
  font-size: .8rem;
  font-weight: 550;
  color: var(--err);
  min-height: 0;
}
.error:empty { display: none; }

.field-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin: 22px 0;
}
.field-check input {
  width: 19px; height: 19px;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
}
.field-check label {
  margin: 0;
  font-size: .84rem;
  font-weight: 450;
  line-height: 1.5;
  color: var(--text-2);
  cursor: pointer;
}
.field-check a { color: var(--brand-deep); text-underline-offset: 2px; }
.field-check .error { grid-column: 1 / -1; }

/* Honeypot: für Menschen und Screenreader unsichtbar, für Bots ausfüllbar */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--text-3);
  text-align: center;
}
.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: .89rem;
  font-weight: 550;
  text-align: center;
}
.form-status:empty { display: none; }
.form-status.ok  { background: #e8f6ee; color: var(--ok); }
.form-status.err { background: #fbeceb; color: var(--err); }

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(48px, 5vw, 68px) 0 0;
  background: var(--ink-2);
  color: var(--on-dark-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 44px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text strong { color: var(--on-dark); }
.footer-brand p { font-size: .89rem; line-height: 1.6; max-width: 34ch; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
}
.footer-nav h4 {
  margin-bottom: 13px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.footer-nav a,
.footer-nav span {
  display: block;
  margin-bottom: 8px;
  font-size: .89rem;
  color: var(--on-dark-2);
  text-decoration: none;
  transition: color .16s var(--ease);
}
.footer-nav a:hover { color: #ffffff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid var(--line-dark);
}
.footer-bottom small { font-size: .8rem; color: var(--text-3); }

/* ---------- Mobile Call-Leiste ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 9px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding-block: 13px; }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal { padding: clamp(48px, 6vw, 84px) 0 clamp(64px, 7vw, 96px); }
.legal h1 { margin-bottom: 10px; font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.5rem); }
.legal .legal-sub { margin-bottom: 40px; color: var(--text-3); font-size: .92rem; }
.legal h2 {
  margin: 44px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 1.3rem;
}
.legal h3 { margin: 26px 0 10px; font-size: 1.03rem; }
.legal p, .legal li { font-size: .95rem; color: var(--text-2); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--brand-deep); text-underline-offset: 2px; }
.legal address { font-style: normal; line-height: 1.75; }

.todo {
  margin: 16px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--brand-tint);
  font-size: .88rem;
  color: var(--text);
}
.todo strong { display: block; margin-bottom: 4px; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
}
.legal-back:hover { color: var(--brand-deep); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner,
  .usp-inner,
  .contact-inner { grid-template-columns: 1fr; }

  /* Headline zuerst, Foto darunter: sonst frisst das Bild auf dem Handy
     den kompletten sichtbaren Bereich und die CTA rutscht unter den Falz. */
  .hero-media { max-width: 520px; margin-inline: auto; }
  .usp-media  { max-width: 400px; margin-inline: auto; }

  .footer-inner { grid-template-columns: 1fr; }
}

/* Die Navigation nebeneinander braucht rund 1150px Gesamtbreite. Darunter
   klappt sie auf den Hamburger um — sonst läuft der Header über, statt
   umzubrechen. Der Wert ist gemessen, nicht geschätzt: Logo + Navigation +
   Telefon + Button passen unterhalb davon nicht mehr in die .wrap. */
@media (max-width: 1150px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 12px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s var(--ease), opacity .2s var(--ease);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:last-child { border-bottom: 0; }

  .header-inner { justify-content: space-between; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: block; order: 3; }
}

@media (max-width: 860px) {
  /* Erst hier fällt der Header-Button weg — die Leiste unten übernimmt. */
  .header-cta .btn-primary { display: none; }

  .step::before { display: none; }
  .step { padding-top: 0; }
  .step-no { margin: 0 0 14px; box-shadow: none; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .site-footer { padding-bottom: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .header-cta .phone-link { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .facts > div { grid-template-columns: 1fr; gap: 3px; }
  .trustbar li { padding: 20px; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .mobile-bar, .hero-actions, .contact-form, .nav-toggle { display: none; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .contact, .site-footer { background: #fff; color: #000; }
  .hero h1, .contact h2 { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
