/* Glanzwerk Becker — Fahrzeugaufbereitung
 * Hallmark · genre: atmospheric · macrostructure: Marquee Hero (home) + photographic/index (inner)
 * theme: custom · vibe "industrial precision, cold, metallic, automotive"
 * display: Archivo · body: Geist · outlier: Geist Mono · nav: scroll-morph bar (N10-lite) · footer: Ft5 statement (reveal)
 * pre-emit critique: P5 H5 E5 S5 R5 V5
 */

/* ============================================================= RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }
body { overflow-x: clip; }
img, picture, video { display: block; max-width: 100%; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:where(h1,h2,h3,h4){ text-wrap: balance; overflow-wrap: anywhere; }
p { text-wrap: pretty; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================================= BASE */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper-0);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: var(--text-display); font-weight: 800; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); letter-spacing: -0.02em; }

strong { font-weight: 600; color: var(--ink); }

/* mono label register — used ONLY for real labels (fields, prices, meta), never as decorative eyebrows */
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
}
.mono--accent { color: var(--accent-bright); }

/* ============================================================= LAYOUT */
.wrap { width: 100%; max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--page-gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--flush-top { padding-block-start: 0; }

.page { position: relative; z-index: var(--z-raised); background: var(--paper); min-height: 100dvh; }
.page > .section:first-child { padding-block-start: 0; }

.lede { font-size: var(--text-md); line-height: 1.6; color: var(--ink-2); max-width: 52ch; }
.muted { color: var(--muted); }
.accent-word { color: var(--accent-bright); }

.divider { border: 0; height: var(--rule-hair); background: var(--rule-2); }

/* stacked section head — heading leads, no numbered eyebrow, never tag-left/heading-right */
.head { display: grid; gap: var(--space-md); margin-bottom: var(--space-2xl); }
.head__title { max-width: 20ch; }
.head__note { color: var(--muted); max-width: 46ch; font-size: var(--text-md); }
.head--split { grid-template-columns: 1fr; align-items: end; gap: var(--space-lg); }
@media (min-width: 60rem){
  .head--split { grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: var(--space-2xl); }
  .head--split .head__note { justify-self: end; margin-bottom: var(--space-xs); }
}

/* ============================================================= BUTTONS */
.btn {
  --_bg: transparent; --_fg: var(--ink); --_bd: transparent;
  display: inline-flex; align-items: center; gap: var(--space-xs);
  padding: 0.85em 1.35em;
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-sm);
  letter-spacing: 0.01em; white-space: nowrap;
  color: var(--_fg); background: var(--_bg);
  border: 1px solid var(--_bd); border-radius: var(--radius-pill);
  transition: transform var(--dur-micro) var(--ease-out),
              background-color var(--dur-short) var(--ease-out),
              border-color var(--dur-short) var(--ease-out),
              color var(--dur-short) var(--ease-out);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn .arw { transition: transform var(--dur-short) var(--ease-out); }
.btn:hover .arw, .btn.is-hover .arw { transform: translate(2px,-2px); }
.btn:active, .btn.is-active { transform: translateY(1px); }

.btn--primary { --_bg: var(--accent-fill); --_fg: var(--accent-ink); --_bd: var(--accent-fill); box-shadow: 0 4px 20px -4px oklch(62% 0.19 253 / 0.5); }
.btn--primary:hover, .btn--primary.is-hover { --_bg: var(--accent); --_bd: var(--accent); box-shadow: 0 6px 26px -2px oklch(62% 0.19 253 / 0.65); }
.btn--wa { --_bg: #1faa55; --_fg: #f4fff8; --_bd: #1faa55; }
.btn--wa:hover, .btn--wa.is-hover { --_bg: #24c163; --_bd: #24c163; }
.btn--glass-wa {
  --_bg: oklch(20% 0.02 155 / 0.55);
  --_fg: oklch(96% 0.015 155);
  --_bd: oklch(48% 0.09 155 / 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px -4px oklch(0% 0 0 / 0.5);
}
.btn--glass-wa:hover, .btn--glass-wa.is-hover {
  --_bg: oklch(26% 0.035 155 / 0.8);
  --_bd: oklch(62% 0.14 155 / 0.7);
  --_fg: #ffffff;
  box-shadow: 0 6px 24px -2px oklch(20% 0.08 155 / 0.6);
}
.btn--glass-wa svg { color: #25d366; filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4)); }
.btn--ghost { --_fg: var(--ink); --_bd: var(--rule); background: oklch(24% 0.016 250 / 0.4); }
.btn--ghost:hover, .btn--ghost.is-hover { --_bd: var(--silver); background: var(--paper-3); }
.btn--line { --_fg: var(--ink); --_bd: var(--rule); }
.btn--line:hover, .btn--line.is-hover { --_bd: var(--accent); --_fg: var(--accent-bright); }
.btn--lg { padding: 1.02em 1.7em; font-size: var(--text-base); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }
@media (pointer: coarse){ .btn { min-height: 46px; } }

/* text link with animated underline */
.tlink {
  display: inline-flex; align-items: center; gap: 0.4em;
  color: var(--ink); font-weight: 500;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out);
  padding-bottom: 2px;
}
.tlink:hover, .tlink:focus-visible { background-size: 100% 1.5px; color: var(--accent-bright); }
.tlink .arw { transition: transform var(--dur-short) var(--ease-out); }
.tlink:hover .arw { transform: translate(3px,-3px); }

/* ============================================================= NAV (scroll-morph) */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: var(--z-sticky);
  transition: background-color var(--dur-long) var(--ease-out),
              backdrop-filter var(--dur-long) var(--ease-out),
              border-color var(--dur-long) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: oklch(11% 0.012 255 / 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--rule-2);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 3rem);
  max-width: min(100% - 2rem, 1680px);
  width: 100%;
  margin-inline: auto;
  padding: clamp(0.95rem, 1.4vw, 1.35rem) clamp(1.2rem, 3vw, 3rem);
  transition: padding var(--dur-long) var(--ease-out);
}
.nav.is-scrolled .nav__inner {
  padding-block: clamp(0.7rem, 1vw, 0.85rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-inline-end: auto;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  width: 48px;
  height: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  transition: transform var(--dur-short) var(--ease-out), width var(--dur-long) var(--ease-out), height var(--dur-long) var(--ease-out);
}
.brand:hover .brand__logo {
  transform: scale(1.04);
}
.nav.is-scrolled .brand__logo {
  width: 42px;
  height: 42px;
}
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  letter-spacing: -0.025em;
  color: #ffffff;
  white-space: nowrap;
}

.nav__rail {
  display: none;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.8rem);
}
.nav__link {
  position: relative;
  white-space: nowrap;
  padding: 0.55rem 0.2rem;
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  font-weight: 600;
  color: var(--silver);
  letter-spacing: -0.01em;
  transition: color var(--dur-short) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.15rem;
  height: 2px;
  background: var(--accent);
  transition: right var(--dur-short) var(--ease-out);
}
.nav__link:hover, .nav__link:focus-visible, .nav__link[aria-current="page"] {
  color: #ffffff;
}
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link[aria-current="page"]::after {
  right: 0;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.2rem);
  flex-shrink: 0;
}
.nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__tel svg { width: 1em; height: 1em; color: var(--accent-bright); }

