/* ==========================================================================
   Wabner´s Bautechnik — Marken-Schicht (Schicht 2: Komponenten)
   Mode T-I Quell-Klasse B, Vorlage siehe _review/varianten-karte.md
   Bindet die Library-Elemente an den Token-Vertrag (E1: Transformation statt Drop-in)
   und ergänzt die wenigen Slot-eigenen Klassen.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ws-surface-page);
  color: var(--ws-text-primary);
  font-family: var(--ws-font-body);
  font-size: var(--ws-body-size);
  font-weight: var(--ws-body-weight);
  line-height: var(--ws-body-lh);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3 { font-family: var(--ws-font-display); margin: 0; text-wrap: balance; }
p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.ws-skiplink {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ws-action-bg); color: var(--ws-action-text);
  padding: var(--ws-space-2xs) var(--ws-space-s); border-radius: 0 0 var(--ws-radius-s) 0;
  font-weight: 600;
}
.ws-skiplink:focus { left: 0; }

/* ---------- Header: comp-nav-transparent-hero-001 ---------- */
.ws-trnav {
  --ws-trnav-solid-bg: rgb(254 249 247 / 0.94);
  --ws-trnav-ink-invers: #ffffff;
  --ws-trnav-ink-solid: var(--ws-neutral-900);
  --ws-trnav-accent: var(--ws-brand-700);
  --ws-trnav-cta-ink: #ffffff;
  --ws-trnav-max: var(--ws-container-wide);
  --ws-trnav-font: var(--ws-font-body);
}
.ws-trnav-logo { font-family: var(--ws-font-display); font-weight: 600; letter-spacing: -0.01em; }
.ws-trnav-cta {
  font-variant-numeric: tabular-nums lining-nums;
  min-height: 44px; display: inline-flex; align-items: center;
}
.ws-trnav-drawer {
  display: none; flex-direction: column; gap: var(--ws-space-xs);
  padding: var(--ws-space-m) var(--ws-gutter) var(--ws-space-l);
  background: var(--ws-surface-page); border-top: 1px solid var(--ws-surface-border);
}
.ws-trnav-drawer a { min-height: 44px; display: flex; align-items: center; font-weight: 500; text-decoration: none; }
.ws-trnav-drawer-tel { color: var(--ws-text-signal); font-weight: 700; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
  .ws-trnav-drawer:not([hidden]) { display: flex; }
}

/* ---------- Hero: hero-mood-photo-fullbleed-editorial-001 + 3-Szenen ---------- */
.ws-hfeph {
  --ws-hfeph-text: #ffffff;
  /* Gelb statt Brand-300: das Hero-Foto ist selbst blau, ein blasser Blauton
     im Wortakzent verschwindet darin. Gelb ist die zweite Logo-Farbe. */
  --ws-hfeph-accent: var(--ws-accent-yellow);
  --ws-hfeph-font-display: var(--ws-font-display);
  --ws-hfeph-font-ui: var(--ws-font-body);
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ws-neutral-950);
}
.ws-hfeph-scenes { position: absolute; inset: 0; }
.ws-hfeph-pic {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1400ms var(--ws-ease-in-out);
}
.ws-hfeph-pic.is-active { opacity: 1; }
.ws-hfeph-pic img { width: 100%; height: 100%; object-fit: cover; }
.ws-hfeph-overlay { position: absolute; inset: 0; background: var(--ws-scrim-hero); }
.ws-hfeph-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--ws-container-wide); margin: 0 auto;
  padding: var(--ws-space-2xl) var(--ws-gutter) var(--ws-space-xl);
  color: var(--ws-hfeph-text);
}
.ws-hfeph-h1 {
  font-size: var(--ws-h1-size); font-weight: var(--ws-h1-weight);
  line-height: var(--ws-h1-lh); letter-spacing: var(--ws-h1-ls);
  max-width: 18ch; text-shadow: 0 2px 24px rgb(20 17 15 / 0.42);
}
.ws-hfeph-line { display: block; }
.ws-hfeph-h1 em { font-style: italic; color: var(--ws-hfeph-accent); }
.ws-hfeph-sub {
  margin-top: var(--ws-space-m); max-width: 46ch;
  font-size: var(--ws-lead-size); line-height: var(--ws-lead-lh);
  color: rgb(255 255 255 / 0.92); text-shadow: 0 1px 16px rgb(20 17 15 / 0.4);
}
.ws-hfeph-actions { display: flex; flex-wrap: wrap; gap: var(--ws-space-s); margin-top: var(--ws-space-l); }
.ws-hfeph-cta, .ws-hfeph-cta-ghost {
  display: inline-flex; align-items: center; gap: var(--ws-space-2xs);
  min-height: 52px; padding: 0 var(--ws-space-l);
  border-radius: var(--ws-radius-pill); text-decoration: none;
  font-weight: 600; font-size: var(--ws-step-0);
  transition: background-color var(--ws-dur-fast) var(--ws-ease-out), transform var(--ws-dur-fast) var(--ws-ease-out);
}
.ws-hfeph-cta { background: var(--ws-action-bg); color: var(--ws-action-text); }
.ws-hfeph-cta:hover { background: var(--ws-action-bg-hover); }
.ws-hfeph-cta-ghost {
  border: 1.5px solid rgb(255 255 255 / 0.55); color: #fff;
  font-variant-numeric: tabular-nums lining-nums;
}
.ws-hfeph-cta-ghost:hover { background: rgb(255 255 255 / 0.14); }
.ws-hfeph-arrow { transition: transform var(--ws-dur-fast) var(--ws-ease-out); }
.ws-hfeph-cta:hover .ws-hfeph-arrow { transform: translateX(4px); }
.ws-hfeph-foot {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: flex; flex-wrap: wrap; gap: var(--ws-space-s) var(--ws-space-l);
  max-width: var(--ws-container-wide); margin: 0 auto;
  padding: 0 var(--ws-gutter) var(--ws-space-m);
  font-size: var(--ws-meta-size); letter-spacing: var(--ws-meta-ls);
  color: rgb(255 255 255 / 0.78); font-variant-numeric: tabular-nums lining-nums;
}
@media (max-width: 700px) { .ws-hfeph-foot { display: none; } }

/* ---------- Stats: sec-stats-big-number-editorial-grid ---------- */
.ws-secbne-section { --ws-secbne-bg: var(--ws-surface-page); --ws-secbne-accent: var(--ws-signal-numeric); }
.ws-secbne-value {
  font-family: var(--ws-font-display); color: var(--ws-signal-numeric);
  font-variant-numeric: tabular-nums lining-nums;
}
.ws-secbne-value sup { color: var(--ws-brand-500); }
.ws-secbne-source { color: var(--ws-text-muted); font-size: var(--ws-meta-size); }

