/* ================================================================
   apart wellness — Premium CSS
   Inspired by Porsche Design Language:
   Cinematic · Minimal · Confident · Precise
================================================================ */

/* ── Custom Properties ── */
:root {
  /* Brand */
  --brand:        #8d0303;
  --brand-mid:    #a02d2d;
  --brand-soft:   #b35757;
  --brand-light:  #c08181;
  --brand-pale:   #f0e0e0;
  --brand-dark:   #5a0101;

  /* Neutrals */
  --black:        #080808;
  --dark:         #111111;
  --dark-mid:     #1a1a1a;
  --dark-soft:    #242424;
  --mid:          #3a3a3a;
  --grey:         #6b6b6b;
  --grey-light:   #9a9a9a;
  --grey-pale:    #c8c8c8;
  --border:       #e2e2e2;
  --border-dark:  rgba(255,255,255,0.10);
  --white:        #ffffff;
  --off-white:    #f8f6f6;
  --warm:         #f5efef;

  /* Typography — Schritt 5: sitewide auf Quicksand (Überschriften/UI) +
     Raleway (Fließtext) umgestellt, selbst gehostet (css/fonts.css).
     --font-sans wird für Fließtext/Inputs weiterverwendet (jetzt Raleway
     statt Inter), --font-display ist neu und gilt für Überschriften,
     Buttons, Navigation, Labels (siehe Block "SCHRITT 5 — TYPOGRAFIE"
     am Dateiende). --font-head aktiviert den bereits vorhandenen,
     bisher ungenutzten Fallback in products.css/sauna-detail-page.css. */
  --font-sans:    'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head:    var(--font-display);

  /* Easing — Porsche uses precise, mechanical curves */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.76, 0, 0.24, 1);
  --ease-reveal:  cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --header-h:     72px;
  --max-w:        1340px;
  --section-py:   140px;
  --gutter:       48px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Gesamte Website 10% heller — wirkt global auf alle Farben/Bilder,
     ohne einzelne Selektoren/Overlays/fixed-Elemente zu beeinflussen. */
  filter: brightness(1.1);
}
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: auto;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Custom cursor disabled — using system default */

/* ================================================================
   TEXT REVEAL ANIMATION — Porsche clip-reveal
================================================================ */
/* ── Reveal wrap — supports both block and inline-block contexts ── */
.reveal-wrap {
  overflow: hidden;
  display: block;
  line-height: 1.15;
  /* For h2 children we override in context */
}
.section-head h2 .reveal-wrap,
.light-h2 .reveal-wrap,
.contact-head h2 .reveal-wrap {
  display: block;
  overflow: hidden;
}
.reveal-line {
  display: block;
  transform: translateY(108%);
  opacity: 0;
  transition: transform 1.0s var(--ease-reveal), opacity 0.5s ease;
  will-change: transform;
  /* CSS-Sicherheitsnetz: garantiert Sichtbarkeit auch ohne/verzoegertes JS */
  animation: safe-reveal-fallback 0.01s 2.5s forwards;
}
.reveal-line.in {
  transform: translateY(0);
  opacity: 1;
}
.reveal-line.d1 { transition-delay: 0.15s; }
.reveal-line.d2 { transition-delay: 0.30s; }
.reveal-line.d3 { transition-delay: 0.45s; }
.reveal-line.d4 { transition-delay: 0.60s; }
.reveal-line.d5 { transition-delay: 0.75s; }

/* Tag reveal-line preserves inline-block */
.tag.reveal-line { display: inline-block; }

/* Standard fade-up for supporting elements */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  /* CSS-Sicherheitsnetz: garantiert Sichtbarkeit auch ohne/verzoegertes JS
     (z. B. blockierte Skripte, langsames Laden, Crawler ohne JS-Support) */
  animation: safe-reveal-fallback 0.01s 2.5s forwards;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d0 { transition-delay: 0ms !important; }
.d1 { transition-delay: 80ms !important; }
.d2 { transition-delay: 160ms !important; }
.d3 { transition-delay: 240ms !important; }
.d4 { transition-delay: 320ms !important; }
.d5 { transition-delay: 400ms !important; }

/* Fade-in only (no movement) */
.fade-in {
  opacity: 0;
  transition: opacity 1.1s ease;
  animation: safe-reveal-fallback 0.01s 2.5s forwards;
}
.fade-in.visible { opacity: 1; }

/* Fallback-Keyframe: erzwingt sichtbaren Endzustand (Opacity 1, keine
   Verschiebung), falls JS die .visible/.in-Klasse nicht rechtzeitig
   hinzufuegt. Greift nach 2.5s automatisch per reiner CSS-Animation —
   unabhaengig von JavaScript, IntersectionObserver oder Netzwerk-Timing. */
@keyframes safe-reveal-fallback {
  from { opacity: 0; }
  to   { opacity: 1; transform: none; }
}

/* Nutzer mit "Animationen reduzieren" oder generell: Inhalte sollen nie
   dauerhaft unsichtbar bleiben, auch wenn JS gar nicht laeuft. */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in, .reveal-line {
    animation-duration: 0.01s;
    animation-delay: 0.1s;
  }
}

/* ================================================================
   BUTTONS — Porsche: rectangular, precise, ghost
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Fill-wipe on hover — Porsche micro-interaction */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-in-out);
  opacity: 0.08;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(141,3,3,0.28);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-ghost-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}
/* Porsche Hero CTA — Glassmorphism Pill */
.btn-light-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  padding: 13px 32px;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.btn-light-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.80);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.25);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}
.btn-dark:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-white {
  background: var(--white);
  color: var(--brand);
  border: 1px solid var(--white);
}
.btn-white:hover {
  background: var(--brand-pale);
  border-color: var(--brand-pale);
}
.btn-sm { padding: 11px 24px; font-size: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Tags / Labels ── */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.tag--light { color: var(--brand-light); }
.tag--muted  { color: var(--grey-light); letter-spacing: 0.18em; }

/* ── Section Heads ── */
.section-head { margin-bottom: 80px; }
.section-head.--center { text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.10;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-sub {
  font-size: 16px;
  color: var(--grey);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.75;
}
.section-head.--center .section-sub { margin: 0 auto; }
.light-h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.10;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

/* ── Horizontal rule — Porsche-style thin divider ── */
.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--brand);
  margin-bottom: 32px;
}
.rule--light { background: rgba(255,255,255,0.35); }

/* ── Porsche-style animated section entry line ── */
.section-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--brand);
  margin-bottom: 36px;
  opacity: 0;
  /* overrides fade-up transform — just width + opacity */
  transform: none !important;
  transition: width 1.2s var(--ease-reveal), opacity 0.3s ease;
}
.section-line.visible {
  width: 48px;
  opacity: 1;
}
.section-line--light { background: var(--brand-light); }