/* dropdown */
.nav__item { position: relative; }
.nav__toggle { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav__toggle .chev {
  width: 13px;
  height: 13px;
  color: var(--muted);
  transition: transform 180ms var(--ease-out), color 180ms var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav__menu {
  position: absolute;
  inset-inline-start: -1rem;
  inset-block-start: calc(100% + 0.35rem);
  min-width: 22.5rem;
  padding: 0.5rem;
  z-index: var(--z-dropdown);
  background: oklch(13% 0.012 255 / 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px -10px oklch(0% 0 0 / 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
  transition-delay: 80ms;
}
/* Invisible hover bridge connecting trigger to dropdown */
.nav__menu::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -0.75rem;
  height: 0.75rem;
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu,
.nav__menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 0s;
}
.nav__item:hover .chev,
.nav__item:focus-within .chev,
.nav__toggle[aria-expanded="true"] .chev {
  transform: translateY(1.5px);
  color: var(--accent-bright);
}

.nav__mlink {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--dur-short) var(--ease-out);
  text-decoration: none;
}
.nav__mlink:hover, .nav__mlink:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}
.nav__mlink-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: oklch(18% 0.015 255 / 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--silver);
  transition: color var(--dur-short) var(--ease-out), background-color var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out);
}
.nav__mlink-icon svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
}
.nav__mlink:hover .nav__mlink-icon {
  color: #ffffff;
  background: oklch(62% 0.19 253 / 0.25);
  border-color: oklch(62% 0.19 253 / 0.5);
}
.nav__mlink-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav__mlink b {
  font-weight: 600;
  font-size: var(--text-sm);
  color: #ffffff;
}
.nav__mlink span {
  font-size: var(--text-xs);
  color: var(--silver);
  line-height: 1.35;
}
.nav__menu-foot {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--rule-2);
}
.nav__mlink--all {
  justify-content: space-between;
  padding-block: 0.55rem;
}
.nav__mlink--all b {
  color: var(--accent-bright);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__mlink--all .arw {
  color: var(--accent-bright);
  font-size: 0.85em;
}

.nav__burger {
  display: inline-flex;
  margin-inline-start: auto;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.nav__burger svg { width: 24px; height: 24px; }
@media (min-width: 62rem){
  .nav__rail, .nav__actions { display: flex; }
  .nav__burger { display: none; }
}

/* mobile sheet */
.sheet { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; grid-template-rows: auto 1fr auto; background: oklch(11% 0.012 255 / 0.98); backdrop-filter: blur(10px); opacity: 0; pointer-events: none; transition: opacity var(--dur-short) var(--ease-out); }
.sheet.is-open { opacity: 1; pointer-events: auto; }
.sheet__top { display: flex; align-items: center; justify-content: space-between; padding: clamp(0.9rem,3vw,1.2rem) var(--page-gutter); border-bottom: 1px solid var(--rule-2); }
.sheet__close { width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); }
.sheet__close svg { width: 24px; height: 24px; }
.sheet__nav { overflow-y: auto; padding: var(--space-lg) var(--page-gutter); display: grid; align-content: start; gap: 0.25rem; }
.sheet__link { padding: 0.85rem 0; font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); letter-spacing: -0.02em; color: var(--ink); border-bottom: 1px solid var(--rule-2); }
.sheet__link[aria-current="page"] { color: var(--accent-bright); }
.sheet__sub { padding: 0.5rem 0 0.9rem; border-bottom: 1px solid var(--rule-2); display: grid; gap: 0.1rem; }
.sheet__sub .sheet__link { font-size: var(--text-lg); border: 0; padding: 0.5rem 0; }
.sheet__sub .sheet__slbl { color: var(--silver); }
.sheet__foot { padding: var(--space-lg) var(--page-gutter) max(var(--space-lg), env(safe-area-inset-bottom)); display: grid; gap: var(--space-sm); border-top: 1px solid var(--rule-2); }