/* ---------- Sortiment-Karten (Fill comp-card-content-image-top-001) ---------- */
.ws-shellcg { background: var(--ws-surface-page); padding-block: var(--ws-space-3xl); }
.ws-shellcg-container { max-width: var(--ws-container); margin: 0 auto; padding-inline: var(--ws-gutter); }
.ws-shellcg-headline { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-shellcg-lead { margin-top: var(--ws-space-s); max-width: var(--ws-container-text); color: var(--ws-text-secondary); font-size: var(--ws-lead-size); }
.ws-shellcg-grid {
  list-style: none; margin: var(--ws-space-xl) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ws-space-m);
}
.ws-cardcit { display: flex; }
.ws-cardcit-card {
  display: flex; flex-direction: column; width: 100%;
  background: var(--ws-surface-raised); border: 1px solid var(--ws-surface-border);
  border-radius: var(--ws-radius-l); overflow: hidden;
  transition: border-color var(--ws-dur-fast) var(--ws-ease-out), box-shadow var(--ws-dur-base) var(--ws-ease-out);
}
.ws-cardcit-card:hover { border-color: var(--ws-brand-300); box-shadow: var(--ws-elev-2); }
.ws-cardcit-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.ws-cardcit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ws-dur-slow) var(--ws-ease-out); }
.ws-cardcit-card:hover .ws-cardcit-media img { transform: scale(1.035); }
/* Image-to-BG-Fade: Bild läuft unten in die Kartenfläche aus (components.md Imperativ 6) */
.ws-cardcit-media::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 42%;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0) 0%, rgb(255 255 255 / 0.86) 76%, #ffffff 100%);
  pointer-events: none;
}
.ws-cardcit-body { padding: 0 var(--ws-space-m) var(--ws-space-m); margin-top: calc(var(--ws-space-m) * -1); position: relative; }
.ws-cardcit-title { font-size: var(--ws-h3-size); font-weight: var(--ws-h3-weight); line-height: var(--ws-h3-lh); }
.ws-cardcit-title::after {
  content: ""; display: block; width: 2.5rem; height: 3px; margin-top: var(--ws-space-2xs);
  background: var(--ws-signal-rule); border-radius: var(--ws-radius-xs);
}
.ws-cardcit-text { margin-top: var(--ws-space-xs); color: var(--ws-text-secondary); }
@media (max-width: 1000px) { .ws-shellcg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  .ws-shellcg-grid {
    grid-auto-flow: column; grid-auto-columns: 82%; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: var(--ws-space-s); scrollbar-width: thin;
  }
  .ws-cardcit { scroll-snap-align: center; }
}

/* ---------- Manufaktur: sec-services-alternating-image ---------- */
.ws-secaif-section {
  --ws-secaif-bg: var(--ws-surface-page);
  --ws-secaif-ink: var(--ws-text-primary);
  --ws-secaif-ink-muted: var(--ws-text-secondary);
  --ws-secaif-accent: var(--ws-text-signal);
  --ws-secaif-tag-bg: var(--ws-brand-50);
  --ws-secaif-border: var(--ws-surface-border);
  --ws-secaif-radius: var(--ws-radius-l);
  --ws-secaif-font-display: var(--ws-font-display);
  --ws-secaif-font-mono: var(--ws-font-body);
  background: var(--ws-surface-page);
}
.ws-secaif-head { max-width: var(--ws-container); margin: 0 auto var(--ws-space-xl); padding-inline: var(--ws-gutter); }
.ws-secaif-h2 { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); max-width: 22ch; }
.ws-secaif-title { font-family: var(--ws-font-display); }
.ws-secaif-tag { color: var(--ws-text-signal); background: var(--ws-brand-50); }

/* ---------- Mietpark: Header eigenstaendig + Library-Element sec-galerie-grid-reveal-001 ---------- */
.ws-mietpark { background: var(--ws-surface-tint); padding-block: var(--ws-space-3xl); }
.ws-mietpark-head { max-width: var(--ws-container); margin: 0 auto var(--ws-space-xl); padding-inline: var(--ws-gutter); }
.ws-mietpark-h2 { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); max-width: 24ch; }
.ws-mietpark-lead { margin-top: var(--ws-space-s); max-width: var(--ws-container-text); color: var(--ws-text-secondary); font-size: var(--ws-lead-size); }

/* Element auf die Marke ziehen: heller Grund statt Default-Schwarz, Tokens statt Hex (E1) */
.ws-secigr {
  --ws-secigr-bg: transparent;
  --ws-secigr-cell-bg: var(--ws-neutral-200);
  --ws-secigr-overlay: rgb(20 17 15 / 0.10);
  --ws-secigr-overlay-hv: rgb(20 17 15 / 0.42);
  --ws-secigr-text: #ffffff;
  --ws-secigr-focus-ring: var(--ws-brand-700);
  --ws-secigr-gap: var(--ws-space-s);
  --ws-secigr-expand: 6;
  --ws-secigr-max-width: var(--ws-container);
  --ws-secigr-radius: var(--ws-radius-m);
  --ws-secigr-fluid-h: min(72svh, 780px);
}
.ws-secigr-title { font-family: var(--ws-font-body); }

/* Foot unter dem Grid (eigene Klassen, ausserhalb der Element-Wurzel) */
.ws-mietpark-foot { max-width: var(--ws-container); margin: var(--ws-space-l) auto 0; padding-inline: var(--ws-gutter); display: flex; flex-wrap: wrap; align-items: center; gap: var(--ws-space-m); }
.ws-mietpark-cta {
  display: inline-flex; align-items: center; gap: var(--ws-space-2xs);
  min-height: 48px; padding: 0 var(--ws-space-l); border-radius: var(--ws-radius-pill);
  background: var(--ws-action-bg); color: var(--ws-action-text);
  font-weight: 600; text-decoration: none;
  transition: background-color var(--ws-dur-fast) var(--ws-ease-out);
}
.ws-mietpark-cta:hover { background: var(--ws-action-bg-hover); }
.ws-mietpark-note { color: var(--ws-text-muted); font-size: var(--ws-meta-size); }

