/* =============================================================================
   MAI · BUSINESS APARTMENTS — DESIGN SYSTEM
   -----------------------------------------------------------------------------
   Aufbau dieser Datei:
     01  Design-Tokens (Farben, Typo, Spacing, Motion)
     02  Reset & Base
     03  Typografie & Editorial-Bausteine (Eyebrow, Headlines, Lead)
     04  Layout (Container, Sections, Grid)
     05  Buttons & Links
     06  Header / Navigation
     07  Logo / Wortmarke
     08  Hero (Fullscreen-Video, Intro-Animation, Inserts)
     09  Cinematic Inserts / Overlays
     10  Reveal-, Mask- & Parallax-Motion
     11  Cards & Featured-Unterkünfte
     12  Horizontal-Scroll-Rail
     13  Sticky-Storytelling
     14  Stats / Fakten
     15  Process / Ablauf
     16  Benefits / Firmenkunden
     17  FAQ-Accordion
     18  Anfrage / Kontaktformular
     19  Detailseite (Exposé) + Galerie + Sticky-Anfrageleiste
     20  Footer
     21  Page-Intro-Loader
     22  Responsive
     23  prefers-reduced-motion
   ============================================================================ */

/* ---------------------------------------------------------------------------
   01 · DESIGN-TOKENS
--------------------------------------------------------------------------- */
:root {
  /* Farben — Brand-Kit „Edel & ruhig": Marineblau + Messing-Gold auf Alabaster */
  --bg:            #F5F3EE;
  --bg-2:          #EDEAE2;
  --surface:       #FBFAF7;
  --ink:           #1B1C1E;
  --ink-soft:      #3D3F44;
  --muted:         #63666B;
  --line:          #E4E0D7;
  --line-strong:   #D2CCBF;

  --anthracite:    #0F2A43;   /* = Marineblau (dunkle Sektionen) */
  --anthracite-2:  #143451;
  --on-dark:       #ECE7DC;
  --on-dark-soft:  rgba(236, 231, 220, 0.62);
  --dark-line:     rgba(236, 231, 220, 0.16);
  --dark-line-2:   rgba(236, 231, 220, 0.30);

  --accent:        #1C4E77;   /* Marken-Blau: führt (Buttons, Links, Signal) */
  --accent-deep:   #0F2A43;
  --accent-soft:   rgba(28, 78, 119, 0.12);
  --gold:          #BFA05A;   /* Messing-Gold: feine Linien & Highlights — nie Fläche */
  --gold-ink:      #927327;   /* Gold als kleine Schrift auf Hell (lesbar) */
  --danger:        #9E3B3B;

  /* Typografie — Tenor Sans (Display, ein Schnitt) + Jost (Body & Datenebene) */
  --font-sans:    "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Tenor Sans", "Jost", system-ui, sans-serif;
  --font-serif:   "Jost", system-ui, sans-serif; /* = Daten-/Label-Ebene (versal + gesperrt) */
  --font-mono:    "Jost", system-ui, sans-serif;

  --fs-eyebrow: 0.74rem;
  --fs-small:   0.85rem;
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --fs-lead:    clamp(1.18rem, 1.05rem + 0.7vw, 1.6rem);
  --fs-h4:      clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-h3:      clamp(1.5rem, 1.2rem + 1.4vw, 2.3rem);
  --fs-h2:      clamp(2.1rem, 1.5rem + 3vw, 3.9rem);
  --fs-h1:      clamp(2.7rem, 1.6rem + 5.4vw, 6.6rem);
  --fs-display: clamp(3.4rem, 1.4rem + 9vw, 9rem);

  /* Spacing */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9.5rem);
  --space-block:   clamp(2.5rem, 1.6rem + 3.5vw, 5rem);
  --container:     1320px;
  --container-narrow: 980px;
  --gutter:        clamp(1.25rem, 0.6rem + 3vw, 3.5rem);

  /* Form — Radien aus dem Brand-Kit */
  --radius:    6px;
  --radius-lg: 12px;
  --radius-sm: 4px;

  /* Schatten — kühl, präzise */
  --shadow-sm: 0 1px 2px rgba(16, 20, 26, 0.06), 0 10px 26px -20px rgba(16, 20, 26, 0.45);
  --shadow:    0 2px 8px rgba(16, 20, 26, 0.07), 0 36px 70px -36px rgba(16, 20, 26, 0.5);

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur:        0.26s;
  --dur-slow:   1.1s;

  --header-h: 84px;
}

/* ---------------------------------------------------------------------------
   02 · RESET & BASE
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv01";
}

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

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

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

/* ---------------------------------------------------------------------------
   03 · TYPOGRAFIE & EDITORIAL-BAUSTEINE
--------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400; /* Tenor Sans hat einen Schnitt — Eleganz statt Fett */
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: break-word; /* Not-Sicherung gegen Abschneiden — greift praktisch nie */
  hyphens: manual;           /* keine Auto-Trennstriche; lange Komposita werden über
                                die mobile Schriftgröße gelöst (Media-Query unten) */
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; }

p { text-wrap: pretty; }
strong { font-weight: 600; }

/* Eyebrow / Kicker — getrackt, mit feiner Linie */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.on-dark { color: var(--on-dark-soft); }

/* Akzent in Headlines — Stahlblau-Signal statt Serif */
.serif-accent {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
  letter-spacing: inherit;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 46ch;
}
.lead.is-wide { max-width: 62ch; }

.text-muted { color: var(--muted); }
.measure { max-width: 60ch; }