/* ============================================================= PHOTOS */
.ph { position: relative; overflow: hidden; background: var(--_lqip, var(--paper-2)); }
.ph picture { position: absolute; inset: 0; }
.ph img { width: 100%; height: 100%; object-fit: cover; object-position: var(--_pos, 50% 50%); display: block; }
.ph--r43 { aspect-ratio: 4 / 3; }
.ph--r169 { aspect-ratio: 16 / 9; }
.ph--r11 { aspect-ratio: 1 / 1; }
.ph--r34 { aspect-ratio: 3 / 4; }
.ph--r23 { aspect-ratio: 2 / 3; }
.ph--rounded { border-radius: var(--radius-md); }
/* film-grade dark scrims to keep text legible + unify tones */
.scrim-b::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, oklch(8% 0.01 255 / 0.92) 0%, oklch(8% 0.01 255 / 0.35) 42%, transparent 72%); pointer-events:none; }
.scrim-l::after { content:""; position:absolute; inset:0; background: linear-gradient(to right, oklch(8% 0.01 255 / 0.85) 0%, oklch(8% 0.01 255 / 0.35) 45%, transparent 80%); pointer-events:none; }
.scrim-v::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, oklch(8% 0.01 255 / 0.8), transparent 45%), radial-gradient(120% 90% at 50% 100%, transparent 40%, oklch(8% 0.01 255 / 0.55)); pointer-events:none; }

/* ============================================================= HERO BASE & SUBPAGES */
.hero { position: relative; min-height: min(94dvh, 900px); display: grid; align-content: end; isolation: isolate; padding-block: 8rem clamp(2.5rem, 6vw, 5rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg picture, .hero__bg img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__bg::after { content:""; position:absolute; inset:0; background:
  linear-gradient(to top, var(--paper) 6%, oklch(10% 0.012 255 / 0.8) 18%, oklch(10% 0.012 255 / 0.3) 50%, oklch(10% 0.012 255 / 0.5) 100%),
  linear-gradient(to right, oklch(9% 0.012 255 / 0.6), oklch(9% 0.012 255 / 0.08) 55%, transparent);
  pointer-events: none;
}
.hero__inner { max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--page-gutter); width: 100%; }
.hero__kicker { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: var(--space-lg); }
.hero__kicker .bar { width: 26px; height: 1.5px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero__title { font-size: var(--text-display); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; max-width: 15ch; text-transform: uppercase; }
.hero__title .thin { font-weight: 300; color: var(--ink-2); }
.hero__sub { margin-top: var(--space-lg); max-width: 46ch; font-size: var(--text-md); color: var(--ink-2); }
.hero__cta { margin-top: var(--space-xl); display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__meta { margin-top: var(--space-xl); display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-xl); }
.hero__meta .mono { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* compact clean hero for inner pages */
.hero--sub {
  min-height: auto;
  display: block;
  padding-block: clamp(7.5rem, 11vh, 9.5rem) clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 85% 55% at 50% -10%, oklch(28% 0.05 253 / 0.18), transparent 70%),
    linear-gradient(180deg, oklch(13% 0.012 255) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--rule-2);
}
.hero--sub .hero__title {
  text-transform: none;
  letter-spacing: -0.03em;
  max-width: 22ch;
  font-size: clamp(2.4rem, 1.5rem + 3.2vw, 3.8rem);
  color: #ffffff;
}
.hero--sub .hero__sub {
  margin-top: var(--space-md);
  max-width: 52ch;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-2);
}

/* ============================================================= HERO HOME (Apple Center Stage) */
.hero--home {
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-block: clamp(6.2rem, 9.5vh, 7.5rem) clamp(2rem, 4vh, 3.5rem);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero--home .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #08090b;
  overflow: hidden;
}

.hero--home .hero__bg picture,
.hero--home .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 90% !important;
  transform: translateY(clamp(40px, 7vh, 75px));
  will-change: transform;
}

