/* ==========================================================================
   Motorradsport Krahl & Kroschel – Landingpage
   Gestaltung angelehnt an die KTM-CI: Schwarz, KTM-Orange, kantige Formen.
   ========================================================================== */

/* ---------------------------------------------------------------- Schriften */
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-700-italic.woff2") format("woff2"); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-800-italic.woff2") format("woff2"); font-weight: 800; font-style: italic; font-display: swap; }

/* ------------------------------------------------------------------- Tokens */
:root {
  --orange: #ff6600;
  --orange-hover: #ff7d24;
  --orange-auf-hell: #e65c00;   /* große Schrift auf Weiß */
  --orange-text: #c24e00;       /* kleine Schrift auf Weiß */
  --schwarz: #0a0a0a;
  --karbon: #141414;
  --grafit: #1d1d1d;
  --linie-dunkel: rgba(255, 255, 255, 0.1);
  --linie-hell: #e3e3e1;
  --papier: #ffffff;
  --grau: #efefed;
  --text-hell: #f5f5f5;
  --gedaempft-dunkel: #a8a8a8;
  --text-dunkel: #111111;
  --gedaempft-hell: #5a5a5a;

  --husqvarna: #10305c;
  --husqvarna-akzent: #ffd200;
  --gasgas: #e2001a;

  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(80px, 10vw, 140px);
  --header-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --schnitt: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--schwarz);
  color: var(--text-hell);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-offen { overflow: hidden; }