/* ---------- Ablauf: comp-process-connecting-line-scroll-draw-001 ---------- */
.ws-process-section { background: var(--ws-surface-page); padding-block: var(--ws-space-3xl); }
.ws-process-section__title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-process-section__lead { color: var(--ws-text-secondary); font-size: var(--ws-lead-size); }
.ws-process__bullet {
  font-variant-numeric: tabular-nums lining-nums;
  background: var(--ws-brand-700); color: #fff;
}
.ws-process__title { font-family: var(--ws-font-display); }

/* ---------- Gastro-Vollbild (diagonal-Edge, einzige dunkle Fläche) ---------- */
.ws-gastro-divider {
  position: relative; background: var(--ws-surface-inverse);
  margin-top: calc(var(--ws-edge-height, 80px) * -1);
  min-height: clamp(18rem, 42vw, 34rem); overflow: hidden;
}
.ws-gastro-divider-img { width: 100%; height: 100%; min-height: clamp(18rem, 42vw, 34rem); object-fit: cover; }

/* ---------- B2B: sec-cta-split-photo-001 ---------- */
.ws-cta-split {
  --ws-cta-split-bg: var(--ws-surface-page);
  --ws-cta-split-ink: var(--ws-text-primary);
  --ws-cta-split-accent: var(--ws-action-bg);
  background: var(--ws-surface-page);
}
.ws-cta-split-photo img { width: 100%; height: 100%; object-fit: cover; }
.ws-cta-split-head { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-cta-split-list { margin: var(--ws-space-m) 0 0; padding-left: 1.1rem; color: var(--ws-text-secondary); display: grid; gap: var(--ws-space-2xs); }
.ws-cta-split-list li::marker { color: var(--ws-signal-flat); }
.ws-cta-split-primary { background: var(--ws-action-bg); color: var(--ws-action-text); min-height: 48px; }
.ws-cta-split-primary:hover { background: var(--ws-action-bg-hover); }
.ws-cta-split-phone { color: var(--ws-text-signal); min-height: 44px; display: inline-flex; align-items: center; }

/* ---------- Stimmen: sec-testimonials-grid-cards ---------- */
.ws-sectgc-section { --ws-sectgc-bg: var(--ws-surface-sunken); background: var(--ws-surface-sunken); }
.ws-sectgc-title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-sectgc-sub { color: var(--ws-text-secondary); font-variant-numeric: tabular-nums lining-nums; }
.ws-sectgc-stars { color: var(--ws-brand-500); letter-spacing: 0.1em; }
.ws-sectgc-quote { font-family: var(--ws-font-display); font-size: var(--ws-step-1); line-height: 1.5; }
.ws-sectgc-name { font-weight: 600; }
.ws-sectgc-role { color: var(--ws-text-muted); font-size: var(--ws-meta-size); }
.ws-sectgc-foot { margin-top: var(--ws-space-l); }
.ws-sectgc-foot a { color: var(--ws-text-signal); font-weight: 600; text-underline-offset: 4px; }

/* ---------- Besuch: sec-contact-split-hero-001 ---------- */
.ws-contact-hero-warm {
  --ws-contact-hero-warm-accent: var(--ws-action-bg);
  --ws-contact-hero-warm-bg: var(--ws-surface-sunken);
  background: var(--ws-surface-sunken);
}
.ws-contact-hero-warm-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--ws-radius-l); }
.ws-contact-hero-warm-headline { font-family: var(--ws-font-display); font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-contact-hours { margin: var(--ws-space-l) 0 0; display: grid; gap: var(--ws-space-2xs); max-width: 24rem; }
.ws-contact-hours > div {
  display: flex; justify-content: space-between; gap: var(--ws-space-s);
  padding-block: var(--ws-space-2xs); border-bottom: 1px solid var(--ws-surface-border);
}
.ws-contact-hours dt { color: var(--ws-text-secondary); }
.ws-contact-hours dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums lining-nums; }
.ws-contact-hero-warm-primary {
  background: var(--ws-action-bg); color: var(--ws-action-text);
  min-height: 52px; font-variant-numeric: tabular-nums lining-nums;
}
.ws-contact-hero-warm-primary:hover { background: var(--ws-action-bg-hover); }
.ws-contact-hero-warm-phone { color: var(--ws-text-signal); min-height: 44px; display: inline-flex; align-items: center; }

/* ---------- Footer: comp-footer-map-nap-001 ---------- */
.ws-mnf {
  --ws-mnf-bg: var(--ws-surface-sunken);
  --ws-mnf-ink: var(--ws-text-primary);
  --ws-mnf-muted: var(--ws-text-muted);
  --ws-mnf-accent: var(--ws-brand-700);
  --ws-mnf-map-land: var(--ws-neutral-200);
  --ws-mnf-map-road: var(--ws-neutral-300);
  --ws-mnf-max: var(--ws-container);
}
.ws-mnf-brand { font-family: var(--ws-font-display); font-weight: 600; }
.ws-mnf-hours dl { font-variant-numeric: tabular-nums lining-nums; }
.ws-mnf-social { display: flex; flex-wrap: wrap; gap: var(--ws-space-m); margin-top: var(--ws-space-m); }
.ws-mnf-social a { color: var(--ws-text-signal); font-weight: 500; text-decoration: none; text-underline-offset: 4px; min-height: 44px; display: inline-flex; align-items: center; }
.ws-mnf-social a:hover { text-decoration: underline; }
.ws-mnf-legal a { min-height: 44px; display: inline-flex; align-items: center; }

/* ---------- Connective: conn-image-expand-001 ---------- */
.ws-conn-ie-media-inner img { width: 100%; height: 100%; object-fit: cover; }
.ws-conn-ie-copy h2, .ws-conn-ie-overlay h2, .ws-conn-ie-copy-static h2 {
  font-family: var(--ws-font-display); font-size: var(--ws-h2-size);
  font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh);
}
.ws-conn-ie-copy-static { display: none; }
.ws-conn-ie-static .ws-conn-ie-copy-static { display: block; padding: var(--ws-space-3xl) var(--ws-gutter); max-width: var(--ws-container); margin: 0 auto; }
.ws-conn-ie-static .ws-conn-ie-feature { display: none; }

/* ==========================================================================
   Fix-Welle 2026-07-29 (Owner-Feedback): Ersatz-Elemente auf Tokens binden
   ========================================================================== */

