/* ==========================================================================
   SCOOTER WERK - Krefeld
   --------------------------------------------------------------------------
   Gestaltungsprinzip: Werkstatt-Schild statt Software-Dashboard.
   - Kanten sind scharf (2px), keine weichen Bootstrap-Radien
   - Schrift: Big Shoulders Display (Industrie-Beschriftung) + Barlow
     (aus der Verkehrsbeschilderung, passt zu Fahrzeugen)
   - Struktur entsteht durch Haarlinien, Farbbloecke und Grosse Typo,
     nicht durch schwebende Karten
   - Genau ein Akzent (Elektro-Blau vom Flyer) auf der ganzen Seite
   ========================================================================== */

/* ---------- Schriften (selbst gehostet, keine externen Requests) ---------- */
@font-face {
  font-family: 'Big Shoulders Display';
  src: url('../fonts/big-shoulders-display-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ----------
   Bewusst nur ein Farbschema: helle Werkstatt-Tafel. Kein Umschalter,
   kein data-theme, keine zweite Palette, die mitgepflegt werden muss. */
:root {
  color-scheme: light;

  --bg:          #f2f4f8;
  --bg-2:        #ffffff;
  --surface:     #ffffff;
  --line:        rgba(9, 14, 26, .14);
  --line-2:      rgba(9, 14, 26, .28);
  --text:        #1a2233;
  --text-strong: #05080f;
  --muted:       #4f5b71;

  --accent:      #0b4fd6;
  --accent-hi:   #0a45ba;
  --accent-ink:  #ffffff;
  --accent-wash: rgba(11, 79, 214, .08);
  /* Akzent fuer kleine Schrift. Auf dem hellen Grund traegt dasselbe Blau,
     erreicht 6.6:1 und erfuellt damit WCAG AA fuer Fliesstext. */
  --accent-text: #0b4fd6;

  --on-accent:      #ffffff;
  --on-accent-soft: rgba(255, 255, 255, .78);

  --ring:   #0b4fd6;
  --danger: #b91c1c;
  --ok:     #067a52;

  --r:    2px;          /* eine einzige Radius-Stufe, bewusst kantig */

  --pad:   clamp(1.25rem, 4vw, 2.5rem);
  --wrap:  1320px;
  --nav-h: 76px;
  --gap:   clamp(4rem, 8vw, 7.5rem);

  --font-display: 'Big Shoulders Display', 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-label:   'Barlow Condensed', 'Barlow', system-ui, sans-serif;

  /* Emil Kowalski: starke Kurven, nie ease-in fuer Oberflaechen */
  --ease-out:    cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Grundbausteine ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 300;
  background: var(--accent); color: var(--accent-ink);
  padding: .75rem 1.25rem; font-weight: 600;
  transition: top 180ms var(--ease-out);
}
.skip-link:focus { top: 1rem; }

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

/* ---------- Typografie ---------- */
.display,
.h2,
.h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: .005em;
  line-height: .92;
  /* Kein text-wrap: balance. Die Zeilenumbrueche sind bewusst im Markup
     gesetzt, der Browser soll sie nicht neu verteilen. */
}

.display { font-size: clamp(2.4rem, 9vw, 8.4rem); }
.h2      { font-size: clamp(2.3rem, 5.2vw, 4.2rem); }
.h3      { font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1; }

.label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
}

.lead {
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  color: var(--muted);
  max-width: 52ch;
  text-wrap: pretty;
}
.body-muted { color: var(--muted); max-width: 60ch; text-wrap: pretty; }
.accent-word { color: var(--accent); }

.num {
  font-family: var(--font-label);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

/* Utilities */
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 1.75rem; }
.mt-l { margin-top: 2rem; } .mt-xl { margin-top: 3rem; }
.mb-l { margin-bottom: 2rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.rd-1 { --reveal-delay:  60ms; } .rd-2 { --reveal-delay: 120ms; }
.rd-3 { --reveal-delay: 180ms; } .rd-4 { --reveal-delay: 240ms; }
.rd-5 { --reveal-delay: 300ms; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  --btn-bd: var(--accent);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  white-space: nowrap;
  padding: .85rem 1.5rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .085em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms var(--ease-out),
              background-color 180ms ease,
              border-color 180ms ease,
              color 180ms ease;
}
.btn:active { transform: scale(.97); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text-strong); --btn-bd: var(--line-2); }
.btn--lg    { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--sm    { padding: .62rem 1.1rem; font-size: .92rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; pointer-events: none; }
.btn__icon  { flex: none; }

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { background: var(--accent-hi); border-color: var(--accent-hi); }
  .btn--ghost:hover   { border-color: var(--text-strong); }
}