/* ================================================================
   HEADER — transparent on hero, solid on scroll
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  /* Dauerhafter, dezenter dunkler Schleier statt komplett transparent:
     sichert Lesbarkeit von weißem Logo/Text auch auf Seiten ohne dunkles
     Hero-Bild direkt unter dem Header (z.B. Datenschutz, Impressum, FAQ). */
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(6px);
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
  border-bottom: none;
}
/* Porsche: sanfte Vignette oben für Header-Lesbarkeit auf hellem Bild */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.12) 60%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: -1;
}
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled {
  background: rgba(12,12,12,0.94);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ── Logo — zentriert wie Porsche ── */
.logo {
  display: inline-grid;
  grid-template-columns: 1fr;
  justify-items: start;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.25s ease;
  grid-column: 2;
  justify-self: center;
}
.logo:hover { opacity: 0.70; }

/* "apart" — ultra-bold, groß, nimmt volle Breite */
.logo-word {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  display: block;
  transition: color 0.5s ease;
  text-transform: lowercase;
}

/* "wellness" — beginnt unter "p", endet exakt unter "t" von apart */
.logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.80);
  display: block;
  margin-top: 3px;
  margin-left: 22%;
  /* Streckt "wellness" so dass es exakt beim "t" endet */
  width: 78%;
  text-align: justify;
  text-align-last: justify;
  transition: color 0.5s ease;
}

/* Scrolled — bleibt weiß auf dunklem Header */
.site-header.scrolled .logo-word { color: var(--white); }
.site-header.scrolled .logo-sub  { color: rgba(255,255,255,0.70); }

/* ── Foto-Logo (nur index.html Header) ── */
.logo--img-real {
  display: inline-flex !important;
  align-items: center;
  line-height: 0;
  grid-column: 2;
  justify-self: center;
}
.logo--img-real canvas,
.logo--img-real img:not([aria-hidden]) {
  display: block;
  height: 46px;
  width: auto;
  /* Echtes transparentes PNG — Original 1:1, KEINE Filter/Effekte. */
  filter: none;
  transition: opacity 0.25s ease;
}
.site-header.scrolled .logo--img-real canvas,
.site-header.scrolled .logo--img-real img:not([aria-hidden]) {
  filter: none;
}
.logo--img-real:hover canvas,
.logo--img-real:hover img:not([aria-hidden]) { opacity: 0.75; }

/* Footer logo */
.logo--footer .logo-word { color: rgba(255,255,255,0.90); }
.logo--footer .logo-sub  { color: rgba(255,255,255,0.50); }

/* Nav — links */
.main-nav {
  grid-column: 1;
  justify-self: start;
}

/* Header Actions — rechts */
.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: row-reverse; /* CTA ganz links, Icons rechts */
}

/* ── Header Utility Icon-Buttons (Barrierefreiheit & Sprache) ── */
.header-util-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: rgba(255,255,255,0.80);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.header-util-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  pointer-events: none;
}
.header-util-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.site-header.scrolled .header-util-btn {
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.75);
}
.site-header.scrolled .header-util-btn:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
/* porsche-page (weißer Header) */
.porsche-page .site-header .header-util-btn {
  border-color: rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.55);
}
.porsche-page .site-header .header-util-btn:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.35);
  color: #111;
}

/* ── Nav ── */
.nav-list { display: flex; gap: 44px; }
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* Scrolled state nav links — Header dunkel, Links weiß */
.site-header.scrolled .nav-link { color: rgba(255,255,255,0.75); }
.site-header.scrolled .nav-link::after { background: var(--white); }
.site-header.scrolled .nav-link:hover { color: var(--white); }

/* Header CTA */
.header-cta {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  padding: 10px 26px;
  font-size: 10px;
  border-radius: 24px;
  letter-spacing: 0.13em;
}
.header-cta:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.75);
}
.site-header.scrolled .header-cta {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
}
.site-header.scrolled .header-cta:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

/* ================================================================
   MENÜ UTILITY BUTTONS — Barrierefreiheit & Gendern
   (sitzen in .dd-cats, weißer Hintergrund)
================================================================ */

/* Wrapper im Menü — unter den Sub-Links */
.dd-util-btns {
  padding: 12px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Basis-Button im Menü */
.util-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #444;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
  text-align: left;
}
.util-btn:hover {
  background: #efefef;
  border-color: #bbb;
  color: #111;
}
.util-btn.active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.util-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: 0.7;
}
.util-btn.active svg {
  opacity: 1;
}

/* ── BARRIEREFREIHEIT PANEL ── */
.a11y-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 40px rgba(0,0,0,0.18);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.a11y-panel.open {
  transform: translateX(0);
}

.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #e8e8e8;
}
.a11y-panel-header h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}
.a11y-panel-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: background 0.15s;
}
.a11y-panel-close:hover { background: #f2f2f2; }

.a11y-panel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.a11y-group-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

/* Toggle-Schalter */
.a11y-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.a11y-toggle-label {
  font-size: 13px;
  color: #222;
  font-weight: 400;
  line-height: 1.4;
}
.a11y-toggle-label small {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.a11y-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.a11y-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.a11y-switch-track {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.a11y-switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.a11y-switch input:checked + .a11y-switch-track {
  background: #111;
}
.a11y-switch input:checked + .a11y-switch-track::after {
  transform: translateX(20px);
}

/* Schriftgröße Stepper */
.a11y-font-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.a11y-stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.a11y-stepper-btn:hover { background: #f2f2f2; border-color: #bbb; }
.a11y-stepper-val {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  min-width: 28px;
  text-align: center;
}

/* Reset-Link */
.a11y-reset-btn {
  margin-top: 4px;
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: none;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-sans);
}
.a11y-reset-btn:hover { background: #f5f5f5; color: #111; }

/* ── GENDERN PANEL ── */
.gender-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 40px rgba(0,0,0,0.18);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
}
.gender-panel.open {
  transform: translateX(0);
}

.gender-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #e8e8e8;
}
.gender-panel-header h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.gender-panel-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gender-panel-intro {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 8px;
}

.gender-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.gender-option:hover {
  border-color: #bbb;
  background: #fafafa;
}
.gender-option.selected {
  border-color: #111;
  background: #f8f8f8;
}
.gender-option input[type="radio"] {
  margin-top: 2px;
  accent-color: #111;
  flex-shrink: 0;
}
.gender-option-content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}
.gender-option-content span {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}
.gender-example {
  margin-top: 20px;
  padding: 14px 16px;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}
.gender-example strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

/* ── Panel Overlay / Backdrop ── */
.util-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.util-panel-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Accessibility-Klassen die auf <html> gesetzt werden ── */

/* Größere Schrift */
html.a11y-font-lg body { font-size: 18px !important; }
html.a11y-font-xl body { font-size: 20px !important; }

/* Hoher Kontrast */
html.a11y-contrast body {
  filter: contrast(1.45) brightness(1.05);
}

/* Animationen reduzieren */
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* Unterstrichene Links */
html.a11y-underline-links a {
  text-decoration: underline !important;
}

/* Lesbare Schrift (Dyslexie-freundlich) */
html.a11y-readable body {
  font-family: Georgia, 'Times New Roman', serif !important;
  letter-spacing: 0.05em !important;
  line-height: 1.9 !important;
}

/* ── Responsive: Buttons ausblenden auf sehr kleinen Screens ── */
@media (max-width: 640px) {
  .util-btn .util-btn-label { display: none; }
  .util-btn { padding: 8px 10px; }
}

/* ================================================================
   HAMBURGER DROPDOWN — Porsche-Stil oben links
================================================================ */

/* Wrapper: positioniert das Dropdown relativ zur Schaltfläche */
.header-menu-wrap {
  position: relative;
  grid-column: 1;
  justify-self: start;
}

/* ── Hamburger Button: 3 Striche + "Menü" ── */
.hamburger-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── Drei gleichmäßige Striche ── */
.ham-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.90);
  border-radius: 1px;
  transition: transform 0.35s var(--ease-out),
              opacity   0.25s ease;
  transform-origin: center;
}
.site-header.scrolled .ham-line { background: rgba(255,255,255,0.90); }

