/* ============================================================
   Böhringer Werkzeug- und Vorrichtungsbau GmbH
   Premium B2B Frontend – Vanilla CSS, mobile-first
   ============================================================ */

/* ---------- Lokale Schriften (DSGVO: kein externes CDN) ---------- */
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/sora-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/sora-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/sora-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --ink:        #0d1117;
  --ink-soft:   #1a212c;
  --steel-900:  #0f1c2e;
  --brand:      #1d6fb8;
  --brand-dark: #0f4c81;
  --brand-700:  #155a96;
  --accent:     #f59e0b;
  --accent-dark:#d97f06;

  --bg:         #ffffff;
  --bg-alt:     #f4f6f9;
  --surface:    #ffffff;
  --border:     #e4e8ee;

  --text:       #1c2430;
  --text-muted: #5d6776;
  --text-invert:#eef2f7;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(13,17,23,.06), 0 2px 6px rgba(13,17,23,.05);
  --shadow:    0 8px 24px rgba(13,17,23,.08);
  --shadow-lg: 0 24px 60px rgba(13,17,23,.16);

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2rem);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }

/* Sprungziele landeten bisher unter dem fixierten Header – der verdeckte
   jeweils die ersten ~76px der angesprungenen Sektion. */
[id] { scroll-margin-top: 5.5rem; }
#hero { scroll-margin-top: 0; }