/* Buttons auf dem blauen Farbblock */
.on-accent .btn--primary { --btn-bg: #fff; --btn-fg: var(--accent); --btn-bd: #fff; }
.on-accent .btn--ghost   { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
@media (hover: hover) and (pointer: fine) {
  .on-accent .btn--primary:hover { --btn-bg: #eef3ff; --btn-bd: #eef3ff; }
  .on-accent .btn--ghost:hover   { --btn-bd: #fff; }
}

.icon-btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  background: transparent; color: var(--muted); cursor: pointer;
  text-decoration: none;
  transition: transform 150ms var(--ease-out), color 160ms ease, border-color 160ms ease;
}
.icon-btn:active { transform: scale(.94); }
@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover { color: var(--text-strong); border-color: var(--line-2); }
}

/* ==========================================================================
   NAVIGATION - Logo mittig, je zwei Punkte links und rechts
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background-color 220ms ease;
}
.nav[data-stuck='true'] {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
@media (prefers-reduced-transparency: reduce) {
  .nav { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.nav__inner {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}
.nav__side { display: flex; align-items: center; gap: .35rem; min-width: 0; }
.nav__side--left  { justify-content: flex-start; }
.nav__side--right { justify-content: flex-end; }
.nav__side--left .icon-btn  { margin-right: .9rem; }
.nav__side--right .btn      { margin-left: .9rem; }

.nav__link {
  font-family: var(--font-label);
  font-weight: 600; font-size: .96rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); text-decoration: none;
  padding: .5rem .55rem;
  white-space: nowrap;
  transition: color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--text-strong); }
}

/* Wortmarke */
.brand {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: 1.6rem; line-height: 1; letter-spacing: .01em;
  color: var(--text-strong);
  white-space: nowrap;
}
.brand__mark { color: var(--accent); flex: none; }
.brand__werk { color: var(--accent); }

.nav__burger { display: none; }

@media (max-width: 1080px) {
  .nav__side .nav__link { display: none; }
  .nav__side--right .btn { display: none; }
  .nav__burger { display: inline-grid; }
}

/* Mobile-Menue */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 1.75rem var(--pad) 2.5rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 200ms;
}
.mobile-menu[data-open='true'] { opacity: 1; visibility: visible; transform: none; }
body.is-menu-open { overflow: hidden; }

.mobile-menu a {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 2rem; font-weight: 700; line-height: 1;
  color: var(--text-strong);
}
.mobile-menu .btn { margin-top: 2rem; border-bottom: 0; }

/* ---------- Scroll-Reveal (nur mit JavaScript) ---------- */
.js .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal[data-shown='true'] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

.section { padding-block: var(--gap); }
.section__head { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section__head .label { display: block; margin-bottom: .9rem; }
.section__head .lead { margin-top: 1.25rem; }

/* ==========================================================================
   HERO - grosse offene Werkstatt-Tafel
   ========================================================================== */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: calc(100dvh - var(--nav-h));
  padding-block: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}

/* Foto, falls vorhanden. Ohne Foto bleibt die Buehne ruhig dunkel. */
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 8%, color-mix(in srgb, var(--bg) 55%, transparent) 62%, var(--bg) 100%);
}

