  @font-face { font-family: 'Roboto'; font-weight: 400; font-style: normal; src: url(../assets/fonts/roboto-400.woff2) format('woff2'); font-display: swap; }
  @font-face { font-family: 'Roboto'; font-weight: 500; font-style: normal; src: url(../assets/fonts/roboto-500.woff2) format('woff2'); font-display: swap; }
  @font-face { font-family: 'Roboto'; font-weight: 700; font-style: normal; src: url(../assets/fonts/roboto-700.woff2) format('woff2'); font-display: swap; }
  @font-face { font-family: 'Roboto'; font-weight: 900; font-style: normal; src: url(../assets/fonts/roboto-900.woff2) format('woff2'); font-display: swap; }

  :root {
    --ink: #0a0a0a;
    --ink-soft: #171717;
    --paper: #ffffff;
    --paper-warm: #f3f2f0;
    --red: #e52521;
    --red-deep: #b81613;
    --steel: #83817e;
    --steel-line: #26241f;
    --line-on-light: #e4e2de;
    color-scheme: light;
  }

  * { box-sizing: border-box; }
  html, body {
    margin: 0; padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Roboto', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }


  header.site {
    background: var(--ink);
    padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 3px solid var(--red);
  }
  .logo-mark img { height: 34px; width: auto; }

  /* Marken-Lockup: S-TECH + AMFLOW als offizielle Händler-Kombination */
  .brand-lockup { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.4rem); }
  .brand-lockup__divider { width: 1px; height: 30px; background: rgba(255,255,255,0.22); flex: none; }
  .brand-lockup__partner { display: flex; flex-direction: column; gap: 0.22rem; }
  .brand-lockup__label {
    color: var(--steel); font-size: 0.56rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; line-height: 1; white-space: nowrap;
  }
  .amflow-mark { height: 19px; width: auto; display: block; }

  /* Amflow-Logo prominent im Hero */
  .hero-amflow {
    height: clamp(38px, 6.5vw, 66px); width: auto; display: block;
    margin: 0 0 1.1rem;
  }

  @media (max-width: 620px) {
    .brand-lockup__divider, .brand-lockup__partner { display: none; }
  }

  nav.main { display: flex; gap: clamp(1.1rem, 2.5vw, 2.2rem); }
  nav.main a {
    color: var(--paper);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
  }
  nav.main a:hover, nav.main a.active { border-color: var(--red); color: var(--paper); }

  /* Menü-Schalter (nur mobil sichtbar) */
  .nav-toggle {
    display: none;
    background: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 3px;
    padding: 0.55rem 0.6rem; line-height: 0; cursor: pointer;
  }
  .nav-toggle:hover { border-color: var(--red); }
  .nav-toggle:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
  .nav-toggle__bars { display: block; width: 22px; }
  .nav-toggle__bars span {
    display: block; height: 2px; background: var(--paper); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle__bars span + span { margin-top: 5px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav.main a.active { color: var(--red); border-color: var(--red); }

  /* HERO */
  .hero {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: flex-end;
    background: #000 url(../assets/img/hero.jpg) center 30%/cover no-repeat;
  }
  /* Hero-Hintergrundvideo (Foto bleibt als Rückfallebene darunter) */
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; border: 0;
    opacity: 0; transition: opacity 0.8s ease;
  }
  .hero-video.is-ready { opacity: 1; }
  .hero.has-video .hero-inner { position: relative; z-index: 2; }
  .hero::before {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.92) 92%);
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 5vw, 3.5rem);
    max-width: 980px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 1rem;
  }
  .eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--red); display: inline-block; }
  .hero h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-style: normal;
    color: var(--paper);
    font-size: clamp(2.3rem, 6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-wrap: balance;
    margin: 0 0 1.1rem;
  }
  .hero h1 em { color: var(--red); font-style: normal; }
  .hero p.sub {
    color: #d8d6d2;
    font-weight: 400;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.55;
    max-width: 46ch;
    margin: 0 0 1.9rem;
  }
  .cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.7rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--red); color: var(--paper); }
  .btn-primary:hover { background: var(--red-deep); }
  .btn-ghost { border-color: rgba(255,255,255,0.55); color: var(--paper); }
  .btn-ghost:hover { border-color: var(--paper); }

  /* TRUST STRIP */
  .trust {
    background: var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-item {
    padding: clamp(2.6rem, 5vw, 3.6rem) clamp(1.25rem, 4vw, 2.4rem);
    border-left: 1px solid var(--steel-line);
  }
  .trust-item:first-child { border-left: none; }
  .trust-item .num {
    color: var(--red);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin: 0 0 0.6rem;
  }
  .trust-item h3 {
    color: var(--paper);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
  }
  .trust-item p { color: var(--steel); font-size: 0.88rem; line-height: 1.5; margin: 0; }

  /* SECTION HEADER */
  .section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem); }
  .section.on-warm { background: var(--paper-warm); }
  .section-head { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; }
  .section-head .kicker {
    color: var(--red);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 0.7rem;
  }
  .section-head h2 {
    font-weight: 900;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    letter-spacing: -0.01em;
    margin: 0 0 0.8rem;
    text-wrap: balance;
  }
  .section-head p { color: var(--steel); font-size: 1rem; line-height: 1.6; margin: 0; }

  /* MODEL CARDS */
  .models-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
  }
  .model-card {
    background: var(--paper);
    border: 1px solid var(--line-on-light);
    border-radius: 3px;
    padding: 1.6rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .model-card:hover { box-shadow: 0 18px 40px -22px rgba(10,10,10,0.35); transform: translateY(-3px); }
  .model-card .thumb {
    background: var(--paper-warm);
    border-radius: 2px;
    aspect-ratio: 1 / 0.82;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
  }
  .model-card .thumb img { width: 88%; height: 88%; object-fit: contain; }
  .price-ask { color: var(--steel); font-weight: 500; font-size: 0.92rem; letter-spacing: 0; text-transform: none; }
  .model-card h3 { font-size: 1.12rem; font-weight: 700; margin: 0 0 0.15rem; }
  .model-card .price { color: var(--red); font-weight: 900; font-size: 1.3rem; margin: 0 0 0.9rem; }
  .model-card .price span { color: var(--steel); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; margin-right: 0.35rem; }
  .spec-list { list-style: none; margin: 0 0 1.3rem; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; flex-grow: 1; }
  .spec-list li {
    font-size: 0.82rem;
    color: var(--ink);
    padding-left: 0.8rem;
    position: relative;
    line-height: 1.4;
  }
  .spec-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
  .spec-list li b { font-weight: 500; color: var(--steel); }
  .model-card .more {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .model-card .more::after { content: "→"; transition: transform 0.15s ease; }
  .model-card:hover .more::after { transform: translateX(3px); }

  /* TECHNIK-ANIMATIONEN */
  .tech-section { background: var(--paper); }
  .tech-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
  }
  .tech-item {
    margin: 0; background: var(--paper-warm);
    border: 1px solid var(--line-on-light); border-radius: 3px; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .tech-video {
    width: 100%; height: auto; display: block; aspect-ratio: 2 / 1;
    object-fit: cover; background: #e9e8e5;
  }
  .tech-item figcaption { padding: 1.2rem 1.3rem 1.4rem; }
  .tech-item h3 { font-size: 1.02rem; font-weight: 700; margin: 0 0 0.4rem; }
  .tech-item p { font-size: 0.88rem; line-height: 1.55; color: var(--steel); margin: 0; }

  /* PROCESS BAND */
  .process {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  }
  .process-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
  .process-item .step {
    font-weight: 900;
    font-size: 2.6rem;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--red);
    line-height: 1;
    margin: 0 0 0.9rem;
  }
  .process-item h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.5rem; }
  .process-item p { color: #b9b7b3; font-size: 0.9rem; line-height: 1.6; margin: 0; }

  footer.site {
    background: var(--ink);
    border-top: 3px solid var(--red);
    padding: 2.6rem clamp(1.25rem, 4vw, 3rem) 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer.site .logo-mark img { height: 26px; margin-bottom: 0.7rem; }
  footer.site .addr { color: var(--steel); font-size: 0.85rem; line-height: 1.6; }
  footer.site .links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
  footer.site .links a { color: #d8d6d2; font-size: 0.85rem; }
  footer.site .links a:hover { color: var(--red); }
  .footer-bottom {
    max-width: none;
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--steel-line);
    color: var(--steel);
    font-size: 0.76rem;
    width: 100%;
  }


  /* PAGE HERO (non-home views) */
  .page-head {
    background: var(--ink);
    padding: clamp(2.4rem, 6vw, 3.6rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 2.8rem);
    border-bottom: 3px solid var(--red);
  }
  .page-head .eyebrow { margin-bottom: 0.8rem; }
  .page-head h1 {
    color: var(--paper);
    font-weight: 900;
    font-size: clamp(1.9rem, 4.4vw, 3rem);
    letter-spacing: -0.01em;
    margin: 0 0 0.7rem;
    text-wrap: balance;
  }
  .page-head p { color: #c9c7c3; font-size: 1rem; max-width: 62ch; line-height: 1.6; margin: 0; }

  .page-head-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; }
  .page-head-text { flex: 1 1 420px; }
  .page-head-logos { flex: 0 0 auto; display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-end; }
  .page-head-logos .lbl { color: var(--steel); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .page-head-logos .row { display: flex; gap: clamp(0.9rem, 2vw, 1.4rem); flex-wrap: wrap; align-items: center; justify-content: flex-end; }
  .page-head-logos .row > * { display: block; }
  .page-head-logos .row svg, .page-head-logos .row img {
    height: 20px; width: auto; display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  .page-head-logos .row > *:hover svg, .page-head-logos .row > *:hover img { opacity: 1; }
  .page-head-logos .row .chip-flat {
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
  }
  .page-head-logos .row .chip-flat svg { height: 26px; filter: none; opacity: 1; }
  @media (max-width: 760px) {
    .page-head-inner { flex-direction: column; align-items: flex-start; }
    .page-head-logos { align-items: flex-start; }
    .page-head-logos .row { justify-content: flex-start; }
  }

  /* MODELLE: TABS */
  .model-tabs {
    max-width: 1180px;
    margin: 0 auto 2.6rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .model-tab {
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid var(--line-on-light);
    background: var(--paper);
    color: var(--ink);
    border-radius: 2px;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  }
  .model-tab:hover { border-color: var(--red); }
  .model-tab.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

  .model-panel { display: none; }
  .model-panel.active { display: grid; }
  .model-panel {
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }
  .model-panel .thumb-big {
    background: var(--paper);
    border: 1px solid var(--line-on-light);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
  }
  .model-panel .thumb-big img { width: 100%; height: auto; }
  .model-detail .tagline {
    color: var(--steel);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.3rem;
  }
  .model-detail h3 { font-size: 1.6rem; font-weight: 900; margin: 0 0 0.4rem; }
  .model-detail .price { color: var(--red); font-weight: 900; font-size: 1.5rem; margin: 0 0 1.4rem; }
  .model-detail .price span { color: var(--steel); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; margin-right: 0.35rem; }

  .spec-group { border: none; border-top: 1px solid var(--line-on-light); padding: 0.9rem 0; }
  .spec-group:last-child { border-bottom: 1px solid var(--line-on-light); }
  .spec-group summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.92rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .spec-group summary::-webkit-details-marker { display: none; }
  .spec-group summary::after { content: "+"; color: var(--red); font-weight: 900; font-size: 1.1rem; }
  .spec-group[open] summary::after { content: "–"; }
  .spec-group ul { list-style: none; margin: 0.8rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
  .spec-group li { font-size: 0.86rem; line-height: 1.4; padding-left: 0.8rem; position: relative; }
  .spec-group li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
  .spec-group li b { font-weight: 500; color: var(--steel); }

  /* GALERIE */
  .gallery-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
  }
  .gallery-grid button {
    padding: 0; border: none; background: none;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
  }
  .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
  .gallery-grid button:hover img { transform: scale(1.06); }
  .gallery-grid button::after {
    content: "";
    position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  }
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10,10,10,0.94);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; object-fit: contain; border-radius: 2px; }
  .lightbox-close {
    position: absolute; top: 1.3rem; right: 1.5rem;
    background: none; border: 2px solid var(--paper); color: var(--paper);
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 1.1rem; line-height: 1;
  }

  /* LEASING */
  .benefits-list { max-width: 720px; margin: 0 auto; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
  .benefits-list li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    font-size: 0.98rem; line-height: 1.5;
    padding: 0.9rem 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line-on-light);
    border-radius: 3px;
  }
  .benefits-list li .check {
    flex: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 900;
    margin-top: 0.1rem;
  }
  .partner-row { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; align-items: center; }
  .partner-chip {
    height: 52px;
    padding: 0 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-on-light);
    border-radius: 3px;
    background: var(--paper);
  }
  .partner-chip svg, .partner-chip img { height: 20px; width: auto; display: block; }
  .partner-chip.is-mono svg, .partner-chip.is-mono img {
    filter: grayscale(1) contrast(0) brightness(0.4);
    opacity: 0.8;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
  .partner-chip.is-mono:hover svg, .partner-chip.is-mono:hover img { filter: none; opacity: 1; }
  .partner-chip.is-flat {
    padding: 0;
    border: none;
    border-radius: 3px;
    overflow: hidden;
  }
  .partner-chip.is-flat svg { height: 52px; }
  /* Leasingpartner-Karten mit Rechner-Link */
  .partner-cards {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  .partner-card {
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.4rem 1.1rem 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line-on-light); border-radius: 3px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .partner-card:hover { border-color: var(--red); box-shadow: 0 16px 34px -20px rgba(10,10,10,0.35); transform: translateY(-3px); }
  .partner-card__logo { display: flex; align-items: center; justify-content: center; min-height: 34px; width: 100%; }
  .partner-card__logo svg, .partner-card__logo img {
    height: 22px; width: auto; max-width: 100%; display: block;
    filter: grayscale(1) contrast(0) brightness(0.4); opacity: 0.85;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
  .partner-card:hover .partner-card__logo svg, .partner-card:hover .partner-card__logo img { filter: none; opacity: 1; }
  .partner-card.is-flat .partner-card__logo svg { height: 34px; filter: none; opacity: 1; border-radius: 2px; }
  .partner-card__cta {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--red); display: inline-flex; align-items: center; gap: 0.3rem;
  }
  .partner-card__cta::after { content: "97"; transition: transform 0.15s ease; }
  .partner-card:hover .partner-card__cta::after { transform: translate(2px, -2px); }

  .leasing-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; margin-top: 2.2rem; }

  /* KONTAKT */
  .kontakt-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }
  .kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
  .field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 0.4rem;
  }
  .field input, .field textarea {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
    border: 2px solid var(--line-on-light);
    border-radius: 2px;
    background: var(--paper);
    color: var(--ink);
  }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--red); }
  .field textarea { resize: vertical; min-height: 120px; }
  .kontakt-form button { align-self: flex-start; }
  .kontakt-form button:disabled { opacity: 0.6; cursor: default; }
  .form-feedback {
    display: none;
    margin-top: 0.6rem;
    padding: 0.8rem 1rem;
    background: var(--paper-warm);
    border-left: 3px solid var(--red);
    font-size: 0.86rem;
  }
  .form-feedback.show { display: block; }
  .form-feedback.is-error { background: #fdecea; border-left-color: #b3261e; color: #7a1f18; }
  .info-card {
    background: var(--ink);
    color: var(--paper);
    padding: 1.8rem;
    border-radius: 3px;
  }
  .info-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red); }
  .info-card .row { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1.1rem; }
  .info-card .row:last-child { margin-bottom: 0; }
  .info-card .row .lbl { color: var(--steel); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
  .info-card .row a, .info-card .row span.val { color: var(--paper); font-size: 0.95rem; }
  .info-card .row a:hover { color: var(--red); }

  /* LEGAL PAGES */
  .legal {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 0.95rem;
  }
  .legal h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2.2rem 0 0.7rem;
  }
  .legal h2:first-child { margin-top: 0; }
  .legal p { margin: 0 0 0.9rem; }
  .legal a { color: var(--red); text-decoration: underline; }
  .legal-note {
    background: var(--paper-warm);
    border-left: 3px solid var(--red);
    padding: 0.9rem 1.1rem;
    font-size: 0.85rem;
    color: var(--ink);
    margin: 0 0 2.4rem;
  }
  .legal-todo { color: var(--red); font-weight: 700; }

  /* ANIMATIONEN */
  @keyframes stech-rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
  }

  /* Hero: gestaffelter Auftritt beim Laden */
  .hero-inner > * { animation: stech-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  .hero-inner > .eyebrow     { animation-delay: 0.05s; }
  .hero-inner > .hero-amflow { animation-delay: 0.14s; }
  .hero-inner > h1           { animation-delay: 0.24s; }
  .hero-inner > p.sub        { animation-delay: 0.36s; }
  .hero-inner > .cta-row     { animation-delay: 0.48s; }

  /* Scroll-Reveal: Elemente erscheinen beim Hereinscrollen.
     Nur aktiv wenn JS läuft (.js) — ohne JS bleibt alles normal sichtbar. */
  .js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .reveal-group > * { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
  .js .reveal-group.is-visible > * { opacity: 1; transform: none; }
  .js .reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s; }
  .js .reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
  .js .reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.20s; }
  .js .reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.30s; }
  .js .reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.40s; }
  .js .reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.50s; }

  /* Karten-Hover etwas ausgeprägter */
  .model-card { transition: box-shadow 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease; }
  .model-card:hover { box-shadow: 0 26px 55px -28px rgba(10,10,10,0.45); transform: translateY(-6px); border-color: var(--red); }
  .model-card .thumb img { transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
  .model-card:hover .thumb img { transform: scale(1.06); }

  /* Trust-Items: roter Akzent wandert beim Hover ein */
  .trust-item { position: relative; overflow: hidden; }
  .trust-item::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .trust-item:hover::after { transform: scaleX(1); }

  /* Für Nutzer, die reduzierte Bewegung eingestellt haben: alles ruhig stellen */
  @media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
    .hero-inner > *, .js .reveal, .js .reveal-group > * { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
    .model-card, .model-card .thumb img, .trust-item::after { transition: none !important; }
  }

  /* COOKIE BANNER */
  .cookie-banner {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: var(--ink);
    border-top: 3px solid var(--red);
    padding: 1.1rem clamp(1.25rem, 4vw, 2rem);
  }
  .cookie-banner.show { display: block; }
  .cookie-banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    justify-content: space-between;
  }
  .cookie-banner p {
    color: #d8d6d2;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    max-width: 62ch;
  }
  .cookie-banner p a { color: var(--paper); text-decoration: underline; }
  .cookie-banner-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
  .cookie-banner .btn { padding: 0.7rem 1.3rem; font-size: 0.8rem; }

  @media (max-width: 760px) {
    header.site { flex-wrap: wrap; row-gap: 0; }
    .nav-toggle { display: block; }
    nav.main {
      flex-basis: 100%;
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    nav.main.is-open { max-height: 420px; }
    nav.main a {
      padding: 0.95rem 0.2rem;
      border-bottom: 1px solid var(--steel-line);
      font-size: 0.95rem;
    }
    nav.main a:first-child { border-top: 1px solid var(--steel-line); margin-top: 0.9rem; }
    nav.main a:hover, nav.main a.active { border-bottom-color: var(--red); }
    .trust { grid-template-columns: 1fr; }
    .trust-item { border-left: none; border-top: 1px solid var(--steel-line); }
    .trust-item:first-child { border-top: none; }
    .process-grid { grid-template-columns: 1fr; gap: 2rem; }
    .model-panel { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .kontakt-grid { grid-template-columns: 1fr; }
  }