/* ── "Menü" Label rechts neben den Strichen ── */
.ham-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  user-select: none;
  line-height: 1;
}

/* X-Animation wenn offen — bezieht sich nun auf Kinder von .ham-lines */
.hamburger-btn.open .ham-lines .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open .ham-lines .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .ham-lines .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   PORSCHE-STIL MEGA-MENU — Zwei-spaltig, helles Design
   Links: weiß, Kategorien | Rechts: hellgrau, Modelle mit Bild
═══════════════════════════════════════════════════════════ */

/* ── Dropdown Panel ── */
.dropdown-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 760px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  box-shadow: 4px 0 60px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.dropdown-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* ── LINKE Spalte — weiß, Kategorien ── */
.dd-cats {
  width: 300px;
  flex-shrink: 0;
  background: #ffffff;
  padding: calc(var(--header-h) + 16px) 0 32px;
  overflow-y: auto;
  height: 100vh;
  max-height: 100vh;
}

/* Kategorie-Eintrag */
.dd-cat-item {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 400;
  color: #111111;
  cursor: pointer;
  transition: background 0.15s ease;
  user-select: none;
  gap: 12px;
  text-decoration: none;
}
.dd-cat-item:hover,
.dd-cat-item.active {
  background: #f2f2f2;
}
.dd-cat-item.active {
  background: #ebebeb;
}

/* Pfeil rechts */
.dd-cat-arrow {
  margin-left: auto;
  font-size: 14px;
  color: #999;
  transition: transform 0.15s ease, color 0.15s;
  flex-shrink: 0;
}
.dd-cat-item:hover .dd-cat-arrow,
.dd-cat-item.active .dd-cat-arrow {
  color: #111;
  transform: translateX(2px);
}

/* Nummer */
.dd-cat-num {
  font-size: 10px;
  font-weight: 400;
  color: #aaaaaa;
  min-width: 20px;
  flex-shrink: 0;
}

/* Label */
.dd-cat-label {
  flex: 1;
  color: inherit;
  text-decoration: none;
}

/* Links ohne Untermenü */
.dd-cat-item a {
  color: inherit;
  text-decoration: none;
  flex: 1;
}

/* Trennlinie */
.dd-cats-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 10px 24px;
}

/* Sub-Links (FAQ, Kontakt …) */
.dd-cat-item.dd-cat-sub {
  font-size: 12px;
  color: #888888;
  padding: 10px 24px;
}
.dd-cat-item.dd-cat-sub:hover {
  background: #f5f5f5;
  color: #333;
}

/* ── Backdrop — verschwommener Overlay rechts vom Menü ── */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  /* Dunkles Overlay über dem gesamten Viewport, Menü liegt davor */
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── RECHTE Spalte — hellgrau, Modelle ── */
/* display wird ausschließlich per JS (style.display) gesteuert — kein CSS display:none nötig */
.dd-models-panel {
  display: none; /* Startzustand; JS überschreibt mit style.display='block' */
  flex-shrink: 0;
  width: 460px;
  background: #f5f5f5;
  padding: calc(var(--header-h) + 16px) 24px 32px;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  border-left: 1px solid #e0e0e0;
}
/* .visible Klasse als Backup (falls JS Klasse statt style.display setzt) */
.dd-models-panel.visible {
  display: block !important;
}

/* Panel-Titel */
.dd-panel-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 20px;
}

/* Modell-Eintrag — Name oben, Bild darunter, Badge darunter */
.dd-model-item {
  display: block;
  padding: 14px 16px 16px;
  margin-bottom: 4px;
  border-radius: 4px;
  text-decoration: none;
  color: #111111;
  background: transparent;
  transition: background 0.15s ease;
}
.dd-model-item:hover {
  background: #ebebeb;
}

