/* ==========================================================================
   ZÜRICH WATCHES OUTLET — Design System 2026
   Farbwelt 1:1 aus Logo & Bestand: Swiss Red · Marken-Blau · Champagner-Gold
   ========================================================================== */

:root {
  /* ---- Marke ---- */
  --red: #e30613;           /* Swiss Red — direkt aus dem Logo */
  --red-deep: #b40410;
  --red-glow: rgba(227, 6, 19, .35);

  --brand: #0077b6;         /* bestehendes Marken-Blau */
  --brand-mid: #0096c7;
  --brand-light: #90e0ef;
  --brand-deep: #023e5a;

  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-deep: #9c7f2e;

  /* ---- Neutral ---- */
  --ink: #08131d;           /* Tiefschwarz-Blau, Basis für Dark-Sections */
  --ink-soft: #0f2233;
  --ink-line: rgba(255, 255, 255, .10);

  --cream: #f4fafd;
  --white: #ffffff;
  --grey-50: #f7fbfd;
  --grey-100: #e9f2f7;
  --grey-200: #d3e4ec;
  --grey-400: #8fabb8;
  --grey-500: #5c848e;
  --grey-700: #2c4a57;
  --grey-800: #1b3d45;

  /* ---- Typografie ---- */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Fluid Type Scale */
  --fs-xs: clamp(.72rem, .69rem + .12vw, .78rem);
  --fs-sm: clamp(.84rem, .81rem + .14vw, .92rem);
  --fs-base: clamp(.98rem, .94rem + .2vw, 1.06rem);
  --fs-lg: clamp(1.1rem, 1.02rem + .35vw, 1.28rem);
  --fs-xl: clamp(1.3rem, 1.15rem + .6vw, 1.65rem);
  --fs-2xl: clamp(1.6rem, 1.3rem + 1.3vw, 2.5rem);
  --fs-3xl: clamp(2rem, 1.5rem + 2.2vw, 3.6rem);
  --fs-4xl: clamp(2.4rem, 1.6rem + 3.6vw, 5.2rem);

  /* ---- Radius & Depth ---- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 34px;
  --r-pill: 999px;

  --sh-sm: 0 2px 10px rgba(8, 19, 29, .07);
  --sh-md: 0 10px 34px rgba(8, 19, 29, .11);
  --sh-lg: 0 26px 70px rgba(8, 19, 29, .17);
  --sh-glow: 0 18px 50px rgba(0, 119, 182, .28);
  --sh-red: 0 16px 40px rgba(227, 6, 19, .28);

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: .18s var(--ease);
  --t: .34s var(--ease);
  --t-slow: .7s var(--ease-out);

  --shell: 1280px;
  --gutter: clamp(18px, 4vw, 40px);
  --nav-h: 74px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.68;
  color: var(--grey-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.018em;
  color: var(--ink);
}

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

:focus-visible {
  outline: 3px solid var(--brand-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 999;
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: var(--r-sm);
  transition: top var(--t);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   1 · LOGO-INTRO — Preloader mit animiertem Logo (WOW-Moment)
   ========================================================================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 0%, #123047 0%, var(--ink) 55%, #050c13 100%);
  overflow: hidden;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.intro[hidden],
.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* rotierender Lichtkegel im Hintergrund */
.intro::before {
  content: '';
  position: absolute;
  width: 150vmax; height: 150vmax;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(0, 150, 199, .16) 40deg,
      transparent 90deg,
      transparent 180deg,
      rgba(227, 6, 19, .13) 220deg,
      transparent 280deg);
  animation: introSpin 9s linear infinite;
}
@keyframes introSpin { to { transform: rotate(360deg); } }

/* feiner Uhren-Ring */
.intro__ring {
  position: absolute;
  width: min(78vmin, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .10);
}
.intro__ring::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--red);
  border-right-color: rgba(227, 6, 19, .3);
  animation: introSpin 1.6s linear infinite;
}
.intro__ring--inner {
  width: min(60vmin, 400px);
  border-color: rgba(201, 168, 76, .18);
}
.intro__ring--inner::after {
  border-top-color: var(--gold);
  border-right-color: transparent;
  animation: introSpin 2.6s linear infinite reverse;
}

.intro__logo {
  position: relative;
  width: min(72vw, 400px);
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, .6));
}
/* Logo-Pfade werden per JS auf weiss/rot gesetzt und "gezeichnet" */
.intro__logo svg { width: 100%; height: auto; overflow: visible; }

.intro__logo .draw {
  fill: transparent;
  stroke-width: 1.1;
  stroke-linejoin: round;
  stroke-linecap: round;
  animation:
    introDraw 1.5s var(--ease-out) forwards,
    introFill .7s var(--ease) 1.25s forwards;
}
@keyframes introDraw { to { stroke-dashoffset: 0; } }
@keyframes introFill {
  from { fill-opacity: 0; }
  to   { fill-opacity: 1; }
}

/* Glanzstreifen, der einmal über das Logo wandert */
.intro__shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
      transparent 38%,
      rgba(255, 255, 255, .55) 48%,
      rgba(255, 255, 255, .85) 51%,
      transparent 62%);
  mix-blend-mode: overlay;
  transform: translateX(-130%);
  animation: introShine 1.15s var(--ease-out) 1.5s;
}
@keyframes introShine { to { transform: translateX(130%); } }

.intro__tag {
  position: absolute;
  bottom: clamp(48px, 12vh, 110px);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  opacity: 0;
  animation: introTag .8s var(--ease-out) 1.5s forwards;
}
@keyframes introTag {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: .75; transform: translate(-50%, 0); }
}

/* Fortschrittsbalken */
.intro__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-mid), var(--red), var(--gold));
  animation: introBar 2.3s var(--ease-out) forwards;
}
@keyframes introBar { to { width: 100%; } }

/* ==========================================================================
   2 · NAVBAR
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t), height var(--t);
}
.nav.is-stuck {
  height: 62px;
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--grey-200);
  box-shadow: 0 6px 26px rgba(8, 19, 29, .07);
}

/* Über dem dunklen Hero startet die Nav transparent-hell */
.nav.is-over-hero:not(.is-stuck) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.is-over-hero:not(.is-stuck) .nav__link,
.nav.is-over-hero:not(.is-stuck) .lang__btn {
  color: rgba(255, 255, 255, .9);
}
.nav.is-over-hero:not(.is-stuck) .nav__logo img { filter: brightness(0) invert(1); }
.nav.is-over-hero:not(.is-stuck) .burger span { background: #fff; }

.nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  width: 100%;
}

.nav__logo {
  flex-shrink: 0;
  display: block;
  transition: transform var(--t-fast);
}
.nav__logo:hover { transform: scale(1.04); }
.nav__logo img {
  height: clamp(34px, 4.4vw, 46px);
  width: auto;
  transition: filter var(--t), height var(--t);
}
.nav.is-stuck .nav__logo img { height: 34px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.3vw, 18px);
  margin-left: auto;
}

.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--grey-700);
  padding: 9px 4px;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Dropdown */
.nav__item { position: relative; }
.nav__item > .nav__link { display: inline-flex; align-items: center; gap: 5px; }
.nav__caret {
  width: 9px; height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t-fast);
}
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(225deg) translateY(-1px); }

.nav__drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: var(--fs-sm);
  color: var(--grey-700);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}