/* Blaue Lichtstimmung und technisches Raster */
.hero::before {
  content: ''; position: absolute; z-index: 0;
  inset: -40% 45% 10% -25%;
  background: radial-gradient(closest-side, var(--accent-wash), transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; z-index: 0; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(120% 90% at 78% 40%, #000, transparent 68%);
  mask-image: radial-gradient(120% 90% at 78% 40%, #000, transparent 68%);
  opacity: .55;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero .label { display: block; margin-bottom: 1.5rem; }
.hero__title { margin-bottom: 1.75rem; }
.hero__title > span { display: block; }
@media (min-width: 700px) { .hero__title > span { white-space: nowrap; } }
.hero__sub { margin-bottom: 2.5rem; font-size: clamp(1.1rem, 1.5vw, 1.35rem); max-width: 46ch; }

/* Faktenleiste unter dem Hero */
.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  padding: 1.6rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .35rem;
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact__key {
  font-family: var(--font-label); font-weight: 600;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted);
}
.fact__val {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.05;
  color: var(--text-strong);
  text-decoration: none;
}
.fact__val--open { color: var(--accent-text); }
a.fact__val { transition: color 160ms ease; }
@media (hover: hover) and (pointer: fine) { a.fact__val:hover { color: var(--accent-text); } }
.fact__note { font-size: .88rem; color: var(--muted); }

@media (max-width: 900px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd)  { border-left: 0; padding-left: 0; }
  .fact:nth-child(n+3)  { border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .facts__grid { grid-template-columns: 1fr; }
  .fact { border-left: 0; padding-left: 0; }
  .fact + .fact { border-top: 1px solid var(--line); }
}

/* ==========================================================================
   LEISTUNGEN - Tafel mit grossen Zeilen statt Kartenraster
   ========================================================================== */
.board { border-top: 1px solid var(--line-2); }

.board__row {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) minmax(0, 30rem);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.15rem, 2vw, 1.6rem) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  isolation: isolate;
}

/* Blauer Streifen, der beim Zeigen von links einfaehrt.
   clip-path statt Breitenanimation: laeuft auf der GPU. */
.board__row::before {
  content: '';
  position: absolute;
  inset: 0 calc(var(--pad) * -1);
  z-index: -1;
  background: var(--accent-wash);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 320ms var(--ease-out);
}
.board__icon {
  color: var(--muted);
  transition: color 220ms ease, transform 320ms var(--ease-out);
}
.board__name {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; line-height: .95;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  color: var(--text-strong);
  transition: color 220ms ease;
}
.board__desc { color: var(--muted); font-size: .98rem; }

@media (hover: hover) and (pointer: fine) {
  .board__row:hover::before { clip-path: inset(0 0 0 0); }
  .board__row:hover .board__icon { color: var(--accent); transform: translateX(4px); }
  .board__row:hover .board__name { color: var(--accent-text); }
}

@media (max-width: 860px) {
  .board__row {
    grid-template-columns: 2.5rem 1fr;
    row-gap: .35rem;
    align-items: start;
  }
  .board__desc { grid-column: 2; }
  .board__icon { margin-top: .3rem; }
}

/* Zusatzleistungen als kompakte Zeile */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: var(--font-label); font-weight: 500;
  text-transform: uppercase; letter-spacing: .09em; font-size: .84rem;
  color: var(--muted);
}
.tag svg { color: var(--accent); flex: none; }

/* ==========================================================================
   ABLAUF - Roadmap: drei Stationen auf einer Fahrspur
   Die Spur ist Asphalt mit Mittelstreifen, die Stationen sitzen darauf.
   Der Roller faehrt die Strecke einmal ab, wenn der Abschnitt erscheint.
   ========================================================================== */
.road {
  --road-marker: 3.5rem;   /* Kantenlaenge der Stationen und der Zielflagge */
  --road-lane:   20px;     /* Breite der Fahrspur */
  --road-asphalt: #232b3b;

  position: relative;
}

.road__lane {
  position: absolute;
  z-index: 0;
  top: calc((var(--road-marker) - var(--road-lane)) / 2);
  left: calc(var(--road-marker) / 2);
  right: calc(var(--road-marker) / 2);
  height: var(--road-lane);
  background: var(--road-asphalt);
  border-radius: var(--r);
  container-type: inline-size;   /* 100cqw = Laenge der Strecke */
}
/* Mittelstreifen */
.road__lane::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  transform: translateY(-1px);
  background: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, .85) 0 18px,
    transparent 18px 36px
  );
}

.road__rider {
  position: absolute;
  z-index: 1;
  left: 0; top: 50%;
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem;
  /* Ruhelage in der Streckenmitte. Am Streckenanfang wuerde die Station 01
     den Roller verdecken. */
  transform: translate(calc(50cqw - 50%), -50%);
  border: 2px solid var(--road-asphalt);
  border-radius: var(--r);
  background: var(--bg-2);
  color: var(--accent);
}
.road[data-shown='true'] .road__rider {
  animation: road-ride 2400ms var(--ease-in-out) 200ms both;
}
@keyframes road-ride {
  from { transform: translate(0, -50%); }
  /* haelt vor der Zielflagge, statt sie zu verdecken */
  to   { transform: translate(calc(100cqw - 100% - 2.1rem), -50%); }
}
@media (prefers-reduced-motion: reduce) {
  .road[data-shown='true'] .road__rider { animation: none; }
}

/* Ziel am Ende der Strecke */
.road__finish {
  position: absolute;
  z-index: 2;
  right: 0; top: 0;
  display: grid; place-items: center;
  width: var(--road-marker); height: var(--road-marker);
  border: 2px solid var(--accent);
  border-radius: var(--r);
  background: var(--accent);
  color: #fff;
}