/* ---------- Header: comp-nav-floating-pill-001 ---------- */
.ws-pillnav {
  --ws-pillnav-bg: rgb(254 249 247 / 0.82);
  --ws-pillnav-ink: var(--ws-neutral-900);
  --ws-pillnav-accent: var(--ws-brand-700);
  --ws-pillnav-cta-bg: var(--ws-action-bg);
  --ws-pillnav-cta-ink: var(--ws-action-text);
  --ws-pillnav-font: var(--ws-font-body);
  --ws-pillnav-shadow: var(--ws-elev-2);
}
.ws-pillnav-logo { display: inline-flex; flex-direction: row; align-items: center; gap: var(--ws-space-2xs); white-space: nowrap; font-family: var(--ws-font-display); font-weight: 600; font-size: var(--ws-step-1); letter-spacing: -0.01em; text-decoration: none; }
.ws-pillnav-logo svg { width: 1.5rem; height: 1.5rem; flex: 0 0 auto; }
.ws-pillnav-cta { font-variant-numeric: tabular-nums lining-nums; min-height: 44px; }
.ws-pillnav-drawer {
  display: none; flex-direction: column; gap: var(--ws-space-2xs);
  margin-top: var(--ws-space-2xs); padding: var(--ws-space-s) var(--ws-space-m) var(--ws-space-m);
  background: var(--ws-surface-page); border: 1px solid var(--ws-surface-border);
  border-radius: var(--ws-radius-l); box-shadow: var(--ws-elev-3);
}
.ws-pillnav-drawer a { min-height: 44px; display: flex; align-items: center; text-decoration: none; font-weight: 500; }
.ws-pillnav-drawer-tel { color: var(--ws-text-signal); font-weight: 600; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .ws-pillnav-drawer:not([hidden]) { display: flex; } }

/* ---------- Mietpark: comp-accordion-media-sync-list-001 ---------- */
.ws-msl {
  --ws-msl-bg: var(--ws-surface-tint);
  --ws-msl-ink: var(--ws-text-primary);
  --ws-msl-muted: var(--ws-text-secondary);
  --ws-msl-accent: var(--ws-brand-700);
  --ws-msl-border: var(--ws-surface-border);
  background: var(--ws-surface-tint);
}
.ws-msl__title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-msl__subline { color: var(--ws-text-secondary); font-size: var(--ws-lead-size); max-width: var(--ws-container-text); }
.ws-msl__num { color: var(--ws-signal-numeric); font-variant-numeric: tabular-nums lining-nums; }
.ws-msl__heading { font-family: var(--ws-font-display); font-size: var(--ws-h3-size); }
.ws-msl__slide { position: absolute; inset: 0; opacity: 0; transition: opacity var(--ws-dur-base) var(--ws-ease-out); }
.ws-msl__slide.ws-is-active { opacity: 1; }
.ws-msl__slide img, .ws-msl__inline-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--ws-radius-m); }
.ws-msl__stage-inner { position: relative; width: 100%; aspect-ratio: 3 / 2; border-radius: var(--ws-radius-m); overflow: hidden; background: var(--ws-neutral-200); }
.ws-msl__slide-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--ws-space-m) var(--ws-space-s) var(--ws-space-xs);
  background: linear-gradient(to top, rgb(20 17 15 / 0.7), rgb(20 17 15 / 0));
  color: #fff; font-size: var(--ws-meta-size); font-weight: 500; letter-spacing: var(--ws-meta-ls);
}
.ws-msl__foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ws-space-m); margin-top: var(--ws-space-l); }
@media (min-width: 901px) { .ws-msl__inline-media { display: none; } }
@media (max-width: 900px) { .ws-msl__stage { display: none; } .ws-msl__inline-media { aspect-ratio: 3 / 2; margin-bottom: var(--ws-space-s); } }

/* ---------- Ablauf: scroll-cy-sticky-scroll-deck ---------- */
.ws-ssd {
  --ws-ssd-bg: var(--ws-surface-page);
  --ws-ssd-card-bg: var(--ws-surface-raised);
  --ws-ssd-ink: var(--ws-text-primary);
  background: var(--ws-surface-page);
}
.ws-ssd__title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-ssd__lead { color: var(--ws-text-secondary); font-size: var(--ws-lead-size); }
.ws-ssd__card { background: var(--ws-surface-raised); border: 1px solid var(--ws-surface-border); box-shadow: var(--ws-elev-3); overflow: hidden; }
.ws-ssd__visual { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ws-neutral-200); }
.ws-ssd__visual img { width: 100%; height: 100%; object-fit: cover; }
.ws-ssd__badge {
  position: absolute; top: var(--ws-space-s); left: var(--ws-space-s);
  background: var(--ws-action-bg); color: var(--ws-action-text);
  padding: var(--ws-space-3xs) var(--ws-space-2xs); border-radius: var(--ws-radius-s);
  font-family: var(--ws-font-body); font-weight: 600; font-size: var(--ws-meta-size);
  font-variant-numeric: tabular-nums lining-nums;
}
.ws-ssd__body { padding: var(--ws-space-m); }
.ws-ssd__card-title { font-family: var(--ws-font-display); font-size: var(--ws-h3-size); font-weight: 600; line-height: var(--ws-h3-lh); }
.ws-ssd__card-text { margin-top: var(--ws-space-2xs); color: var(--ws-text-secondary); max-width: 60ch; }
.ws-ssd__caption { color: var(--ws-text-muted); font-size: var(--ws-meta-size); }