.nav__drop a:hover {
  background: var(--grey-50);
  color: var(--ink);
  padding-left: 17px;
}
.nav__drop-title {
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding: 8px 12px 4px;
}

/* Sprachumschalter */
.lang { position: relative; flex-shrink: 0; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--grey-700);
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  opacity: .85;
  transition: var(--t-fast);
}
.lang__btn:hover { opacity: 1; background: rgba(0, 119, 182, .07); }
.lang__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 6px;
  min-width: 148px;
  display: grid;
  gap: 2px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t);
}
.lang:hover .lang__list,
.lang:focus-within .lang__list { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__list a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px;
  font-size: var(--fs-sm);
  color: var(--grey-700);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.lang__list a:hover { background: var(--grey-50); color: var(--ink); }
.lang__list a[aria-current="true"] { color: var(--red); font-weight: 600; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px; width: 24px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast), background var(--t);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   3 · BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .65s var(--ease-out);
}
.btn:hover::before { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-red); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--primary { --btn-bg: var(--red); }
.btn--primary:hover { --btn-bg: var(--red-deep); }

.btn--brand { --btn-bg: var(--brand); }
.btn--brand:hover { --btn-bg: var(--brand-deep); box-shadow: var(--sh-glow); }

.btn--gold {
  --btn-fg: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn--gold:hover { box-shadow: 0 16px 40px rgba(201, 168, 76, .4); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.6px solid var(--grey-200);
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); box-shadow: var(--sh-md); }

.btn--light {
  --btn-bg: rgba(255, 255, 255, .1);
  --btn-fg: #fff;
  border: 1.6px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }

.btn--sm { padding: 10px 20px; font-size: var(--fs-xs); }
.btn--lg { padding: 17px 38px; font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* ==========================================================================
   4 · HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(94svh, 940px);
  display: grid;
  align-items: center;
  padding-block: calc(var(--nav-h) + 60px) 90px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

/* Verlaufsgrund + feines Raster statt formatfüllendem Foto */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(90% 80% at 15% 20%, #12374f 0%, transparent 60%),
    radial-gradient(70% 70% at 85% 80%, #0d2436 0%, transparent 65%),
    linear-gradient(160deg, #0a1a27 0%, var(--ink) 55%, #050d15 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000, transparent 75%);
  mask-image: radial-gradient(75% 65% at 50% 40%, #000, transparent 75%);
}

/* Zweispaltiges Hero-Raster */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

/* Bildrahmen — Originalgrösse, dadurch gestochen scharf */
.hero__figure {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin: 0;
}
.hero__frame {
  position: relative;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  animation: heroTilt 1.2s var(--ease-out) both;
}
@keyframes heroTilt {
  from { opacity: 0; transform: perspective(1400px) rotateY(-14deg) rotateX(5deg) translateY(26px); }
  to   { opacity: 1; transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); }
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

/* Glanzstreifen über dem Rahmen */
.hero__frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .28) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: heroSheen 5.5s var(--ease-out) 1.6s infinite;
}
@keyframes heroSheen {
  0%   { transform: translateX(-120%); }
  28%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Rotierender Zierring dahinter */
.hero__ring {
  position: absolute;
  inset: -9%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, .3);
  animation: introSpin 44s linear infinite;
  pointer-events: none;
}
.hero__ring::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  width: 9px; height: 9px;
  translate: -50% 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}

/* Schwebende Kennzahlen */
.hero__chip {
  position: absolute;
  left: -6%;
  bottom: 12%;
  display: grid;
  gap: 1px;
  padding: 14px 20px;
  background: rgba(12, 26, 38, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-lg);
  animation: chipIn .8s var(--ease-spring) 1.1s both, bob 6s ease-in-out 2s infinite;
}
.hero__chip--alt {
  left: auto; right: -5%; bottom: auto; top: 9%;
  animation-delay: 1.35s, 2.6s;
}
.hero__chip b {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: 1;
  color: var(--gold-light);
}
.hero__chip span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(16px) scale(.92); }
  to   { opacity: 1; transform: none; }
}
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

/* dezente Lichtreflexe */
.hero__glow {
  position: absolute; z-index: -1;
  width: 55vmax; aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .38;
  pointer-events: none;
}
.hero__glow--a { top: -18%; right: -12%; background: var(--brand); animation: float 15s var(--ease-out) infinite alternate; }
.hero__glow--b { bottom: -22%; left: -14%; background: var(--red); opacity: .22; animation: float 19s var(--ease-out) infinite alternate-reverse; }
@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, 7%) scale(1.14); }
}

.hero__inner { position: relative; max-width: 830px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 26px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}
.hero__eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--red-glow); }
  70%  { box-shadow: 0 0 0 12px rgba(227, 6, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}

.hero__title {
  font-size: var(--fs-4xl);
  color: #fff;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero__title .accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(105deg, var(--gold-light), var(--gold), var(--gold-light));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.hero__sub {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, .84);
  max-width: 60ch;
  margin-bottom: 34px;
  text-wrap: pretty;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .8);
}
.hero__trust svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  translate: -50% 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.hero__scroll i {
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), transparent);
  animation: scrollLine 2.1s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   5 · SECTIONS & HEADINGS
   ========================================================================== */
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--cream { background: var(--grey-50); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, .82); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.shead {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 64px);
}
.shead--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.shead--center .eyebrow::after {
  content: '';
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.shead h1, .shead h2 {
  font-size: var(--fs-3xl);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section--dark .eyebrow { color: var(--gold); }

.shead p {
  font-size: var(--fs-lg);
  color: var(--grey-500);
  text-wrap: pretty;
}
.section--dark .shead p { color: rgba(255, 255, 255, .7); }

/* ==========================================================================
   6 · MARQUEE / TICKER
   ========================================================================== */
.ticker {
  --speed: 42s;
  position: relative;
  display: flex;
  overflow: hidden;
  padding-block: 15px;
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  border-block: 1px solid var(--ink-line);
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker--brands {
  --speed: 55s;
  background: var(--white);
  color: var(--grey-700);
  border-color: var(--grey-100);
  padding-block: 22px;
}
.ticker__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  animation: marquee var(--speed) linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.ticker--brands .ticker__item {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--grey-400);
  transition: color var(--t-fast);
}
.ticker--brands a.ticker__item:hover { color: var(--red); }
.ticker__dot { color: var(--gold); font-size: .7em; }

/* ==========================================================================
   7 · PRODUKT- & MARKEN-KARTEN
   ========================================================================== */
.grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background:
    radial-gradient(75% 65% at 50% 42%, #fff 0%, var(--grey-50) 55%, var(--grey-100) 100%);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform .75s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.09) rotate(-1.5deg); }

/* Glanz beim Hover über die Karte */
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .55) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.card:hover .card__media::after { transform: translateX(120%); }

.card__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(227, 6, 19, .3);
}
.card__badge--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: var(--ink); box-shadow: 0 6px 16px rgba(201, 168, 76, .35); }
.card__badge--brand { background: var(--brand); box-shadow: var(--sh-glow); }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 9px;
  padding: 22px 22px 24px;
}
.card__brand {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}
.card__title { font-size: var(--fs-xl); }
.card__title a::after { content: ''; position: absolute; inset: 0; }
.card__text {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  flex: 1;
}
.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--grey-100);
}
.card__price { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.card__price b { font-family: var(--font-display); font-size: var(--fs-lg); }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 600; color: var(--brand);
  transition: gap var(--t-fast), color var(--t-fast);
}
.card__link:hover { gap: 11px; color: var(--red); }