/* ---------------------------------------------------------------------------
   04 · LAYOUT
--------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: var(--space-block); }
.section--dark {
  background: var(--anthracite);
  color: var(--on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--on-dark); }
.section--dark .lead { color: var(--on-dark-soft); }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 64ch; }
.section-head--center { margin-inline: auto; text-align: center; max-width: 56ch; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head h2 + .lead { margin-top: 1.6rem; }

.grid { display: grid; gap: var(--gutter); }
.hr-line { height: 1px; background: var(--line); border: 0; }
.section--dark .hr-line { background: var(--dark-line); }

/* ---------------------------------------------------------------------------
   05 · BUTTONS & LINKS
--------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);   /* Marken-Blau fuehrt (Brand-Kit) */
  --btn-fg: #FFFFFF;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 1.05em 1.8em;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--btn-bg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  isolation: isolate;
}
.btn .btn__icon { transition: transform var(--dur) var(--ease); }
.btn::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--accent-deep);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease);
}
.btn:hover { color: #fff; border-color: var(--accent); }
.btn:hover::after { transform: translateY(0); }
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { color: #fff; }
.btn--light {
  --btn-bg: var(--on-dark);
  --btn-fg: var(--anthracite);
}
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  border-color: var(--dark-line-2);
}
.btn--outline-light:hover { color: #fff; }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1.2em 2.2em; }

/* Pfeil-Link (Editorial) */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  padding-bottom: 0.35em;
  position: relative;
}
.arrow-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor; opacity: 0.25;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.arrow-link:hover::after { transform: scaleX(0); }
.arrow-link .btn__icon { transition: transform var(--dur) var(--ease); }
.arrow-link:hover .btn__icon { transform: translateX(5px); }
.arrow-link.on-dark { color: var(--on-dark); }

.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; flex: none; }

/* ---------------------------------------------------------------------------
   06 · HEADER / NAVIGATION
--------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--on-dark);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), height var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
/* Auf hellen Seiten ohne Hero startet der Header direkt dunkel/solid */
.site-header--solid,
.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.86);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--line);
  height: 70px;
}
.site-header.is-scrolled .nav__link::after { background: var(--ink); }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem); }
.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-cta { padding: 0.8em 1.4em; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  position: relative;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  width: 18px; height: 1.5px;
  background: currentColor;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 18px; height: 1.5px;
  left: 0;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--anthracite);
  color: var(--on-dark);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--dark-line);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s var(--ease);
}
.mobile-nav.is-open .mobile-nav__links a { opacity: 1; transform: none; transition-delay: calc(0.08s * var(--i, 0) + 0.15s); }
.mobile-nav__links a:hover { color: var(--accent); }
.mobile-nav__foot { display: flex; flex-direction: column; gap: 0.5rem; color: var(--on-dark-soft); font-size: var(--fs-small); }
.mobile-nav__foot a { color: var(--on-dark); }

/* ---------------------------------------------------------------------------
   07 · LOGO / WORTMARKE
--------------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; color: currentColor; }
.logo__mark { width: 34px; height: 34px; flex: none; }
.logo__mark .ma-glyph { fill: currentColor; }
.logo__type {
  display: flex; flex-direction: column; line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 400; /* Tenor Sans */
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  padding-left: 0.16em;
}
.logo__sub {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.32rem;
  font-weight: 500;
}
.site-header.is-scrolled .logo__sub,
.site-header--solid .logo__sub { color: var(--accent-deep); }

/* ---------------------------------------------------------------------------
   08 · HERO
--------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(12,15,19,0.78) 0%, rgba(12,15,19,0.3) 52%, rgba(12,15,19,0.4) 100%),
    linear-gradient(100deg, rgba(12,15,19,0.66) 0%, rgba(12,15,19,0.24) 50%, rgba(12,15,19,0) 80%);
}
.hero__scrim::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 95% at 88% 0%, transparent 38%, rgba(12,15,19,0.26) 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
  max-width: 16ch;
  letter-spacing: -0.025em;
}
.hero h1 .serif-accent { color: var(--accent); }
.hero__sub {
  margin-top: 1.7rem;
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  font-weight: 400;
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
}

/* Hero-Inserts / Chips */
.hero__inserts {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem;
  max-width: 760px;
}
.insert-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.05);
}
.insert-chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }

/* Scroll-Hinweis */
.hero__scroll {
  position: absolute;
  right: var(--gutter); bottom: clamp(3rem, 8vh, 6rem);
  display: flex; align-items: center; gap: 0.8rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__scroll .line {
  writing-mode: horizontal-tb;
  width: 1px; height: 54px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  transform: translateY(-100%); animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0%{transform:translateY(-100%)} 50%{transform:translateY(0)} 100%{transform:translateY(100%)} }

/* Hero-Intro-Sequenz (Klassen werden per JS gesetzt) */
.hero [data-hero-seq] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: calc(0.18s * var(--seq, 0) + 0.35s);
}
.hero.is-ready [data-hero-seq] { opacity: 1; transform: none; }
.hero__inserts.is-ready .insert-chip {
  opacity: 0; transform: translateY(14px);
  animation: chipIn 0.7s var(--ease-out) forwards;
  animation-delay: calc(0.07s * var(--i, 0) + 1.25s);
}
@keyframes chipIn { to { opacity: 1; transform: none; } }

/* Page-Hero (kürzerer Hero für Unterseiten) */
.page-hero {
  position: relative;
  min-height: clamp(52vh, 60vh, 70vh);
  display: flex; align-items: flex-end;
  color: var(--on-dark); overflow: hidden; isolation: isolate;
  padding-top: var(--header-h);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); animation: heroZoom 13s var(--ease-out) forwards;
}
.page-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(12,15,19,0.9), rgba(12,15,19,0.5) 60%, rgba(12,15,19,0.62)),
    linear-gradient(102deg, rgba(12,15,19,0.8) 0%, rgba(12,15,19,0.45) 46%, rgba(12,15,19,0) 76%);
}
.page-hero__inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding: 0 var(--gutter) clamp(2.6rem, 6vh, 4.6rem);
}
.page-hero .eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); max-width: 18ch; }
.page-hero h1 .serif-accent { color: var(--accent); }
.page-hero__sub { margin-top: 1.3rem; color: rgba(255,255,255,0.82); font-size: var(--fs-lead); line-height: 1.45; max-width: 52ch; }