/* ---------- Gastro-Vollbild: sec-cta-fullbleed-001 ---------- */
.ws-cta-full { position: relative; min-height: clamp(30rem, 72vh, 44rem); display: grid; place-items: center; overflow: hidden; }
.ws-cta-full-photo { position: absolute; inset: 0; }
.ws-cta-full-photo img { width: 100%; height: 100%; object-fit: cover; }
.ws-cta-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(20 17 15 / 0.86) 0%, rgb(20 17 15 / 0.66) 46%, rgb(20 17 15 / 0.30) 100%);
}
.ws-cta-full-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--ws-container); margin: 0 auto;
  padding: var(--ws-space-3xl) var(--ws-gutter);
  color: #fff;
}
.ws-cta-full-head { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); max-width: 26ch; }
.ws-cta-full-sub { margin-top: var(--ws-space-m); max-width: 56ch; color: rgb(255 255 255 / 0.9); font-size: var(--ws-lead-size); line-height: var(--ws-lead-lh); }
.ws-cta-full-list { margin: var(--ws-space-m) 0 0; padding-left: 1.1rem; max-width: 52ch; color: rgb(255 255 255 / 0.86); display: grid; gap: var(--ws-space-3xs); }
.ws-cta-full-list li::marker { color: var(--ws-brand-300); }
.ws-cta-full-actions { display: flex; flex-wrap: wrap; gap: var(--ws-space-s); margin-top: var(--ws-space-l); align-items: center; }
.ws-cta-full-primary {
  display: inline-flex; align-items: center; gap: var(--ws-space-2xs);
  min-height: 52px; padding: 0 var(--ws-space-l); border-radius: var(--ws-radius-pill);
  background: var(--ws-action-bg); color: var(--ws-action-text); font-weight: 600; text-decoration: none;
  font-variant-numeric: tabular-nums lining-nums;
  transition: background-color var(--ws-dur-fast) var(--ws-ease-out);
}
.ws-cta-full-primary:hover { background: var(--ws-action-bg-hover); }
.ws-cta-full-secondary { color: #fff; min-height: 44px; display: inline-flex; align-items: center; text-underline-offset: 4px; }

/* ---------- Stimmen: sec-testimonials-carousel-auto ---------- */
.ws-sectca-section { --ws-sectca-bg: var(--ws-surface-sunken); background: var(--ws-surface-sunken); }
.ws-sectca-title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-sectca-sub { color: var(--ws-text-secondary); font-variant-numeric: tabular-nums lining-nums; }
.ws-sectca-stars { color: var(--ws-brand-500); letter-spacing: 0.1em; }
.ws-sectca-text { font-family: var(--ws-font-display); font-size: var(--ws-step-1); line-height: 1.5; }
.ws-sectca-name { font-weight: 600; }
.ws-sectca-role { color: var(--ws-text-muted); font-size: var(--ws-meta-size); }
.ws-sectca-foot { margin-top: var(--ws-space-l); text-align: center; }
.ws-sectca-foot a { color: var(--ws-text-signal); font-weight: 600; text-underline-offset: 4px; }

/* Pin-Spacer des Connective-Moments darf keine Fremd-Farbe zeigen */
.pin-spacer { background: var(--ws-surface-page); }


/* ==========================================================================
   Fix-Welle 2 (Owner-Feedback 2026-07-30)
   ========================================================================== */

/* Akzent-Kursiv in Display-Headlines (Owner: Schrift muss gefaerbt werden) */
.ws-conn-ie-copy h2 em, .ws-conn-ie-copy-static h2 em,
.ws-secapi-h2 em, .ws-shellcg-headline em, .ws-secaif-h2 em, .ws-ssd__title em {
  font-style: italic; color: var(--ws-text-signal);
}

/* Connective-Overlay: eigener Scrim, sonst steht weisser Text auf hellem Holz */
.ws-conn-ie-overlay-box {
  max-width: 46rem; margin: 0 auto; padding: var(--ws-space-l) var(--ws-space-xl);
  background: rgb(20 17 15 / 0.55);
  backdrop-filter: blur(3px);
  border-radius: var(--ws-radius-l);
}
.ws-conn-ie-overlay-box h2 { color: #fff; text-shadow: 0 2px 18px rgb(20 17 15 / 0.6); }
.ws-conn-ie-overlay-box p { color: rgb(255 255 255 / 0.94); text-shadow: 0 1px 12px rgb(20 17 15 / 0.5); }

/* Ablauf-Deck: Karten waren zu schmal (Owner-Befund) */
.ws-ssd__slot { width: 100%; }
.ws-ssd__intro { padding-bottom: var(--ws-space-l); }
.ws-ssd__card {
  width: min(64rem, 92vw); margin-inline: auto;
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: stretch;
}
.ws-ssd__visual { aspect-ratio: auto; height: 100%; min-height: 22rem; }
.ws-ssd__body { display: flex; flex-direction: column; justify-content: center; padding: var(--ws-space-xl); }
.ws-ssd__caption { grid-column: 1 / -1; padding: 0 var(--ws-space-xl) var(--ws-space-m); }
@media (max-width: 800px) {
  .ws-ssd__card { grid-template-columns: 1fr; }
  .ws-ssd__visual { min-height: 14rem; aspect-ratio: 16 / 10; }
  .ws-ssd__body { padding: var(--ws-space-m); }
  .ws-ssd__caption { padding: 0 var(--ws-space-m) var(--ws-space-m); }
}

/* Mietpark: sec-accordion-preview auf Tokens (warmes Neutral statt Rosa) */
.ws-secapi-section {
  --ws-secapi-bg: var(--ws-surface-sunken);
  --ws-secapi-ink: var(--ws-text-primary);
  --ws-secapi-muted: var(--ws-text-secondary);
  --ws-secapi-accent: var(--ws-brand-700);
  --ws-secapi-border: var(--ws-surface-border);
  background: var(--ws-surface-sunken);
}
.ws-secapi-h2 { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-secapi-lead { margin-top: var(--ws-space-s); color: var(--ws-text-secondary); font-size: var(--ws-lead-size); max-width: 46ch; }
.ws-secapi-trigger-num { color: var(--ws-signal-numeric); font-variant-numeric: tabular-nums lining-nums; }
.ws-secapi-trigger-title { font-family: var(--ws-font-display); font-weight: 600; }
.ws-secapi-visual { position: relative; overflow: hidden; border-radius: var(--ws-radius-l); background: var(--ws-neutral-200); aspect-ratio: 3 / 2; height: auto; }
.ws-secapi-visuals { align-self: start; position: sticky; top: 7rem; }
.ws-secapi-visual img { width: 100%; height: 100%; object-fit: cover; }
.ws-secapi-visual-caption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: var(--ws-space-l) var(--ws-space-m) var(--ws-space-s);
  background: linear-gradient(to top, rgb(20 17 15 / 0.72), rgb(20 17 15 / 0));
  color: #fff; font-size: var(--ws-meta-size); font-weight: 500; letter-spacing: var(--ws-meta-ls);
}
.ws-secapi-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ws-space-m); margin-top: var(--ws-space-l); }


/* ==========================================================================
   Fix-Welle 3 (Owner-Feedback 2026-07-30, 2. Runde)
   ========================================================================== */

/* 1. EINE Typografie pro Satz: Akzent nur ueber Farbe, nicht ueber Kursiv
      (Owner: "hoer auf verschiedene Typografien in einem Satz zu packen") */