@media (min-width: 80rem){
  .hero--home .hero__bg picture,
  .hero--home .hero__bg img {
    transform: translateY(clamp(50px, 8.5vh, 95px));
  }
}

/* Atmospheric lighting: shared studio glow connecting typography and car */
.hero--home .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Top vignette for clean navigation & crisp typography */
    linear-gradient(to bottom, oklch(9% 0.01 255 / 0.9) 0%, oklch(9% 0.01 255 / 0.45) 35%, transparent 62%),
    /* Bottom fade grounding the vehicle seamlessly into page flow */
    linear-gradient(to top, var(--paper) 0%, oklch(11% 0.012 255 / 0.98) 8%, oklch(11% 0.012 255 / 0.5) 24%, transparent 45%),
    /* Soft ambient overhead spotlight radiating behind typography */
    radial-gradient(ellipse 85% 45% at 50% 19%, oklch(35% 0.07 253 / 0.22), transparent 68%);
  pointer-events: none;
}

/* Mobile & Tablet Portrait: anchor car into the lower half with dedicated stage breathing room */
@media (max-width: 60rem){
  .hero--home {
    padding-block: clamp(7.5rem, 14vh, 9.5rem) clamp(1.5rem, 3vh, 2.5rem);
    justify-content: flex-start;
  }
  .hero--home .hero__bg picture,
  .hero--home .hero__bg img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    object-fit: cover;
    object-position: 50% 65% !important;
    transform: none;
  }
  .hero--home .hero__bg::after {
    background:
      linear-gradient(to bottom, #08090b 0%, #08090b 46%, oklch(9% 0.01 255 / 0.3) 60%, transparent 80%),
      linear-gradient(to top, var(--paper) 0%, oklch(11% 0.012 255 / 0.95) 8%, transparent 35%),
      radial-gradient(ellipse 95% 40% at 50% 20%, oklch(35% 0.07 253 / 0.25), transparent 65%);
  }
}

.hero--home .hero__inner {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Apple-style Frosted Kicker Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: oklch(20% 0.015 253 / 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid oklch(40% 0.035 253 / 0.45);
  box-shadow: 0 2px 16px -2px oklch(0% 0 0 / 0.6);
  margin-bottom: clamp(0.75rem, 1.4vh, 1.1rem);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright);
}

.hero__badge-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(86% 0.01 250);
  font-weight: 500;
}

/* Headline: refined mixed-case with liquid metallic sheen */
.hero--home .hero__title {
  font-size: clamp(2.3rem, 1.2rem + 3.8vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.06;
  max-width: 18ch;
  text-transform: none;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 40%, oklch(82% 0.008 250) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(0.55rem, 1.1vh, 0.9rem);
}

.hero--home .hero__title-accent {
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-bright) 65%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 26px oklch(62% 0.19 253 / 0.45));
}

/* Subhead: restrained measure, calm cool silver */
.hero--home .hero__sub {
  font-size: clamp(0.98rem, 0.92rem + 0.3vw, 1.14rem);
  color: oklch(78% 0.010 250);
  max-width: 48ch;
  margin-top: 0;
  line-height: 1.55;
}

/* CTA Group: centered, spacious, harmonious */
.hero--home .hero__cta {
  margin-top: clamp(1rem, 1.8vh, 1.4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
}

/* Meta Trust Strip */
.hero--home .hero__meta {
  margin-top: clamp(0.75rem, 1.4vh, 1.1rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1rem;
}

.hero--home .hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(68% 0.012 250);
}

.hero--home .hero__meta-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.hero--home .hero__meta-sep {
  color: oklch(38% 0.01 250);
  user-select: none;
}

/* breadcrumb */
.crumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-md); }
.crumb a:hover { color: var(--accent-bright); }
.crumb .sep { color: var(--rule); }