/* ---------- Layout helpers ---------- */
/* Seitenabstand respektiert die Notch/abgerundete Ecken im Querformat */
.container {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline:
    max(var(--gutter), env(safe-area-inset-left))
    max(var(--gutter), env(safe-area-inset-right));
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--steel-900); color: var(--text-invert); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; margin-bottom: .85rem; }
.section-lead { color: var(--text-muted); font-size: 1.1rem; }
.section-dark .section-lead { color: #aeb9c7; }

.eyebrow {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-dark); margin-bottom: 1rem; max-width: 100%;
}
.eyebrow-light { color: var(--accent); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(245,158,11,.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  min-height: 48px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; min-height: 54px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brand-dark); color: #fff; box-shadow: 0 8px 20px rgba(15,76,129,.28); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15,76,129,.34); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-ghost-line { color: var(--ink); border: 1px solid var(--border); background: #fff; }
.btn-ghost-line:hover { border-color: var(--brand); color: var(--brand-dark); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--brand-dark); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header[data-state="top"] { background: transparent; }
.site-header[data-state="scrolled"] {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: #fff; }
.site-header[data-state="scrolled"] .brand { color: var(--ink); }
/* Firmenlogo: über dem dunklen Hero die helle Variante, im hellen Header die farbige.
   Beide Bilder liegen übereinander und werden weich überblendet. */
.brand-logo { position: relative; display: block; height: 56px; width: 160px; flex-shrink: 0; }
.brand-logo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: left center;
  transition: opacity .3s var(--ease);
}
.brand-logo-light { opacity: 1; filter: drop-shadow(0 1px 3px rgba(0,0,0,.45)); }
.brand-logo-dark { opacity: 0; }
.site-header[data-state="scrolled"] .brand-logo-light { opacity: 0; }
.site-header[data-state="scrolled"] .brand-logo-dark { opacity: 1; }
.footer-logo { height: 62px; width: auto; margin-bottom: 1rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav ul { display: flex; align-items: center; gap: 1.6rem; }
.nav ul a {
  color: rgba(255,255,255,.92); font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  position: relative; padding: .4rem 0;
}
.site-header[data-state="scrolled"] .nav ul a { color: var(--text); }
.nav ul a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav ul a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-cta .btn-ghost-line { padding: .6rem 1rem; min-height: 44px; }

.burger { display: none; width: 48px; height: 48px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .25s var(--ease); }
.site-header[data-state="scrolled"] .burger span { background: var(--ink); }
.burger[aria-expanded="true"] span { background: var(--ink); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s var(--ease) infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,17,23,.62) 0%, rgba(13,17,23,.46) 40%, rgba(13,17,23,.86) 100%),
    radial-gradient(120% 90% at 15% 20%, rgba(15,76,129,.45), transparent 60%);
}
.hero-content { position: relative; padding-block: calc(7rem + env(safe-area-inset-top)) 4rem; max-width: 860px; }
.hero h1 { font-size: clamp(2.15rem, 6.4vw, 4.4rem); font-weight: 800; color: #fff; margin-bottom: 1.3rem; overflow-wrap: break-word; }
.hero h1 .hl { color: #fff; background: linear-gradient(120deg, var(--accent), #ffd27a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: #d9e1ea; max-width: 640px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust li { display: flex; flex-direction: column; font-size: .9rem; color: #c4cfdb; }
.hero-trust li span { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; }

.hero .eyebrow { color: #fff; }
.hero .eyebrow-dot { background: var(--accent); }

.scroll-hint { position: absolute; bottom: calc(26px + env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: flex; justify-content: center; }
.scroll-hint span { width: 4px; height: 8px; background: #fff; border-radius: 2px; margin-top: 7px; animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { background: var(--ink); color: var(--text-invert); }
.trustbar-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; padding-block: 2.2rem; }
.trust-item { display: flex; align-items: center; gap: 1rem; }
.trust-item svg { width: 38px; height: 38px; color: var(--accent); flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1rem; color: #fff; }
.trust-item span { font-size: .9rem; color: #98a4b3; }

/* ============================================================
   CARDS / LEISTUNGEN
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4dbe5; }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; }
.card-body h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .55rem; }
.card-body p { color: var(--text-muted); font-size: 1rem; }

/* Hinweis auf Partnerleistungen (Härten / Oberfläche) */
.partner-note {
  display: flex; gap: 1.1rem; align-items: flex-start;
  margin-top: 1.6rem; padding: 1.4rem 1.5rem;
  background: linear-gradient(120deg, rgba(29,111,184,.07), rgba(245,158,11,.07));
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}
.partner-note svg { width: 30px; height: 30px; color: var(--brand-dark); flex-shrink: 0; margin-top: 2px; }
.partner-note strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: .25rem; }
.partner-note p { color: var(--text-muted); font-size: .98rem; }

/* ============================================================
   MASCHINENPARK
   ============================================================ */
.machine-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.machine-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.machine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4dbe5; }
.machine-card { display: flex; flex-direction: column; }
.machine-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.machine-card figcaption { padding: .85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
/* Der Tag wächst, damit die Maschinennamen einer Zeile auf gleicher Höhe stehen,
   auch wenn eine Kategorie zweizeilig umbricht. */
.machine-tag {
  flex: 1; font-family: var(--font-head); font-weight: 700; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brand-dark);
  margin-bottom: .35rem; line-height: 1.4;
}
.machine-card strong { font-family: var(--font-head); font-size: 1rem; color: var(--ink); line-height: 1.3; }

.verfahren {
  margin-top: 1.6rem; padding: 1.6rem 1.5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.verfahren h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.verfahren-list { display: grid; gap: .6rem; }
.verfahren-list li { position: relative; padding-left: 1.7rem; color: var(--text-muted); font-size: .98rem; }
.verfahren-list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg);
  background: var(--accent);
}

/* ============================================================
   SPLIT (Über uns / Standort)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.floating-stat {
  position: absolute; bottom: 1rem; left: 1rem; background: rgba(13,17,23,.82); color: #fff;
  padding: .9rem 1.2rem; border-radius: var(--radius); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
}
.floating-stat strong { display: block; font-family: var(--font-head); color: var(--accent); font-size: 1.2rem; }
.floating-stat span { font-size: .85rem; color: #d9e1ea; }

.split-content h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.split-content p { color: var(--text-muted); margin-bottom: 1rem; }
.split-content .btn { margin-top: .8rem; }

/* Über uns: flachere Bildkante, damit die Hallenaufnahme nicht beschnitten wirkt */
#ueber-uns .split-media img { aspect-ratio: 16 / 10; }

/* ---- Über uns: zwei eigenständige Spalten ----
   Checkliste und Branchen sitzen direkt unter dem Bild, damit die rechte
   Textspalte nicht deutlich länger wird als die linke. Auf Mobil werden die
   Spalten per display:contents aufgelöst und neu sortiert:
   Text → Bild → Fakten → Button. */
.about-left, .about-right { display: flex; flex-direction: column; gap: 1.6rem; min-width: 0; }
.about-facts { display: flex; flex-direction: column; gap: 1.5rem; }
.about-facts .check-list { margin: 0; }
.about-facts .branchen { margin: 0; }
.about-cta { align-self: start; }

/* Branchen-Chips */
.branchen { margin: 1.6rem 0 .4rem; }
.branchen h3 {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem;
}
.branchen-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.branchen-list li {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--brand-dark); background: rgba(29,111,184,.09);
  border: 1px solid rgba(29,111,184,.18); border-radius: 999px; padding: .4rem .95rem;
}

.check-list { display: grid; gap: .7rem; margin: 1.4rem 0; }
.check-list li { position: relative; padding-left: 2rem; color: var(--text); }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(29,111,184,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230f4c81' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ============================================================
   FEATURES (Warum wir)
   ============================================================ */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.feature {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem 1.6rem 1.6rem; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 0; background: var(--accent); transition: height .35s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature:hover::before { height: 100%; }
.feature-num { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--brand); opacity: .55; }
.feature h3 { font-size: 1.2rem; margin: .5rem 0 .5rem; }
.feature p { color: var(--text-muted); font-size: .98rem; }

/* ============================================================
   STEPS (Ablauf)
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.7rem 1.6rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(15,76,129,.4);
}
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; color: #fff; }
.step p { color: #aeb9c7; font-size: .98rem; }

/* ============================================================
   GALERIE (Laufband – läuft von selbst, lässt sich aber auch
   wischen, ziehen und per Pfeiltasten bewegen)
   ============================================================ */
.gallery { position: relative; }

.marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: .75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.marquee::-webkit-scrollbar { display: none; }
.marquee.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.marquee:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; border-radius: var(--radius); }
.marquee-track { display: flex; gap: 1.4rem; width: max-content; }
/* Bilder nicht als Datei aus dem Laufband ziehen */
.marquee img { -webkit-user-drag: none; user-select: none; }

.gallery-nav {
  position: absolute; top: 50%; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: rgba(255,255,255,.94); color: var(--ink);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transform: translateY(-50%);
  transition: background .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}
.gallery-nav svg { width: 22px; height: 22px; }
.gallery-prev { left: clamp(.75rem, 3vw, 2.5rem); }
.gallery-next { right: clamp(.75rem, 3vw, 2.5rem); }
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gallery-nav:active { transform: translateY(-50%) scale(.96); }
.gallery-nav:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
/* Nur dort einblenden, wo gezogen nicht selbsterklärend ist (Maus/Trackpad) */
@media (min-width: 700px) and (hover: hover) {
  .gallery-nav { display: flex; }
}

.gallery-card {
  flex: 0 0 auto; width: min(340px, 78vw); background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.gallery-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gallery-card figcaption {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--text); padding: .85rem 1.1rem 1rem;
}

/* ============================================================
   STANDORT – Betriebsgebäude
   ============================================================ */
/* Anschrift steht über dem Foto – so bleibt das Gebäude vollständig sichtbar */
.location-card { display: flex; flex-direction: column; gap: .95rem; }
.location-card figcaption {
  display: flex; flex-direction: column; gap: .15rem;
  padding-left: .9rem; border-left: 3px solid var(--accent);
}
.location-card strong { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); line-height: 1.35; }
.location-card span { font-size: .9rem; color: var(--text-muted); }
.location-card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,17,23,.08);
}