/* Modell-Name */
.dd-model-name {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Modell-Bild — breit, flach, wie Porsche Fahrzeugseitenansicht */
.dd-model-img {
  width: 100%;
  height: 120px;
  border-radius: 3px;
  display: block;
  margin-bottom: 12px;
  /* Basis-Stil (wird durch spezifische Klassen überschrieben) */
  background: #d8d8d8;
  position: relative;
  overflow: hidden;
}

/* Sauna — warmes Holz-Amber (hell) */
.dd-img-sauna-1 {
  background: linear-gradient(135deg, #f0e0c8 0%, #d4a86a 40%, #b87832 100%);
}
.dd-img-sauna-2 {
  background: linear-gradient(135deg, #e8d8b8 0%, #c89850 40%, #9a6020 100%);
}
.dd-img-sauna-3 {
  background: linear-gradient(150deg, #ffe8cc 0%, #d4904a 50%, #8a4c10 100%);
}
.dd-img-sauna-4 {
  background: linear-gradient(135deg, #f5e8d0 0%, #c88c48 40%, #784010 100%);
}

/* Gewerblich — kühles Blaugrau */
.dd-img-gewerbe-1 {
  background: linear-gradient(135deg, #d8e4f0 0%, #8aaac8 40%, #3a6a98 100%);
}

/* Dampfbad — Dampf-Blaugrau */
.dd-img-dampf-1 {
  background: linear-gradient(135deg, #e0eef8 0%, #90bcd8 40%, #3a80b0 100%);
}
.dd-img-dampf-2 {
  background: linear-gradient(135deg, #d8eaf4 0%, #7aaec8 40%, #2a6a98 100%);
}

/* Produkt-Icon/Silhouette im Bild-Bereich */
.dd-model-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.08) 100%);
}

/* Badges */
.dd-model-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dd-model-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #555555;
  border: 1px solid #cccccc;
  border-radius: 20px;
  padding: 3px 10px;
  background: #ffffff;
}

/* Modell-Gruppe — nur via JS sichtbar */
.dd-model-group {
  /* display wird per JS gesteuert */
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .dropdown-nav {
    width: 100%;
    flex-direction: column;
  }
  .dd-cats {
    width: 100%;
    max-height: 50vh;
  }
  .dd-models-panel {
    width: 100% !important;
    max-height: 50vh;
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
}

/* Backdrop nicht mehr verwendet — Schließen via document-click-Listener */

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
}
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Overlay ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 56px;
  text-decoration: none;
}
.mobile-logo .logo-word { font-size: 36px; color: var(--white); font-weight: 800; letter-spacing: -0.04em; }
.mobile-logo .logo-sub  { font-size: 11px; letter-spacing: 0.26em; color: rgba(255,255,255,0.35); margin-top: 2px; }
.mobile-nav-list { text-align: center; }
.mobile-nav-list li { margin-bottom: 32px; }
.mobile-nav-list a {
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav-list a:hover { color: var(--brand-light); }
.mobile-nav-list .btn { font-size: 11px; padding: 15px 48px; margin-top: 8px; }

/* ================================================================
   HERO — Porsche style: fullscreen, text bottom-left,
   cinematic overlay, animated text reveal
================================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* dynamische Viewport-Höhe: verhindert falsche/zu große
                     Hero-Höhe auf Mobilgeräten, wenn sich die Adressleiste
                     beim Scrollen ein-/ausblendet (klassischer 100vh-Bug,
                     der einen leeren/grauen Bereich unter dem Hero erzeugt) */
  min-height: 560px;
  max-height: 900px; /* verhindert überdimensionierten Hero auf sehr hohen
                        Viewports (z. B. Full-Page-Rendering/ultrabreite
                        Monitore), der sonst die Bildkacheln weit nach
                        unten schiebt und wie ein "leerer" Bereich wirkt */
  display: flex;
  align-items: flex-end; /* text bottom-left, Porsche-style */
  overflow: visible; /* Kein Clipping — Slides werden über hero-slides beschnitten */
  cursor: default;
}

/* ── Slideshow ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden; /* Slides hier beschneiden, nicht am hero-Container */
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.0s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.10);
  transition: transform 9s cubic-bezier(0.0, 0.0, 0.15, 1);
  will-change: transform;
}
.hero-slide.active img { transform: scale(1.0); }
/* Per-slide Ken Burns origin */
.hero-slide:nth-child(1) img { transform-origin: 55% 50%; }
.hero-slide:nth-child(2) img { transform-origin: 70% 35%; }
.hero-slide:nth-child(3) img { transform-origin: 30% 60%; }
.hero-slide:nth-child(4) img { transform-origin: 50% 25%; }
.hero-slide:nth-child(5) img { transform-origin: 62% 52%; }

/* ── Overlays ── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* Porsche: starke Vignette unten-links, leichte oben */
  background:
    linear-gradient(to top,
      rgba(0,0,0,0.62) 0%,
      rgba(0,0,0,0.28) 38%,
      rgba(0,0,0,0.06) 65%,
      transparent 100%
    );
}
/* Seitliche Vignette für Text-Lesbarkeit */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.32) 0%,
      rgba(0,0,0,0.12) 38%,
      transparent 68%
    ),
    /* Rechte Vignette */
    linear-gradient(270deg,
      rgba(0,0,0,0.18) 0%,
      transparent 40%
    );
}
.hero-overlay-slide {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  transition: background 2.2s ease;
}
.hero-overlay-slide.ov-warm  { background: linear-gradient(145deg, rgba(90,5,5,0.18) 0%, transparent 50%); }
.hero-overlay-slide.ov-deep  { background: linear-gradient(145deg, rgba(15,5,30,0.22) 0%, transparent 50%); }
.hero-overlay-slide.ov-night { background: linear-gradient(145deg, rgba(2,5,18,0.30) 0%, transparent 50%); }
.hero-overlay-slide.ov-cool  { background: linear-gradient(145deg, rgba(5,15,30,0.20) 0%, transparent 50%); }

/* ── Water Canvas ── */
.water-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2; pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.40;
}

/* ── Hero Content — bottom-left, Porsche positioning ── */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 0 96px 10vw;
  max-width: 820px;
  width: 100%;
}

/* Slide category label above headline */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.3s both;
}
.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brand-light);
  flex-shrink: 0;
}
.hero-eyebrow-txt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

/* Main headline — cinematic clip reveal per word */
.hero-h1 {
  font-size: clamp(48px, 7.2vw, 100px);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 36px;
  overflow: visible; /* KEIN overflow:hidden — sonst werden Buchstaben abgeschnitten */
}
/* Wrapper pro Wort — kein overflow:hidden, kein Clipping */
.hero-word {
  display: inline-block;
  overflow: visible;
  vertical-align: bottom;
  margin-right: 0.22em;
}
/* Slide-up via opacity+transform — kein clip-path, kein Clipping-Problem */
.hero-word-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  animation: wordReveal 0.85s var(--ease-reveal) both;
}
@keyframes wordReveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Stagger per word via inline style in JS */

.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.85s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 1.05s both;
}

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

/* ── Slide navigation — bottom right, vertical dots ── */
.slide-dots {
  position: absolute;
  right: 52px;
  bottom: 80px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.slide-dot {
  width: 4px;
  height: 4px;
  border-radius: 0; /* Porsche: square dots */
  background: rgba(255,255,255,0.30);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  padding: 0;
}
.slide-dot.active {
  width: 4px;
  height: 28px;
  background: var(--white);
}
.slide-dot:hover:not(.active) { background: rgba(255,255,255,0.65); }

/* ── Slide counter & label ── */
.slide-counter {
  position: absolute;
  right: 52px;
  bottom: 44px;
  z-index: 4;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-counter strong { color: rgba(255,255,255,0.75); font-weight: 500; }
/* Separator line between current/total */
.slide-counter-sep {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  vertical-align: middle;
}

.slide-label {
  position: absolute;
  bottom: 44px;
  left: 10vw;
  z-index: 4;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: opacity 0.5s ease;
}

/* ── Progress bar — ultra-thin, brand gradient ── */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  z-index: 5;
  width: 0%;
  opacity: 0.9;
}

/* ── Scroll-Pfeil — Porsche: einfacher ↓ mittig unten ── */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  animation: heroFadeUp 1s var(--ease-out) 1.6s both;
  transition: color 0.25s ease;
}
.scroll-cue:hover { color: rgba(255,255,255,0.90); }
.scroll-arrow {
  font-size: 18px;
  line-height: 1;
  animation: arrowBob 2.4s ease-in-out infinite;
}
@keyframes arrowBob {
  0%, 100% { transform: translateY(0);    opacity: 0.55; }
  50%       { transform: translateY(7px);  opacity: 1;    }
}

/* ── Pause/Play-Button — Porsche: rechts unten ── */
.hero-pause-btn {
  position: absolute;
  bottom: 28px;
  right: 48px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  color: rgba(255,255,255,0.75);
  font-size: 9px;
  letter-spacing: 0.05em;
  animation: heroFadeUp 1s var(--ease-out) 1.8s both;
}
.hero-pause-btn:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  color: var(--white);
}

/* ── Fußnoten-Zeile — Porsche: ganz unten ── */
.hero-footnote {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.30);
  pointer-events: none;
  animation: heroFadeUp 1s var(--ease-out) 2.0s both;
}