.road__stops {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.road__stop { min-width: 0; }

.road__marker {
  display: grid; place-items: center;
  width: var(--road-marker); height: var(--road-marker);
  border: 2px solid var(--accent);
  border-radius: var(--r);
  background: var(--bg-2);
  color: var(--accent);
}

.road__body { padding-top: 1.4rem; padding-right: clamp(0rem, 2vw, 2rem); }
.road__num {
  display: block;
  font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.step__name {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1;
  color: var(--text-strong);
  margin-bottom: .85rem;
}
.road__stop p { color: var(--muted); font-size: .99rem; }

/* Mobil laeuft die Strecke senkrecht, die Stationen haengen links daran. */
@media (max-width: 820px) {
  .road { padding-bottom: calc(var(--road-marker) + 1.5rem); }

  .road__lane {
    top: calc(var(--road-marker) / 2);
    bottom: calc(var(--road-marker) / 2);
    left: calc(var(--road-marker) / 2 - var(--road-lane) / 2);
    right: auto;
    width: var(--road-lane);
    height: auto;
  }
  .road__lane::before {
    left: 50%; right: auto; top: 0; bottom: 0;
    width: 2px; height: auto;
    transform: translateX(-1px);
    background: repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, .85) 0 18px,
      transparent 18px 36px
    );
  }
  /* Senkrechte Strecke: der Roller wuerde nur die Stationen verdecken. */
  .road__rider { display: none; }

  .road__finish { top: auto; bottom: 0; right: auto; left: 0; }

  .road__stops { grid-template-columns: 1fr; gap: 0; }
  .road__stop {
    display: grid;
    grid-template-columns: var(--road-marker) minmax(0, 1fr);
    gap: 0 1.25rem;
    padding-bottom: 2.25rem;
  }
  .road__body { padding-top: .2rem; padding-right: 0; }
}

/* ==========================================================================
   VERKAUF - voller Farbblock
   ========================================================================== */
.block-accent {
  background: var(--accent);
  color: var(--on-accent);
}
.block-accent .h2 { color: #fff; }
.block-accent .label { color: rgba(255, 255, 255, .82); }
.block-accent .body-muted { color: var(--on-accent-soft); }

.sell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sell__media {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}
.sell__media img { width: 100%; height: 100%; object-fit: cover; }

/* Ohne Verkaufsfoto: Fakten statt leerer Bildflaeche */
.sell__facts { display: grid; border-top: 1px solid rgba(255, 255, 255, .35); }
.sell__fact {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  display: flex; flex-direction: column; gap: .3rem;
}
.sell__fact-key {
  font-family: var(--font-label); font-weight: 600;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255, 255, 255, .72);
}
.sell__fact-val {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.02;
  color: #fff;
}

.ticks { list-style: none; padding: 0; margin: 1.75rem 0 2.25rem; display: grid; gap: .8rem; }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; color: var(--on-accent-soft); }
.ticks svg { flex: none; margin-top: .22rem; color: #fff; }

@media (max-width: 880px) {
  .sell { grid-template-columns: 1fr; }
  .sell__media { order: -1; }
}

/* ==========================================================================
   MARKEN
   ========================================================================== */
.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brands li {
  list-style: none;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-label);
  font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  font-size: .95rem; color: var(--muted);
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .brands li:hover { color: var(--text-strong); background: var(--accent-wash); }
}
@media (max-width: 900px) { .brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .brands { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   ÖFFNUNGSZEITEN + STANDORT
   ========================================================================== */
.info { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 940px) { .info { grid-template-columns: 1fr; } }

.hours { border-top: 2px solid var(--accent); }
.hours--compact { max-width: 460px; }
.hours__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding-block: .95rem;
  border-bottom: 1px solid var(--line);
}
.hours__day {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: 1.35rem; line-height: 1;
  color: var(--text-strong);
}
.hours__time { font-family: var(--font-label); font-size: 1.1rem; letter-spacing: .05em; color: var(--muted); }
.hours__time--closed { opacity: .55; }
.hours__row[data-today='true'] .hours__day,
.hours__row[data-today='true'] .hours__time { color: var(--accent); }
.hours__note { margin-top: 1.5rem; font-size: .92rem; color: var(--muted); max-width: 46ch; }

.contact-lines { display: grid; gap: 1.5rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; }
.contact-line > svg { color: var(--accent); flex: none; margin-top: .15rem; }
.contact-line__body { min-width: 0; }
.contact-line__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: 1.4rem; line-height: 1.05;
  color: var(--text-strong); text-decoration: none;
  display: block;
  overflow-wrap: anywhere;
}
a.contact-line__title { transition: color 160ms ease; }
@media (hover: hover) and (pointer: fine) { a.contact-line__title:hover { color: var(--accent-text); } }
.contact-line small { display: block; color: var(--muted); font-size: .88rem; margin-top: .2rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.35rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.05;
  color: var(--text-strong);
  transition: color 160ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
@media (hover: hover) and (pointer: fine) {
  .faq__item summary:hover { color: var(--accent-text); }
}
.faq__sign { position: relative; width: 18px; height: 18px; flex: none; color: var(--accent); }
.faq__sign::before, .faq__sign::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: currentColor; transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
}
.faq__sign::before { width: 16px; height: 2px; }
.faq__sign::after  { width: 2px; height: 16px; }
.faq__item[open] .faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__body { overflow: hidden; }
.faq__body p { padding-bottom: 1.5rem; color: var(--muted); max-width: 72ch; }