/* ---------------------------------------------------------------------------
   09 · CINEMATIC INSERTS / OVERLAYS (Editorial-Layer über Bildern)
--------------------------------------------------------------------------- */
.overlay-figure { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.overlay-figure img { width: 100%; height: 100%; object-fit: cover; }

.insert-label {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  background: rgba(13,14,17,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em;
}
.insert-label__no {
  font-family: var(--font-serif); font-style: italic;
  color: var(--accent); font-size: 0.95rem;
}
.insert-label--tl { top: 1.2rem; left: 1.2rem; }
.insert-label--bl { bottom: 1.2rem; left: 1.2rem; }
.insert-label--br { bottom: 1.2rem; right: 1.2rem; }

/* ---------------------------------------------------------------------------
   10 · REVEAL- / MASK- / PARALLAX-MOTION
--------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: calc(0.07s * var(--i, 0));
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Bildmaske, die beim Scrollen aufgeht */
[data-mask] { overflow: hidden; }
[data-mask] > img,
[data-mask] > video {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.12);
  transition: clip-path 1.3s var(--ease-out), transform 1.6s var(--ease-out);
}
[data-mask].is-visible > img,
[data-mask].is-visible > video { clip-path: inset(0 0 0 0); transform: scale(1); }

/* Parallax (per JS gesteuert via --parallax) */
[data-parallax] { will-change: transform; }

/* Zeilen, die sich aufziehen */
.rule-grow {
  height: 1px; background: var(--line); transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-out);
}
.rule-grow.is-visible { transform: scaleX(1); }
.section--dark .rule-grow { background: var(--dark-line-2); }

/* ---------------------------------------------------------------------------
   11 · CARDS & FEATURED-UNTERKÜNFTE
--------------------------------------------------------------------------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
}
.featured-grid > :first-child { grid-column: 1 / -1; }

.unit-card {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.unit-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.unit-card:first-child .unit-card__media { aspect-ratio: 21 / 9; }
.unit-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.unit-card:hover .unit-card__media img { transform: scale(1.06); }
.unit-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,14,17,0.5), transparent 55%);
  opacity: 0.85; transition: opacity var(--dur) var(--ease);
}
.unit-card__status {
  position: absolute; top: 1.1rem; left: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem; border-radius: 100px;
  background: rgba(255,255,255,0.9); color: var(--ink);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
}
.unit-card__status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.unit-card__overlay {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.3rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  color: #fff;
}
.unit-card__place { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.unit-card__cta {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.5);
  display: grid; place-items: center; flex: none;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.unit-card:hover .unit-card__cta { background: var(--accent); border-color: var(--accent); transform: rotate(-45deg); }

.unit-card__body { padding: 1.3rem 0.2rem 0; }
.unit-card__title { font-size: var(--fs-h4); display: flex; align-items: baseline; gap: 0.8rem; }
.unit-card__meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem;
  margin-top: 0.7rem; color: var(--muted); font-size: 0.86rem;
}
.unit-card__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.unit-card__desc { margin-top: 0.8rem; color: var(--ink-soft); max-width: 52ch; }
.unit-card__line {
  margin-top: 1.1rem; height: 1px; background: var(--line); position: relative; overflow: hidden;
}
.unit-card__line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  transform: translateX(-101%); transition: transform 0.8s var(--ease);
}
.unit-card:hover .unit-card__line::after { transform: translateX(0); }

/* Filter-Leiste (Übersicht) */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1.4rem;
  padding-bottom: var(--space-block);
  margin-bottom: var(--space-block);
  border-bottom: 1px solid var(--line);
}
.filter-group { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-group + .filter-group { padding-left: 1.4rem; border-left: 1px solid var(--line); }
.filter-chip {
  padding: 0.55rem 1.05rem; border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-count { margin-left: auto; color: var(--muted); font-size: var(--fs-small); letter-spacing: 0.02em; }

/* Übersichts-Grid (gleichmäßig, ohne Großkachel) */
.overview-grid { grid-template-columns: repeat(3, 1fr); }
.overview-grid > :first-child { grid-column: auto; }
.overview-grid .unit-card:first-child .unit-card__media,
.overview-grid .unit-card__media { aspect-ratio: 4 / 3; }
@media (max-width: 1024px) { .overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
  .overview-grid { grid-template-columns: 1fr; }
  .filter-group + .filter-group { padding-left: 0; border-left: 0; }
  .filter-count { margin-left: 0; width: 100%; }
}

/* ---------------------------------------------------------------------------
   12 · HORIZONTAL-SCROLL-RAIL
--------------------------------------------------------------------------- */
.rail { position: relative; }
.rail__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: var(--space-block);
}
.rail__track {
  display: flex;
  gap: clamp(1rem, 0.5rem + 1.8vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  padding-bottom: 1.5rem;
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail-card {
  scroll-snap-align: start;
  flex: 0 0 min(80vw, 460px);
  display: flex; flex-direction: column;
  color: inherit;
}
.rail-card__media {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4; background: var(--bg-2);
}
.rail-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.rail-card:hover .rail-card__media img { transform: scale(1.06); }
.rail-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,12,16,0.86) 0%, rgba(9,12,16,0.3) 48%, transparent 76%);
}
.rail-card__index {
  position: absolute; top: 1.1rem; left: 1.2rem;
  font-family: var(--font-serif); font-style: italic; color: #fff; font-size: 1rem;
}
.rail-card__content {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; color: #fff;
}
.rail-card__place { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); }
.rail-card__title { font-size: var(--fs-h4); margin-top: 0.5rem; color: #fff; }
.rail-card__meta { margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.9); display: flex; gap: 1.1rem; flex-wrap: wrap; }
.rail-card__desc { margin-top: 0.9rem; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.rail-card__cta { margin-top: 1.1rem; display: inline-flex; }

.rail__nav { display: flex; gap: 0.6rem; }
.rail__btn {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.rail__btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.rail__btn:disabled { opacity: 0.3; cursor: default; }
.section--dark .rail__btn { border-color: var(--dark-line-2); }
.section--dark .rail__btn:hover { background: var(--on-dark); color: var(--anthracite); }

/* ---------------------------------------------------------------------------
   13 · STICKY-STORYTELLING
--------------------------------------------------------------------------- */
.story { position: relative; }
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
.story__aside {
  position: sticky;
  top: calc(var(--header-h) + 2vh);
  align-self: start;
}
.story__counter {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem); line-height: 1; color: var(--accent);
}
.story__counter span { color: var(--muted); font-size: 0.4em; }
.story__title { margin-top: 1.5rem; font-size: var(--fs-h3); min-height: 3.4em; }
.story__progress { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.story__progress-item {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.9rem; color: var(--muted);
  transition: color var(--dur) var(--ease);
}
.story__progress-item .bar { width: 40px; height: 2px; background: var(--line-strong); position: relative; overflow: hidden; }
.story__progress-item .bar::after { content:""; position:absolute; inset:0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.story__progress-item.is-active { color: var(--ink); }
.story__progress-item.is-active .bar::after { transform: scaleX(1); }

.story__panels { display: flex; flex-direction: column; gap: clamp(2rem, 6vh, 5rem); }
.story__panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3.1;
}
.story__panel img { width: 100%; height: 100%; object-fit: cover; }
.story__panel-text {
  position: absolute; left: 1.6rem; right: 1.6rem; bottom: 1.6rem;
  color: #fff;
}
.story__panel::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(10,13,17,0.9) 0%, rgba(10,13,17,0.32) 34%, transparent 62%);
}
.story__panel-text p { color: rgba(255,255,255,0.88); max-width: 44ch; position: relative; }
.story__panel-no { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-size: 1.1rem; }