/* ============================================================= STAT / INTRO STRIP */
.intro { display: grid; gap: var(--space-xl); }
@media (min-width: 60rem){ .intro { grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); align-items: start; gap: var(--space-3xl); } }
.intro__lead { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.intro__lead .em { color: var(--accent-bright); }
.intro__side { display: grid; gap: var(--space-md); align-content: start; }
.intro__side p { color: var(--muted); font-size: var(--text-md); }

.signature { font-family: var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase; font-size: var(--text-sm); color: var(--silver); }
.signature b { color: var(--accent-bright); font-weight: 500; }

/* ============================================================= SERVICE FEATURE (alternating photo rows) */
.feat { display: grid; gap: var(--space-lg); align-items: center; }
.feat + .feat { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
@media (min-width: 60rem){
  .feat { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem,4vw,4rem); }
  .feat--flip .feat__media { order: 2; }
}
.feat__media { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-panel); }
.feat__media .tag { position: absolute; top: var(--space-md); left: var(--space-md); z-index: 2; padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); background: oklch(10% 0.01 255 / 0.6); backdrop-filter: blur(8px); border: 1px solid var(--accent-line); font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); }
.feat__price { position: absolute; bottom: var(--space-md); right: var(--space-md); z-index: 2; font-family: var(--font-mono); font-size: var(--text-sm); color: var(--ink); background: oklch(10% 0.01 255 / 0.55); backdrop-filter: blur(8px); padding: 0.4rem 0.75rem; border-radius: var(--radius-pill); border: 1px solid var(--rule); }
.feat__body { display: grid; gap: var(--space-md); align-content: center; }
.feat__title { font-size: var(--text-2xl); }
.feat__list { display: grid; gap: 0.55rem; margin: var(--space-xs) 0 var(--space-sm); }
.feat__list li { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; color: var(--ink-2); font-size: var(--text-md); }
.feat__list .tick { color: var(--accent-bright); margin-top: 0.35em; }
.feat__list .tick svg { width: 0.9em; height: 0.9em; }

/* ============================================================= SERVICE INDEX (typographic list) */
.svc-index { border-top: 1px solid var(--rule-2); }
.svc-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-md);
  padding: clamp(1.2rem,2.6vw,2rem) 0; border-bottom: 1px solid var(--rule-2);
  transition: padding-inline var(--dur-short) var(--ease-out);
}
.svc-row__main { display: grid; gap: 0.35rem; }
.svc-row__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); letter-spacing: -0.02em; color: var(--ink); transition: color var(--dur-short) var(--ease-out); display: inline-flex; align-items: center; gap: 0.75rem; }
.svc-row__num { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--muted); letter-spacing: 0.1em; }
.svc-row__desc { color: var(--muted); font-size: var(--text-md); max-width: 60ch; }
.svc-row__right { display: flex; align-items: center; gap: var(--space-lg); }
.svc-row__price { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--ink-2); white-space: nowrap; }
.svc-row__arw { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--rule); color: var(--ink-2); transition: transform var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out); }
.svc-row__arw svg { width: 18px; height: 18px; }
.svc-row:hover { padding-inline-start: var(--space-md); }
.svc-row:hover .svc-row__name { color: var(--accent-bright); }
.svc-row:hover .svc-row__arw { border-color: var(--accent); color: var(--accent-bright); transform: translate(3px,-3px); }
.svc-row:focus-within .svc-row__name { color: var(--accent-bright); }
@media (max-width: 40rem){ .svc-row__price { display: none; } }

/* ============================================================= VALUE PROPS */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(to right, oklch(9% 0.012 255 / 0.94), oklch(9% 0.012 255 / 0.82)); }
.props { display: grid; gap: var(--space-lg); }
@media (min-width: 48rem){ .props { grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-xl); } }
@media (min-width: 70rem){ .props { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.prop { display: grid; gap: 0.6rem; padding-top: var(--space-md); border-top: 1px solid var(--accent-line); }
.prop__icon { color: var(--accent-bright); }
.prop__icon svg { width: 26px; height: 26px; }
.prop h3 { font-size: var(--text-md); font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }
.prop p { color: var(--muted); font-size: var(--text-sm); line-height: 1.55; }

/* ============================================================= AKTION BAND */
.aktion { display: grid; gap: var(--space-lg); padding: clamp(1.5rem,4vw,2.75rem); border-radius: var(--radius-lg); background: linear-gradient(135deg, oklch(20% 0.05 255), oklch(15% 0.02 255)); border: 1px solid var(--accent-line); position: relative; overflow: hidden; }
.aktion::before { content:""; position:absolute; top:-40%; right:-10%; width:340px; height:340px; background: radial-gradient(circle, var(--accent-soft), transparent 70%); pointer-events:none; }
@media (min-width: 56rem){ .aktion { grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: var(--space-2xl); } }
.aktion__title { font-size: var(--text-xl); font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.aktion__list { display: grid; gap: 0.5rem; margin-top: var(--space-sm); }
.aktion__list li { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; color: var(--ink-2); font-size: var(--text-md); }
.aktion__list .plus { color: var(--accent-bright); font-family: var(--font-mono); }
.aktion__note { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-sm); }

/* ============================================================= BEFORE / AFTER SLIDER */
.ba { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-panel); user-select: none; touch-action: pan-y; aspect-ratio: 16/10; background: var(--paper-2); }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__lbl { position: absolute; top: var(--space-md); z-index: 3; font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: var(--radius-pill); background: oklch(9% 0.01 255 / 0.6); backdrop-filter: blur(6px); border: 1px solid var(--rule); }
.ba__lbl--before { left: var(--space-md); color: var(--silver); }
.ba__lbl--after { right: var(--space-md); color: var(--accent-bright); border-color: var(--accent-line); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--accent); transform: translateX(-1px); z-index: 4; box-shadow: 0 0 18px var(--accent); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: oklch(12% 0.01 255 / 0.7); backdrop-filter: blur(6px); border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent-bright); }
.ba__grip svg { width: 22px; height: 22px; }
.ba input[type=range]{ position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 5; }