.faq__foot {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem 1.75rem; justify-content: space-between;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact__grid {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
@media (max-width: 960px) { .contact__grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; gap: 1.15rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .4rem; }
/* Nur die Feldbeschriftungen sind Versalien, nicht der Einwilligungstext. */
.field > label:not(.checkbox) {
  font-family: var(--font-label); font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-strong);
}
.field .req { color: var(--accent-text); }

.input, .select, .textarea {
  width: 100%;
  padding: .85rem .95rem;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 21px) 55%, calc(100% - 15px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-wash);
}
.field--error .input, .field--error .select, .field--error .textarea { border-color: var(--danger); }

.field__hint  { font-size: .84rem; color: var(--muted); }
.field__error { font-size: .86rem; color: var(--danger); font-weight: 600; display: none; }
.field--error .field__error { display: block; }

.checkbox {
  display: grid; grid-template-columns: auto 1fr; gap: .75rem;
  align-items: start; font-size: .93rem; color: var(--muted); cursor: pointer;
}
.checkbox input { width: 20px; height: 20px; margin-top: .1rem; accent-color: var(--accent); cursor: pointer; }
.checkbox a { color: var(--text-strong); text-decoration: underline; text-underline-offset: 3px; }

/* Honeypot */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.alert {
  border: 1.5px solid; border-radius: var(--r);
  padding: 1rem 1.15rem; font-size: .96rem;
  display: flex; gap: .75rem; align-items: flex-start;
}
.alert svg { flex: none; margin-top: .15rem; }
.alert--ok    { border-color: var(--ok);     background: color-mix(in srgb, var(--ok) 12%, transparent);     color: var(--text); }
.alert--error { border-color: var(--danger); background: color-mix(in srgb, var(--danger) 12%, transparent); color: var(--text); }
.alert strong { color: var(--text-strong); }

.form__foot { display: grid; gap: .85rem; }

/* Trenner zwischen Formularversand und dem direkten Anruf */
.form__or {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .78rem; color: var(--muted);
}
.form__or::before, .form__or::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.form__legal { font-size: .82rem; color: var(--muted); }

.btn__label { transition: opacity 200ms ease, filter 200ms ease; }
.btn[data-loading='true'] .btn__label { opacity: .5; filter: blur(2px); }
.spinner {
  width: 17px; height: 17px;
  border: 2px solid color-mix(in srgb, var(--accent-ink) 35%, transparent);
  border-top-color: var(--accent-ink);
  border-radius: 50%;
  animation: spin 620ms linear infinite;
  display: none;
}
.btn[data-loading='true'] .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); margin-bottom: 3rem;
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-family: var(--font-label); font-weight: 600;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted); margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.footer a { color: var(--muted); text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .footer a:hover { color: var(--text-strong); } }
.footer__about { color: var(--muted); max-width: 38ch; margin-top: 1.1rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.75rem; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--muted);
}
.footer__bottom a { text-decoration: none; }

/* ==========================================================================
   RECHTSSEITEN
   ========================================================================== */
.legal { padding-block: clamp(3rem, 6vw, 5rem); }
.legal__inner { max-width: 74ch; }
.legal h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: .95; font-weight: 800;
  color: var(--text-strong); margin-bottom: 2rem;
}
.legal h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.5rem; line-height: 1.05; font-weight: 700;
  color: var(--text-strong); margin-top: 2.75rem; margin-bottom: .85rem;
}
.legal h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-strong); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: .95rem; }
.legal ul { padding-left: 1.25rem; }
.legal a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.legal .todo {
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: var(--accent-wash);
  padding: 1rem 1.15rem; border-radius: var(--r);
  color: var(--text); font-size: .94rem;
}
.legal .mono { font-family: var(--font-label); letter-spacing: .04em; }

@media print {
  .nav, .mobile-menu, .hero::before, .hero::after, .form, .footer { display: none !important; }
  body { background: #fff; color: #000; }
}