/* ---------------------------------------------------------------------------
   14 · STATS / FAKTEN
--------------------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
}
.stat { border-top: 1px solid var(--dark-line); padding-top: 1.4rem; }
.section:not(.section--dark) .stat { border-top-color: var(--line); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.5rem + 3vw, 4rem); line-height: 1; letter-spacing: -0.03em; }
.stat__num .unit { color: var(--accent); }
.stat__label { margin-top: 0.7rem; font-size: 0.9rem; color: var(--muted); max-width: 22ch; }
.section--dark .stat__label { color: var(--on-dark-soft); }

/* ---------------------------------------------------------------------------
   15 · PROCESS / ABLAUF
--------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 3.5rem); counter-reset: step; }
.process__step { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
.section--dark .process__step { border-top-color: var(--dark-line); }
.process__no {
  font-family: var(--font-serif); font-style: italic; color: var(--accent);
  font-size: 1.1rem; margin-bottom: 1rem; display: block;
}
.process__step h4 { margin-bottom: 0.8rem; }
.process__step p { color: var(--ink-soft); }
.section--dark .process__step p { color: var(--on-dark-soft); }

/* ---------------------------------------------------------------------------
   16 · BENEFITS / FIRMENKUNDEN
--------------------------------------------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.section--dark .benefits { border-top-color: var(--dark-line); }
.benefit {
  padding: clamp(1.8rem, 1rem + 2vw, 2.8rem) clamp(1.5rem, 1rem + 1.5vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: background-color var(--dur) var(--ease);
}
.benefit:nth-child(odd) { border-right: 1px solid var(--line); }
.section--dark .benefit { border-bottom-color: var(--dark-line); }
.section--dark .benefit:nth-child(odd) { border-right-color: var(--dark-line); }
.benefit:hover { background: var(--surface); }
.section--dark .benefit:hover { background: var(--anthracite-2); }
.benefit__no { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-size: 0.95rem; }
.benefit h4 { font-size: var(--fs-h4); }
.benefit p { color: var(--ink-soft); }
.section--dark .benefit p { color: var(--on-dark-soft); }

/* Split-Feature (Bild + Text) */
.split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 1.4rem; }
.split__list { margin-top: 1.8rem; display: flex; flex-direction: column; }
.split__list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.section--dark .split__list li { border-top-color: var(--dark-line); }
.split__list li .ico { color: var(--accent); flex: none; margin-top: 0.15rem; }

/* Pull-Quote */
.pullquote { max-width: 22ch; }
.pullquote blockquote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 3rem); line-height: 1.12; letter-spacing: -0.02em;
}
.pullquote blockquote .serif-accent { color: var(--accent); }