.stars { display: inline-flex; align-items: center; gap: 5px; font-size: var(--fs-sm); color: var(--gold); }
.stars span { color: var(--grey-400); font-size: var(--fs-xs); }

/* ==========================================================================
   8 · USP / FEATURE-STRIP
   ========================================================================== */
.usp { display: grid; gap: clamp(16px, 2vw, 26px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr)); }
.usp__item {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.usp__item::before {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.usp__item:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.usp__item:hover::before { transform: scaleX(1); }
.usp__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0, 119, 182, .1), rgba(227, 6, 19, .08));
  color: var(--brand);
}
.usp__icon svg { width: 25px; height: 25px; }
.usp__item h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.usp__item p { font-size: var(--fs-sm); color: var(--grey-500); }

.section--dark .usp__item {
  background: rgba(255, 255, 255, .04);
  border-color: var(--ink-line);
}
.section--dark .usp__item p { color: rgba(255, 255, 255, .66); }
.section--dark .usp__icon { background: rgba(255, 255, 255, .07); color: var(--gold); }

/* ==========================================================================
   9 · SPLIT / STORY
   ========================================================================== */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}
.split--rev > *:first-child { order: 2; }

.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.split__media--contain img {
  object-fit: contain;
  background: radial-gradient(70% 60% at 50% 45%, #fff, var(--grey-50) 60%, var(--grey-100));
  padding: 8%;
}
.split__media::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-xl);
  opacity: .4;
}

.split__stat {
  position: absolute;
  right: clamp(-10px, -1vw, 0px);
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 18px 26px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  text-align: center;
}
.split__stat b {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1;
  color: var(--red);
}
.split__stat span { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--grey-500); }

.prose > * + * { margin-top: 1.1em; }
.prose p { color: var(--grey-500); text-wrap: pretty; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose h3 { font-size: var(--fs-xl); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color var(--t-fast); }
.prose a:hover { color: var(--red); }
.section--dark .prose p { color: rgba(255, 255, 255, .72); }

.checklist { display: grid; gap: 11px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--fs-sm);
  color: var(--grey-700);
}
.checklist svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.section--dark .checklist li { color: rgba(255, 255, 255, .78); }
.section--dark .checklist svg { color: var(--gold); }

.stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 52px); }
.stats__item b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.05;
  color: var(--red);
}
.stats__item span { font-size: var(--fs-xs); letter-spacing: .11em; text-transform: uppercase; color: var(--grey-400); }
.section--dark .stats__item b { color: var(--gold); }

/* ==========================================================================
   10 · GALERIE (Mosaik aus echten Produktbildern)
   ========================================================================== */
.mosaic {
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 15vw, 200px);
}
.mosaic__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: radial-gradient(70% 60% at 50% 45%, #fff, var(--grey-50) 60%, var(--grey-100));
}
.mosaic__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.mosaic__cell--contain img { object-fit: contain; padding: 10%; }
.mosaic__cell:hover img { transform: scale(1.07); }
.mosaic__cell--wide { grid-column: span 2; }
.mosaic__cell--tall { grid-row: span 2; }
.mosaic__cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 16px 13px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(8, 19, 29, .8));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
}
.mosaic__cell:hover figcaption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   11 · STORE / KONTAKT
   ========================================================================== */
.store {
  display: grid;
  gap: clamp(26px, 4vw, 54px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  align-items: start;
}
.store__list { display: grid; gap: 14px; }
.info {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.info:hover { transform: translateX(5px); box-shadow: var(--sh-md); border-color: transparent; }
.info__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(227, 6, 19, .1), rgba(0, 119, 182, .09));
  color: var(--red);
}
.info__icon svg { width: 22px; height: 22px; }
.info strong { display: block; font-size: var(--fs-sm); color: var(--ink); margin-bottom: 3px; }
.info span, .info a { font-size: var(--fs-sm); color: var(--grey-500); }
.info a:hover { color: var(--red); }

.map {
  position: relative;
  min-height: 380px;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--grey-100);
}
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* Öffnungszeiten-Tabelle */
.hours { display: grid; gap: 2px; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  font-size: var(--fs-sm);
  border-bottom: 1px dashed var(--grey-200);
}
.hours__row:last-child { border-bottom: 0; }
.hours__row.is-closed { color: var(--grey-400); }
.hours__row b { font-weight: 600; color: var(--ink); }
.section--dark .hours__row { border-color: var(--ink-line); }
.section--dark .hours__row b { color: #fff; }

/* Formular */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.field { display: grid; gap: 7px; }
.field label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, .13);
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-400); }

.form__note { font-size: var(--fs-xs); color: var(--grey-400); }
.form__msg {
  padding: 14px 18px;
  font-size: var(--fs-sm);
  border-radius: var(--r-md);
  background: rgba(0, 119, 182, .09);
  color: var(--brand-deep);
  display: none;
}
.form__msg.is-visible { display: block; animation: popIn .4s var(--ease-spring); }
@keyframes popIn { from { opacity: 0; transform: translateY(9px) scale(.98); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   12 · FAQ (Accordion)
   ========================================================================== */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq__item[open] { box-shadow: var(--sh-md); border-color: transparent; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 24px;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red); }
.faq__q i {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq__q i::before, .faq__q i::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px;
  translate: -50% -50%;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--t);
}
.faq__q i::after { transform: rotate(90deg); }
.faq__item[open] .faq__q i::after { transform: rotate(0); }
.faq__a { padding: 0 24px 21px; font-size: var(--fs-sm); color: var(--grey-500); }
.faq__a p + p { margin-top: .8em; }

/* ==========================================================================
   13 · CTA-BAND
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(125deg, var(--ink) 0%, var(--brand-deep) 55%, #06202e 100%);
  color: #fff;
  text-align: center;
}
.cta::before, .cta::after {
  content: '';
  position: absolute; z-index: -1;
  width: 46vmax; aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(95px);
  opacity: .3;
}
.cta::before { top: -30%; left: -10%; background: var(--brand-mid); }
.cta::after  { bottom: -35%; right: -8%; background: var(--red); opacity: .22; }

.cta h2 { font-size: var(--fs-3xl); color: #fff; margin-bottom: 15px; text-wrap: balance; }
.cta p { font-size: var(--fs-lg); color: rgba(255, 255, 255, .78); max-width: 58ch; margin: 0 auto 32px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   14 · BREADCRUMB
   ========================================================================== */
.crumb {
  padding-top: calc(var(--nav-h) + 26px);
  padding-bottom: 6px;
}
.crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--grey-400); }
.crumb li { display: flex; align-items: center; gap: 8px; }
.crumb li + li::before { content: '/'; color: var(--grey-200); }
.crumb a:hover { color: var(--red); }
.crumb [aria-current] { color: var(--grey-700); }