/* ================================================================
   BRAND BAR
================================================================ */
.brand-bar {
  padding: 96px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.brand-quote {
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 200;
  line-height: 1.75;
  color: var(--dark);
  max-width: 680px;
  margin: 0 auto 64px;
  letter-spacing: -0.01em;
}

/* Porsche-style animated stat numbers */
.stat-n {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 64px;
}
/* .stat-n defined above — no duplicate */
.stat-n sup { font-size: 18px; vertical-align: super; }
.stat-l {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 10px;
  font-weight: 500;
}
.stat-div { width: 1px; height: 48px; background: var(--border); }

/* ================================================================
   TIMELINE
================================================================ */
.timeline-sec {
  padding: var(--section-py) 0;
  background: var(--white);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 0;
}
/* Vertical centre line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

/* Each row */
.tl-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  min-height: 120px;
}
.tl-item--left  { flex-direction: row; justify-content: flex-end; padding-right: calc(50% + 40px); }
.tl-item--right { flex-direction: row; justify-content: flex-start; padding-left: calc(50% + 40px); }

/* Dot on the line */
.tl-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 2px solid var(--brand);
  border-radius: 50%;
  z-index: 2;
  flex-shrink: 0;
}
.tl-dot--goal {
  border-color: var(--grey-pale);
  background: var(--off-white);
}

/* Card */
.tl-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 28px 32px;
  max-width: 360px;
  width: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tl-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.tl-card--goal {
  background: var(--white);
  border-style: dashed;
  border-color: var(--grey-pale);
}
.tl-year {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.tl-year--goal { color: var(--grey-light); }
.tl-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.tl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tl-list li {
  font-size: 13px;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.tl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--brand-light);
}
.tl-card--goal .tl-list li::before { background: var(--grey-pale); }

/* ================================================================
   MODELS
================================================================ */
.models { padding: var(--section-py) 0; background: var(--white); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;  /* Porsche: tight gap, card flush */
  background: var(--border);
  border: 1px solid var(--border);
}
.model-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.10); }
.model-card--feat { position: relative; }
.model-card--feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  z-index: 2;
}
.mc-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.mc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.model-card:hover .mc-img-wrap img { transform: scale(1.04); }
.mc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--white); color: var(--dark);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
}
.mc-badge--gold { background: var(--brand); color: var(--white); }
.mc-badge--dark { background: var(--dark); color: var(--white); }
.mc-body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mc-line {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand); display: block; margin-bottom: 8px;
}
.mc-name {
  font-size: 26px; font-weight: 200;
  letter-spacing: -0.01em; color: var(--dark);
  margin-bottom: 16px;
}
.mc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 28px;
  font-weight: 300;
  flex: 1;
}
.mc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.mc-price { font-size: 12px; color: var(--grey-light); letter-spacing: 0.02em; }
.mc-price strong { color: var(--brand); font-weight: 500; font-size: 15px; letter-spacing: -0.01em; }

/* ================================================================
   DESIGN SECTION
================================================================ */
.design-sec {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 140px 0;
  overflow: hidden;
}
.design-bg { position: absolute; inset: 0; }
.design-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.50); }
.design-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(60,0,0,0.70) 25%, rgba(0,0,0,0.40) 100%);
}
.design-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 120px; align-items: center;
}
.design-p {
  font-size: 16px; line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px; font-weight: 300;
  max-width: 420px;
}
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.detail-item { display: flex; gap: 18px; align-items: flex-start; }
.detail-ico {
  width: 38px; height: 38px; min-width: 38px;
  border: 1px solid rgba(192,129,129,0.30);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light); font-size: 14px;
  flex-shrink: 0;
}
.detail-item h4 {
  font-size: 12px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.detail-item p { font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.7; font-weight: 300; }

/* ================================================================
   TECHNOLOGY
================================================================ */
.tech-sec { padding: var(--section-py) 0; background: var(--off-white); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  margin-bottom: 96px;
  border: 1px solid var(--border);
}
.tech-card {
  background: var(--white);
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease;
  position: relative;
  overflow: hidden;
}
.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.45s var(--ease-out);
}
.tech-card:hover::after { width: 100%; }
.tech-card:hover { background: var(--warm); }
.tech-ico {
  width: 44px; height: 44px;
  border: 1px solid rgba(141,3,3,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 18px;
  margin-bottom: 28px;
}
.tech-card h3 {
  font-size: 16px; font-weight: 500;
  color: var(--dark); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.tech-card p { font-size: 13px; color: var(--grey); line-height: 1.75; font-weight: 300; }
.tech-img-wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.tech-img-wrap img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.tech-img-cap { margin-top: 16px; font-size: 10px; color: var(--grey-light); letter-spacing: 0.18em; text-transform: uppercase; }

/* ================================================================
   CONFIGURATOR
================================================================ */
.config-sec { padding: var(--section-py) 0; background: var(--white); }
.config-layout { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
.cg { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.cg:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cg-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.cg-step { color: var(--brand); font-weight: 700; font-size: 10px; }
.co-row { display: flex; flex-wrap: wrap; gap: 10px; }
.co {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  min-width: 96px; text-align: center;
}
.co:hover { border-color: var(--grey-pale); }
.co.active { border-color: var(--brand); background: var(--brand); color: var(--white); }
.co-name { font-size: 11px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: inherit; }
.co-info { font-size: 10px; color: var(--grey-light); line-height: 1.4; }
.co.active .co-info { color: rgba(255,255,255,0.60); }
.co i { font-size: 16px; color: var(--brand); }
.co.active i { color: rgba(255,255,255,0.90); }
.swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.08); }
.swatch-ash   { background: linear-gradient(135deg, #8b7355, #a8956d); }
.swatch-zirbe { background: linear-gradient(135deg, #c4a882, #d9c4a0); }
.swatch-oak   { background: linear-gradient(135deg, #3d2b1a, #5c4030); }
.swatch-cedar { background: linear-gradient(135deg, #d4c4b0, #e8ddd0); }
.config-preview { position: sticky; top: calc(var(--header-h) + 28px); }
.cp-img { position: relative; margin-bottom: 20px; overflow: hidden; }
.cp-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: opacity 0.4s ease; }
.cp-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.60); backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.85);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 14px 20px;
  font-weight: 500;
}
.cp-summary {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 32px;
}
.cp-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cp-key { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); white-space: nowrap; }
.cp-val { font-size: 13px; color: var(--dark); text-align: right; line-height: 1.5; font-weight: 300; }
.cp-price { font-size: 22px; font-weight: 200; color: var(--brand); letter-spacing: -0.02em; transition: transform 0.25s; }
.cp-summary .btn { margin-top: 24px; }
.cp-disc { margin-top: 16px; font-size: 10px; color: var(--grey-light); text-align: center; line-height: 1.7; letter-spacing: 0.04em; }

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-sec { padding: var(--section-py) 0; background: var(--off-white); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-txt p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 520px;
}
.about-txt .btn { margin-top: 12px; }

.about-features { display: flex; flex-direction: column; gap: 36px; padding-top: 16px; }
.about-feat-item { display: flex; gap: 20px; align-items: flex-start; }
.af-ico {
  width: 44px; height: 44px; min-width: 44px;
  border: 1px solid rgba(141,3,3,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 16px;
  flex-shrink: 0;
}
.about-feat-item h4 {
  font-size: 13px; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.about-feat-item p {
  font-size: 13px; color: var(--grey);
  line-height: 1.75; font-weight: 300;
}

/* ── Model Card List items ── */
.mc-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-list li {
  font-size: 12px;
  color: var(--grey);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mc-list li i {
  color: var(--brand);
  font-size: 10px;
  flex-shrink: 0;
}

/* ================================================================
   TEAM / ANSPRECHPARTNER
================================================================ */
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 44px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
/* apart logo badge inside team card */
.team-logo-badge {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  line-height: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.team-logo-badge:hover { border-color: var(--brand); }
.team-logo-badge .tlb-word {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1;
  display: block;
}
.team-logo-badge .tlb-sub {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  color: var(--brand-mid);
  display: block;
  margin-top: 3px;
}
.team-body h3 {
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.team-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 20px;
}
.team-body > p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.80;
  font-weight: 300;
  margin-bottom: 28px;
}
.team-contacts { display: flex; flex-direction: column; gap: 14px; }
.team-contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--mid); font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
}
.team-contact-item:hover { color: var(--brand); }
.team-contact-item i { color: var(--brand); width: 16px; flex-shrink: 0; font-size: 12px; }

.team-values { padding-top: 8px; }
.tv-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 36px;
}
.tv-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.tv-item:first-of-type { padding-top: 0; }
.tv-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 24px;
}
.tv-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tv-item p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.70;
  font-weight: 300;
}

/* Responsive about/team */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .team-layout  { grid-template-columns: 1fr; gap: 48px; }
  .team-card    { flex-direction: column; gap: 20px; padding: 36px 28px; }
}
@media (max-width: 620px) {
  .about-layout { gap: 40px; }
  .team-layout  { gap: 36px; }
}

/* ================================================================
   LIFESTYLE — Pure gradient, no image
================================================================ */
.lifestyle-sec {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--brand-dark) 0%, #3a0101 35%, #1e0808 65%, #0e0404 100%);
}
/* Subtle texture overlay */
.lifestyle-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
  pointer-events: none;
}
/* Decorative line accents */
.lifestyle-sec::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192,129,129,0.25) 30%, rgba(192,129,129,0.08) 70%, transparent 100%);
}
.lifestyle-inner { position: relative; z-index: 1; padding: 140px 0; }
.lifestyle-txt { max-width: 580px; }
.lifestyle-txt p {
  font-size: 17px; line-height: 1.90;
  color: rgba(255,255,255,0.62);
  margin-bottom: 44px; font-weight: 300;
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-sec { padding: var(--section-py) 0; background: #2a2a2a; }
.testi-sec .section-head h2 { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.testi-card {
  background: var(--dark);
  padding: 48px 40px;
  transition: background 0.35s ease;
  position: relative;
}
.testi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.35s ease;
}
.testi-card:hover { background: var(--dark-mid); }
.testi-card:hover::before { background: var(--brand); }
.testi-stars { color: var(--brand-light); font-size: 12px; letter-spacing: 5px; margin-bottom: 24px; }
.testi-card p {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.80; font-style: italic;
  margin-bottom: 28px; font-weight: 300;
}
.testi-card footer {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.30);
}
.testi-card footer strong { color: var(--brand-light); font-weight: 500; }

/* ================================================================
   CONTACT — modernisiertes Karten-Layout (ruhiger, klarer Aufbau)
================================================================ */
.contact-sec { padding: 96px 0; background: var(--off-white); }

/* Zentrierter Sektions-Kopf, getrennt vom Grid darunter → weniger visuelle Unruhe */
.contact-head { max-width: 600px; margin: 0 auto 40px; text-align: center; }
.contact-head .section-line { margin-left: auto; margin-right: auto; }
.contact-head .tag { display: block; }
.contact-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 200; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 14px;
}
.contact-head h2 .reveal-wrap { display: flex; justify-content: center; }
.contact-head > p { font-size: 15px; color: var(--grey); line-height: 1.7; font-weight: 300; }