/* ---------------------------------------------------------------------------
   17 · FAQ-ACCORDION
--------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.section--dark .faq { border-top-color: var(--dark-line); }
.faq__item { border-bottom: 1px solid var(--line); }
.section--dark .faq__item { border-bottom-color: var(--dark-line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.3rem, 1rem + 1vw, 2rem) 0;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 0.7vw, 1.5rem); letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.section--dark .faq__q { color: var(--on-dark); }
.faq__q:hover { color: var(--accent); }
.faq__icon { position: relative; width: 22px; height: 22px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor;
  left: 50%; top: 50%; transition: transform var(--dur) var(--ease);
}
.faq__icon::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq__icon::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; visibility: hidden; transition: height var(--dur) var(--ease), visibility 0s linear var(--dur); }
.faq__item.is-open .faq__a { visibility: visible; transition: height var(--dur) var(--ease), visibility 0s; }
.faq__a-inner { padding-bottom: clamp(1.3rem, 1rem + 1vw, 2rem); color: var(--ink-soft); max-width: 72ch; }
.section--dark .faq__a-inner { color: var(--on-dark-soft); }

/* ---------------------------------------------------------------------------
   18 · ANFRAGE / KONTAKTFORMULAR
--------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.95rem 1.05rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form-note { font-size: var(--fs-small); color: var(--muted); }
.form-success {
  display: none;
  padding: 1.1rem 1.3rem; border-radius: var(--radius-sm);
  background: var(--accent-soft); border: 1px solid var(--accent);
  color: var(--accent-deep); font-weight: 500;
}
.form-success.is-visible { display: block; }

.contact-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info__item { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.contact-info__item .k { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact-info__item .v { font-size: 1.1rem; margin-top: 0.4rem; font-weight: 500; }
.contact-info__item .v a:hover { color: var(--accent); }

/* ---------------------------------------------------------------------------
   19 · DETAILSEITE (EXPOSÉ)
--------------------------------------------------------------------------- */
.detail-hero {
  position: relative; min-height: 86svh; min-height: 86vh;
  display: flex; align-items: flex-end; color: var(--on-dark); overflow: hidden; isolation: isolate;
}
.detail-hero__media { position: absolute; inset: 0; z-index: -2; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 12s var(--ease-out) forwards; }
.detail-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(12,15,19,0.92), rgba(12,15,19,0.42) 56%, rgba(12,15,19,0.58)), linear-gradient(102deg, rgba(12,15,19,0.72), rgba(12,15,19,0) 72%); }
.detail-hero__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding: 0 var(--gutter) clamp(3rem, 7vh, 5rem); }
.detail-hero__back { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 1.6rem; }
.detail-hero__back:hover { color: #fff; }
.detail-hero h1 { color: #fff; font-size: var(--fs-h1); }
.detail-hero__place { display: inline-flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.82); letter-spacing: 0.04em; margin-top: 1rem; }

/* Spec-Leiste */
.spec-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
}
.spec { padding: 1.5rem 1.6rem; border-right: 1px solid var(--line); }
.spec:last-child { border-right: 0; }
.spec__k { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.spec__v { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-top: 0.5rem; letter-spacing: -0.01em; }

/* Galerie — variable Größen */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(0.6rem, 0.4rem + 0.8vw, 1.1rem); }
.gallery figure { overflow: hidden; border-radius: var(--radius); background: var(--bg-2); position: relative; cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .g-lg { grid-column: span 4; aspect-ratio: 16/10; }
.gallery .g-sm { grid-column: span 2; aspect-ratio: 4/5; }
.gallery .g-md { grid-column: span 3; aspect-ratio: 4/3; }
.gallery .g-wide { grid-column: span 6; aspect-ratio: 21/8; }

/* Bereiche (Schlaf/Küche/Bad/Wohnen) als alternierende Splits */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.area + .area { margin-top: clamp(2.5rem, 5vw, 5rem); }
.area:nth-child(even) .area__media { order: 2; }
.area__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.area__media img { width: 100%; height: 100%; object-fit: cover; }
.area__no { font-family: var(--font-serif); font-style: italic; color: var(--accent); }
.area h3 { margin: 0.6rem 0 1rem; }
.area p { color: var(--ink-soft); max-width: 46ch; }

/* Ausstattungs-Liste */
.amenities { columns: 2; column-gap: 3rem; }
.amenities li { break-inside: avoid; display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.amenities li .ico { color: var(--accent); flex: none; margin-top: 0.15rem; }

/* Sticky-Anfrageleiste (Desktop) + Mobile-Bottombar */
.book-bar {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--anthracite); color: var(--on-dark);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow);
}
.book-bar h3 { color: var(--on-dark); font-size: var(--fs-h4); }
.book-bar__place { color: var(--on-dark-soft); font-size: 0.9rem; margin-top: 0.3rem; }
.book-bar__specs { margin: 1.4rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.book-bar__specs li { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--dark-line); font-size: 0.92rem; }
.book-bar__specs .v { color: var(--on-dark); font-weight: 600; }
.book-bar__specs .k { color: var(--on-dark-soft); }
.book-bar .btn { margin-top: 0.4rem; }
.book-bar__note { margin-top: 1rem; font-size: 0.8rem; color: var(--on-dark-soft); text-align: center; }

.mobile-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem var(--gutter);
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  background: rgba(22,24,29,0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--dark-line);
  box-shadow: 0 -12px 32px rgba(8,11,15,0.3);
  color: var(--on-dark);
  transform: translateY(100%); transition: transform var(--dur) var(--ease);
}
.mobile-book.is-visible { transform: translateY(0); }
.mobile-book__info .t { font-weight: 600; font-size: 0.95rem; }
.mobile-book__info .s { font-size: 0.78rem; color: var(--on-dark-soft); }

/* Detail-Layout-Spalten */
.detail-cols { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }

/* ---------------------------------------------------------------------------
   20 · FOOTER
--------------------------------------------------------------------------- */
.site-footer { background: var(--anthracite); color: var(--on-dark); padding-top: var(--space-block); }
.footer-cta {
  text-align: center; padding-block: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--dark-line);
}
.footer-cta h2 { color: #fff; font-size: var(--fs-h1); max-width: 18ch; margin-inline: auto; }
.footer-cta .lead { color: var(--on-dark-soft); margin: 1.6rem auto 2.4rem; }
.footer-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.footer-main {
  display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { color: var(--on-dark-soft); font-size: 0.92rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-brand .logo { margin-bottom: 1.2rem; }
.footer-brand p { color: var(--on-dark-soft); max-width: 34ch; font-size: 0.92rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.8rem; border-top: 1px solid var(--dark-line);
  color: var(--on-dark-soft); font-size: 0.82rem;
}
.footer-bottom__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   21 · PAGE-INTRO-LOADER
--------------------------------------------------------------------------- */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--anthracite); color: var(--on-dark);
  display: grid; place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.intro.is-done { opacity: 0; visibility: hidden; }
.intro__inner { text-align: center; }
.intro__mark { display: inline-flex; }
.intro__bar { width: min(220px, 50vw); height: 1px; background: var(--dark-line); margin: 1.5rem auto 0; overflow: hidden; }
.intro__bar::after { content: ""; display: block; height: 100%; width: 100%; background: var(--accent); transform: translateX(-100%); animation: introBar 1.4s var(--ease-out) forwards; }
@keyframes introBar { to { transform: translateX(0); } }
.intro__word { overflow: hidden; }
.intro__word span { display: inline-block; transform: translateY(110%); animation: introWord 0.9s var(--ease-out) 0.15s forwards; }
@keyframes introWord { to { transform: translateY(0); } }

/* ---------------------------------------------------------------------------
   22 · RESPONSIVE
--------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__aside { position: static; margin-bottom: 2rem; }
  .story__title { min-height: 0; }
  .story__progress { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .detail-cols { grid-template-columns: 1fr; }
  .book-bar { position: static; }
}

@media (max-width: 860px) {
  .nav, .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid > :first-child { grid-column: auto; }
  .unit-card:first-child .unit-card__media { aspect-ratio: 4/3; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .split, .split--reverse .split__media, .area, .area:nth-child(even) .area__media { grid-template-columns: 1fr; order: 0; }
  .split__media { aspect-ratio: 4/3; }
  .contact-split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .spec-bar { grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(2) { border-right: 0; }
  .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-lg, .gallery .g-md, .gallery .g-wide, .gallery .g-sm { grid-column: span 2; aspect-ratio: 4/3; }
  .amenities { columns: 1; }
  .mobile-book { display: flex; }
  .benefits { grid-template-columns: 1fr; }
  .benefit:nth-child(odd) { border-right: 0; }
  .footer-cta__actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 540px) {
  .footer-main { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .rail-card { flex-basis: 84vw; }
}

/* Mobile-Hero: Inhalt von oben fließen lassen (sonst wird der obere Teil unter
   dem fixierten Header abgeschnitten, weil der Hero-Inhalt höher als der Screen ist) */
@media (max-width: 860px) {
  .hero { align-items: flex-start; }
  .hero__inner { padding-top: calc(var(--header-h) + 1.4rem); padding-bottom: 3rem; }
  .hero__inserts { margin-top: 1.8rem; }
  .hero h1 { max-width: none; }
}

/* ---------------------------------------------------------------------------
   23 · prefers-reduced-motion
--------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .hero [data-hero-seq], .hero__inserts .insert-chip { opacity: 1 !important; transform: none !important; }
  [data-mask] > img, [data-mask] > video { clip-path: none !important; transform: none !important; }
  .hero__media img, .hero__media video, .detail-hero__media img { animation: none !important; transform: none !important; }
  .rule-grow { transform: none !important; }
  .status-pill i::after { display: none; }
  body::after { display: none; }
}

/* ---------------------------------------------------------------------------
   24 · OPERATIONS-EBENE — Mono-Labels, Status-Pill, Film-Grain
--------------------------------------------------------------------------- */
/* Mono-„Daten/Code/Label"-Ebene über die ganze Seite hinweg */
.logo__sub,
.unit-card__place, .rail-card__place,
.spec__k, .book-bar__specs .k, .contact-info__item .k,
.footer-col h5, .filter-count, .hero__scroll,
.detail-hero__place, .stat__num .unit, .form-note {
  font-family: var(--font-mono);
}
.stat__num .unit { font-size: 0.5em; }

/* Status-Pill (per JS in die Kopfzeile gesetzt) */
.status-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.5rem 0.75rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.status-pill i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); position: relative; flex: none;
}
.status-pill i::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--accent); opacity: 0.5;
  animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(.5); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }
/* über dem Hero (transparenter Header) hell, nach dem Scrollen dunkel */
.site-header:not(.is-scrolled):not(.site-header--solid) .status-pill {
  color: var(--on-dark-soft); border-color: var(--dark-line-2);
}

/* Film-Grain — sehr subtile Textur über der ganzen Seite (filmisch, premium) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 860px) { .status-pill { display: none; } }

/* Transparenter Header über dem Hero: weiches Top-Scrim für Lesbarkeit von Logo/Nav/Pill */
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 240%;
  background: linear-gradient(to bottom, rgba(12,15,19,0.55), rgba(12,15,19,0));
  z-index: -1; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.site-header.is-scrolled::before, .site-header--solid::before { opacity: 0; }

/* Select an das System anpassen (eigener Chevron statt Browser-Default) */
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%233E6E89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.6rem;
}

/* ===== Rechtstexte (Impressum / Datenschutz) ===== */
.legal h1 { font-size: var(--fs-h2); margin-bottom: 2rem; }
.legal h2 { font-size: var(--fs-h4); margin: 2.4rem 0 0.8rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.8rem; max-width: 70ch; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }

/* ===== Lesbarkeit: Text ueber Fotos (heller + Textschatten) ===== */
.hero h1, .hero__sub { text-shadow: 0 2px 30px rgba(8,11,15,0.55), 0 1px 4px rgba(8,11,15,0.4); }
.rail-card__content, .story__panel-text, .unit-card__overlay { text-shadow: 0 1px 16px rgba(8,11,15,0.85), 0 1px 3px rgba(8,11,15,0.7); }
.rail-card__place { color: rgba(255,255,255,0.95); }
.rail-card__meta { color: #fff; }
.rail-card__desc { color: rgba(255,255,255,0.96); }
.story__panel-text p { color: rgba(255,255,255,0.97); }
.unit-card__place { color: rgba(255,255,255,0.95); }

/* Fix: Text/Overlays ueber den Bild-Gradient heben (sonst dimmt ::after die Schrift) */
.story__panel-text { z-index: 2; }
.rail-card__content { z-index: 2; }
.unit-card__overlay, .unit-card__status { z-index: 2; }

/* ============================================================
   26 · MOBILE-FEINSCHLIFF — kein seitliches Scrollen, edleres Menue
   ============================================================ */
@media (max-width: 760px) {
  html, body { overflow-x: hidden; }

  /* Inline-Raster (1fr 1fr / repeat(2|3,1fr)) auf dem Handy einspaltig */
  .grid { grid-template-columns: 1fr !important; gap: clamp(1.6rem, 5vw, 2.4rem) !important; align-items: start !important; }
  .overview-grid, .featured-grid { grid-template-columns: 1fr !important; }
  .featured-grid > :first-child { grid-column: auto !important; }

  /* Statement-Bild-Spalte etc. nicht versetzt stapeln */
  .overlay-figure { margin-top: 0 !important; }

  /* Mobile-Menue: nie breiter als der Screen + editorial */
  .mobile-nav { overflow-x: hidden; padding-top: calc(var(--header-h) + 1.4rem); }
  .mobile-nav__links { gap: 0; }
  .mobile-nav__links a {
    font-size: clamp(1.7rem, 8.5vw, 2.3rem);
    letter-spacing: -0.02em;
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--dark-line);
  }
  .mobile-nav__links a span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--accent);
    align-self: center;
  }
  .mobile-nav__foot { gap: 0.9rem; }
  .mobile-nav__foot .btn { width: 100%; justify-content: center; min-height: 52px; color: var(--anthracite); }
}