/* Seiten-Header für Unterseiten */
.phead {
  padding-block: clamp(26px, 4vw, 44px) clamp(38px, 5vw, 62px);
  border-bottom: 1px solid var(--grey-100);
}
.phead h1 { font-size: var(--fs-3xl); margin-bottom: 15px; max-width: 20ch; text-wrap: balance; }
.phead p { font-size: var(--fs-lg); color: var(--grey-500); max-width: 68ch; text-wrap: pretty; }
.phead__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; font-size: var(--fs-sm); color: var(--grey-500); }
.phead__meta span { display: inline-flex; align-items: center; gap: 8px; }
.phead__meta svg { width: 17px; height: 17px; color: var(--red); }

/* ==========================================================================
   15 · INTERNE VERLINKUNG (Nischen-Netz)
   ========================================================================== */
.linkgrid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.linkgrid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 19px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--grey-700);
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.linkgrid a::after {
  content: '→';
  color: var(--grey-200);
  transition: transform var(--t-fast), color var(--t-fast);
}
.linkgrid a:hover {
  color: var(--ink);
  border-color: var(--red);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.linkgrid a:hover::after { color: var(--red); transform: translateX(4px); }
.section--dark .linkgrid a { background: rgba(255, 255, 255, .04); border-color: var(--ink-line); color: rgba(255, 255, 255, .8); }
.section--dark .linkgrid a:hover { color: #fff; border-color: var(--gold); }

/* Tag-Pills */
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pills a, .pills span {
  padding: 8px 16px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--grey-700);
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-pill);
  transition: var(--t-fast);
}
.pills a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   16 · FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  padding-top: clamp(52px, 7vw, 84px);
  font-size: var(--fs-sm);
}
.footer__grid {
  display: grid;
  gap: clamp(30px, 4vw, 50px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  padding-bottom: clamp(38px, 5vw, 58px);
}
.footer__brand { grid-column: span 1; max-width: 340px; }
.footer__logo img { height: 46px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__brand p { margin-bottom: 20px; text-wrap: pretty; }

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__links { display: grid; gap: 9px; align-content: start; }
.footer__links a, .footer__links span { color: rgba(255, 255, 255, .62); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer__links a:hover { color: #fff; padding-left: 5px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-block: 22px;
  border-top: 1px solid var(--ink-line);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .45);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   17 · MOBILE STICKY CALL-BAR (Anfragen-Booster)
   ========================================================================== */
.callbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 880;
  display: none;
  gap: 1px;
  background: var(--ink-line);
  box-shadow: 0 -6px 24px rgba(8, 19, 29, .18);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 11px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
}
.callbar a:first-child { background: var(--red); }
.callbar svg { width: 19px; height: 19px; }

/* ==========================================================================
   18 · BACK TO TOP
   ========================================================================== */
.totop {
  position: fixed;
  right: clamp(14px, 2.5vw, 30px);
  bottom: clamp(14px, 2.5vw, 30px);
  z-index: 870;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: var(--t);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--red); transform: translateY(-3px) scale(1.05); }
.totop svg { width: 19px; height: 19px; }

/* ==========================================================================
   19 · SCROLL-REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Lesefortschritt oben */
.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 950;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-mid), var(--red), var(--gold));
  transition: width .1s linear;
}

/* ==========================================================================
   20 · RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .burger { display: flex; }

  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 18px var(--gutter) 120px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav__menu > * {
    border-bottom: 1px solid var(--grey-100);
  }
  .nav__link {
    display: block;
    padding: 15px 2px;
    font-size: var(--fs-lg);
    color: var(--grey-800) !important;
  }
  .nav__link::after { display: none; }

  .nav__drop {
    position: static;
    translate: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 12px 14px;
    min-width: 0;
    display: none;
  }
  .nav__item.is-open .nav__drop { display: grid; }
  .nav__item.is-open .nav__caret { transform: rotate(225deg) translateY(-1px); }

  .lang { margin-top: 18px; border: 0 !important; }
  .lang__btn { width: 100%; justify-content: center; padding: 12px; }
  .lang__list { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 8px 0 0; }
  .lang__list a { justify-content: center; }

  .nav.is-over-hero:not(.is-stuck) .nav__menu.is-open .nav__link { color: var(--grey-800) !important; }

  .callbar { display: flex; }
  body { padding-bottom: 62px; }
  .totop { bottom: 74px; }

  .split--rev > *:first-child { order: 0; }
  .split__media::after { display: none; }
}

@media (max-width: 900px) {
  /* Hero einspaltig: Text zuerst, Bild darunter */
  .hero { min-height: auto; padding-block: calc(var(--nav-h) + 40px) 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__figure { width: min(100%, 400px); order: 2; }
  .hero__frame { transform: none; animation: none; opacity: 1; }
  .hero__chip { left: 0; }
  .hero__chip--alt { right: 0; }
}