/* Adresse und Kontaktformular untereinander (eine Spalte, zentriert, kompakter) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
  gap: 24px;
  align-items: stretch;
}
.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0 32px 24px;
  color: var(--dark-mid);
}
.contact-list { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; }
.contact-list li {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 300;
  color: var(--dark-mid);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list a { color: inherit; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--brand-light); }
.cli-icon {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: transparent;
  color: var(--grey);
  font-size: 13px;
}
.cli-text { line-height: 1.5; }
.contact-map-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 0;
  border: none;
  color: var(--brand);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.25s ease;
  align-self: center;
}
.contact-map-link:hover { color: var(--brand-dark); }

/* Formular — Felder zentriert untereinander, kompakt gehalten */
.contact-form-card { position: relative; }
.contact-form-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact-form-wrap form { width: 100%; max-width: 400px; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-row { display: flex; flex-direction: column; gap: 14px; margin-bottom: 0; }
.fg { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 14px; }
.form-row .fg { margin-bottom: 14px; }
.fg label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey);
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 16px; font-size: 14px;
  color: var(--dark); background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  appearance: none; font-weight: 300;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(141,3,3,0.08);
  outline: none;
}
.fg textarea { resize: vertical; text-align: left; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
  padding-right: 44px;
}
.btn-contact-submit {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 13px 36px;
  margin-top: 4px;
  background: var(--brand); color: var(--white);
  border: none; border-radius: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-contact-submit:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(141,3,3,0.28); }
.btn-contact-submit:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }
.form-note { font-size: 12px; min-height: 16px; margin: 14px 0 0; text-align: center; color: var(--grey); }
.form-note.error { color: var(--brand); }
.form-ok {
  margin-top: 20px; padding: 16px 20px;
  border: 1px solid var(--brand);
  color: var(--brand); font-size: 13px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(141,3,3,0.04);
}