.ws-hfeph-h1 em,
.ws-conn-ie-copy h2 em, .ws-conn-ie-copy-static h2 em, .ws-conn-ie-overlay-box h2 em,
.ws-secapi-h2 em, .ws-shellcg-headline em, .ws-secaif-h2 em, .ws-ssd__title em,
.ws-cta-full-head em, .ws-sectca-title em, .ws-contact-hero-warm-headline em,
.ws-hac__title em, .ws-hac__detail-title em {
  font-style: normal;
  font-weight: inherit;
  color: var(--ws-text-signal);
}
.ws-hfeph-h1 em { color: var(--ws-accent-yellow); }      /* Logo-Gelb: das Hero-Foto ist selbst blau */

/* 2. Hero-H1 deutlicher */
.ws-hfeph-h1 {
  max-width: 22ch;
  text-shadow: 0 3px 30px rgb(20 17 15 / 0.5), 0 1px 3px rgb(20 17 15 / 0.35);
}

/* 3. Connective-Bühne: Sticky-Strecke, damit der Vollbild-Zustand steht
      (Owner: "man scrollt schon runter, obwohl man nicht mal Vollbild erreicht hat") */
.ws-conn-ie-feature { min-height: 260vh; position: relative; }
.ws-conn-ie-stage { position: sticky; top: 0; height: 100svh; }

/* 4. Mietpark-Bildbühne: Bild fuellt die Flaeche wirklich (Owner: Bilder deplatziert) */
.ws-secapi-visuals { position: relative; aspect-ratio: 3 / 2; align-self: start; }
.ws-secapi-visual { position: absolute; inset: 0; aspect-ratio: auto; border-radius: var(--ws-radius-l); overflow: hidden; }
.ws-secapi-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* 5. Ablauf-Deck: Karten nicht bis unter den Header schieben */
.ws-ssd__slot { position: relative; }
.ws-ssd__card { position: sticky; top: 8.5rem; }
@media (max-width: 800px) { .ws-ssd__card { position: static; } }

/* Deck: Intro-Abstand knapp halten, aber die Slot-Hoehe NICHT anfassen,
   sonst verliert das Sticky-Stapeln seinen Scroll-Weg (Owner-Befund 2026-07-30). */
.ws-ssd__intro { padding-bottom: var(--ws-space-m); margin-bottom: 0; }
.ws-ssd { padding-block: var(--ws-space-3xl) var(--ws-space-2xl); }


/* ==========================================================================
   Fix-Welle 4: Mietpark als Bild-Spalten (comp-accordion-horizontal-columns-001)
   ========================================================================== */
