/* ============================================================
   AUTO MOTIV GMBH · AMRISWIL
   Design language inspired by Swiss luxury aesthetics
   Cream / Ink / Signal Red · DM Sans (self-hosted, variable)
   ============================================================ */

/* DM Sans variable (latin) — self-hosted: kein externer Request, DSG-freundlich */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dm-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #FAF9F6;
  --cream-soft: #F3F1EC;
  --ink: #1A1A1A;
  --ink-soft: #4A4A46;
  --black: #0E0E0C;
  --black-2: #161614;
  --red: #D0202E;
  --white: #FFFFFF;
  --line: rgba(26, 26, 26, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --font: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body.no-scroll { overflow: hidden; }

::selection { background: var(--red); color: var(--white); }

img { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.45); }

.display {
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.display .muted { color: rgba(26, 26, 26, 0.35); }
.display--light .muted { color: rgba(255, 255, 255, 0.45); }

.lead {
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 34em;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__logo {
  width: clamp(180px, 22vw, 250px);
  animation: preloadPulse 1.6s ease-in-out infinite;
}

@keyframes preloadPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  transition: background 0.2s ease, opacity 0.15s ease, width 0.15s ease, height 0.15s ease;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: width 0.25s var(--ease-spring), height 0.25s var(--ease-spring),
              border-color 0.2s ease, opacity 0.15s ease;
}

.cursor-dot.is-active,
.cursor-ring.is-active { opacity: 1; }

.cursor-dot.is-on-light { background: var(--ink); }
.cursor-ring.is-on-light { border-color: rgba(26, 26, 26, 0.4); }

.cursor-dot.is-hover { width: 5px; height: 5px; }
.cursor-ring.is-hover { width: 56px; height: 56px; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.4s var(--ease-out), background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-stuck {
  background: rgba(250, 249, 246, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-hidden-up { transform: translateY(-110%); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
  padding-inline: var(--gutter);
  transition: height 0.35s ease;
}

.site-header.is-stuck .site-header__inner { height: 4.25rem; }

.brand { display: inline-flex; align-items: center; }

.brand svg,
.brand img {
  height: clamp(2.4rem, 4.5vw, 3.1rem);
  width: auto;
  transition: height 0.35s ease;
}

.site-header.is-stuck .brand svg,
.site-header.is-stuck .brand img { height: 2.5rem; }

/* Header swaps to dark logo when sticky (cream bg) */
.brand .logo-dark { display: none; }
.site-header.is-stuck .brand .logo-light { display: none; }
.site-header.is-stuck .brand .logo-dark { display: block; }

/* Main nav */
.main-nav { display: none; }

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.75rem, 3vw, 3rem);
    margin-left: auto;
    margin-right: clamp(1.5rem, 3vw, 3rem);
  }

  .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.5rem 0;
    transition: color 0.25s ease;
  }

  .site-header.is-stuck .nav-link { color: var(--ink); }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease-out);
  }

  .nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
}