@media (max-width: 680px) {
  .hero__trust { gap: 9px 18px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__scroll { display: none; }
  .hero__figure { width: min(100%, 330px); }
  .hero__chip { padding: 11px 16px; }
  .hero__chip b { font-size: var(--fs-lg); }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(112px, 30vw, 170px);
  }
  .mosaic__cell--tall { grid-row: span 1; }

  .split__stat { position: static; margin-top: 14px; box-shadow: var(--sh-md); }
  .stats { gap: 22px 32px; }
  .card__media { aspect-ratio: 4 / 3; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .mosaic__cell--wide { grid-column: span 2; }
}

/* ==========================================================================
   21 · A11Y / PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .intro { display: none; }
}

@media print {
  .nav, .callbar, .totop, .intro, .progress, .ticker, .map { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* ==========================================================================
   22 · VEREDELUNG — feinere Typografie & ruhigere Flächen
   ========================================================================== */
:root {
  --gold-soft: #d9c07f;
  --hairline: rgba(8, 19, 29, .085);
  --sh-fine: 0 1px 2px rgba(8, 19, 29, .04), 0 8px 28px rgba(8, 19, 29, .06);
  --sh-rise: 0 2px 4px rgba(8, 19, 29, .05), 0 22px 55px rgba(8, 19, 29, .13);
}

h1, h2, h3 { letter-spacing: -.024em; }
.hero__title, .shead h1, .shead h2, .phead h1, .cta h2 { font-weight: 600; }

/* Zierlinie unter zentrierten Abschnittstiteln */
.shead--center h2::after {
  content: '';
  display: block;
  width: 54px; height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section--dark .shead--center h2::after {
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.eyebrow { letter-spacing: .28em; font-weight: 600; font-size: 11px; }
.eyebrow::before, .shead--center .eyebrow::after { width: 20px; opacity: .55; }

/* Karten: Haarlinie statt kräftigem Rahmen */
.card, .usp__item, .info, .faq__item, .linkgrid a {
  border-color: var(--hairline);
  box-shadow: var(--sh-fine);
}
.card:hover { box-shadow: var(--sh-rise); border-color: transparent; }
.card__media { background: linear-gradient(168deg, #fff 0%, var(--grey-50) 62%, #e8f1f6 100%); }
.card__title { font-weight: 600; }
.card__brand { letter-spacing: .2em; font-size: 10px; }
.card__price {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--grey-500);
  text-transform: uppercase;
}

.section + .section:not(.section--dark):not(.cta):not(.section--cream):not(.inquiry) {
  border-top: 1px solid var(--hairline);
}

/* ==========================================================================
   23 · ANFRAGE-SEKTION
   ========================================================================== */
.inquiry {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(80% 70% at 12% 0%, #12374f 0%, transparent 60%),
    linear-gradient(155deg, #0a1a27 0%, var(--ink) 60%, #050d15 100%);
  color: rgba(255, 255, 255, .78);
}
.inquiry::before {
  content: '';
  position: absolute; z-index: -1;
  top: -25%; right: -12%;
  width: 46vmax; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  filter: blur(110px);
  opacity: .17;
}
.inquiry h2 { color: #fff; font-size: var(--fs-2xl); margin-bottom: 14px; }
.inquiry p { color: rgba(255, 255, 255, .7); }
.inquiry .eyebrow { color: var(--gold-soft); }
.inquiry .checklist li { color: rgba(255, 255, 255, .8); }
.inquiry .checklist svg { color: var(--gold); }

.inquiry__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.inquiry__direct { display: grid; gap: 10px; margin-top: 30px; }
.inquiry__way {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  transition: var(--t);
}
.inquiry__way:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(201, 168, 76, .45);
  transform: translateX(5px);
}
.inquiry__way-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: rgba(227, 6, 19, .16);
  color: #fff;
}
.inquiry__way-icon svg { width: 20px; height: 20px; }
.inquiry__way b { display: block; color: #fff; font-size: var(--fs-sm); font-weight: 600; }
.inquiry__way i { font-style: normal; font-size: var(--fs-xs); color: rgba(255, 255, 255, .55); }

.inquiry__form {
  padding: clamp(24px, 3.4vw, 40px);
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-xl);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
}

/* Formularfelder auf dunklem Grund */
.inquiry__form .field label,
.modal__body .field label { color: rgba(255, 255, 255, .62); }

.inquiry__form .field input,
.inquiry__form .field select,
.inquiry__form .field textarea,
.modal__body .field input,
.modal__body .field select,
.modal__body .field textarea {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}
.inquiry__form .field input::placeholder,
.inquiry__form .field textarea::placeholder,
.modal__body .field input::placeholder,
.modal__body .field textarea::placeholder { color: rgba(255, 255, 255, .34); }

.inquiry__form .field select option,
.modal__body .field select option { background: #0e2334; color: #fff; }

.inquiry__form .field input:focus,
.inquiry__form .field select:focus,
.inquiry__form .field textarea:focus,
.modal__body .field input:focus,
.modal__body .field select:focus,
.modal__body .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .18);
  background: rgba(255, 255, 255, .1);
}
.inquiry__form .form__note,
.modal__body .form__note { color: rgba(255, 255, 255, .42); text-align: center; }
.inquiry__form .form__msg,
.modal__body .form__msg { background: rgba(227, 6, 19, .16); color: #ffd9dc; }

.form button[type="submit"] svg { width: 18px; height: 18px; transition: transform var(--t); }
.form button[type="submit"]:hover svg { transform: translateX(5px); }

/* ==========================================================================
   24 · SCHWEBENDER MAIL-BUTTON
   ========================================================================== */
.fab {
  position: fixed;
  right: clamp(14px, 2.5vw, 30px);
  bottom: clamp(72px, 8vw, 88px);
  z-index: 875;
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 17px;
  color: #fff;
  background: var(--red);
  border-radius: var(--r-pill);
  box-shadow: 0 14px 34px rgba(227, 6, 19, .4);
  transition: padding var(--t), transform var(--t), background var(--t), box-shadow var(--t);
}
.fab svg { width: 22px; height: 22px; flex-shrink: 0; position: relative; z-index: 1; }
.fab__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: 600;
  opacity: 0;
  position: relative; z-index: 1;
  transition: max-width .42s var(--ease-out), opacity .28s var(--ease), margin-left .42s var(--ease-out);
}
.fab:hover, .fab:focus-visible {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(227, 6, 19, .5);
}
.fab:hover .fab__label, .fab:focus-visible .fab__label {
  max-width: 190px;
  opacity: 1;
  margin-left: 10px;
}
.fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(227, 6, 19, .55);
  animation: fabPulse 2.8s ease-out infinite;
}
.fab.is-quiet .fab__pulse { animation: none; }
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(227, 6, 19, .5); }
  70%  { box-shadow: 0 0 0 18px rgba(227, 6, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}
body[data-page="contact"] .fab { display: none; }

/* ==========================================================================
   25 · MODAL
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 32px);
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 11, 17, .72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity .34s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(92svh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(165deg, #0e2334 0%, var(--ink) 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .6);
  color: rgba(255, 255, 255, .78);
  opacity: 0;
  transform: translateY(26px) scale(.97);
  transition: opacity .38s var(--ease-out), transform .45s var(--ease-spring);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }

.modal__x {
  position: absolute;
  top: 16px; right: 16px;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
  transition: var(--t-fast);
}
.modal__x:hover { color: #fff; background: var(--red); transform: rotate(90deg); }
.modal__x svg { width: 17px; height: 17px; }

.modal__head { margin-bottom: 24px; padding-right: 44px; }
.modal__head .eyebrow { color: var(--gold-soft); }
.modal__head h2 { color: #fff; font-size: var(--fs-2xl); margin-bottom: 9px; }
.modal__head p { font-size: var(--fs-sm); color: rgba(255, 255, 255, .66); }

.modal__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-line);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold-soft);
  transition: color var(--t-fast);
}
.modal__call:hover { color: #fff; }
.modal__call svg { width: 18px; height: 18px; }

body.modal-open { overflow: hidden; }

/* ==========================================================================
   26 · ERWEITERTE ANIMATIONEN
   ========================================================================== */

/* Zeilenweises Erscheinen von Überschriften */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform .95s var(--ease-out);
  transition-delay: var(--ld, 0ms);
}
.is-in .reveal-line > span { transform: none; }

.stats__item b, .split__stat b, .hero__chip b { font-variant-numeric: tabular-nums; }

/* Karten kippen leicht zum Zeiger */
.card, .usp__item {
  transform: perspective(1000px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateY(var(--ty, 0px));
  transition: transform .4s var(--ease), box-shadow var(--t), border-color var(--t);
}
.card:hover, .usp__item:hover { --ty: -7px; }
.card.is-tilting, .usp__item.is-tilting { transition: transform .12s linear, box-shadow var(--t); }

/* Lichtpunkt, der dem Zeiger folgt */
.card__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(190px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, .16), transparent 62%);
  transition: opacity .34s var(--ease);
}
.card:hover .card__glow, .usp__item:hover .card__glow { opacity: 1; }

.split__media img, .mosaic__cell img { will-change: transform; }
.ticker__track { will-change: transform; }

/* Navigation verschwindet beim Runterscrollen, kommt beim Hochscrollen */
.nav { transition: background var(--t), border-color var(--t), box-shadow var(--t), height var(--t), transform .42s var(--ease); }
.nav.is-hidden { transform: translateY(-102%); }

/* ==========================================================================
   27 · RESPONSIVE für die neuen Bausteine
   ========================================================================== */
@media (max-width: 900px) {
  .inquiry__grid { grid-template-columns: 1fr; gap: 34px; }
  .fab { bottom: 130px; }
  .totop { bottom: 130px; right: auto; left: clamp(14px, 2.5vw, 30px); }
}

@media (max-width: 680px) {
  .fab { height: 50px; padding: 0 15px; }
  .fab__label { display: none; }
  .modal__panel { padding: 24px 18px; border-radius: var(--r-lg); }
  .modal__head { padding-right: 40px; }
  .inquiry__form { padding: 22px 17px; border-radius: var(--r-lg); }
}

@media (prefers-reduced-motion: reduce) {
  .fab__pulse { animation: none; }
  .reveal-line > span { transform: none; }
  .card, .usp__item { transform: none; }
  .modal__panel { transition: none; }
}

/* ==========================================================================
   28 · MEHRSPALTIGE DROPDOWNS (11 Marken / 12 Standorte)
   ========================================================================== */
.nav__drop--wide {
  min-width: 460px;
  grid-template-columns: 1fr 1fr;
  column-gap: 6px;
}
.nav__drop--wide .nav__drop-title { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .nav__drop--wide { min-width: 0; grid-template-columns: 1fr; }
}

/* ==========================================================================
   29 · MOBILE REFINEMENT — Proportionen, Touch-Gefühl, Premium-Look
   Lädt nach allen früheren Regeln und korrigiert sie gezielt.
   ========================================================================== */

@media (max-width: 900px) {

  :root {
    --gutter: clamp(18px, 5vw, 28px);
    --callbar-h: 88px;                 /* schwebende Leiste + Abstand */
  }

  /* ---- 29.1 Buttons: menschliche Grösse statt Plakat -------------------- */
  .btn {
    padding: 13px 22px;
    font-size: var(--fs-sm);
    gap: 8px;
  }
  .btn--sm { padding: 11px 18px; font-size: var(--fs-xs); }
  .btn--lg { padding: 15px 26px; font-size: var(--fs-sm); }
  .btn svg { width: 17px; height: 17px; flex-shrink: 0; }

  /* Primärer Ruf-Button: Tiefe statt Fläche */
  .btn--primary {
    background: linear-gradient(135deg, #f2131f 0%, var(--red) 45%, var(--red-deep) 100%);
    box-shadow: 0 8px 22px rgba(227, 6, 19, .28);
  }

  /* ---- 29.2 Hero-CTA: der eigentliche „zu grosse Anruf-Knopf“ -----------
     Vorher: btn--lg über die volle Breite — ein roter Balken quer durchs Bild.
     Jetzt: beide Buttons nebeneinander, nur so breit wie ihr Text. */
  .hero__cta {
    display: flex;
    flex-wrap: wrap;                 /* auf sehr schmalen Geraeten rutscht der zweite Button darunter */
    align-items: center;
    gap: 9px;
    width: auto;
    margin-bottom: 32px;
  }
  .hero__cta .btn {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 11px 15px;
    font-size: var(--fs-xs);
    gap: 7px;
  }
  .hero__cta .btn svg { width: 15px; height: 15px; }
  /* Telefonnummer darf schrumpfen statt zu überlaufen */
  .hero__cta .btn[href^="tel:"] {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
  }

  /* ---- 29.3 Hero: ruhigere Vertikale ------------------------------------ */
  .hero { padding-block: calc(var(--nav-h) + 34px) 52px; }
  .hero__grid { gap: 34px; }
  .hero__eyebrow { margin-bottom: 18px; padding: 7px 15px; letter-spacing: .16em; }
  .hero__title { margin-bottom: 16px; line-height: 1.06; }
  .hero__sub { margin-bottom: 26px; font-size: var(--fs-base); }
  .hero__trust { gap: 8px 20px; }
  .hero__trust li { font-size: var(--fs-xs); }
  .hero__trust svg { width: 16px; height: 16px; }
  /* Zierring ruhiger, Sheen sparsamer — spart Akku und wirkt teurer */
  .hero__ring { inset: -5%; opacity: .7; }

  /* Kennzahlen als kompakte Pillen — sie sollen das Bild nicht zudecken */
  .hero__chip {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 66%;
    padding: 8px 13px;
    border-radius: var(--r-pill);
    left: -4px;
    bottom: 7%;
  }
  .hero__chip--alt { left: auto; right: -4px; top: 5%; bottom: auto; }
  .hero__chip b { font-size: var(--fs-base); }
  .hero__chip span {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: .07em;
  }
  .hero__frame { transform: none; animation: none; opacity: 1; }
  .hero__frame::after { animation-duration: 9s; }

  /* ---- 29.4 Sektionen: dichter, aber nicht gedrängt --------------------- */
  .section { padding-block: clamp(52px, 11vw, 76px); }
  .section--tight { padding-block: clamp(40px, 8vw, 60px); }
  .shead { margin-bottom: clamp(26px, 6vw, 38px); }

  /* ---- 29.5 Navigation: Menü als Sheet, Ruf-Button nicht mehr riesig ----

     BUGFIX: .nav trägt backdrop-filter (und beim Ausblenden transform).
     Beides erzeugt laut Spec einen Bezugsrahmen für position:fixed-Kinder —
     das Menü richtete sich also an der 64px hohen Nav aus statt am Viewport
     und war nur noch ~140px hoch. Auf der Startseite fiel das nicht auf, weil
     .nav.is-over-hero dort backdrop-filter:none setzt; überall sonst war das
     Menü aufgeklappt praktisch unbenutzbar. */
  .nav.is-menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none !important;
    transition: none !important;
  }

  .nav__inner { gap: 12px; }
  .nav__menu {
    padding: 12px var(--gutter) calc(40px + var(--callbar-h));
    background: linear-gradient(180deg, #fff 0%, var(--grey-50) 100%);
  }
  .nav__menu > * { border-bottom: 1px solid var(--hairline); }
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    font-size: var(--fs-base);
    font-weight: 500;
  }
  .nav__item > .nav__link { display: flex; }
  .nav__caret { margin-left: auto; opacity: .5; }
  .nav__drop { padding: 2px 0 14px 2px; }
  .nav__drop a { padding: 9px 2px; font-size: var(--fs-sm); }

  .lang { margin-top: 14px; }
  .lang__btn { border: 1px solid var(--hairline); border-radius: var(--r-pill); }
  /* Über dem Hero ist der Button weiss — im geöffneten, weissen Menü unsichtbar */
  .nav.is-over-hero:not(.is-stuck) .nav__menu.is-open .lang__btn { color: var(--grey-800) !important; }

  /* Der Ruf-Button im Menü: nur so breit wie die Nummer, nicht als Balken */
  .nav__menu > .btn {
    border-bottom: 0;
    align-self: center;
    width: auto;
    max-width: 100%;
    min-height: 44px;
    padding: 11px 20px;
    margin-top: 20px;
  }

  /* ---- 29.6 Schwebende Call-Leiste statt Balken am Rand ----------------- */
  .callbar {
    inset: auto 10px calc(10px + env(safe-area-inset-bottom)) 10px;
    gap: 4px;
    padding: 6px;
    background: rgba(9, 21, 32, .82);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(4, 11, 17, .42), 0 1px 0 rgba(255, 255, 255, .07) inset;
    /* Einflug beim ersten Rendern */
    animation: callbarIn .6s var(--ease-spring) .35s both;
  }
  .callbar a {
    gap: 5px;
    padding: 9px 4px;
    border-radius: 14px;
    background: transparent;
    color: rgba(255, 255, 255, .74);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background var(--t-fast), color var(--t-fast);
  }
  .callbar a:first-child {
    color: #fff;
    background: linear-gradient(135deg, #f2131f, var(--red-deep));
    box-shadow: 0 6px 16px rgba(227, 6, 19, .38);
  }
  .callbar a:active { background: rgba(255, 255, 255, .12); }
  .callbar a:first-child:active { background: var(--red-deep); }
  .callbar svg { width: 18px; height: 18px; }

  @keyframes callbarIn {
    from { opacity: 0; transform: translateY(120%); }
    to   { opacity: 1; transform: none; }
  }

  body { padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom)); }

  /* ---- 29.7 Ecke aufräumen: ein Aktionspunkt genügt -------------------- */
  .fab { display: none; }          /* „Anfragen“ steckt bereits in der Leiste */
  .totop {
    left: auto;
    right: 14px;
    bottom: calc(var(--callbar-h) + 12px + env(safe-area-inset-bottom));
    width: 42px; height: 42px;
    background: rgba(9, 21, 32, .8);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .14);
  }

  /* ---- 29.8 Karten & Kacheln ------------------------------------------- */
  /* Karten */
  .card__body { padding: 16px 15px 18px; }
  .usp__item { padding: 20px 18px; border-radius: var(--r-lg); }
  .usp__icon { width: 44px; height: 44px; }
  .usp__icon svg { width: 22px; height: 22px; }
  .stats { gap: 18px 26px; }

  /* ---- 29.8b Tippflaechen: 23px Zeilen sind mit dem Daumen Gluecksspiel -- */
  .footer__links a,
  .footer__links span { display: block; padding-block: 7px; }
  .footer__links h4 { margin-bottom: 4px; }
  .crumb a, .crumb span { display: inline-block; padding-block: 6px; }
  .info a { display: inline-block; padding-block: 5px; }
  main a[href^="tel:"]:not(.btn),
  main a[href^="mailto:"]:not(.btn) { display: inline-block; padding-block: 5px; }
  .footer__grid { gap: 26px 20px; }

  /* ---- 29.9 Formulare: iOS zoomt unter 16px hinein --------------------- */
  .field input, .field select, .field textarea { font-size: 16px; }

  /* ---- 29.10 Typografie: keine Ausreisser in schmalen Spalten ---------- */
  .hero__title, .shead h1, .shead h2, .phead h1, .cta h2 { text-wrap: balance; }
  .prose p, .shead p, .card__text { text-wrap: pretty; }
}