.ws-hac {
  --ws-hac-bg: var(--ws-surface-sunken);
  --ws-hac-ink: var(--ws-text-primary);
  --ws-hac-muted: var(--ws-text-secondary);
  --ws-hac-accent: var(--ws-brand-700);
  --ws-hac-label: #ffffff;
  background: var(--ws-surface-sunken);
}
.ws-hac__title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); }
.ws-hac__subline { color: var(--ws-text-secondary); font-size: var(--ws-lead-size); max-width: var(--ws-container-text); }
.ws-hac__col-bg {
  background-size: cover; background-position: center;
  filter: saturate(0.97) contrast(1.02);
}
/* Lesbarkeits-Scrim unter dem gedrehten Label */
.ws-hac__col::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(to top, rgb(20 17 15 / 0.78), rgb(20 17 15 / 0));
  pointer-events: none; z-index: 1;
}
.ws-hac__col.ws-is-open::after { height: 70%; }
.ws-hac__trigger, .ws-hac__col-detail, .ws-hac__col-panel { position: relative; z-index: 2; }
.ws-hac__col-label { font-family: var(--ws-font-display); font-weight: 600; color: #fff; text-shadow: 0 2px 14px rgb(20 17 15 / 0.6); }
.ws-hac__detail-title { font-family: var(--ws-font-display); font-weight: 600; color: #fff; }
.ws-hac__detail-copy, .ws-hac__panel-copy { color: rgb(255 255 255 / 0.92); }
.ws-hac__cta { color: #fff; font-weight: 600; text-underline-offset: 4px; min-height: 44px; display: inline-flex; align-items: center; }
.ws-hac__cta:hover { color: var(--ws-brand-200); }
.ws-hac__foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ws-space-m); margin-top: var(--ws-space-l); max-width: var(--ws-container); margin-inline: auto; padding-inline: var(--ws-gutter); }


/* Fix-Welle 5: Naht Vollbild -> Mietpark weich fuehren (backgrounds.md §5:
   rgba der Startfarbe, NIE das Keyword transparent -> sonst grauer Schmutzrand) */
.ws-mietpark-bleed {
  height: clamp(3.5rem, 7vw, 7rem);
  margin-bottom: calc(clamp(3.5rem, 7vw, 7rem) * -1);
  position: relative; z-index: 3; pointer-events: none;
  background: linear-gradient(to bottom, rgb(20 17 15 / 0) 0%, rgb(254 249 247 / 0.6) 62%, rgb(254 249 247 / 1) 100%);
}
/* Flaeche auf den Page-Ton statt der roetlicheren Zonen-Stufe (Owner: zu rosa) */
.ws-hac { background: var(--ws-surface-page); padding-top: clamp(3.5rem, 7vw, 7rem); }


/* Fix-Welle 6: Modellnamen in den Spalten sichtbar machen */
/* Bild nach hinten, damit der Lesbarkeits-Scrim darueber liegt */
.ws-hac__col-bg { z-index: 0; }
.ws-hac__col::after { z-index: 1; }
/* Label mittig auf der Spalte statt am unteren Rand, mit Luft zum Schnitt */
.ws-hac__trigger {
  display: flex; align-items: flex-end; justify-content: center;
  padding-block: var(--ws-space-l) var(--ws-space-xl);
}
.ws-hac__col-label {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: var(--ws-step-1); line-height: 1.1; letter-spacing: 0.06em;
  max-height: 100%; white-space: nowrap;
}
/* Text der offenen Spalte auf eigenem Grund, nicht nur auf dem Foto */
.ws-hac__col.ws-is-open .ws-hac__col-detail {
  background: linear-gradient(to top, rgb(20 17 15 / 0.86) 0%, rgb(20 17 15 / 0.62) 68%, rgb(20 17 15 / 0) 100%);
  padding: var(--ws-space-2xl) var(--ws-space-m) var(--ws-space-m);
}



/* Fix-Welle 6b: Vertikal gedrehte Labels brachen bei 5 schmalen Spalten ab
   (nur "ai", "ca", "ris" sichtbar). Umstellung auf horizontale Beschriftung
   in einem eigenen Balken am Spaltenfuss. Hoehere Spezifitaet statt !important. */
.ws-hac .ws-hac__row .ws-hac__col .ws-hac__trigger {
  display: block; padding: 0; height: 100%;
  position: relative; z-index: 2;
}
.ws-hac .ws-hac__row .ws-hac__col .ws-hac__trigger .ws-hac__col-label {
  writing-mode: horizontal-tb;
  transform: none;
  position: absolute; left: 0; right: 0; bottom: 0;
  display: block; padding: var(--ws-space-m) var(--ws-space-2xs) var(--ws-space-xs);
  font-family: var(--ws-font-display); font-weight: 600;
  font-size: var(--ws-step--1); line-height: 1.2; letter-spacing: 0.01em;
  text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  color: #fff; text-shadow: 0 1px 10px rgb(20 17 15 / 0.75);
  background: linear-gradient(to top, rgb(20 17 15 / 0.82) 0%, rgb(20 17 15 / 0.45) 60%, rgb(20 17 15 / 0) 100%);
}
/* Offene Spalte: Label sichtbar lassen, Detail-Text sitzt darueber */
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__trigger .ws-hac__col-label {
  font-size: var(--ws-step-1); padding-bottom: var(--ws-space-s);
}


/* Offene Spalte: Name + Kurztext auf eigenem Grund (gleiche Spezifitaets-Stufe
   wie die Label-Regel, sonst gewinnt das Element-CSS) */
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__col-detail {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: block; opacity: 1; visibility: visible;
  padding: var(--ws-space-2xl) var(--ws-space-l) var(--ws-space-m);
  background: linear-gradient(to top, rgb(20 17 15 / 0.88) 0%, rgb(20 17 15 / 0.6) 62%, rgb(20 17 15 / 0) 100%);
}
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__detail-title {
  font-family: var(--ws-font-display); font-weight: 600; font-size: var(--ws-h3-size);
  color: #fff; margin: 0 0 var(--ws-space-2xs);
}
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__detail-copy {
  color: rgb(255 255 255 / 0.92); max-width: 46ch; margin: 0 0 var(--ws-space-xs);
}
/* Label in der offenen Spalte weg, der Detail-Titel uebernimmt */
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__trigger .ws-hac__col-label { display: none; }


/* CTA in der offenen Spalte hatte weissen Text auf weisser Flaeche (Element-CSS
   setzt den hellen Grund) -> dunkle Schrift, Brand-Hover */
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__cta,
.ws-hac .ws-hac__row .ws-hac__col .ws-hac__panel-cta {
  color: var(--ws-neutral-900);
  background: #ffffff;
  padding: 0 var(--ws-space-m);
  border-radius: var(--ws-radius-pill);
  min-height: 44px; display: inline-flex; align-items: center; gap: var(--ws-space-3xs);
  font-weight: 600; text-decoration: none;
}
.ws-hac .ws-hac__row .ws-hac__col.ws-is-open .ws-hac__cta:hover {
  background: var(--ws-brand-700); color: #ffffff;
}


/* ==========================================================================
   Fix-Welle 7 (Owner-Wunsch): Sortiment gleitet ueber den Hero
   ========================================================================== */
/* Hero bleibt stehen, Folge-Section schiebt sich darueber */
section[data-ws-el="hero-mood-photo-fullbleed-editorial-001"] {
  position: sticky; top: 0; z-index: 0;
}
/* Alle folgenden Sections liegen darueber und brauchen eigene Flaeche,
   sonst scheint der Hero durch */
/* JEDER Slot nach dem Hero braucht eigene Ebene UND deckende Flaeche,
   sonst scheint der sticky Hero durch (im Render aufgefallen). */
section[data-ws-el]:not([data-ws-el="hero-mood-photo-fullbleed-editorial-001"]),
footer[data-ws-el] {
  position: relative; z-index: 1;
  background: var(--ws-surface-page);
}
/* Nur der erste Slot bekommt die sichtbare Ueberlappungs-Kante */
section[data-ws-el="shell-card-grid-basic-001"] {
  border-radius: var(--ws-radius-l) var(--ws-radius-l) 0 0;
  box-shadow: 0 -18px 40px rgb(20 17 15 / 0.18);
}
/* Medien-Layer darf beim Parallax nicht die Kante freilegen */
.ws-hfeph { overflow: hidden; }
.ws-hfeph-scenes { will-change: transform; }
.ws-hfeph-content, .ws-hfeph-foot { will-change: transform, opacity; }


/* Parallax-Puffer: der Medien-Layer braucht Ueberhoehe, sonst legt die
   Verschiebung oben den dunklen Hero-Grund frei (im Render aufgefallen). */
.ws-hfeph-scenes { top: -12%; height: 124%; will-change: transform; }


/* Fix-Welle 8: echtes Karten-Stapeln.
   Vorher: jeder Slot war 1000px hoch, die Karte nur 432px -> 568px Leerraum
   zwischen den Karten, kein Stapel-Eindruck. Jetzt erzeugen die Karten den
   Scroll-Weg selbst und kleben ab der oberen Bildmitte uebereinander. */
.ws-ssd .ws-ssd__slot {
  height: auto; min-height: 0; padding: 0;
  margin-bottom: clamp(2rem, 6vh, 4.5rem);
}
.ws-ssd .ws-ssd__slot:last-of-type { margin-bottom: 0; }
.ws-ssd .ws-ssd__card {
  position: sticky; top: 18vh;
  transform-origin: center top;
}
/* leichte Tiefen-Staffelung: jede naechste Karte sitzt minimal tiefer */
.ws-ssd .ws-ssd__slot:nth-of-type(2) .ws-ssd__card { top: calc(18vh + 14px); }
.ws-ssd .ws-ssd__slot:nth-of-type(3) .ws-ssd__card { top: calc(18vh + 28px); }
.ws-ssd .ws-ssd__slot:nth-of-type(4) .ws-ssd__card { top: calc(18vh + 42px); }
@media (max-width: 800px) {
  .ws-ssd .ws-ssd__card,
  .ws-ssd .ws-ssd__slot:nth-of-type(n) .ws-ssd__card { position: static; top: auto; }
}


/* Fix-Welle 8b: Sticky wirkt nur INNERHALB des Elternelements. Solange jede Karte
   in ihrem eigenen Slot sass (Slot-Hoehe == Kartenhoehe), gab es keinen Klebe-Weg.
   Slots als Layout-Ebene aufloesen -> alle Karten kleben im selben Container
   und stapeln sich uebereinander. */
.ws-ssd .ws-ssd__slot { display: contents; }
.ws-ssd .ws-ssd__card { position: sticky; margin-bottom: 42vh; }
.ws-ssd .ws-ssd__card:last-of-type { margin-bottom: 0; }


/* ==========================================================================
   Fix-Welle 9: Gastro als horizontale Projekt-Galerie
   (Vollbild-Foto mit Text drauf trug nicht - Owner-Befund 2026-07-30)
   ========================================================================== */
.ws-sechsk-section {
  --ws-sechsk-bg: var(--ws-neutral-950);
  --ws-sechsk-ink: #ffffff;
  --ws-sechsk-muted: rgb(255 255 255 / 0.82);
  --ws-sechsk-accent: var(--ws-accent-green);
  background: var(--ws-neutral-950);
}
.ws-sechsk-title { font-size: var(--ws-h2-size); font-weight: var(--ws-h2-weight); line-height: var(--ws-h2-lh); letter-spacing: var(--ws-h2-ls); color: #fff; }
.ws-sechsk-title em { font-style: normal; color: var(--ws-accent-green); }
.ws-sechsk-lead { margin-top: var(--ws-space-s); max-width: 56ch; color: rgb(255 255 255 / 0.84); font-size: var(--ws-lead-size); }
.ws-sechsk-hint { color: rgb(255 255 255 / 0.6); font-size: var(--ws-meta-size); }
.ws-sechsk-card { position: relative; overflow: hidden; border-radius: var(--ws-radius-l); text-decoration: none; }
.ws-sechsk-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform var(--ws-dur-slow) var(--ws-ease-out); }
.ws-sechsk-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgb(20 17 15 / 0.9) 0%, rgb(20 17 15 / 0.55) 48%, rgb(20 17 15 / 0.15) 100%);
}
.ws-sechsk-card:hover .ws-sechsk-img { transform: scale(1.04); }
.ws-sechsk-num, .ws-sechsk-card > div { position: relative; z-index: 2; }
.ws-sechsk-num { color: var(--ws-accent-green); font-variant-numeric: tabular-nums lining-nums; }
.ws-sechsk-h3 { font-family: var(--ws-font-display); font-weight: 600; color: #fff; }
.ws-sechsk-text { color: rgb(255 255 255 / 0.88); }
.ws-sechsk-cta { color: var(--ws-accent-green); font-weight: 600; }
.ws-sechsk-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ws-space-m); margin-top: var(--ws-space-l); max-width: var(--ws-container); margin-inline: auto; padding-inline: var(--ws-gutter); }
.ws-sechsk-primary {
  display: inline-flex; align-items: center; gap: var(--ws-space-2xs);
  min-height: 52px; padding: 0 var(--ws-space-l); border-radius: var(--ws-radius-pill);
  background: var(--ws-action-bg); color: #fff; font-weight: 600; text-decoration: none;
  transition: background-color var(--ws-dur-fast) var(--ws-ease-out);
}
.ws-sechsk-primary:hover { background: var(--ws-action-bg-hover); }
.ws-sechsk-mail { color: rgb(255 255 255 / 0.9); min-height: 44px; display: inline-flex; align-items: center; text-underline-offset: 4px; }