/* Header actions pill */
.header-pill {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(14, 14, 12, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-stuck .header-pill {
  border-color: var(--line);
  background: rgba(250, 249, 246, 0.6);
}

.header-pill__phone {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

@media (min-width: 640px) { .header-pill__phone { display: inline-block; } }
.site-header.is-stuck .header-pill__phone { color: var(--ink); }

.pill-divider { width: 1px; height: 1.15rem; background: rgba(255, 255, 255, 0.28); transition: background 0.3s ease; }
.site-header.is-stuck .pill-divider { background: var(--line); }

.burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 26px; height: 20px; }

.burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease, background 0.3s ease;
}

.site-header.is-stuck .burger span { background: var(--ink); }

.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem) var(--gutter) clamp(2rem, 5vw, 3.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.menu-overlay.is-open { opacity: 1; visibility: visible; }

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-overlay__top .brand svg { height: 2.6rem; }

.menu-close {
  padding: 0.75rem 0 0.75rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.menu-close:hover { color: var(--white); }

.menu-overlay__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 3rem;
  padding-block: 2rem;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .menu-overlay__body { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

.menu-nav { display: flex; flex-direction: column; }

.menu-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: clamp(0.6rem, 1.6vh, 1.1rem) 0;
  font-size: clamp(2rem, 5.5vh, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease, transform 0.4s var(--ease-out);
  transform: translateY(24px);
  opacity: 0;
}

.menu-overlay.is-open .menu-nav a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: calc(0.06s * var(--i) + 0.15s);
}

.menu-nav a:hover { color: var(--white); transform: translateX(8px); }

.menu-nav a .idx {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
}

.menu-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .menu-aside { border-top: 0; border-left: 1px solid var(--line-dark); padding-top: 0; padding-left: 3rem; }
}

.menu-aside__label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.menu-aside__links { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 300; font-size: 1.05rem; }
.menu-aside__links a { color: rgba(255, 255, 255, 0.85); transition: color 0.25s ease; }
.menu-aside__links a:hover { color: var(--white); }

.menu-scout {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  align-self: flex-start;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.menu-scout:hover { background: var(--red); border-color: var(--red); }

.menu-overlay__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.menu-overlay__foot a:hover { color: var(--white); }

/* ============================================================
   HERO — fixed fullscreen
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__media { position: absolute; inset: 0; }

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease-out) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14, 14, 12, 0.55) 0%, rgba(14, 14, 12, 0.08) 32%, rgba(14, 14, 12, 0.12) 62%, rgba(14, 14, 12, 0.78) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(2rem, 5vh, 3.5rem);
}

.hero__headline h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .line span { display: block; transform: translateY(110%); animation: lineUp 0.9s var(--ease-out) forwards; animation-delay: var(--d, 0.2s); }
.hero__headline .line--muted span { color: rgba(255, 255, 255, 0.45); }

@keyframes lineUp { to { transform: translateY(0); } }

.hero__sub {
  margin-top: 1.1rem;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero rotating car card — “exhibition label” */
.hero-card {
  position: absolute;
  z-index: 20;
  right: var(--gutter);
  bottom: clamp(2rem, 5vh, 3.5rem);
  width: min(320px, calc(100vw - 2 * var(--gutter)));
  padding: 1.4rem 1.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(14, 14, 12, 0.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.8s;
}

.hero-card__slides { position: relative; min-height: 3.6rem; }

.hero-card__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
  pointer-events: none;
}

.hero-card__slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.hero-card__slide h3 { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; }
.hero-card__slide p { margin-top: 0.2rem; font-size: 0.78rem; font-weight: 300; color: rgba(255, 255, 255, 0.55); }

.hero-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-card__cta svg { transition: transform 0.3s var(--ease-out); }
.hero-card__cta:hover svg { transform: translateX(4px); }

.hero-dots { display: flex; gap: 0.45rem; }

.hero-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dots button.is-active { background: var(--red); transform: scale(1.25); }

@media (min-width: 1024px) {
  .hero__content { padding-bottom: 4.5rem; }
  .hero-card { bottom: 4.5rem; }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.scroll-hint:hover { color: var(--white); }

.scroll-hint__line { width: 1px; height: 44px; background: rgba(255, 255, 255, 0.3); overflow: hidden; position: relative; }

.scroll-hint__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2.2s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

.scroll-hint__label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .hero__content { padding-bottom: 15.5rem; }
  .hero-card { bottom: calc(6.25rem + env(safe-area-inset-bottom, 0px)); right: var(--gutter); }
  .hero-dots { display: none; }
  .scroll-hint { display: none; }
}

@media (max-width: 400px) {
  .hero__content { padding-bottom: 16.5rem; }
  .hero-card { padding: 1.1rem 1.15rem 1rem; }
  .hero-card__slides { min-height: 4.3rem; }
  .hero-card__slide h3 { font-size: 0.95rem; }
  .hero-card__slide p { font-size: 0.72rem; }
}

/* Kurze Geräte (Landscape-Handy): Card ausblenden, Hero clean */
@media (max-height: 600px) and (max-width: 1023px) {
  .hero-card { display: none; }
  .hero__content { padding-bottom: 7rem; }
}

/* Hero spacer creates the scroll-over effect */
.hero-spacer { height: 32vh; background: var(--cream); }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  content-visibility: auto;
  contain-intrinsic-size: auto 60rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head .display { max-width: 16em; }

@media (min-width: 1024px) {
  .section-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 3rem; }
  .section-head--split .lead { margin-bottom: 0.5rem; }
}

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   CARS — edge-to-edge grid
   ============================================================ */
.cars { background: var(--cream); }

.cars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .cars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .cars__grid { grid-template-columns: repeat(3, 1fr); }
}

.car-card {
  position: relative;
  padding: 1.25rem clamp(1rem, 2vw, 1.75rem) 1.75rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.4s ease;
}

.car-card:hover { background: var(--white); }

.car-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 10;
  background: var(--black-2);
}

.car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.9s var(--ease-out);
}

.car-card:hover .car-card__media img { transform: scale(1.06); }

.car-card__idx {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(14, 14, 12, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.car-card__badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.car-card__body { display: flex; flex-direction: column; gap: 0.65rem; padding-top: 1.15rem; }

.car-card__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }

.car-card__title-row h3 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; }

.car-card__price { font-size: 1.05rem; font-weight: 500; white-space: nowrap; }