/* ---- 29.11 Touch: keine hängenden Hover-Zustände ----------------------- */
@media (hover: none) {
  .btn:hover { transform: none; box-shadow: none; }
  .btn--primary:hover { box-shadow: 0 8px 22px rgba(227, 6, 19, .28); }
  .card:hover, .usp__item:hover { --ty: 0px; transform: none; box-shadow: var(--sh-fine); }
  .card:hover .card__glow, .usp__item:hover .card__glow { opacity: 0; }
  .inquiry__way:hover { transform: none; }
  .nav__logo:hover { transform: none; }
  .btn::before { display: none; }   /* Glanzstreifen ohne Zeiger sinnlos */

  /* Sichtbares Feedback beim Antippen */
  .btn:active { transform: scale(.97); }
  .card:active, .usp__item:active { transform: scale(.99); }
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* ---- 29.12 Sehr schmale Geräte ----------------------------------------- */
@media (max-width: 380px) {
  .callbar a { font-size: 10px; padding: 8px 2px; }
  .callbar svg { width: 17px; height: 17px; }
  .hero__cta .btn { padding: 13px 16px; }
  .nav__logo img { height: 30px; }
}

/* ==========================================================================
   30 · HERO-VIDEO — dezente Uhren-Nahaufnahme als Endlosschleife
   Läuft hinter dem Verlauf, nie über der Typografie.
   Fehlt die Datei oder mag das Gerät nicht: Verlauf bleibt wie bisher.
   ========================================================================== */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;                                   /* blendet erst beim Abspielen ein */
  pointer-events: none;
  transition: opacity 1.6s var(--ease-out);
  filter: saturate(.78) contrast(1.04);
}
.hero__video.is-live { opacity: .34; }