/* ============================================================= GALLERY */
.gallery { columns: 1; column-gap: var(--space-md); }
@media (min-width: 40rem){ .gallery { columns: 2; } }
@media (min-width: 66rem){ .gallery { columns: 3; } }
.gallery__item { break-inside: avoid; margin-bottom: var(--space-md); border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: var(--shadow-panel); }
.gallery__item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-lg) var(--space-md) var(--space-sm); font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); background: linear-gradient(to top, oklch(8% 0.01 255 / 0.85), transparent); opacity: 0; transform: translateY(6px); transition: opacity var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out); }
.gallery__item:hover .cap { opacity: 1; transform: none; }
.gallery__item img { transition: transform var(--dur-long) var(--ease-out); }
@media (hover:hover){ .gallery__item:hover img { transform: scale(1.04); } }

/* ============================================================= PREISE EXPERIENCE REDESIGN */
.hero--preise {
  padding-block: clamp(7.5rem, 11vh, 9.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.price-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: var(--space-xl);
}
.price-usp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: oklch(18% 0.02 255 / 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(32% 0.035 255 / 0.6);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--silver);
}
.price-usp svg { width: 14px; height: 14px; color: var(--accent-bright); flex: none; }

/* Bestseller Highlight Hero Card */
/* Bestseller Highlight Hero Card — Apple Minimalist Philosophy */
.price-bestseller {
  position: relative;
  background: oklch(12% 0.01 255 / 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid oklch(25% 0.015 255 / 0.7);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-3xl);
  box-shadow: 0 20px 40px -15px oklch(0% 0 0 / 0.6);
  transition: border-color var(--dur-short) var(--ease-out);
}
.price-bestseller:hover {
  border-color: oklch(34% 0.02 255 / 0.8);
}
.price-bestseller__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 60rem){
  .price-bestseller__grid {
    grid-template-columns: 1.35fr 1fr;
    gap: var(--space-3xl);
  }
}
.price-bestseller__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 0.4rem;
}
.price-bestseller__title {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.price-bestseller__desc {
  color: var(--silver);
  font-size: var(--text-md);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 54ch;
}
.price-bestseller__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem 1.5rem;
}
@media (min-width: 36rem){
  .price-bestseller__specs {
    grid-template-columns: 1fr 1fr;
  }
}
.price-bestseller__specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.45;
}
.price-bestseller__specs .tick {
  color: var(--accent-bright);
  margin-top: 2px;
  flex: none;
}
.price-bestseller__pricing-box {
  background: oklch(10% 0.008 255 / 0.6);
  border: 1px solid oklch(22% 0.015 255 / 0.6);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.price-bestseller__tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-bestseller__amount {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.05;
  margin: 0.35rem 0 0.25rem;
}
.price-bestseller__amount .ab {
  font-size: 0.4em;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--muted);
  margin-right: 0.35rem;
  vertical-align: middle;
}
.price-bestseller__note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--space-xl);
}
.price-bestseller__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

/* Category Quick Jump Pills */
.price-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto var(--space-2xl);
  padding: 0.4rem;
  background: oklch(14% 0.012 255 / 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  width: fit-content;
}
.price-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  transition: all var(--dur-short) var(--ease-out);
}
.price-nav__link:hover {
  color: var(--ink);
  background: oklch(22% 0.02 255 / 0.6);
  border-color: var(--accent);
}
.price-nav__link svg {
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
  flex: none;
}

/* Category Cards Grid */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
@media (min-width: 60rem){
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.price-card {
  background: oklch(13% 0.014 255 / 0.85);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out), box-shadow var(--dur-short) var(--ease-out);
  box-shadow: var(--shadow-panel);
}
.price-card:hover {
  border-color: oklch(28% 0.02 255 / 0.85);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px oklch(0% 0 0 / 0.7);
}
.price-card--wide {
  grid-column: 1 / -1;
}

.price-card__media {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.price-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-long) var(--ease-out);
}
.price-card:hover .price-card__media img {
  transform: scale(1.04);
}
.price-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(13% 0.014 255) 0%, oklch(13% 0.014 255 / 0.3) 60%, transparent 100%);
}
.price-card__cat-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  padding: 0.35rem 0.8rem;
  background: oklch(12% 0.01 255 / 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(35% 0.03 255 / 0.6);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.price-card__content {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-card__header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--rule-2);
}
.price-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.price-card__sub {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.price-card__items {
  display: grid;
  gap: var(--space-lg);
  flex: 1;
}
.price-item {
  display: grid;
  gap: 0.4rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--rule-2);
}
.price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.price-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
}
.price-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-item__tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: oklch(22% 0.02 255);
  color: var(--silver);
  border: 1px solid var(--rule);
}
.price-item__tag--premium {
  background: oklch(62% 0.19 253 / 0.15);
  color: var(--accent-bright);
  border-color: oklch(62% 0.19 253 / 0.35);
}
.price-item__price {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.price-item__price .ab {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--muted);
  margin-right: 0.3rem;
}
.price-item__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
}
.price-item__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--silver);
  margin-top: 0.2rem;
}
.price-item__meta svg { width: 13px; height: 13px; color: var(--accent-bright); flex: none; }