/* Blaetter-Buttons der Projekt-Galerie */
.ws-sechsk-nav { display: flex; gap: var(--ws-space-2xs); }
.ws-sechsk-btn {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--ws-radius-pill); border: 1.5px solid rgb(255 255 255 / 0.42);
  background: rgb(255 255 255 / 0.06); color: #fff; cursor: pointer;
  transition: background-color var(--ws-dur-fast) var(--ws-ease-out), border-color var(--ws-dur-fast) var(--ws-ease-out);
}
.ws-sechsk-btn svg { width: 22px; height: 22px; }
.ws-sechsk-btn:hover:not(:disabled) { background: var(--ws-brand-700); border-color: var(--ws-brand-700); }
.ws-sechsk-btn:disabled { opacity: 0.35; cursor: default; }


/* Zweit-Button im Hero hatte keine Entry-Animation (Owner-Befund).
   Gleiche Keyframes wie das Element, gestaffelt nach dem Primaer-CTA (920ms). */
.ws-hfeph-cta-ghost {
  opacity: 1;
  animation: ws-wb-rise 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 1040ms forwards;
}
@media (prefers-reduced-motion: reduce) {
  .ws-hfeph-cta-ghost { opacity: 1; animation: none; }
}

/* Instanz: Schriftfamilien der Slot-eigenen Stacks auf den Token-Vertrag ziehen. */
.ws-hac, .ws-hac__title, .ws-hac__col-label, .ws-hac__detail-title { font-family: var(--ws-font-display); }
.ws-hac__panel-copy, .ws-hac__detail-copy, .ws-hac__subline, .ws-hac__cta { font-family: var(--ws-font-body); }
.ws-ssd, .ws-ssd__title, .ws-ssd__card-title { font-family: var(--ws-font-display); }
.ws-ssd__lead, .ws-ssd__card-text, .ws-ssd__caption { font-family: var(--ws-font-body); }

/* ---------- Instanz-Fix: Hero-Inhalt haengt nicht am Reveal ----------
   verify-render SECTION_CONTENT_INVISIBLE: die geerbten Reveals starten auf
   opacity 0 und laufen mit bis zu 1100 ms Verzoegerung. Auf Mobil war der
   Hero-Text dadurch ueber zwei Sekunden unsichtbar. Boden ist jetzt sichtbar,
   die Animation liefert nur noch die Bewegung. */
@keyframes ws-wb-rise { from { transform: translateY(22px); } to { transform: none; } }
.ws-hfeph-kicker,
.ws-hfeph-line,
.ws-hfeph-sub,
.ws-hfeph-actions,
.ws-hfeph-foot {
  opacity: 1;
  animation-name: ws-wb-rise;
}
@media (prefers-reduced-motion: reduce) {
  .ws-hfeph-kicker,
  .ws-hfeph-line,
  .ws-hfeph-sub,
  .ws-hfeph-actions,
  .ws-hfeph-foot { animation: none; transform: none; }
}

/* ---------- Instanz-Fix: A11y-Befunde aus der Vorlage ----------
   Beide Adresszeilen im Footer waren nur 19 px hoch (WCAG 2.5.8 verlangt 24 px). */
.ws-mnf-nap a {
  display: inline-block;
  min-height: 24px;
  padding-block: 3px;
}
.ws-mnf-hours-title { font-weight: 600; margin-bottom: var(--ws-space-2xs); }