[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flip { transform: scaleX(-1); }

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

::selection { background: var(--orange); color: #000; }

/* ------------------------------------------------------------------ Buttons */
.btn {
  --btn-bg: transparent;
  --btn-rand: transparent;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.8em 1.6em;
  border: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-bg);
  border: 2px solid var(--btn-rand);
  transform: skewX(-12deg);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn .icon { transition: transform 0.3s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

.btn-lg { font-size: 1.15rem; padding: 0.95em 1.9em; }

.btn-primary { --btn-bg: var(--orange); color: #000; }
.btn-primary:hover { --btn-bg: #fff; }

.btn-ghost { --btn-rand: rgba(255, 255, 255, 0.35); color: #fff; }
.btn-ghost:hover { --btn-rand: var(--orange); color: var(--orange); }

.btn-dark { --btn-bg: var(--text-dunkel); color: #fff; }
.btn-dark:hover { --btn-bg: var(--orange); color: #000; }

/* ---------------------------------------------------------------- Typografie */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  flex-shrink: 0;
  background: var(--orange);
  transform: skewX(-20deg);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.accent { color: var(--orange); }

.section-lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1.1rem;
}

/* ---------------------------------------------------------------- Sektionen */
.section { position: relative; padding-block: var(--section-y); }

.section-dark { background: var(--schwarz); color: var(--text-hell); }
.section-dark .section-lead { color: var(--gedaempft-dunkel); }

.section-light { background: var(--papier); color: var(--text-dunkel); }
.section-grey { background: var(--grau); color: var(--text-dunkel); }
.section-light .eyebrow, .section-grey .eyebrow { color: var(--orange-text); }
.section-light .accent, .section-grey .accent { color: var(--orange-auf-hell); }
.section-light .section-lead, .section-grey .section-lead { color: var(--gedaempft-hell); }

.section-head { max-width: 860px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head-split { display: grid; gap: 24px; max-width: none; align-items: end; }

@media (min-width: 960px) {
  .section-head-split { grid-template-columns: 1.25fr 1fr; gap: 72px; }
}

/* ------------------------------------------------------------------- Topbar */
.topbar {
  background: #000;
  color: var(--gedaempft-dunkel);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--linie-dunkel);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.topbar p { margin: 0; display: flex; align-items: center; gap: 10px; }
.topbar-links { gap: 24px !important; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar .icon { color: var(--orange); width: 14px; height: 14px; }

.status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #6f6f6f;
}
[data-offen="true"] .status-dot { background: #27c565; box-shadow: 0 0 0 3px rgba(39, 197, 101, 0.22); }
[data-offen="false"] .status-dot { background: #ff4d4d; box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.2); }

.status-kurz { display: none; }

@media (max-width: 639px) {
  .hide-sm { display: none !important; }
  .topbar-status .status-text { display: none; }
  .topbar-status .status-kurz { display: inline; }
}

/* ------------------------------------------------------------------- Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  transition: background-color 0.3s;
}
.header.is-scrolled { border-color: var(--linie-dunkel); }
.header.is-scrolled::before { background: rgba(10, 10, 10, 0.95); }

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  height: 44px;
  padding: 0 13px 0 11px;
  background: var(--orange);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-text small {
  display: block;
  margin-top: 5px;
  color: var(--gedaempft-dunkel);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-list { display: flex; gap: 34px; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  position: relative;
  display: inline-block;
  padding-block: 6px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0) skewX(-20deg);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-list a:hover, .nav-list a.is-active { color: var(--orange); }
.nav-list a:hover::after, .nav-list a.is-active::after { transform: scaleX(1) skewX(-20deg); }

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: -8px;
  border: 0;
  background: none;
  cursor: pointer;
}
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1100px) {
  .nav { display: flex; align-items: center; gap: 40px; }
}

@media (max-width: 1099px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: calc(var(--nav-oben, var(--header-h)) + 28px) var(--gutter) 40px;
    background: var(--schwarz);
    background-image: linear-gradient(115deg, transparent 62%, rgba(255, 102, 0, 0.9) 62%, rgba(255, 102, 0, 0.9) 64%, transparent 64%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
    overflow-y: auto;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list a {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .nav-list a::after { height: 5px; bottom: 8px; }
  .nav-cta { align-self: flex-start; }
}

@media (max-width: 420px) {
  .logo { gap: 10px; }
  .logo-mark { height: 38px; font-size: 1.25rem; }
  .logo-text strong { font-size: 1.2rem; }
  .logo-text small { font-size: 0.6rem; letter-spacing: 0.14em; }
}

/* --------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(56px, 8vw, 112px) clamp(88px, 10vw, 150px);
  background: var(--schwarz);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 78% 45%, rgba(255, 102, 0, 0.22), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 96px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-slash { position: absolute; transform: skewX(-14deg); }
.hero-slash-1 {
  top: -10%;
  right: -16%;
  width: 44%;
  height: 120%;
  background: linear-gradient(160deg, #ff7417 0%, var(--orange) 45%, #e65200 100%);
}
.hero-slash-2 {
  top: -10%;
  right: 31%;
  width: 18px;
  height: 120%;
  background: var(--orange);
  opacity: 0.85;
}

.hero-outline {
  position: absolute;
  left: -1vw;
  bottom: -0.2em;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 17rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
}

.hero-grid { position: relative; display: grid; gap: 56px; align-items: center; }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 72px; }
}

@media (max-width: 1023px) {
  .hero-slash-1 { top: auto; bottom: -8%; right: -30%; width: 95%; height: 52%; }
  .hero-slash-2 { top: auto; bottom: -8%; right: 68%; height: 52%; width: 12px; }
}

.hero-title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 9.2vw, 7.6rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero-title .line, .hero-title .accent { display: block; }

.hero-lead {
  max-width: 54ch;
  margin: 0 0 36px;
  color: #cfcfcf;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-bottom: 44px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bdbdbd;
  font-size: 0.95rem;
}
.hero-facts li { display: flex; align-items: center; gap: 10px; }
.hero-facts .icon { color: var(--orange); }
.hero-facts a { text-decoration: none; }
.hero-facts a:hover { color: var(--orange); }

@media (max-width: 479px) {
  .hero-actions .btn { width: 100%; }
}

/* Showcase „Neu im Bestand“ */
.showcase {
  position: relative;
  padding: 18px 18px 22px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.85);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--schnitt)), calc(100% - var(--schnitt)) 100%, 0 100%);
}

.showcase-head { display: flex; align-items: center; justify-content: space-between; min-height: 40px; margin-bottom: 14px; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  animation: puls 2s infinite;
}
@keyframes puls {
  0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.showcase-nav { display: flex; gap: 8px; }
.showcase-nav[hidden] { display: none; }
.showcase-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.showcase-btn:hover { background: var(--orange); border-color: var(--orange); color: #000; }

.showcase-stage { display: grid; }
.showcase-stage > * { grid-area: 1 / 1; }

.slide {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
.slide.is-active { opacity: 1; visibility: visible; transition: opacity 0.6s var(--ease); }

.slide-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--grafit); }
.slide-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 6.5s linear; }
.slide.is-active .slide-media img { transform: scale(1); }

.slide-body { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 18px; }
.slide-title {
  display: -webkit-box;
  min-height: 2.1em;
  margin: 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.slide-meta { display: block; margin-top: 6px; color: var(--gedaempft-dunkel); font-size: 0.85rem; letter-spacing: 0.04em; }
.slide-price {
  flex-shrink: 0;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}
.slide:hover .slide-title { color: var(--orange); }

.showcase-progress { height: 3px; margin-top: 18px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.showcase-progress span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.showcase-progress span.is-running { animation: fortschritt var(--dauer, 6s) linear forwards; }
.showcase:hover .showcase-progress span.is-running,
.showcase:focus-within .showcase-progress span.is-running { animation-play-state: paused; }
@keyframes fortschritt { to { transform: scaleX(1); } }

.showcase-fallback {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3.4;
  padding: 32px;
  text-align: center;
  background: repeating-linear-gradient(115deg, #151515 0 22px, #111 22px 44px);
}
.showcase-fallback strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}
.showcase-fallback span { display: block; margin: 12px 0 24px; color: var(--gedaempft-dunkel); }

/* ------------------------------------------------------------------ Skeleton */
.skeleton {
  display: block;
  background: linear-gradient(90deg, #e3e3e1 25%, #f1f1ef 50%, #e3e3e1 75%);
  background-size: 200% 100%;
  animation: schimmer 1.4s ease-in-out infinite;
}
.showcase .skeleton { background-image: linear-gradient(90deg, #1b1b1b 25%, #262626 50%, #1b1b1b 75%); }
@keyframes schimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.showcase-skeleton-img { aspect-ratio: 4 / 3; margin-bottom: 18px; }
.skeleton-line { height: 16px; margin-top: 10px; }
.vehicle .skeleton-line { margin-inline: 20px; }
.w-80 { width: 72%; }
.w-70 { width: 70%; }
.w-40 { width: 40%; }

/* -------------------------------------------------------------------- Zahlen */
.stats {
  position: relative;
  z-index: 2;
  margin-block: -30px;
  padding-block: 64px;
  background: var(--orange);
  color: #000;
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 8px; padding-left: 18px; border-left: 3px solid rgba(0, 0, 0, 0.85); }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.stat-value small { margin-left: 4px; font-size: 0.5em; }
.stat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; line-height: 1.3; text-transform: uppercase; overflow-wrap: anywhere; }

@media (max-width: 479px) {
  .stat { padding-left: 12px; }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.05em; }
}

/* ------------------------------------------------------------------ Über uns */
.about { padding-top: calc(var(--section-y) + 30px); }
.about-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 96px; align-items: center; }
}

.about-copy .section-title { margin-bottom: 36px; }
.prose p { max-width: 62ch; margin: 0 0 1.2em; color: #3b3b3b; font-size: 1.1rem; }
.prose strong { color: var(--text-dunkel); }

.signature { display: flex; align-items: center; gap: 18px; margin-top: 40px; }
.signature-bar { width: 7px; height: 52px; background: var(--orange); transform: skewX(-14deg); }
.signature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
}
.signature span { color: var(--gedaempft-hell); font-size: 0.95rem; }

.partner-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  background: var(--schwarz);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - var(--schnitt)) 0, 100% var(--schnitt), 100% 100%, 0 100%);
}
.partner-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 200px;
  height: 140px;
  background: repeating-linear-gradient(115deg, rgba(255, 102, 0, 0.9) 0 6px, transparent 6px 18px);
  opacity: 0.35;
}
.partner-kicker, .partner-more-label {
  margin: 0 0 20px;
  color: var(--gedaempft-dunkel);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.partner-brands { display: grid; gap: 12px; margin: 0 0 36px; padding: 0; list-style: none; }
.partner-brand {
  --marke: var(--orange);
  --marke-text: #000;
  --marke-balken: var(--marke);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 20px 22px 20px 30px;
  border: 1px solid var(--linie-dunkel);
  text-decoration: none;
  transition: color 0.35s var(--ease), border-color 0.35s;
}
.partner-brand::before {
  content: "";
  position: absolute;
  inset: 0 -20px;
  z-index: -1;
  background: var(--marke);
  transform: translateX(-102%) skewX(-12deg);
  transition: transform 0.45s var(--ease);
}
.partner-brand::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--marke-balken);
}
.partner-brand span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.partner-brand small {
  color: var(--gedaempft-dunkel);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.35s;
}
.partner-brand:hover { color: var(--marke-text); border-color: var(--marke); }
.partner-brand:hover::before { transform: translateX(0) skewX(-12deg); }
.partner-brand:hover small { color: inherit; }

.brand-husqvarna { --marke: var(--husqvarna); --marke-text: #fff; --marke-balken: var(--husqvarna-akzent); }
.brand-gasgas { --marke: var(--gasgas); --marke-text: #fff; }

.partner-more {
  margin: 0;
  color: #e4e4e4;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------- Leistungen */
.service-grid {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--linie-dunkel);
  border: 1px solid var(--linie-dunkel);
  counter-reset: leistung;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.service {
  position: relative;
  padding: clamp(32px, 3.4vw, 48px) clamp(24px, 3vw, 40px);
  background: var(--schwarz);
  counter-increment: leistung;
  transition: background-color 0.35s;
}
.service::before {
  content: counter(leistung, decimal-leading-zero);
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  font-style: italic;
}
.service::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service:hover { background: var(--karbon); }
.service:hover::after { transform: scaleX(1); }

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  background: rgba(255, 102, 0, 0.12);
  color: var(--orange);
  transform: skewX(-10deg);
  transition: background-color 0.35s, color 0.35s;
}
.service-icon .icon { width: 28px; height: 28px; transform: skewX(10deg); }
.service:hover .service-icon { background: var(--orange); color: #000; }

.service h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}
.service p { margin: 0; color: var(--gedaempft-dunkel); }

/* ----------------------------------------------------------------- Fahrzeuge */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--papier);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  background: var(--grau);
  color: var(--text-dunkel);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--text-dunkel); }
.chip[aria-pressed="true"] { background: var(--text-dunkel); border-color: var(--text-dunkel); color: #fff; }
.chip-ktm[aria-pressed="true"] { background: var(--orange); border-color: var(--orange); color: #000; }
.chip-husqvarna[aria-pressed="true"] { background: var(--husqvarna); border-color: var(--husqvarna); }
.chip-gasgas[aria-pressed="true"] { background: var(--gasgas); border-color: var(--gasgas); }
.chip-count { font-size: 0.82rem; font-weight: 600; opacity: 0.6; }
.chip-count:empty { display: none; }

.toolbar-controls { display: flex; flex: 1 1 360px; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.search { position: relative; flex: 1 1 220px; max-width: 340px; }
.search .icon { position: absolute; left: 14px; top: 50%; color: #777; transform: translateY(-50%); pointer-events: none; }
.search input,
.select select {
  width: 100%;
  height: 46px;
  border: 1px solid #d4d4d2;
  border-radius: 0;
  background-color: #fff;
  color: var(--text-dunkel);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search input { padding: 0 14px 0 42px; -webkit-appearance: none; appearance: none; }
.select select {
  padding: 0 42px 0 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.search input:focus, .select select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.25); }

@media (max-width: 719px) {
  .toolbar { padding: 12px; }
  .chips {
    flex-wrap: nowrap;
    width: calc(100% + 24px);
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip { scroll-snap-align: start; }
  .toolbar-controls { flex-basis: 100%; }
  .search, .select { flex: 1 1 100%; max-width: none; }
}

.results-info { min-height: 1.6em; margin: 0 0 20px; color: var(--gedaempft-hell); font-size: 0.95rem; }
.results-info strong { color: var(--text-dunkel); }

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vehicle {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--papier);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.vehicle.is-new { animation: einblenden 0.5s var(--ease) both; }
@keyframes einblenden { from { opacity: 0; transform: translateY(16px); } }

.vehicle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.vehicle:not(.vehicle-skeleton):hover { transform: translateY(-6px); box-shadow: 0 28px 50px -22px rgba(0, 0, 0, 0.35); }
.vehicle:hover::after, .vehicle:focus-within::after { transform: scaleX(1); }
.vehicle-skeleton { padding-bottom: 22px; }
.vehicle-skeleton-img { aspect-ratio: 4 / 3; margin-bottom: 20px; }

.vehicle-link { display: flex; flex: 1; flex-direction: column; color: inherit; text-decoration: none; }
.vehicle-link:focus-visible { outline-offset: -3px; }

.vehicle-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e2e2e0; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.vehicle:hover .vehicle-media img { transform: scale(1.05); }

.media-platzhalter {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: repeating-linear-gradient(115deg, #e4e4e2 0 16px, #ebebe9 16px 32px);
  color: #9a9a98;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.media-platzhalter .icon { width: 56px; height: 56px; stroke-width: 1.5; }
.slide-media .media-platzhalter { background: repeating-linear-gradient(115deg, #181818 0 16px, #1d1d1d 16px 32px); color: #5c5c5c; }

.vehicle-brand {
  position: absolute;
  top: 14px;
  left: 0;
  padding: 6px 18px 6px 12px;
  background: var(--text-dunkel);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}
.vehicle-brand[data-marke="KTM"] { background: var(--orange); color: #000; }
.vehicle-brand[data-marke="Husqvarna"] { background: var(--husqvarna); box-shadow: inset 4px 0 0 var(--husqvarna-akzent); }
.vehicle-brand[data-marke="GasGas"] { background: var(--gasgas); }

.vehicle-badges { position: absolute; top: 14px; right: 12px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; max-width: 55%; }
.badge {
  padding: 4px 8px;
  background: rgba(10, 10, 10, 0.82);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}
.badge-neu { background: #fff; color: var(--text-dunkel); }
.badge-angebot { background: var(--orange); color: #000; }

.vehicle-photos {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.vehicle-photos .icon { width: 14px; height: 14px; }

.vehicle-body { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 18px 20px 20px; }
.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin: 0;
  color: #707070;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vehicle-meta span + span::before { content: "/"; margin-right: 14px; color: #c9c9c9; }
.vehicle-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.vehicle-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #ececea;
}
.vehicle-price {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}
.vehicle-price small { margin-left: 4px; color: var(--gedaempft-hell); font-size: 0.55em; font-style: normal; }
.vehicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vehicle-cta .icon { transition: transform 0.3s var(--ease); }
.vehicle:hover .vehicle-cta .icon { transform: translateX(4px); }

.empty-state {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(32px, 5vw, 56px);
  background: var(--papier);
  text-align: center;
}
.empty-state[hidden] { display: none; }
.empty-state p { max-width: 60ch; margin: 0; color: var(--gedaempft-hell); }
.empty-state strong { display: block; margin-bottom: 4px; color: var(--text-dunkel); font-size: 1.1rem; }

.vehicles-footer { display: grid; justify-items: center; gap: 28px; margin-top: 48px; text-align: center; }
.vehicles-footer [hidden] { display: none; }
.vehicles-note { max-width: 82ch; margin: 0; color: var(--gedaempft-hell); font-size: 0.85rem; }
.vehicles-note a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange-text);
  font-weight: 600;
  text-decoration: none;
}
.vehicles-note a:hover { text-decoration: underline; }
.vehicles-note .icon { width: 14px; height: 14px; }

/* ------------------------------------------------------------------ Webshops */
.shop-grid { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 900px) { .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.shop-grid > li { display: flex; }

.shop {
  --shop-bg: var(--orange);
  --shop-text: #000;
  --cta-bg: #000;
  --cta-text: #fff;
  position: relative;
  isolation: isolate;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: clamp(340px, 34vw, 440px);
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px);
  background: var(--shop-bg);
  color: var(--shop-text);
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--schnitt)), calc(100% - var(--schnitt)) 100%, 0 100%);
  transition: transform 0.45s var(--ease);
}
.shop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.05) 0 2px, transparent 2px 22px);
}
.shop::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -55%;
  z-index: -1;
  width: 90%;
  height: 140%;
  background: rgba(0, 0, 0, 0.14);
  transform: skewX(-14deg) translateX(30%);
  transition: transform 0.6s var(--ease);
}
.shop:hover { transform: translateY(-8px); }
.shop:hover::after { transform: skewX(-14deg) translateX(0); }

.shop-husqvarna { --shop-bg: var(--husqvarna); --shop-text: #fff; --cta-bg: var(--husqvarna-akzent); --cta-text: #000; }
.shop-husqvarna::before { background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 22px); }
.shop-gasgas { --shop-bg: var(--gasgas); --shop-text: #fff; --cta-bg: #fff; --cta-text: #000; }

.shop-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.shop-domain {
  margin-top: auto;
  padding-top: 40px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}
.shop-text { max-width: 34ch; margin-top: 8px; opacity: 0.88; }
.shop-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 22px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.shop-cta .icon { transition: transform 0.3s var(--ease); }
.shop:hover .shop-cta .icon { transform: translateX(4px); }

.benefits {
  display: grid;
  gap: 1px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  background: var(--linie-dunkel);
  border: 1px solid var(--linie-dunkel);
}
@media (min-width: 640px) { .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.benefits li { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--schwarz); color: var(--gedaempft-dunkel); line-height: 1.35; }
.benefits .icon { width: 30px; height: 30px; color: var(--orange); }
.benefits strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.footnote { margin: 16px 0 0; color: #7a7a7a; font-size: 0.8rem; }

/* ------------------------------------------------------------------- Kontakt */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 96px; align-items: center; } }

.contact-list { display: grid; margin: 44px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--linie-hell); font-size: 1.05rem; }
.contact-list li:first-child { border-top: 1px solid var(--linie-hell); }
.contact-list .icon { width: 24px; height: 24px; margin-top: 3px; color: var(--orange-auf-hell); }
.contact-label {
  display: block;
  margin-bottom: 2px;
  color: #767676;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-list a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--orange-auf-hell); }

.hours-card {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  background: var(--schwarz);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--schnitt)), calc(100% - var(--schnitt)) 100%, 0 100%);
}
.hours-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;
  background: var(--orange);
}
.hours-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.hours-head > .icon { width: 44px; height: 44px; color: var(--orange); }
.hours-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}
.hours-status { display: flex; align-items: center; gap: 10px; margin: 6px 0 0; color: #c4c4c4; font-size: 0.95rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-weight: 500; text-align: left; }
.hours-table td { color: #cfcfcf; font-variant-numeric: tabular-nums; text-align: right; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--orange); font-weight: 700; }
.hours-table tr.is-today th::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 3px;
  margin-right: 10px;
  background: var(--orange);
  vertical-align: middle;
  transform: skewX(-20deg);
}
.hours-actions { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 34px; }

@media (max-width: 479px) {
  .hours-table th, .hours-table td { font-size: 0.92rem; }
  .hours-actions .btn { flex: 1 1 100%; }
}

/* -------------------------------------------------------------------- Footer */
.footer { padding-top: clamp(64px, 8vw, 104px); background: #000; color: #9a9a9a; font-size: 0.95rem; }
.footer-grid { display: grid; gap: 44px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; } }

.footer-brand p { max-width: 38ch; margin: 22px 0 24px; }
.footer .logo-text strong { color: #fff; }

.social { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.social a:hover { background: var(--orange); border-color: var(--orange); color: #000; }
.social .icon { width: 20px; height: 20px; }

.footer-col h2 {
  margin: 4px 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer a { text-decoration: none; transition: color 0.2s; }
.footer-col a:hover, .footer-legal a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 32px;
  margin-top: 64px;
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-trademark { flex-basis: 100%; color: #6a6a6a; font-size: 0.78rem; }
.footer-kompakt { padding-top: 0; }
.footer-kompakt .footer-bottom { margin-top: 0; border-top: 0; }

/* ---------------------------------------------------------- Rechtliche Seiten */
.legal-hero { padding-block: clamp(56px, 8vw, 96px) clamp(40px, 5vw, 64px); background: var(--schwarz); border-bottom: 6px solid var(--orange); }
.legal-hero .section-title { font-size: clamp(2.8rem, 7vw, 5rem); }
.legal { padding-block: clamp(48px, 7vw, 96px); background: var(--papier); color: var(--text-dunkel); }
.legal-content { max-width: 780px; }
.legal-content h2 {
  margin: 2.2em 0 0.6em;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 1.6em 0 0.4em; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: #3b3b3b; }
.legal-content a { color: var(--orange-text); font-weight: 600; }
.legal-content ul { padding-left: 1.2em; }

@media (max-width: 479px) {
  .legal-page-header .btn { padding: 0.7em 1.1em; font-size: 0.95rem; }
  .legal-page-header .logo-text { display: none; }
}

/* ------------------------------------------------------------- Animationen */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--verzoegerung, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .slide-media img { transform: none !important; }
}