.car-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-soft);
}

.car-card__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.car-card__meta span::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--red); }

.car-card__foot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.car-card__foot svg { transition: transform 0.3s var(--ease-out); }
.car-card:hover .car-card__foot svg { transform: translateX(4px); }

/* Cars footer band */
.cars__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 0 0;
}

.cars__footer p { font-size: 0.8rem; font-weight: 300; color: var(--ink-soft); max-width: 30em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.btn svg { transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--ink); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--red); }

.btn--ghost { border: 1px solid rgba(255, 255, 255, 0.35); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  padding: 1.35rem 0;
  border-block: 1px solid var(--black);
}

.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(250, 249, 246, 0.75);
}

.marquee__item i {
  font-style: normal;
  color: var(--red);
  font-size: 0.55rem;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }

.services__list { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  align-items: start;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease-out);
}

@media (min-width: 900px) {
  .service-row { grid-template-columns: 5rem 1fr 1.2fr auto; align-items: center; gap: 2.5rem; }
}

.service-row:hover { padding-left: 1.25rem; }

.service-row__idx {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
}

.service-row__title { font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 400; letter-spacing: -0.015em; }

.service-row__desc { font-size: 0.92rem; font-weight: 300; color: var(--ink-soft); max-width: 34em; }

.service-row__arrow {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}

@media (min-width: 900px) { .service-row__arrow { display: inline-flex; } }

.service-row:hover .service-row__arrow {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: rotate(-45deg);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--black); color: var(--cream); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about__media:hover img { transform: scale(1.05); }

.about__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(14, 14, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.about .display { color: var(--white); }
.about .display .muted { color: rgba(255, 255, 255, 0.4); }

.about__text p { margin-top: 1.4rem; font-weight: 300; color: rgba(250, 249, 246, 0.65); max-width: 36em; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line-dark);
}

@media (max-width: 560px) {
  .about__stats { grid-template-columns: 1fr; gap: 1.1rem; }
  .stat { display: flex; align-items: baseline; gap: 0.9rem; }
  .stat__num { font-size: 2rem; }
  .stat__label { margin-top: 0; }
}

.stat__num { display: block; font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 400; letter-spacing: -0.02em; color: var(--white); }
.stat__num sup { font-size: 0.5em; color: var(--red); }
.stat__label { display: block; margin-top: 0.35rem; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }

.faq__list {
  border-top: 1px solid var(--line);
  column-gap: 4rem;
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  padding-right: 2.75rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }

.faq-item__icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: background 0.3s ease;
}

.faq-item__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-item__icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] summary { color: var(--ink); }

.faq-item__body { padding: 0 0 1.5rem; }

.faq-item__body p {
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 42em;
  margin-bottom: 0.6rem;
}

.faq-item__body strong { font-weight: 500; color: var(--ink); }

.faq-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.faq-link:hover { text-decoration: underline; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta { position: relative; overflow: hidden; background: var(--black); color: var(--white); }

.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }

.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 14, 12, 0.9) 0%, rgba(14, 14, 12, 0.35) 70%, rgba(14, 14, 12, 0.6) 100%);
}

.cta__inner {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 11vw, 9rem) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: flex-start;
}

.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; }
}

.contact__list { display: flex; flex-direction: column; }

.contact-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 360px) {
  .contact-item { grid-template-columns: 1fr; gap: 0.35rem; padding: 1.2rem 0; }
}

.contact-item dt {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  padding-top: 0.3rem;
}

.contact-item dd { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 400; letter-spacing: -0.01em; }
.contact-item dd a { transition: color 0.25s ease; }
.contact-item dd a:hover { color: var(--red); }
.contact-item dd small { display: block; margin-top: 0.25rem; font-size: 0.8rem; font-weight: 300; color: var(--ink-soft); letter-spacing: 0; }

.contact-hours { display: grid; gap: 0.3rem; font-size: 0.95rem; font-weight: 300; }
.contact-hours div { display: flex; justify-content: space-between; gap: 2rem; max-width: 20rem; }
.contact-hours span:last-child { color: var(--ink-soft); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.field textarea { resize: vertical; min-height: 88px; }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--red); }

.contact-form .btn { align-self: flex-start; }

.form-note { font-size: 0.72rem; font-weight: 300; color: rgba(26, 26, 26, 0.45); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: rgba(250, 249, 246, 0.65); }

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) 3rem;
}

@media (min-width: 1024px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.footer-brand img { height: 3rem; width: auto; filter: brightness(0) invert(1) opacity(0.92); }
/* Red swoosh should stay red: un-invert by layering */
.footer-brand .brand-mark { height: 3.1rem; width: auto; }

.footer-claim { margin-top: 1.25rem; font-weight: 300; font-size: 0.9rem; max-width: 24em; }

.footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 4rem; }