/* Schleier: hält Kontrast für Titel, Untertitel und Buttons */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;                                   /* nur sichtbar, wenn das Video läuft */
  transition: opacity 1.6s var(--ease-out);
  background:
    linear-gradient(180deg, rgba(8, 19, 29, .62) 0%, rgba(8, 19, 29, .3) 30%, rgba(8, 19, 29, .55) 70%, var(--ink) 100%),
    linear-gradient(100deg, rgba(8, 19, 29, .78) 0%, rgba(8, 19, 29, .28) 55%, transparent 100%);
}
.hero.has-video .hero__veil { opacity: 1; }

/* Kein Video ohne Zustimmung des Geräts */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

@media (max-width: 900px) {
  /* Hochkant: der Ausschnitt soll das Zifferblatt zeigen, nicht den Rand */
  .hero__video { object-position: center 38%; }
  .hero__video.is-live { opacity: .26; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(8, 19, 29, .7) 0%, rgba(8, 19, 29, .42) 34%, rgba(8, 19, 29, .66) 72%, var(--ink) 100%);
  }
}

/* ---- Nachtrag: Badge-Pille darf die Karte nicht sprengen --------------- */
.card__badge {
  max-width: calc(100% - 28px);
  line-height: 1.35;
  text-wrap: balance;
  border-radius: 14px;              /* mehrzeilig sieht die Pille sonst schief aus */
}

@media (max-width: 900px) {
  .card__badge {
    padding: 5px 11px;
    font-size: 9.5px;
    letter-spacing: .09em;
  }
}

/* ==========================================================================
   31 · SEITLICHE RABATT-LEISTE (Sale / Aktionen)
   Reiter klebt links am Rand, Panel klappt darüber auf.
   ========================================================================== */
.salerail {
  --sale-w: min(404px, 92vw);
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 940;
  pointer-events: none;                 /* nur die Kinder fangen Klicks */
}

/* ---- Reiter ---- */
.salerail__tab {
  pointer-events: auto;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 16px 9px 18px;
  color: #fff;
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: 0 14px 38px rgba(227, 6, 19, .38), 0 0 0 1px rgba(255, 255, 255, .12) inset;
  transform: translateY(-50%);
  transition: transform .5s var(--ease-out), box-shadow var(--t), background var(--t);
  overflow: hidden;
  isolation: isolate;
}
.salerail__tab:hover,
.salerail__tab:focus-visible {
  box-shadow: 0 20px 48px rgba(227, 6, 19, .5), 0 0 0 1px rgba(255, 255, 255, .2) inset;
  transform: translateY(-50%) translateX(3px);
}
.salerail__icon { display: grid; place-items: center; }
.salerail__icon svg { width: 19px; height: 19px; }

.salerail__txt {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: rotate(180deg);            /* von unten nach oben lesen */
}
.salerail__txt b {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.salerail__txt i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold-light);
}

/* Goldener Lichtstreifen, der langsam über den Reiter wandert */
.salerail__glow {
  position: absolute;
  inset: -40% -10%;
  z-index: -1;
  background: linear-gradient(200deg, transparent 38%, rgba(255, 255, 255, .42) 50%, transparent 62%);
  transform: translateY(-120%);
  animation: saleGlow 5.5s var(--ease-out) infinite;
}
@keyframes saleGlow {
  0%, 55%   { transform: translateY(-120%); }
  85%, 100% { transform: translateY(120%); }
}