.price-card__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.price-card__footer .tlink {
  white-space: nowrap;
}
.price-card__footer svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex: none;
}

/* Transparenz-Guide Fahrzeugklassen */
.price-guide {
  background: oklch(12% 0.01 255 / 0.6);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-3xl);
}
.price-guide__header {
  text-align: center;
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}
.price-guide__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.price-guide__sub {
  font-size: var(--text-sm);
  color: var(--muted);
}
.price-guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 48rem){
  .price-guide__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.price-guide__col {
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}
.price-guide__col-icon {
  width: 44px;
  height: 44px;
  margin-inline: auto;
  border-radius: 50%;
  background: oklch(22% 0.02 255);
  display: grid;
  place-items: center;
  color: var(--accent-bright);
}
.price-guide__col-icon svg { width: 22px; height: 22px; }
.price-guide__col h4 { font-size: var(--text-md); font-weight: 700; color: var(--ink); }
.price-guide__col p { font-size: var(--text-xs); color: var(--muted); line-height: 1.5; }
.price-guide__col-factor {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  background: oklch(18% 0.015 255);
  color: var(--silver);
  border: 1px solid var(--rule-2);
}

/* Fast WhatsApp Photo Estimate Banner */
.price-fast-quote {
  position: relative;
  background: linear-gradient(135deg, oklch(18% 0.03 155 / 0.7) 0%, oklch(12% 0.015 255 / 0.95) 100%);
  border: 1px solid oklch(42% 0.08 155 / 0.45);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 16px 40px -10px oklch(0% 0 0 / 0.6);
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
@media (min-width: 54rem){
  .price-fast-quote {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.price-fast-quote__left {
  max-width: 55ch;
}
.price-fast-quote__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
  margin-bottom: 0.5rem;
}
.price-fast-quote__tag svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex: none;
}
.price-fast-quote__title {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.price-fast-quote__desc {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.6;
}
.price-fast-quote__action {
  flex: none;
}


/* ============================================================= FAQ */
.faq { border-top: 1px solid var(--rule-2); }
.faq details { border-bottom: 1px solid var(--rule-2); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: clamp(1.1rem,2.4vw,1.6rem) 0; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); letter-spacing: -0.015em; color: var(--ink); transition: color var(--dur-short) var(--ease-out); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover, .faq details[open] summary { color: var(--accent-bright); }
.faq .plusmin { position: relative; width: 20px; height: 20px; flex: none; }
.faq .plusmin::before, .faq .plusmin::after { content:""; position:absolute; background: currentColor; transition: transform var(--dur-short) var(--ease-out), opacity var(--dur-short) var(--ease-out); }
.faq .plusmin::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq .plusmin::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq details[open] .plusmin::after { transform: scaleY(0); opacity: 0; }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--muted); font-size: var(--text-md); max-width: 68ch; padding-bottom: clamp(1.1rem,2.4vw,1.6rem); }
.faq details[open] .faq__body { animation: faqopen var(--dur-long) var(--ease-out); }
@keyframes faqopen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================= CONTACT / FORM */
.contact { display: grid; gap: var(--space-2xl); }
@media (min-width: 64rem){ .contact { grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: var(--space-3xl); align-items: start; } }
.field { display: grid; gap: 0.4rem; margin-bottom: var(--space-md); }
.field label { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); }
.field label .req { color: var(--accent-bright); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; background: var(--paper-3); color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--radius-sm); font-size: var(--text-md);
  transition: border-color var(--dur-short) var(--ease-out), box-shadow var(--dur-short) var(--ease-out);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--silver); }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field--err input, .field--err textarea { border-color: oklch(62% 0.19 25); }
.field__err { font-size: var(--text-xs); color: oklch(72% 0.16 25); display: none; }
.field--err .field__err { display: block; }
.form__row { display: grid; gap: var(--space-md); }
@media (min-width: 34rem){ .form__row--2 { grid-template-columns: 1fr 1fr; } }
.form__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; margin-top: var(--space-sm); }
.form__note { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-md); max-width: 60ch; }
.form__ok { display: none; padding: var(--space-lg); border: 1px solid var(--accent-line); background: var(--accent-soft); border-radius: var(--radius-md); color: var(--ink); }
.form.is-sent .form__ok { display: block; }
.form.is-sent .form__grid { display: none; }