/* ============================================================
   27 · MOBILE-POLITUR — Award-Feinschliff (Kritik 2026-06-22)
   ============================================================ */
@media (max-width: 860px) {
  /* Detail-Hero: Titel sicher unter den fixierten Header (kein Anschnitt) */
  .detail-hero { align-items: flex-start; min-height: 76svh; }
  .detail-hero__inner { padding-top: calc(var(--header-h) + 1.6rem); }

  /* Hero-Headline: kontrollierter Umbruch, dichtere Zeilen, lesbare Subline */
  .hero h1 { line-height: 1.02; text-wrap: balance; }
  .hero__sub { color: rgba(255,255,255,0.95); }

  /* Storytelling: dichterer Scrim + ruhiger Rhythmus -> Text immer lesbar */
  .story__panels { gap: 1.6rem; }
  .story__panel { aspect-ratio: 4 / 4.5; }
  .story__panel::after {
    background: linear-gradient(to top,
      rgba(8,11,15,0.95) 0%, rgba(8,11,15,0.72) 34%,
      rgba(8,11,15,0.28) 66%, transparent 100%);
  }
  .story__panel-no { font-size: 1.3rem; }

  /* Sticky-Anfrageleiste: Platz darunter freihalten (nur Detailseiten) */
  body:has(.mobile-book) .site-footer {
    padding-bottom: calc(2.5rem + 60px + env(safe-area-inset-bottom));
  }

  /* Hero-Chips: schlank halten (dekorativ, nicht klickbar) + etwas Luft */
  .hero__inserts { margin-bottom: 0.4rem; }
  .insert-chip { display: inline-flex; align-items: center; }
}

/* ============================================================
   28 · MOBILE — Eyebrow-Umbruch, weniger Chips, Karussell zentriert
   ============================================================ */
/* Hero-Eyebrow: Marke + Geo, dezenter Trenner (Desktop einzeilig) */
.hero__eyebrow-geo { color: var(--on-dark-soft); }
.hero__eyebrow-geo::before { content: "·"; margin-right: 0.55rem; opacity: 0.6; }

@media (max-width: 760px) {
  /* Eyebrow sauber in zwei Zeilen statt abgeschnitten */
  .hero__eyebrow { display: block; line-height: 1.5; }
  .hero__eyebrow::before { display: inline-block; vertical-align: middle; margin-right: 0.6rem; }
  .hero__eyebrow-geo { display: block; margin-top: 0.3rem; }
  .hero__eyebrow-geo::before { content: none; }
}

@media (max-width: 640px) {
  /* Nur die 3 wichtigsten Hero-Chips zeigen (weniger Stapelung) */
  .hero__inserts .insert-chip:nth-child(n+4) { display: none; }

  /* Expose-Karussell: jede Karte zentriert einrasten, sauberer Blick */
  .rail-card { scroll-snap-align: center; scroll-snap-stop: always; flex-basis: 89vw; }
  .rail__track { scroll-padding-inline: 0; }
}

/* ============================================================
   29 · DESKTOP — Exposé-Reihe als Raster (alle Karten sichtbar, kein Scroll)
   ============================================================ */
@media (min-width: 641px) {
  .rail__track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 1.8vw, 1.8rem);
    overflow: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }
  .rail-card { flex: initial; width: auto; scroll-snap-align: none; }
  .rail__nav { display: none; }
}

/* ============================================================
   30 · MEER-HERO (Startseite) — Wellen-Canvas + zentrierte Marke
   ============================================================ */
.hero--meer {
  align-items: center;
  background: radial-gradient(125% 100% at 50% -12%, #163b4e 0%, #0b2230 44%, #06121b 100%);
}
.hero__waves { width: 100%; height: 100%; display: block; }
.hero--meer .hero__scrim {
  background: radial-gradient(58% 52% at 50% 47%, rgba(6,15,23,0.52) 0%, rgba(6,15,23,0) 70%);
}
.hero--meer .hero__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 940px; padding-block: 0;
}
.hero--meer .hero__eyebrow { justify-content: center; }
.hero--meer .hero__mark { width: 56px; height: 56px; margin-bottom: 1.5rem; }
.hero--meer .hero__brand {
  max-width: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-size: clamp(2.4rem, 9.5vw, 7.5rem);
  text-shadow: 0 2px 50px rgba(0,0,0,0.42);
}
.hero--meer .hero__lead {
  margin-top: 1.5rem; max-width: 46ch;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-mono);
  font-size: clamp(0.88rem, 0.55rem + 1vw, 1.1rem);
  letter-spacing: 0.02em; line-height: 1.55;
  text-shadow: 0 1px 18px rgba(8,11,15,0.5);
}
.hero--meer .hero__actions { justify-content: center; margin-top: 2.4rem; flex-wrap: wrap; }

/* ============================================================
   31 · AWARD-AUDIT FEINSCHLIFF (ui-ux-pro-max + frontend-design)
   ============================================================ */
/* (4) Akzent auf dunklen Flächen aufhellen -> WCAG-Kontrast */
.section--dark, .site-footer { --accent: #6FA5CE; }

/* (7) :active Press-Feedback (Touch + Maus) */
.btn:active, .filter-chip:active, .rail__btn:active,
.nav-toggle:active, .arrow-link:active, .unit-card__cta:active { transform: scale(0.97); }

/* (14) Fokusring auf dunklen Flächen sichtbar (WCAG 2.4.11) */
.section--dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.28);
}