/* ============================================================
   KARRIERE
   ============================================================ */
.career {
  background:
    linear-gradient(115deg, rgba(15,76,129,.55), transparent 60%),
    var(--steel-900);
  color: var(--text-invert);
  padding-block: clamp(2.6rem, 6vw, 4rem);
}
.career-inner { display: grid; gap: 1.6rem; align-items: center; }
.career h2 { font-size: clamp(1.5rem, 3.6vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: .8rem; }
.career p { color: #aeb9c7; max-width: 62ch; }
.career .btn { justify-self: start; }

/* ============================================================
   ANSPRECHPARTNER
   ============================================================ */
.people { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
.people-col {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
}
.people-col h3 {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-dark); margin-bottom: .6rem;
}
.people-col ul { display: grid; gap: .3rem; }
.people-col li { font-family: var(--font-head); font-weight: 600; color: var(--ink); }

.contact-facts { display: grid; gap: 1.1rem; margin: 1.4rem 0 1.8rem; }
.contact-facts li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-facts svg { width: 26px; height: 26px; color: var(--brand-dark); flex-shrink: 0; margin-top: 2px; }
/* nur die direkte Textspalte stapeln – verschachtelte Spans bleiben normale Zeilen */
.contact-facts li > span { display: flex; flex-direction: column; }
.contact-facts strong { font-family: var(--font-head); font-size: .95rem; color: var(--ink); }
.contact-facts a:hover { color: var(--brand-dark); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.contact-aside { background: var(--steel-900); color: var(--text-invert); border-radius: var(--radius-lg); padding: 2rem 1.8rem; }
.contact-aside h3 { color: #fff; font-size: 1.3rem; margin-bottom: .7rem; }
.contact-aside p { color: #aeb9c7; margin-bottom: 1.4rem; }
.contact-line { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-weight: 600; color: #fff; margin-bottom: .9rem; word-break: break-word; }
.contact-line svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
a.contact-line:hover { color: var(--accent); }
.contact-line-static { color: #c9d3df; font-weight: 500; }
.aside-divider { height: 1px; background: rgba(255,255,255,.14); margin: 1.4rem 0; }
.aside-hours { color: #aeb9c7; margin: 0; }
.aside-hours strong { color: #fff; font-family: var(--font-head); }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fbfcfd; color: var(--text); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(29,111,184,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field input.invalid, .field textarea.invalid { border-color: #d9534f; box-shadow: 0 0 0 4px rgba(217,83,79,.12); }

.captcha-field { margin-bottom: 1.25rem; }
.captcha-row {
  display: grid;
  grid-template-columns: auto minmax(5.5rem, 8rem);
  gap: .75rem;
  align-items: center;
}
.captcha-question {
  margin: 0;
  min-height: 48px;
  padding: 0 1.05rem;
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.captcha-row input { min-height: 48px; text-align: center; font-weight: 600; font-size: 1.05rem; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--text-muted); margin: .4rem 0 1.4rem; cursor: pointer; }
.consent input { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; accent-color: var(--brand-dark); cursor: pointer; }
.consent a { color: var(--brand-dark); text-decoration: underline; }
.consent.invalid span { color: #c0322e; }

.form-status { margin-top: 1rem; font-weight: 600; font-size: .96rem; min-height: 1.2em; }
.form-status.ok { color: #1f8a4c; }
.form-status.err { color: #c0322e; }
.form-note { margin-top: 1rem; font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #aeb9c7; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.5rem; }
.footer-brand p { font-size: .95rem; max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-head); }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: .95rem; line-height: 1.8; }
.footer-col address a:hover { color: var(--accent); }

.footer-bottom { display: flex; flex-direction: column; gap: .6rem; text-align: center; padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.powered a { color: #22b8e0; font-weight: 600; }
.powered a:hover { text-decoration: underline; }

/* Auf dem Handy stünden die vier Blöcke mit je einspaltigen Linklisten
   untereinander – der Footer wäre mehrere Bildschirme lang. Die Listen
   laufen deshalb zweispaltig, die Links bekommen zugleich mehr Tapp-Fläche. */
@media (max-width: 599px) {
  .site-footer { padding-top: 2.2rem; }
  .footer-grid { gap: 1.15rem; padding-bottom: 1.4rem; }
  .footer-logo { height: 44px; margin-bottom: .6rem; }
  .footer-brand p { font-size: .88rem; line-height: 1.55; max-width: none; }
  .footer-col h4 { font-size: .95rem; margin-bottom: .45rem; }
  .footer-col ul { grid-template-columns: 1fr 1fr; gap: .1rem 1rem; }
  .footer-col ul a { display: block; padding-block: .35rem; font-size: .95rem; }
  .footer-col address { font-size: .88rem; line-height: 1.55; }
  .footer-bottom { padding-block: .9rem; gap: .35rem; font-size: .8rem; }
}

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: calc(1.2rem + env(safe-area-inset-right)); bottom: calc(1.2rem + env(safe-area-inset-bottom)); z-index: 90; width: 50px; height: 50px; border-radius: 50%; background: var(--brand-dark); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.to-top svg { width: 24px; height: 24px; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-700); transform: translateY(-2px); }
/* Im Footer angekommen: ausblenden – dort verdeckte der Button sonst die
   Copyright-Zeile, und nötig ist er hier ohnehin nicht mehr. */
.to-top.at-footer { opacity: 0; visibility: hidden; pointer-events: none; }

/* ============================================================
   BILDANSICHT (Lightbox)
   ============================================================ */
/* Anfassbare Bilder erkennbar machen */
img[data-gross] { cursor: zoom-in; }
img[data-gross]:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
/* Beim Ziehen am Laufband soll der Zeiger die Hand bleiben */
.marquee.is-dragging img[data-gross] { cursor: grabbing; }

.lightbox {
  width: 100%; max-width: 100%; height: 100%; max-height: 100%;
  margin: 0; padding: 0; border: 0; background: transparent; overflow: hidden;
}
.lightbox::backdrop { background: rgba(8, 11, 16, .97); backdrop-filter: blur(3px); }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }

.lightbox-figur {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  max-width: min(1400px, 94vw);
  padding:
    calc(4.5rem + env(safe-area-inset-top)) 1rem
    calc(1.5rem + env(safe-area-inset-bottom));
}
.lightbox-figur img {
  max-width: 100%;
  max-height: calc(100dvh - 11rem);
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  background: #11161d;
}
.lightbox-figur figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: .1rem .8rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  color: #eef2f7; text-align: center;
}
.lightbox-zaehler { font-weight: 500; color: #8f9dae; font-size: .88rem; }

.lightbox-schliessen, .lightbox-nav {
  position: fixed; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox-schliessen svg, .lightbox-nav svg { width: 24px; height: 24px; }
.lightbox-schliessen {
  top: calc(1rem + env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
}
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-zurueck { left: max(.9rem, env(safe-area-inset-left)); }
.lightbox-weiter { right: max(.9rem, env(safe-area-inset-right)); }
.lightbox-nav:hover, .lightbox-schliessen:hover { background: rgba(255,255,255,.24); }
.lightbox-nav:active { transform: translateY(-50%) scale(.94); }
.lightbox-schliessen:active { transform: scale(.94); }
.lightbox-schliessen:focus-visible, .lightbox-nav:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
/* Nur ein Bild in der Gruppe: Pfeile weg */
.lightbox.einzeln .lightbox-nav { display: none; }

@media (max-width: 640px) {
  .lightbox-figur {
    max-width: 100vw; gap: .7rem;
    padding: calc(4rem + env(safe-area-inset-top)) .5rem calc(1.2rem + env(safe-area-inset-bottom));
  }
  .lightbox-figur img { max-height: calc(100dvh - 9.5rem); }
  .lightbox-figur figcaption { font-size: .9rem; }
  /* Auf dem Handy wird gewischt – die Pfeile säßen nur im Weg */
  .lightbox-nav { display: none; }
  .lightbox-schliessen { width: 46px; height: 46px; }
}

/* ============================================================
   REVEAL Animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 700px) {
  .machine-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .verfahren-list { grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; }
  .verfahren { padding: 1.8rem 2rem; }
}

@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  #ueber-uns .split { grid-template-columns: 1.05fr 1fr; align-items: start; }
  /* Standort: Textspalte etwas breiter, Kontaktdaten zweispaltig – sonst wird
     die linke Spalte deutlich höher als das Foto und die Sektion zieht sich lang. */
  /* Oben ausgerichtet: die Anschrift steht auf Höhe der Überschrift, statt
     bei ungleich hohen Spalten mittig zu schweben. */
  #standort .split { grid-template-columns: 1.18fr .82fr; align-items: start; }
  .contact-wrap { grid-template-columns: 0.9fr 1.4fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.3fr; }
  .career-inner { grid-template-columns: 1.7fr auto; gap: 3rem; }
  .verfahren-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1080px) {
  .machine-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Kontaktdaten zweispaltig – hält die Textspalte auf Höhe des Fotos.
   Erst ab 1150px, darunter reicht die Spaltenbreite nicht für die E-Mail-Adresse. */
/* Unterhalb der Zweispaltigkeit lösen wir die Über-uns-Spalten auf und
   sortieren die Blöcke in die sinnvolle Lesereihenfolge. */
@media (max-width: 899px) {
  .about-left, .about-right { display: contents; }
  #ueber-uns .split-content { order: 1; }
  #ueber-uns .split-media   { order: 2; }
  #ueber-uns .about-facts   { order: 3; }
  #ueber-uns .about-cta     { order: 4; justify-self: stretch; }
}

@media (min-width: 1150px) {
  #standort .contact-facts { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  #standort .contact-facts li { gap: .7rem; }
  #standort .contact-facts svg { width: 22px; height: 22px; }
  #standort .contact-facts li > span { font-size: .95rem; }
}

/* Zwischen Burger-Breakpoint und komfortabler Desktop-Breite wird die Navigation
   sonst breiter als der Viewport – bei 1024px (iPad quer) wurde der CTA beschnitten. */
@media (min-width: 981px) and (max-width: 1160px) {
  .brand-logo { height: 48px; width: 137px; }
  .nav { gap: 1.1rem; }
  .nav ul { gap: 1rem; }
  .nav ul a { font-size: .92rem; }
  .nav-cta { gap: .5rem; }
  .nav-cta .btn { padding: .55rem .9rem; font-size: .9rem; }
}

/* Desktop nav vs mobile nav */
@media (max-width: 980px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: #fff; box-shadow: -20px 0 60px rgba(13,17,23,.2);
    padding:
      calc(6rem + env(safe-area-inset-top))
      max(1.8rem, env(safe-area-inset-right))
      calc(2rem + env(safe-area-inset-bottom))
      1.8rem;
    transform: translateX(100%); transition: transform .38s var(--ease); overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav ul li { border-bottom: 1px solid var(--border); }
  .nav ul a { display: block; color: var(--ink); padding: 1rem 0; font-size: 1.1rem; font-weight: 600; }
  .nav ul a::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 1.6rem; }
  .nav-cta .btn { width: 100%; }
  .nav-cta .btn-ghost-line { justify-content: center; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(13,17,23,.5); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; z-index: 99; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ============================================================
   MOBILE-Kompaktmodus: weniger Text, engere Abstände
   ============================================================ */
/* Akkordeon-Chevron standardmäßig (Desktop) ausgeblendet */
.feature-chev { display: none; }

@media (max-width: 640px) {
  /* Sekundäre Textpassagen auf dem Handy ausblenden */
  .mobile-hide { display: none !important; }

  body { font-size: 1rem; }
  .section { padding-block: clamp(2.4rem, 9vw, 3.2rem); }
  .section-head { margin-bottom: 1.6rem; }
  .section-head h2 { font-size: clamp(1.5rem, 6.6vw, 1.9rem); }
  .section-lead { font-size: 1rem; }

  /* Hero: Headline + beide CTAs müssen ohne Scrollen sichtbar sein */
  .hero { min-height: 88svh; }
  .hero-content { padding-block: calc(5.5rem + env(safe-area-inset-top)) 2.2rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-sub { margin-bottom: 1.5rem; }

  /* Nebeneinander würden die beiden Buttons ab ~430px abwärts überlaufen
     (.btn hat white-space: nowrap) – deshalb gestapelt und volle Breite. */
  .hero-actions { flex-direction: column; align-items: stretch; gap: .6rem; margin-bottom: 1.6rem; }
  .hero-actions .btn { width: 100%; }

  /* Trust-Zeile als festes Raster statt umbrechendem Flex */
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem; padding-top: 1.2rem; }
  .hero-trust li { font-size: .78rem; }
  .hero-trust li span { font-size: .98rem; }
  .hero-trust li:last-child { grid-column: 1 / -1; }

  /* Kollidiert auf kurzen Viewports mit der Trust-Zeile und ist auf Touch überflüssig */
  .scroll-hint { display: none; }

  /* Leistungs-Karten: Beschreibung auf 3 Zeilen kürzen */
  .card-body { padding: 1.2rem 1.2rem 1.3rem; }
  .card-body h3 { font-size: 1.15rem; }
  .card-body p {
    font-size: .95rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }

  /* Ablauf-Schritte: Text auf 3 Zeilen kürzen */
  .step { padding: 1.3rem 1.2rem; }
  .step p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  /* Über-uns / Standort: kompaktere Checkliste */
  .check-list { gap: .55rem; margin: 1.1rem 0; }

  /* ---- "Warum wir" als Akkordeon ---- */
  .features-grid { gap: .7rem; }
  .feature {
    position: relative; padding: 1.1rem 3rem 1.1rem 1.2rem; cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .feature h3 { font-size: 1.08rem; margin: .15rem 0 0; }
  .feature p {
    max-height: 0; overflow: hidden; opacity: 0; margin: 0;
    transition: max-height .38s var(--ease), opacity .3s var(--ease), margin .3s var(--ease);
  }
  .feature.open p { max-height: 260px; opacity: 1; margin-top: .6rem; }
  .feature-chev {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 1rem; right: 1rem; width: 26px; height: 26px;
    border-radius: 50%; background: rgba(29,111,184,.1); color: var(--brand-dark);
    font-size: 1.3rem; line-height: 1; font-weight: 400; transition: transform .35s var(--ease);
  }
  .feature.open .feature-chev { transform: rotate(45deg); }

  /* Kontakt: Aside kompakter */
  .contact-aside { padding: 1.5rem 1.4rem; }

  /* Logo etwas kleiner, damit neben dem Burger genug Platz bleibt */
  .brand-logo { height: 42px; width: 120px; }
  .footer-logo { height: 54px; }

  /* Maschinenpark kompakter */
  .machine-card figcaption { padding: .65rem .8rem .8rem; }
  .machine-tag { font-size: .62rem; letter-spacing: .08em; }
  .machine-card strong { font-size: .92rem; }
  .verfahren { padding: 1.3rem 1.2rem; }

  .partner-note { padding: 1.1rem 1.2rem; gap: .9rem; }
  .partner-note svg { width: 26px; height: 26px; }

  .career .btn { width: 100%; justify-self: stretch; }
  .people { gap: .7rem; margin-bottom: 1.4rem; }
  .people-col { padding: 1rem 1.2rem; }
}

/* ============================================================
   Rechtstexte (Impressum / Datenschutz)
   ============================================================ */
.legal-page {
  max-width: 840px;
  margin-inline: auto;
}
.legal-page h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
  hyphens: auto;
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 2.2rem 0 .7rem;
  hyphens: auto;
}
.legal-page h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.5rem 0 .45rem;
  hyphens: auto;
}
.legal-page h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.15rem 0 .35rem;
}
.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.9;
}
.legal-page p { margin: 0 0 .9rem; }
.legal-page ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.legal-page li { margin-bottom: .45rem; }
.legal-page a { color: var(--brand-dark); }
.legal-page a:hover { color: var(--brand); }
.legal-page .legal-caps {
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .01em;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero-img { animation: none; transform: scale(1.06); }
  .reveal { opacity: 1; transform: none; }
  /* Das Laufband läuft dann nicht von selbst, bleibt aber manuell bedienbar. */
}