.contact__aside { display: grid; gap: var(--space-lg); align-content: start; }
.cinfo { display: grid; gap: 0.3rem; padding: var(--space-md) 0; border-top: 1px solid var(--rule-2); }
.cinfo__lbl { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); }
.cinfo a, .cinfo p { font-size: var(--text-md); color: var(--ink); }
.cinfo a:hover { color: var(--accent-bright); }

/* chips / small pills */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); padding: 0.35rem 0.7rem; border: 1px solid var(--rule); border-radius: var(--radius-pill); }

/* callout / note box */
.note-box { padding: var(--space-md) var(--space-lg); border-left: 2px solid var(--accent); background: var(--paper-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.note-box p { color: var(--ink-2); font-size: var(--text-md); }
.note-box .mono { display: block; margin-bottom: 0.3rem; }

/* prose (legal, about) */
.prose { max-width: var(--wrap-narrow); }
.prose h2 { font-size: var(--text-xl); margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.prose h3 { font-size: var(--text-md); font-family: var(--font-display); margin-top: var(--space-lg); margin-bottom: var(--space-xs); color: var(--ink); }
.prose p, .prose li { color: var(--ink-2); font-size: var(--text-md); line-height: 1.7; }
.prose p + p { margin-top: var(--space-md); }
.prose a { color: var(--accent-bright); }
.prose a:hover { text-decoration: underline; }
.prose ul { padding-left: 1.2rem; display: grid; gap: 0.4rem; margin-top: var(--space-sm); }
.prose strong { color: var(--ink); }
.prose .todo { color: var(--accent-bright); background: var(--accent-soft); padding: 0.05em 0.35em; border-radius: 3px; font-family: var(--font-mono); font-size: 0.9em; }

/* ============================================================= FOOTER */
.site-footer {
  position: relative;
  z-index: var(--z-raised);
  background: var(--paper-0);
  color: var(--ink);
  border-top: 1px solid var(--rule-2);
}
.foot { padding: clamp(3rem,7vw,6rem) var(--page-gutter) clamp(1.5rem,3vw,2.5rem); max-width: var(--wrap-max); margin-inline: auto; }
.foot__top { display: grid; gap: var(--space-2xl); }
@media (min-width: 64rem){ .foot__top { grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); gap: var(--space-3xl); } }
.foot__stmt { font-family: var(--font-display); font-weight: 800; font-size: var(--text-3xl); line-height: 0.98; letter-spacing: -0.035em; text-transform: uppercase; }
.foot__stmt .accent-word { color: var(--accent-bright); }
.foot__lead { margin-top: var(--space-lg); color: var(--muted); max-width: 42ch; font-size: var(--text-md); }
.foot__cta { margin-top: var(--space-xl); display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.foot__nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-xl) var(--space-lg); align-content: start; }
.foot__col { display: grid; gap: 0.55rem; align-content: start; }
.foot__col h4 { font-family: var(--font-mono); font-weight: 500; font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); margin-bottom: 0.2rem; }
.foot__link { color: var(--ink-2); font-size: var(--text-sm); white-space: normal; word-break: break-word; transition: color var(--dur-short) var(--ease-out); width: max-content; max-width: 100%; }
.foot__link:hover, .foot__link:focus-visible { color: var(--accent-bright); }
.foot__contact { display: grid; gap: 0.15rem; }
.foot__contact .cinfo__lbl { margin-top: var(--space-sm); }
.foot__social { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.foot__social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 50%; color: var(--ink-2); transition: border-color var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out); }
.foot__social a:hover { border-color: var(--accent); color: var(--accent-bright); transform: translateY(-2px); }
.foot__social svg { width: 20px; height: 20px; }
.foot__base { margin-top: clamp(2.5rem,5vw,4rem); padding-top: var(--space-lg); border-top: 1px solid var(--rule-2); display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); align-items: center; justify-content: space-between; }
.foot__base p, .foot__base a { font-size: var(--text-xs); color: var(--muted); }
.foot__base a:hover { color: var(--accent-bright); }
.foot__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.foot__brand img { height: 40px; width: auto; aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; }
.foot__legal { display: flex; gap: var(--space-md); }

/* floating whatsapp */
.wa-fab { position: fixed; right: clamp(1rem,3vw,1.6rem); bottom: clamp(1rem,3vw,1.6rem); z-index: var(--z-sticky); width: 56px; height: 56px; border-radius: 50%; background: #1faa55; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -8px oklch(0% 0 0 / 0.6); transition: transform var(--dur-short) var(--ease-out); }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); }
.wa-fab svg { width: 30px; height: 30px; }

/* ============================================================= REVEAL ANIMATION (one orchestrated) */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { animation: reveal var(--dur-long) var(--ease-out) forwards; animation-delay: calc(var(--i, 0) * 70ms); }
@keyframes reveal { to { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: 0.1ms !important; animation-iteration-count: 1 !important; transition-duration: 0.1ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  @media (hover:hover){ .gallery__item:hover img { transform: none; } }
}