@media (max-width: 860px) {
  /* (9) Touch-Targets >= 44px */
  .filter-chip { min-height: 44px; }
  .footer-col a { display: inline-flex; align-items: center; min-height: 44px; }

  /* (16) Dreifach-CTA auf Detailseiten entwirren (Sticky-Leiste reicht) */
  body:has(.mobile-book) .footer-cta { display: none; }
  .mobile-book__info { min-width: 0; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .btn:active, .filter-chip:active, .rail__btn:active,
  .nav-toggle:active, .arrow-link:active, .unit-card__cta:active { transform: none; }
}

/* (12) Skip-to-content-Link + main als Fokusziel */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: var(--bg);
  padding: 0.7rem 1.1rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--bg); outline-offset: 2px; }
main:focus { outline: none; }

/* ============================================================
   32 · GALERIE-LIGHTBOX (Großansicht, Tastatur, Fokusfalle)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(8,11,15,0.93);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__stage { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; max-width: min(1100px, 90vw); }
.lightbox__img { max-width: 100%; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); display: block; }
.lightbox__cap { color: rgba(255,255,255,0.72); font-size: 0.82rem; font-family: var(--font-mono); letter-spacing: 0.02em; text-align: center; }
.lightbox__btn {
  flex: none; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.22);
  transition: background-color var(--dur) var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.22); }
.lightbox__btn:active { transform: scale(0.94); }
.lightbox__btn .icon { width: 22px; height: 22px; }
.lightbox__close { position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__count { position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; }
.lightbox :focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (max-width: 640px) {
  .lightbox__prev, .lightbox__next { position: absolute; bottom: clamp(1rem, 3vw, 2rem); }
  .lightbox__prev { left: 1rem; } .lightbox__next { right: 1rem; }
}

/* ============================================================
   33 · RHYTHMUS (13) + SPEC-AKZENT (15)
   ============================================================ */
.section--air { padding-block: calc(var(--space-section) * 1.32); }
.spec__k { color: var(--accent-deep); }

/* ============================================================
   34 · MOBILE — Shader-Hero beruhigen (Scrim hinter dem Text)
   ============================================================ */
@media (max-width: 760px) {
  .hero--meer .hero__scrim {
    background: radial-gradient(64% 36% at 50% 49%, rgba(5,14,22,0.46) 0%, rgba(5,14,22,0.16) 52%, rgba(5,14,22,0) 80%);
  }
}

/* ============================================================
   35 · HERO-VIDEO (echtes Rostock-Drohnenmaterial, 4K-Quelle)
   Poster sofort, Video blendet weich ein (Kette: MASTER.md §7)
   ============================================================ */
.hero__poster, .hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__video { opacity: 0; transition: opacity 0.9s var(--ease); }
.hero__video.is-playing { opacity: 1; }

/* Markenname in der Hero: niemals trennen, immer einzeilig */
.hero--meer .hero__brand {
  hyphens: none;
  white-space: nowrap;
  font-size: clamp(2.4rem, 8vw, 6.4rem);
}
/* Video ist heller als der Nebel-Shader: Scrim für Textzone verstärken */
.hero--meer .hero__scrim {
  background:
    linear-gradient(rgba(7, 13, 19, 0.16), rgba(7, 13, 19, 0.16)),
    radial-gradient(62% 54% at 50% 47%, rgba(5, 14, 22, 0.46) 0%, rgba(5, 14, 22, 0) 72%);
}

/* ============================================================
   36 · FORMULAR-FEHLER — nur nach Interaktion zeigen (Hotfix)
   ============================================================ */
.field__error { display: none; color: #9E3B3B; font-size: 0.8rem; }
.field input:user-invalid ~ .field__error { display: block; }
.field input[aria-invalid="true"] ~ .field__error { display: block; }
.field input:user-invalid { border-color: #9E3B3B; }

/* ============================================================
   37 · REBRAND — Monogramm-Kontexte (Intro, Hero)
   ============================================================ */
.intro .logo__mark { width: 46px; height: 46px; color: #ECE7DC; }
.hero--meer .hero__mark { color: #ECE7DC; }

/* ============================================================
   38 · ÜBERSCHRIFTEN OHNE TRENNSTRICHE — mobile Größenlösung
   Statt hyphens:auto: auf schmalen Screens wird H1 so bemessen,
   dass auch lange Komposita („Firmenunterkünfte") ohne Umbruch
   ins Wort passen.
   ============================================================ */
@media (max-width: 540px) {
  :root { --fs-h1: clamp(2.05rem, 9vw, 2.35rem); }
}

/* ============================================================
   39 · GOLD-EBENE — editoriale Veredelung (Kit: Gold = Linien,
   Nummern, Highlights; nie Flächen. Blau bleibt interaktiv.)
   ============================================================ */
/* Zähler & Nummern */
.story__counter { color: var(--gold-ink); }
.benefit__no, .area__no { color: var(--gold-ink); }
.story__panel-no, .rail-card__index { color: var(--gold); }
.stat__num .unit { color: var(--gold-ink); }
.lightbox__count { color: var(--gold); }
.mobile-nav__links a span { color: var(--gold); }

/* Akzentwörter im Display (dekorativ, nicht interaktiv) */
.serif-accent, .pullquote blockquote .serif-accent { color: var(--gold-ink); }
.section--dark .serif-accent,
.hero h1 .serif-accent, .page-hero h1 .serif-accent { color: var(--gold); }

/* Dunkle Sektionen: Eyebrows & Footer-Rubriken in Gold */
.section--dark .eyebrow, .site-footer .eyebrow { color: var(--gold); }
.footer-col h5 { color: var(--gold); }
.footer-bottom { border-top-color: rgba(191, 160, 90, 0.38); }

/* Kleine Signale */
.unit-card__status .dot { background: var(--gold); }
.spec__k { color: var(--gold-ink); }
.detail-hero__place .icon { color: var(--gold); }