@media (max-width: 620px) {
  .contact-sec { padding: 72px 0; }
  .contact-form-card { padding: 24px; border-radius: 10px; }
  .contact-info-card { padding: 0 12px 20px; }
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: #080808; color: rgba(255,255,255,0.55); }
.footer-top { padding: 96px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ft-inner { display: grid; grid-template-columns: 260px 1fr; gap: 100px; align-items: start; }
.ft-brand .logo--footer { margin-bottom: 24px; }
.ft-brand > p { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.35); margin-bottom: 32px; font-weight: 300; }
.ft-socials { display: flex; gap: 12px; }
.ft-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 13px;
  transition: all 0.25s ease;
}
.ft-socials a:hover { border-color: var(--brand-light); color: var(--brand-light); }
.ft-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.ft-col h4 {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 24px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 14px; }
.ft-col a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s ease; font-weight: 300; }
.ft-col a:hover { color: var(--brand-light); }
.footer-nl { padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.fn-inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; }
.fn-txt h4 { font-size: 15px; font-weight: 300; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.fn-txt p { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; }
.fn-form { display: flex; min-width: 420px; }
.fn-form input {
  flex: 1; padding: 14px 20px; font-size: 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10); border-right: none;
  color: var(--white); font-weight: 300;
}
.fn-form input::placeholder { color: rgba(255,255,255,0.25); }
.fn-form input:focus { border-color: var(--brand-light); }
.fn-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  max-width: 420px;
  cursor: pointer;
}
.fn-consent input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}
.fn-consent span {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
}
.fn-consent a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 2px; }
.fn-consent a:hover { color: var(--brand-light); }
.btn-nl {
  padding: 14px 28px; background: var(--brand); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.25s ease;
}
.btn-nl:hover { background: var(--brand-dark); }
.footer-bottom { padding: 28px 0; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.fb-inner p { font-size: 11px; color: rgba(255,255,255,0.20); font-weight: 300; }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-top {
  position: fixed; bottom: 44px; right: 44px; z-index: 500;
  width: 44px; height: 44px;
  background: var(--brand); color: var(--white);
  border: none;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: all 0.35s var(--ease-out);
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* ================================================================
   HOT TUB & ICE TUB — Dual-Panel Section
================================================================ */
.tubs-sec {
  padding: var(--section-py) 0;
  background: var(--white);
}
.tubs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 80px;
}
.tub-panel {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.tub-panel:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.10); }
/* Accent bar top */
.tub-panel--hot::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a02d2d, #c08181);
  z-index: 2;
}
.tub-panel--ice::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2d6aa0, #81b4c0);
  z-index: 2;
}
.tub-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.tub-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.tub-panel:hover .tub-img-wrap img { transform: scale(1.04); }
.tub-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; z-index: 2;
}
.tub-badge--hot { background: var(--brand); color: var(--white); }
.tub-badge--ice { background: #1a4a6e; color: var(--white); }
.tub-body { padding: 40px 36px 36px; }
.tub-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.tub-label--hot { color: var(--brand); }
.tub-label--ice { color: #2d6aa0; }
.tub-name {
  font-size: 28px; font-weight: 200;
  letter-spacing: -0.02em; margin-bottom: 16px;
  color: var(--dark);
}
.tub-desc {
  font-size: 14px; line-height: 1.80;
  color: var(--grey); font-weight: 300;
  margin-bottom: 24px;
}
.tub-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.tub-list li {
  font-size: 12px; color: var(--grey);
  font-weight: 300;
  display: flex; align-items: center; gap: 10px;
}
.tub-list li i { font-size: 10px; flex-shrink: 0; }
.tub-list--hot li i { color: var(--brand); }
.tub-list--ice li i { color: #2d6aa0; }
.tub-foot {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.tub-price {
  font-size: 12px; color: var(--grey-light);
}
.tub-price strong { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.tub-price--hot strong { color: var(--brand); }
.tub-price--ice strong { color: #2d6aa0; }
.btn-ice {
  background: transparent;
  color: #1a4a6e;
  border: 1px solid rgba(26,74,110,0.35);
  border-radius: 0;
}
.btn-ice:hover { background: #1a4a6e; color: var(--white); border-color: #1a4a6e; }

/* Together callout */
.tubs-together {
  margin-top: 56px;
  padding: 40px 48px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.tt-txt h4 {
  font-size: 18px; font-weight: 300;
  color: var(--dark); margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.tt-txt p {
  font-size: 13px; color: var(--grey);
  font-weight: 300; line-height: 1.70;
  max-width: 540px;
}

@media (max-width: 900px) {
  .tubs-grid { grid-template-columns: 1fr; }
  .tubs-together { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 28px; }
}

/* ================================================================
   KONTAKTFORMULAR — DANKE-SCREEN
================================================================ */
.contact-form-wrap {
  position: relative;
  overflow: hidden;
}

/* Danke-Screen — sitzt als Overlay über dem Formular */
.contact-thankyou {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  border-radius: 2px;
  min-height: 420px;
}
.contact-thankyou.visible {
  display: flex;
}

/* Hintergrundbild */
.cty-bg {
  position: absolute;
  inset: 0;
}
.cty-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.05) saturate(1.05);
  transform: scale(1.06);
  transition: transform 12s ease;
}
.contact-thankyou.visible .cty-bg img {
  transform: scale(1.0);
}

/* Gradient-Shade — oben hell, unten dunkel für Lesbarkeit */
.cty-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.08) 0%,
    rgba(10,20,30,0.18)    40%,
    rgba(10,20,30,0.72)    100%
  );
}

/* Content-Block */
.cty-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 40px;
  width: 100%;
  gap: 18px;
}

/* Check-Icon */
.cty-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.60);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: cty-pop 0.5s 0.1s both cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cty-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Texte */
.cty-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin: 0;
}
.cty-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 200; letter-spacing: -0.03em;
  line-height: 1.1; color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin: 0;
}
.cty-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75; max-width: 400px; margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.30);
}

/* Logo */
.cty-logo {
  display: flex; align-items: baseline; gap: 5px;
  margin-top: 4px;
}
.cty-logo .logo-word {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.cty-logo .logo-sub {
  font-size: 8px; font-weight: 300;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* Schließen-Button */
.cty-close {
  margin-top: 8px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.40);
  color: rgba(255,255,255,0.92);
  padding: 13px 32px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  font-family: var(--font-display, 'Quicksand', sans-serif);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.cty-close:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.65);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  :root { --section-py: 100px; --gutter: 32px; }
  .config-layout { grid-template-columns: 1fr 360px; gap: 56px; }
  .ft-inner { grid-template-columns: 200px 1fr; gap: 64px; }
  .stat { padding: 0 40px; }
}