/* Pulsierender Ring — holt das Auge, ohne zu blinken */
.salerail__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(227, 6, 19, .5);
  animation: salePulse 3.2s ease-out infinite;
}
@keyframes salePulse {
  0%   { box-shadow: 0 0 0 0 rgba(227, 6, 19, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(227, 6, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}

/* Einmaliges Wackeln, damit der Reiter kurz nach dem Laden auffällt */
.salerail__tab.is-wiggle { animation: saleWiggle 1s var(--ease-spring); }
@keyframes saleWiggle {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  25%      { transform: translateY(-50%) translateX(9px); }
  55%      { transform: translateY(-50%) translateX(-2px); }
  80%      { transform: translateY(-50%) translateX(5px); }
}

/* Offen: Reiter wandert an die Panelkante und wird zum Griff */
.salerail.is-open .salerail__tab {
  transform: translateY(-50%) translateX(var(--sale-w));
}
.salerail.is-open .salerail__pulse { animation: none; }

/* ---- Panel ---- */
.salepanel {
  pointer-events: auto;
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: var(--sale-w);
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(227, 6, 19, .22) 0%, transparent 58%),
    linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
  border-right: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 26px 0 70px rgba(8, 19, 29, .45);
  transform: translateX(-101%);
  visibility: hidden;
  transition: transform .58s var(--ease-out), visibility .58s;
}
.salerail.is-open .salepanel { transform: none; visibility: visible; }

.salerail__scrim {
  pointer-events: none;                 /* geschlossen darf sie nichts blockieren */
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(8, 19, 29, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.salerail.is-open .salerail__scrim { pointer-events: auto; opacity: 1; visibility: visible; }

/* ---- Kopf ---- */
.salepanel__head {
  position: relative;
  padding: clamp(20px, 4vw, 28px) clamp(20px, 4vw, 26px) 18px;
  border-bottom: 1px solid var(--ink-line);
}
.salepanel__ribbon {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(201, 168, 76, .35);
}
.salepanel__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  line-height: 1.15;
  color: #fff;
}
.salepanel__head p {
  margin-top: 7px;
  font-size: var(--fs-sm);
  color: var(--grey-400);
  max-width: 30ch;
}
.salepanel__close {
  position: absolute;
  top: clamp(16px, 3vw, 22px);
  right: clamp(14px, 3vw, 20px);
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  transition: var(--t-fast);
}
.salepanel__close:hover { background: var(--red); transform: rotate(90deg); }
.salepanel__close svg { width: 17px; height: 17px; }

/* ---- Körper ---- */
.salepanel__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(18px, 3.5vw, 24px) clamp(18px, 3.5vw, 26px) 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .2) transparent;
}
.salepanel__body::-webkit-scrollbar { width: 6px; }
.salepanel__body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .18); border-radius: 3px; }

.saleblock + .saleblock { margin-top: 26px; }
.saleblock h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 13px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.saleblock__pct {
  margin-left: auto;
  padding: 3px 9px;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: var(--r-pill);
}
.saleblock__hint {
  margin-left: auto;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--grey-500);
  text-transform: none;
}
.saleblock__sub {
  margin: -6px 0 13px;
  font-size: var(--fs-sm);
  color: var(--grey-400);
}

/* ---- Artikel ---- */
.saleitems { list-style: none; display: grid; gap: 11px; }
.saleitem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
}
.saleitem:hover, .saleitem:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(227, 6, 19, .5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
}
.saleitem__off {
  position: absolute;
  top: 0; right: 0;
  padding: 4px 9px 5px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  border-radius: 0 var(--r-md) 0 12px;
}
.saleitem__off i { font-style: normal; font-size: 9px; margin-left: 1px; }
.saleitem__pic {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.saleitem__pic img { width: 100%; height: 100%; object-fit: cover; }
.saleitem__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.saleitem__txt strong {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.saleitem__txt small { font-size: 11px; color: var(--grey-500); }
.saleitem__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 4px;
}
.saleitem__price s {
  position: relative;
  font-size: 12.5px;
  color: var(--grey-500);
  text-decoration: none;                /* den Strich zeichnen wir selbst */
}
.saleitem__price s::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 52%;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out) .25s;
}
.salerail.is-open .saleitem__price s::after { transform: scaleX(1); }
.saleitem__price b {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.saleitem__price b em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--grey-400);
  margin-right: 5px;
  vertical-align: 2px;
}

/* Lichtstreifen beim Klick */
.saleitem__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .3) 50%, transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
}
.js-pop.is-hit .saleitem__shine { animation: saleShine .75s var(--ease-out); }
@keyframes saleShine {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}
.js-pop.is-hit { animation: salePop .5s var(--ease-spring); }
@keyframes salePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.045); }
  100% { transform: scale(1); }
}

/* ---- Marken ---- */
.salebrands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.salebrand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 10px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
}
.salebrand:hover, .salebrand:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(201, 168, 76, .55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}
.salebrand__pic {
  display: block;
  width: 100%;
  height: 46px;
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
}
.salebrand__pic img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;          /* Zifferblatt statt Hintergrund */
}
.salebrand__name {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  text-wrap: balance;
}
.salebrand__off {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-light);
}

/* ---- Fuss ---- */
.salepanel__foot {
  padding: 14px clamp(18px, 3.5vw, 26px) calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-line);
  background: rgba(8, 19, 29, .6);
}
.salepanel__foot .btn { justify-content: center; gap: 9px; }
.salepanel__foot .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.salepanel__note {
  margin-top: 9px;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--grey-500);
  text-align: center;
}

/* ---- Konfetti ---- */
.confetti {
  position: fixed;
  inset: 0;
  z-index: 970;
  pointer-events: none;
}

/* ---- Klein & mobil ---- */
@media (max-width: 900px) {
  .salerail { --sale-w: min(360px, 88vw); }
  .salerail__tab {
    top: auto;
    bottom: calc(78px + env(safe-area-inset-bottom));
    padding: 12px 8px 13px;
    transform: none;
  }
  .salerail__tab:hover, .salerail__tab:focus-visible { transform: translateX(3px); }
  .salerail.is-open .salerail__tab { transform: translateX(var(--sale-w)); }
  .salerail__tab.is-wiggle { animation: saleWiggleM 1s var(--ease-spring); }
  @keyframes saleWiggleM {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(9px); }
    55%      { transform: translateX(-2px); }
    80%      { transform: translateX(5px); }
  }
  .salerail__txt b { font-size: 11px; letter-spacing: .18em; }
  .salerail__txt i { font-size: 9.5px; }
}
@media (max-width: 400px) {
  .salebrands { grid-template-columns: repeat(2, 1fr); }
}

/* Bei sehr flachem Fenster muss der Reiter schmaler werden */
@media (max-height: 520px) {
  .salerail__tab { padding: 9px 7px 10px; }
  .salerail__txt i { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .salerail__glow, .salerail__pulse { animation: none; }
  .salepanel { transition: transform .01s; }
  .saleitem__price s::after { transition: none; transform: scaleX(1); }
  .js-pop.is-hit, .js-pop.is-hit .saleitem__shine { animation: none; }
}