@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.4);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.9rem; font-weight: 300; }
.footer-col a { transition: color 0.25s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--line-dark);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 249, 246, 0.4);
}

.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--white); }

/* Big footer word */
.footer-word {
  overflow: hidden;
  padding: 0 var(--gutter);
}

.footer-word span {
  display: block;
  font-size: clamp(2.55rem, 12vw, 11rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(250, 249, 246, 0.07);
  white-space: nowrap;
  text-align: center;
  user-select: none;
}

/* ============================================================
   SUBPAGE (Impressum / Datenschutz)
   ============================================================ */
.subpage { padding: clamp(9rem, 18vh, 12rem) var(--gutter) clamp(4rem, 9vw, 7rem); }

.subpage h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 400; letter-spacing: -0.02em; margin: 1.25rem 0 3rem; }

.subpage h2 { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(26,26,26,0.45); margin: 2.5rem 0 1rem; }

.subpage p, .subpage li { font-weight: 300; color: var(--ink-soft); max-width: 44em; }
.subpage ul { padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }


/* ============================================================
   SUBPAGES — Page Hero
   ============================================================ */
.page-hero {
  position: relative;
  min-height: min(58svh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,12,.6) 0%, rgba(14,14,12,.18) 45%, rgba(14,14,12,.82) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8.5rem var(--gutter) 3rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.5); transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--red); }
.breadcrumb [aria-current="page"] { color: var(--white); }

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.page-hero h1 .muted { color: rgba(255, 255, 255, 0.45); }

.page-hero__sub {
  margin-top: 1.1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Active nav state */
.nav-link.is-active { color: var(--white); }
.site-header.is-stuck .nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ============================================================
   SUBPAGES — Split Features
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5.5rem); }
  .split--flip .split__media { order: 2; }
}

.split__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black-2);
}

.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.split__media:hover img { transform: scale(1.045); }

.split__title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; margin-top: 1.15rem; }
.split__title .muted { color: rgba(26, 26, 26, 0.35); }

.split__text p { margin-top: 1.25rem; font-weight: 300; color: var(--ink-soft); max-width: 36em; }

.checklist { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.checklist li { display: flex; align-items: baseline; gap: 0.7rem; font-weight: 300; color: var(--ink-soft); }
.checklist li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.split .btn { margin-top: 1.9rem; }

/* ============================================================
   SUBPAGES — Steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  border-top: 1px solid var(--line);
  padding-top: 0.25rem;
}

@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { padding-top: 1.75rem; border-top: 2px solid var(--line); transition: border-color 0.35s ease; }
.step:hover { border-top-color: var(--red); }

.step__idx { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; color: var(--red); }
.step h3 { margin: 0.85rem 0 0.5rem; font-size: 1.25rem; font-weight: 400; letter-spacing: -0.01em; }
.step p { font-size: 0.92rem; font-weight: 300; color: var(--ink-soft); }

/* ============================================================
   SUBPAGES — Values
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 640px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .values { grid-template-columns: repeat(4, 1fr); } }

.value { background: var(--cream); padding: clamp(1.5rem, 3vw, 2.25rem); transition: background 0.35s ease; }
.value:hover { background: var(--white); }

.value__num { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; color: var(--red); }
.value h3 { margin: 0.85rem 0 0.5rem; font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; }
.value p { font-size: 0.9rem; font-weight: 300; color: var(--ink-soft); }

/* ============================================================
   SUBPAGES — Compact CTA & Map
   ============================================================ */
.cta--compact .cta__inner { padding: clamp(3.5rem, 8vw, 6rem) var(--gutter); }

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.map-embed {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 430px);
  border: 0;
  filter: grayscale(1) contrast(1.04);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  right: calc(clamp(1.1rem, 2.5vw, 2rem) + env(safe-area-inset-right, 0px));
  bottom: calc(clamp(1.1rem, 2.5vw, 2rem) + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(14, 14, 12, 0.25);
  transition: transform 0.3s var(--ease-spring), background 0.3s ease, box-shadow 0.3s ease;
}

.wa-float svg { width: 28px; height: 28px; flex-shrink: 0; }

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.4s var(--ease-out) infinite;
  pointer-events: none;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  background: #1FB955;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(14, 14, 12, 0.3);
}

.wa-float__label {
  position: absolute;
  right: calc(100% + 0.9rem);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  box-shadow: 0 4px 16px rgba(14, 14, 12, 0.25);
}

.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; opacity: 0; }
}

/* ============================================================
   MISC
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 1001;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-size: 0.8rem;
  transition: top 0.3s ease;
}

.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