@media (max-width: 900px) {
  :root { --section-py: 80px; --header-h: 64px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero-content { padding: 0 0 64px 6vw; max-width: calc(100% - 6vw - 60px); }
  .stat { padding: 0 24px; }
  .stat-div { display: none; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .design-inner { grid-template-columns: 1fr; gap: 64px; }
  .design-p { max-width: 100%; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .config-layout { grid-template-columns: 1fr; }
  .config-preview { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .ft-inner { grid-template-columns: 1fr; gap: 56px; }
  .ft-nav { grid-template-columns: repeat(2, 1fr); }
  .fn-inner { flex-direction: column; align-items: flex-start; }
  .fn-form { min-width: 100%; width: 100%; }
  .fb-inner { flex-direction: column; text-align: center; gap: 8px; }
  .slide-dots { right: 24px; }
  .slide-counter { right: 24px; }
  .testi-grid { grid-template-columns: 1fr; gap: 1px; }
}

@media (max-width: 620px) {
  :root { --section-py: 64px; --header-h: 60px; --gutter: 20px; }
  .hero-content { padding: 0 0 56px 5vw; max-width: calc(100% - 5vw - 16px); }
  .hero-h1 { font-size: clamp(38px, 9vw, 54px); }
  .models-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .tech-grid { grid-template-columns: 1fr; }
  .co-row { flex-direction: column; }
  .co { width: 100%; flex-direction: row; gap: 14px; padding: 14px 18px; align-items: center; }
  .detail-grid { grid-template-columns: 1fr; }
  .back-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 13px; }
  .slide-dots { right: 16px; bottom: 64px; }
  .slide-counter { right: 16px; display: none; }
  .slide-label { left: 5vw; }
  .stat { padding: 0; }
  .stats-row { flex-direction: column; gap: 20px; }
  .stat-div { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .ft-nav { grid-template-columns: 1fr 1fr; gap: 32px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  /* Timeline mobile: single column */
  .timeline::before { left: 20px; }
  .tl-item--left,
  .tl-item--right {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 52px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .tl-dot {
    left: 20px;
    top: 28px;
    transform: translate(-50%, 0);
  }
  .tl-card { max-width: 100%; }
}

/* ================================================================
   UTILITY PANELS — Barrierefreiheit & Sprache
   Slide-in von rechts, z-index über Menü
================================================================ */

/* ── Backdrop (gemeinsam für beide Panels) ── */
.util-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1299;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.util-panel-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Gemeinsame Panel-Basis ── */
.a11y-panel,
.gender-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1300;
  background: #fff;
  box-shadow: -6px 0 48px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform 0.30s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.a11y-panel.open,
.gender-panel.open {
  transform: translateX(0);
}

/* ── Panel Header ── */
.up-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.up-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}
.up-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  font-size: 16px;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.up-close:hover { background: #111; color: #fff; border-color: #111; }

/* ── Panel Body ── */
.up-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ── Abschnitt-Titel ── */
.up-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

/* ── Schriftgröße Stepper ── */
.up-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}
.up-step-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #444;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.up-step-btn:hover { background: #111; color: #fff; }
.up-step-val {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  padding: 0 8px;
}

/* ── Toggle-Zeile ── */
.up-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.up-toggle-row:has(input:checked) {
  border-color: #111;
  background: #fafafa;
}
.up-toggle-info { flex: 1; }
.up-toggle-name {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  display: block;
  margin-bottom: 2px;
}
.up-toggle-desc {
  font-size: 11px;
  color: #888;
  display: block;
  line-height: 1.4;
}
/* iOS-Style Toggle */
.up-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.up-switch input { opacity: 0; width: 0; height: 0; }
.up-switch-track {
  position: absolute;
  inset: 0;
  background: #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.up-switch-track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.up-switch input:checked + .up-switch-track { background: #111; }
.up-switch input:checked + .up-switch-track::before { transform: translateX(20px); }

/* ── Reset-Button ── */
.up-reset {
  width: 100%;
  padding: 11px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #666;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: var(--font-sans);
}
.up-reset:hover { background: #111; color: #fff; border-color: #111; }

/* ── Gender/Sprach-Optionen ── */
.gender-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.gender-option input[type="radio"] { display: none; }
.gender-option.selected,
.gender-option:has(input:checked) {
  border-color: #111;
  background: #f9f9f9;
}
.gender-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.gender-option.selected .gender-option-check,
.gender-option:has(input:checked) .gender-option-check {
  border-color: #111;
  background: #111;
}
.gender-option.selected .gender-option-check::after,
.gender-option:has(input:checked) .gender-option-check::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.gender-option-text { flex: 1; }
.gender-option-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  display: block;
  margin-bottom: 3px;
}
.gender-option-sub {
  font-size: 11px;
  color: #888;
  display: block;
  line-height: 1.4;
}

/* ── Beispiel-Text (legacy) ── */
.up-example {
  padding: 12px 14px;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  border-left: 3px solid #ddd;
  font-style: italic;
}

/* ── Gender Preview Card ── */
.gender-preview-card {
  position: relative;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s ease;
}
.gender-preview-card[data-mode="neutral"] { border-color: #c0c0c0; }
.gender-preview-card[data-mode="male"]    { border-color: #2d6aa0; }
.gender-preview-card[data-mode="female"]  { border-color: #a02d6a; }
.gender-preview-card[data-mode="en"]      { border-color: var(--brand); }

.gpc-mode-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: #eee;
  color: #666;
  transition: background 0.25s ease, color 0.25s ease;
}
.gender-preview-card[data-mode="neutral"] .gpc-mode-badge { background: #111; color: #fff; }
.gender-preview-card[data-mode="male"]    .gpc-mode-badge { background: #2d6aa0; color: #fff; }
.gender-preview-card[data-mode="female"]  .gpc-mode-badge { background: #a02d6a; color: #fff; }
.gender-preview-card[data-mode="en"]      .gpc-mode-badge { background: var(--brand); color: #fff; }

.gpc-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gpc-line {
  font-size: 11px;
  line-height: 1.5;
  padding: 5px 8px;
  border-radius: 5px;
  border-left: 2.5px solid #e0e0e0;
  background: #fafafa;
  color: #444;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.gpc-label   { font-weight: 600; color: #222; }
.gpc-greeting { font-style: italic; color: #555; }
.gpc-confirm  { color: #666; }
.gpc-customers { color: #555; font-style: italic; }

.gender-preview-card[data-mode="male"]   .gpc-line { border-left-color: #2d6aa0; background: #f0f5fa; }
.gender-preview-card[data-mode="female"] .gpc-line { border-left-color: #a02d6a; background: #faf0f5; }
.gender-preview-card[data-mode="en"]     .gpc-line { border-left-color: var(--brand); background: #fff5f5; }
.gender-preview-card[data-mode="neutral"] .gpc-line { border-left-color: #888; background: #f5f5f5; }

/* ── Divider im Panel ── */
.up-divider {
  height: 1px;
  background: #eee;
  margin: 0;
}

/* ── Aktiver Zustand der Header-Buttons ── */
.header-util-btn.active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.70);
  color: #fff;
}
.site-header.scrolled .header-util-btn.active {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.porsche-page .site-header .header-util-btn.active {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.45);
  color: #111;
}

/* ── Menü-Utility-Buttons (im Dropdown) ── */
.dd-util-btns {
  padding: 12px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.util-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 400;
  color: #444;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: var(--font-sans);
  text-align: left;
}
.util-btn:hover { background: #efefef; border-color: #bbb; color: #111; }
.util-btn.active { background: #111; border-color: #111; color: #fff; }
.util-btn svg { width: 15px; height: 15px; fill: currentColor; opacity: 0.7; }
.util-btn.active svg { opacity: 1; }

/* ── Accessibility HTML-Klassen ── */
html.a11y-font-lg body  { font-size: 18px !important; }
html.a11y-font-xl body  { font-size: 20px !important; }
html.a11y-contrast body { filter: contrast(1.45) brightness(1.05); }
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
html.a11y-underline-links a { text-decoration: underline !important; }
html.a11y-readable body {
  font-family: Georgia, serif !important;
  letter-spacing: 0.05em !important;
  line-height: 1.9 !important;
}

/* ================================================================
   SCHRITT 5 — TYPOGRAFIE (sitewide, nach Pilot-Freigabe "bestätigt")
   Quicksand (--font-display) für Überschriften, Buttons, Navigation,
   Labels/Badges/Breadcrumb. Raleway (--font-sans) bleibt Fließtext
   (bereits über body { font-family: var(--font-sans); } gesetzt).
   Ersetzt die vorherige Pilot-Datei css/typography-preview.css.
================================================================ */
h1, h2, h3, h4, h5, h6,
.btn, button,
.hamburger-btn, .ham-label,
.util-btn, .header-util-btn, .a11y-reset-btn, .up-reset,
.dd-cat-label, .dd-panel-title, .dd-model-name,
.sdp-breadcrumb, .sdp-breadcrumb a,
.sov-breadcrumb, .sov-breadcrumb a,
.sov-filter-title, .sov-pagetitle,
.logo-word, .logo-sub,
nav {
  font-family: var(--font-display);
}
