/* ============================================================
   MERCURE BELFORTSTRASSE — BRAND CSS
   Single Source of Truth für globale Tokens & Komponenten

   Inhalt:
   - 01 Brand Tokens (aus Mercure Brand Book Jan 2025)
   - 02 Reset
   - 03 Utilities (Container, Eyebrow, Headlines, Buttons)
   - 04 Top Utility Bar (Header-Strip mit Tagline, Adresse, Telefon)
   - 05 Main Header (transparent over hero, opaque on scroll)
   - 06 TrustYou-Siegel im Header
   - 07 Inner-Page Editorial Hero System (.ed-hero, .ed-breadcrumb)
   - 08 Footer (dark, mit Brand-Block, Listen, Newsletter)
   - 09 Mobile Sticky CTA
   - 10 Mobile Drawer (Off-Canvas-Navigation)

   Pixel-treue zur Mockup-Vorlage (5 Mockup-Files).
   Page-spezifische Sektionen liegen in:
   - assets/css/frontpage.css         → Front-Page Cinematic Hero, Booking, Sections
   - assets/css/das-haus.css          → Haus-Page Bento, Stories
   - assets/css/zimmer.css            → Zimmer-Übersicht
   - assets/css/zimmer-detail.css     → Zimmer-Detailseiten Magazine-Style
   - assets/css/agnesviertel.css      → Agnesviertel City-Guide
   - assets/css/faq.css               → FAQ-Hub mit Akkordion + Kategorien
   ============================================================ */


  /* ============================================================
     MERCURE BRAND TOKENS (aus Brand Book Januar 2025)
     ============================================================ */
  :root {
    --c-dark:     #53514f;   /* Dark Grey – Hauptschrift, dunkle UI */
    --c-dark-2:   #3a3937;   /* tiefer für Kontraste */
    --c-white:    #ffffff;
    --c-grey-5:   #f6f6f6;   /* 5 % Grey – Subtle BG */
    --c-grey-15:  #e8e6e2;   /* hairlines, dividers */
    --c-purple:   #a790c4;   /* Brand Purple */
    --c-purple-soft: #ede7f3;
    --c-cream:    #f4efe8;   /* warmer creme – locally inspired */

    --f-sans:  'Montserrat', system-ui, sans-serif;
    --f-serif: 'Spectral', 'Times New Roman', serif;

    --radius:   2px;
    --ls-button: 0.22em;
    --shadow-card: 0 1px 2px rgba(83,81,79,0.04), 0 12px 32px -16px rgba(83,81,79,0.18);
    --shadow-hero: 0 24px 64px -24px rgba(0,0,0,0.45);

    --container-max: 1320px;
    --gutter: clamp(16px, 4vw, 56px);

    /* breakpoints (info only): 480 / 768 / 980 / 1280 */
  }

  /* ============================================================
     RESET
     ============================================================ */
  *,*::before,*::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--f-sans);
    font-weight: 400;
    color: var(--c-dark);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; }
  a { color: inherit; text-decoration: none; }

  /* ============================================================
     UTILITIES
     ============================================================ */
  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .eyebrow {
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-dark);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
  }
  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--c-purple);
    display: inline-block;
  }
  .eyebrow.center { justify-content: center; }
  .eyebrow.light { color: var(--c-white); }
  .eyebrow.light::before { background: var(--c-purple); }

  h1, h2, h3, h4, h5 {
    font-family: var(--f-sans);
    font-weight: 300;
    margin: 0;
    color: var(--c-dark);
    line-height: 1.08;
    letter-spacing: -0.01em;
  }
  h1 { font-size: clamp(40px, 6.2vw, 88px); }
  h2 { font-size: clamp(30px, 4vw, 54px); }
  h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 400; }
  .accent-serif {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--c-purple);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--ls-button);
    text-transform: uppercase;
    border: 1.5px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
    line-height: 1;
  }
  .btn-primary {
    background: var(--c-dark);
    color: var(--c-white);
    border-color: var(--c-dark);
  }
  .btn-primary:hover { background: var(--c-dark-2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--c-dark);
    border-color: var(--c-dark);
  }
  .btn-ghost:hover { background: var(--c-dark); color: var(--c-white); }
  .btn-ghost.light {
    color: var(--c-white);
    border-color: var(--c-white);
  }
  .btn-ghost.light:hover { background: var(--c-white); color: var(--c-dark); }
  /* Mobile: lange Buttons (z. B. „Lage & Anfahrt im Detail") nicht rechts
     abschneiden — auf Containerbreite begrenzen, Umbruch erlauben und
     letter-spacing/padding reduzieren, damit der Text immer hineinpasst. */
  @media (max-width: 640px) {
    .btn {
      max-width: 100%;
      white-space: normal;
      text-align: center;
      line-height: 1.25;
      letter-spacing: 1.4px;
      padding-left: 18px;
      padding-right: 18px;
    }
  }
  .btn-cta {
    background: var(--c-dark);
    color: var(--c-white);
    border-color: var(--c-dark);
    padding: 16px 32px;
    position: relative;
  }
  .btn-cta::after {
    content: '→';
    font-family: var(--f-serif);
    font-size: 16px;
    margin-left: 4px;
  }
  .btn-cta:hover { background: var(--c-dark-2); }

  /* ============================================================
     TOP UTILITY BAR (super dünn, oben drüber)
     ============================================================ */
  .topbar {
    background: var(--c-dark);
    color: var(--c-white);
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 9px 0;
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .topbar a {
    opacity: .85;
    transition: opacity .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .topbar a:hover { opacity: 1; }
  /* SVG-Icons in der Topbar: hart auf 13px begrenzen — ohne diese Regel
   * werden inline-SVGs ohne width/height-Attribute vom Browser auf 100%
   * Parent-Width skaliert (Map-Pin wird dann riesig). */
  .topbar svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }
  /* v0.4.3: Tagline visuell auf gleiche Größe/Gewicht wie reguläre
   * Topbar-Items (Address, Phone, Lage&Anfahrt, Kontakt). Nur Color
   * bleibt purple als dezenter Brand-Callout. */
  .topbar-tagline {
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    font-size: 11px;
    color: var(--c-purple);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .topbar-tagline::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--c-purple);
    display: inline-block;
  }
  /* Address-Link soll EXAKT gleich groß sein wie alle anderen — keine
   * SVG-Icon-Über­dimensionierung mehr durch flex-Default-Ausrichtung. */
  .topbar-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
  .lang-switch {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius, 2px);
    padding: 2px;
  }
  /* Children: <button> (Mockup) ODER <a> (Shortcode-Output, mercure_lang_toggle).
   * Beide werden gleich gestylt, damit Mockup-Schema 1:1 greift. */
  .lang-switch button,
  .lang-switch a {
    background: transparent;
    border: 0;
    color: var(--c-white);
    padding: 3px 11px;
    font-size: 11px;
    letter-spacing: 0.12em;
    border-radius: var(--radius, 2px);
    opacity: 0.6;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
  }
  .lang-switch button.is-active,
  .lang-switch a.is-active {
    background: var(--c-purple);
    color: var(--c-white);
    opacity: 1;
    font-weight: 600;
  }
  .lang-switch a:hover,
  .lang-switch a:focus-visible {
    opacity: 0.9;
    outline: none;
  }
  /* DE/EN-Toggle lebt auf Mobile nur noch im Drawer (.drawer-head-tools).
   * Auf Desktop weiterhin in der Topbar. Kein zusätzlicher Header-Wrapper. */
  @media (max-width: 980px) {
    .topbar-left .topbar-tagline,
    .topbar-left .topbar-divider { display: none; }
  }
  @media (max-width: 640px) {
    .topbar-left { display: none; }
    .topbar { padding: 7px 0; }
  }

  /* ============================================================
     MAIN HEADER (transparent over hero, opaque on scroll)
     v0.4.2: Edge-to-Edge — Container nutzt volle Breite (kein
     1320px max-width), Logo links / Nav mittig / CTAs rechts werden
     so weit auseinandergezogen wie der Viewport zulässt.
     Text-shadow hinzugefügt, damit weiße Schrift auch über hellen
     Hero-Bildbereichen lesbar bleibt.
     ============================================================ */
  .site-header {
    position: absolute;
    inset: 36px 0 auto 0;
    z-index: 50;
    transition: all .35s ease;
  }
  .site-header .container {
    max-width: none;
    padding-left: clamp(20px, 3vw, 56px);
    padding-right: clamp(20px, 3vw, 56px);
  }
  .topbar .container {
    max-width: none;
    padding-left: clamp(20px, 3vw, 56px);
    padding-right: clamp(20px, 3vw, 56px);
  }
  .site-header.is-stuck {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--c-grey-15);
    box-shadow: 0 4px 24px -16px rgba(0,0,0,0.18);
  }
  /* Header-Verhalten:
   *  - Startseite + Pages mit DUNKLEN Heros (.hero, .haus-hero, .v-hero):
   *    initial transparent (Topbar oben drüber), beim Scrollen >80px .is-stuck
   *    (weisser BG + dunkle Schrift, position fixed).
   *  - Pages mit hellen Heros (ed-hero, faq-hero, mc-hero, etc):
   *    JS setzt body.mc-light-hero + is-stuck sofort. CSS macht is-stuck
   *    hier sticky statt fixed, damit Topbar oben sichtbar bleibt.
   *
   * legacy.css setzt body{padding-top:92px} für fixed-Header-Reserve —
   * brauchen wir nicht, da Header entweder transparent oder sticky-in-flow ist. */
  /* Non-Frontpage Pages MIT dunklem Hero (.hero, .haus-hero, .v-hero):
   * Body padding 0, weil Header initial transparent ist und über dem Hero
   * floatet. Wenn .is-stuck kommt, wird er fixed weiß. */
  body:not(.home):not(.page-template-front-page):not(.mc-frontpage):not(.mc-light-hero) {
    padding-top: 0 !important;
  }
  /* Auf mc-light-hero Pages: Wrapper ist position:fixed (aus legacy.css).
   * Body-Padding und Topbar-Collapse sind synchron animiert (identische
   * cubic-bezier + Dauer). Beim Scroll (.mc-scrolled) shrinken beide
   * gleichzeitig auf Mini-Höhe (nur Site-Header sichtbar).
   *
   * Wichtig: KEINE CSS-Variablen für transitionable Werte, weil Chrome
   * Transitions auf var()-Properties unzuverlässig triggert. Direkte
   * Werte sind robuster. */
  body.mc-light-hero {
    padding-top: 126px !important;
    transition: padding-top .35s cubic-bezier(.22, .61, .36, 1);
  }
  body.mc-light-hero.mc-scrolled {
    padding-top: 79px !important;
  }
  /* Mobile: Topbar ist display:none — Site-Header allein, kleineres Padding */
  @media (max-width: 980px) {
    body.mc-light-hero,
    body.mc-light-hero.mc-scrolled {
      /* An die echte Header-Höhe (--mc-header-h, legacy.css) + Safe-Area koppeln
         statt fix 64px — sonst überlappt der fixe Header den Inhalt (v. a. auf
         Notch-Geräten), wodurch der Header-Bereich „abgeschnitten" wirkt. */
      padding-top: calc(var(--mc-header-h) + env(safe-area-inset-top, 0px)) !important;
    }
  }
  /* Site-header NICHT fixed positionieren auf mc-light-hero — der Wrapper
   * <header.wp-block-template-part> ist bereits fixed (legacy.css). Sonst
   * würden beide bei top:0 übereinanderliegen und die Topbar verdecken. */
  body.mc-light-hero .site-header,
  body.mc-light-hero .site-header.is-stuck {
    position: static;
    inset: auto;
  }
  /* Topbar-Collapse auf Scroll. max-height/padding/opacity transitionieren
   * synchron in .35s — identisch zur body padding-top transition, damit
   * Wrapper-Höhe und body-Padding gleichzeitig shrinken (kein Gap). */
  body.mc-light-hero .topbar {
    max-height: 80px;
    padding-top: 9px;
    padding-bottom: 9px;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.22, .61, .36, 1),
                padding-top .35s cubic-bezier(.22, .61, .36, 1),
                padding-bottom .35s cubic-bezier(.22, .61, .36, 1),
                opacity .25s ease;
  }
  body.mc-light-hero.mc-scrolled .topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }
  /* Breadcrumb-Top-Padding reduzieren auf mc-light-hero, weil body-padding
   * den Header-Offset bereits liefert */
  body.mc-light-hero .ed-breadcrumb {
    padding-top: clamp(14px, 1.6vh, 22px);
  }
  /* Text-Shadow für Header-Schrift (weiß über Hero-Bild).
   * Doppellage: scharfer 1px-Schatten gegen Cravattenränder + breiter
   * Glow-Schatten gegen helle Bildregionen. Entfällt im is-stuck-Zustand. */
  .site-header .brand-logo .wm,
  .site-header .brand-logo .ht,
  .site-header .main-nav a,
  .site-header .phone-pill,
  .site-header .trustyou-pill .ty-meta {
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.55),
      0 2px 18px rgba(0, 0, 0, 0.55);
  }
  /* Topbar-Schrift kriegt einen dezenten Shadow nicht nötig (dark BG),
   * aber wir nehmen den weg falls schon gesetzt. */
  .topbar a, .topbar span { text-shadow: none; }

  .site-header.is-stuck .brand-logo .wm,
  .site-header.is-stuck .brand-logo .ht,
  .site-header.is-stuck .main-nav a,
  .site-header.is-stuck .phone-pill,
  .site-header.is-stuck .trustyou-pill .ty-meta {
    text-shadow: none;
  }
  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
  }
  .brand-block { display: flex; align-items: center; gap: 14px; }
  /* Mercure-Hotels-Logo (transparente PNG, dunkelgraue Glyphen).
   * Auf dunklem Hero per Filter weiß invertiert, im is-stuck-Zustand
   * (weißer Header) Original-Dunkelgrau. */
  .brand-logo-img {
    height: 32px;
    width: auto;
    max-width: 135px;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    transition: filter .35s ease;
  }
  .is-stuck .brand-logo-img {
    filter: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
  }
  .main-nav a {
    color: var(--c-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: color .25s ease;
  }
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--c-purple);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
  }
  .main-nav a:hover::after { transform: scaleX(1); }
  .is-stuck .main-nav a { color: var(--c-dark); }

  /* ============================================================
     NAV DROPDOWN (Zimmer / Das Haus / Agnesviertel)
     Mockup hat keine — wir bauen sie im Mockup-Look:
     - Wrapper .nav-item.has-sub triggert .sub-nav via :hover/:focus-within
     - Panel ist white, dezenter Shadow, kleine Purple-Akzente
     ============================================================ */
  .main-nav .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  .main-nav .nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .main-nav .sub-caret {
    font-size: 9px;
    opacity: 0.7;
    transform: translateY(1px);
    transition: transform 0.25s ease;
  }
  .main-nav .nav-item.has-sub:hover .sub-caret,
  .main-nav .nav-item.has-sub:focus-within .sub-caret {
    transform: translateY(1px) rotate(180deg);
  }
  /* ────────────────────────────────────────────────────────────
   * SUB-NAV PANEL (v0.4.2 — Hochwertiger, editorial Look)
   * ──────────────────────────────────────────────────────────── */
  .main-nav .sub-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 308px;
    background: var(--c-white);
    border: 1px solid var(--c-grey-15);
    border-radius: 14px;
    box-shadow:
      0 24px 60px -20px rgba(58, 57, 55, 0.34),
      0 4px 16px -6px rgba(83, 81, 79, 0.10);
    padding: 16px 0 12px;
    margin-top: 18px;       /* hover-gap forgiveness */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.26s cubic-bezier(.2,.6,.2,1),
                transform 0.26s cubic-bezier(.2,.6,.2,1),
                visibility 0.26s;
    z-index: 60;
    overflow: hidden;
  }
  /* Top accent — feine Purple-Linie als premium-Detail */
  .main-nav .sub-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
      transparent 0%,
      var(--c-purple) 25%,
      var(--c-purple) 75%,
      transparent 100%);
    opacity: 0.85;
  }
  /* Bridge-Hack: unsichtbarer hover-Bereich zwischen Trigger und Panel,
   * damit der Cursor das Panel erreichen kann ohne dass es schließt. */
  .main-nav .nav-item.has-sub::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 22px;
    pointer-events: none;
  }
  .main-nav .nav-item.has-sub:hover::after,
  .main-nav .nav-item.has-sub:focus-within::after {
    pointer-events: auto;
  }
  .main-nav .nav-item.has-sub:hover .sub-nav,
  .main-nav .nav-item.has-sub:focus-within .sub-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  /* Reguläre Sub-Items */
  .main-nav .sub-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-dark) !important;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    padding: 11px 28px 11px 28px;
    white-space: nowrap;
    position: relative;
    transition: padding-left 0.22s ease, color 0.22s ease, background 0.22s ease;
    text-shadow: none !important;   /* Header-Shadow im Panel deaktivieren */
  }
  .main-nav .sub-nav a::after { display: none; }   /* Underline-Effekt nicht im Panel */
  /* Left-Accent-Bar (kein Background-Flash mehr — eleganter) */
  .main-nav .sub-nav a::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 0;
    height: 1.5px;
    background: var(--c-purple);
    transform: translateY(-50%);
    transition: width 0.24s cubic-bezier(.2,.6,.2,1);
  }
  .main-nav .sub-nav a:hover,
  .main-nav .sub-nav a:focus-visible {
    color: var(--c-purple-hover, #8D74AE) !important;
    padding-left: 44px;
    outline: none;
  }
  .main-nav .sub-nav a:hover::before,
  .main-nav .sub-nav a:focus-visible::before {
    width: 18px;
  }
  /* Overview-Link prominenter — als „Hero"-Eintrag oben im Panel */
  .main-nav .sub-nav a.sub-overview {
    color: var(--c-dark) !important;
    border-bottom: 1px solid var(--c-grey-15);
    margin: 0 18px 8px;
    padding: 6px 10px 14px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .main-nav .sub-nav a.sub-overview::before { display: none; }
  .main-nav .sub-nav a.sub-overview:hover,
  .main-nav .sub-nav a.sub-overview:focus-visible {
    color: var(--c-purple-hover, #8D74AE) !important;
    padding-left: 10px;
    background: transparent;
  }
  /* Sub-Overview Eyebrow-Indicator (▸) — premium touch */
  .main-nav .sub-nav a.sub-overview::after {
    content: '→' !important;
    display: inline-block !important;
    position: static !important;
    margin-left: auto;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--c-purple);
    transform: none !important;
    transition: transform 0.24s ease !important;
    background: none !important;
    height: auto !important;
    width: auto !important;
  }
  .main-nav .sub-nav a.sub-overview:hover::after {
    transform: translateX(4px) !important;
  }

  /* Drawer-Sub-Gruppen entfernt — neues Card-Design siehe unten in §Mobile Drawer */

  .nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: color .25s ease;
  }
  .is-stuck .phone-pill { color: var(--c-dark); }
  .phone-pill svg { width: 14px; height: 14px; }

  /* Doppel-Selektor (.btn.header-book) + !important auf color, weil
   * theme.json's elements.link.color.text:dark / WP-Core-Button-Defaults
   * sonst die white-color des Header-Buchen-Buttons überschreiben. */
  a.btn.header-book,
  .btn.header-book,
  .header-book {
    background: var(--c-dark);
    color: var(--c-white) !important;
    border-color: var(--c-dark);
    padding: 12px 20px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .header-book::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ec27d;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(78,194,125,0.6);
    animation: pulseGreen 2.4s ease-in-out infinite;
  }
  .header-book:hover {
    background: var(--c-dark-2);
    border-color: var(--c-dark-2);
  }

  /* ============================================================
     TRUSTYOU SIEGEL im Header
     ============================================================ */
  .trustyou-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius);
    transition: background .25s ease;
  }
  .trustyou-pill:hover { background: rgba(255,255,255,0.08); }
  .is-stuck .trustyou-pill:hover { background: var(--c-grey-5); }

  .ty-bubble {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
  }
  .ty-bubble svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: var(--c-purple);
  }
  .ty-bubble .ty-score {
    position: relative;
    z-index: 2;
    color: var(--c-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-top: 9px;
  }
  .ty-meta {
    line-height: 1.15;
    color: var(--c-white);
    transition: color .35s ease;
    text-align: left;
  }
  .is-stuck .ty-meta { color: var(--c-dark); }
  .ty-meta strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .ty-meta small {
    font-size: 10.5px;
    opacity: 0.7;
    letter-spacing: 0.02em;
    display: block;
    margin-top: 1px;
  }

  /* TrustYou Info-Tooltip — dezenter „i"-Hinweis neben der Bewertung.
     Sichtbar bei :hover (Maus) und :focus-within (Tastatur/Touch). Der
     Tooltip ist Kind des Triggers, bleibt also offen solange man darin
     hovert (transparente padding-top-Bruecke, kein toter Spalt), damit
     „Mehr erfahren" anklickbar ist. */
  .trustyou-pill-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .ty-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-white);
    opacity: 0.5;
    cursor: help;
    outline: none;
    transition: opacity .2s ease, color .2s ease;
  }
  .is-stuck .ty-info { color: var(--c-dark); }
  .ty-info:hover,
  .ty-info:focus-visible,
  .ty-info:focus-within { opacity: 1; color: var(--c-purple); }
  .ty-info-icon { width: 14px; height: 14px; display: block; }

  .ty-tooltip {
    position: absolute;
    top: 100%;
    right: -6px;
    z-index: 200;
    width: 290px;
    max-width: calc(100vw - 32px);
    padding-top: 10px;            /* transparente Hover-Bruecke */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }
  .ty-info:hover .ty-tooltip,
  .ty-info:focus-visible .ty-tooltip,
  .ty-info:focus-within .ty-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
  }
  .ty-tooltip-inner {
    position: relative;
    display: block;
    background: rgba(20,16,12,0.97);
    color: #fff;
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
    padding: 13px 15px;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.30);
  }
  .ty-tooltip-inner::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 13px;
    border: 6px solid transparent;
    border-bottom-color: rgba(20,16,12,0.97);
  }
  .ty-tooltip-link {
    display: inline-block;
    margin-top: 9px;
    color: var(--c-purple);
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .ty-tooltip-link:hover { color: #fff; text-decoration: underline; }

  @media (max-width: 1180px) {
    .trustyou-pill,
    .trustyou-pill-wrap { display: none; }
  }

  .hamburger {
    display: none;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    color: var(--c-white);
    align-items: center;
    justify-content: center;
  }
  .is-stuck .hamburger { color: var(--c-dark); }
  .hamburger span {
    width: 22px;
    height: 1.5px;
    background: currentColor;
    position: relative;
    display: block;
  }
  .hamburger span::before,
  .hamburger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 1.5px;
    background: currentColor;
  }
  .hamburger span::before { top: -7px; }
  .hamburger span::after  { top:  7px; }

  @media (max-width: 1180px) {
    .main-nav { gap: 24px; }
    .main-nav a { font-size: 12px; }
  }
  /* v0.4.5 Mobile-Cascade — AGGRESSIVER:
   *  Auf Mobile (≤880px) zeigen wir NUR das M-Logo + Hamburger im
   *  Site-Header und einen schlanken Topbar mit Adresse links + DE/EN
   *  rechts. Alles andere (Nav, TrustYou-Pill, DIREKT-BUCHEN, Phone)
   *  liegt im Drawer-Menü.
   */
  @media (max-width: 980px) {
    /* Mobile/Tablet: alle Header-Elemente in einer Bar — Logo + DE/EN + Hamburger.
     * Topbar komplett versteckt; DE/EN wandert in Site-Header (.lang-switch-header).
     * !important nötig, weil a.btn.header-book (Basis-Regel) höhere Specificity hat. */
    .topbar { display: none; }
    .main-nav,
    .phone-pill,
    .trustyou-pill,
    a.btn.header-book,
    .btn.header-book,
    .header-book { display: none !important; }
    .hamburger {
      display: inline-flex;
      width: 40px;
      height: 40px;
      border-radius: 9px;
      background: rgba(0, 0, 0, 0.32);   /* klar erkennbarer Tap-Button auf hellem Hero */
    }
    .is-stuck .hamburger { background: rgba(0, 0, 0, 0.06); }
    .brand-logo-img { height: 22px; width: auto; max-width: 96px; }
    .brand-block { gap: 0; min-width: 0; flex-shrink: 0; }
    .nav-cta-wrap { gap: 14px; flex-shrink: 0; align-items: center; }
    .site-header { inset: 0 0 auto 0; padding: 14px 0; }
    .site-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(6px);
      z-index: -1;
    }
    .site-header.is-stuck::before { display: none; }
    .header-row { padding: 0; gap: 12px; }
  }
  @media (max-width: 480px) {
    .brand-logo-img { height: 19px; width: auto; max-width: 84px; }
    .site-header .container {
      padding-left: 14px;
      padding-right: 14px;
    }
    .nav-cta-wrap { gap: 10px; }
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    min-height: 100vh;
    color: var(--c-white);
    overflow: hidden;
    background: #2a2825;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
  }
  .hero-media {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.92) contrast(1.02);
    /* Slow Zoom-in (Ken-Burns-Effekt): startet bei 1.0 und zoomt
       langsam auf 1.10 ueber 20s, bleibt dort. Reduzierte Bewegung
       ist via @media (prefers-reduced-motion) deaktiviert. */
    animation: mc-hero-zoom 20s ease-out 0.2s forwards;
    will-change: transform;
    transform-origin: center center;
  }
  @keyframes mc-hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.10); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-media img { animation: none; transform: none; }
  }
  .hero-media::after {
    content: '';
    position: absolute; inset: 0;
    /* v0.4.2: Top-Stop deutlich stärker (war 0.42, jetzt 0.78),
     * damit weiße Header-Schrift auch über hellen Hero-Bildbereichen
     * (Sky / Fenster / helle Wände / Hotelbettzeug) lesbar bleibt. */
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.45) 12%,
        rgba(0,0,0,0.18) 30%,
        rgba(0,0,0,0.18) 55%,
        rgba(0,0,0,0.80) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 200px;
    padding-bottom: 220px;
    width: 100%;
  }
  .hero-eyebrow {
    color: var(--c-white);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1.5px;
    background: var(--c-purple);
  }
  .hero h1 {
    color: var(--c-white);
    font-weight: 300;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    max-width: 12ch;
    margin-bottom: 24px;
  }
  .hero h1 .it {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--c-purple);
  }
  .hero-sub {
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 48ch;
    margin-bottom: 0;
  }

  /* Scroll Cue */
  .hero-scroll {
    position: absolute;
    bottom: 132px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-scroll .line {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.45);
    position: relative;
    overflow: hidden;
  }
  .hero-scroll .line::after {
    content: '';
    position: absolute;
    top: -50%; left: 0; right: 0;
    height: 50%;
    background: var(--c-purple);
    animation: scrollLine 2.2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%   { transform: translateY(0); }
    100% { transform: translateY(300%); }
  }

  /* ============================================================
  /* ============================================================

  /* ============================================================
     KOMPATIBILITÄTS-LAYER (Legacy-Token-Bridge)

     Bestehende CSS-Files (zimmer.css, angebote.css, sticky-bar.css,
     breadcrumbs.css, etc.) verwenden alte Theme-Token-Namen (--paper,
     --ink, --dark, --mc-*). Diese werden hier auf die neuen
     Mockup-Tokens (--c-*) gemappt, damit beide Welten zusammenlaufen.

     Migration-Pfad: Bestehende Files werden schrittweise auf die
     direkten --c-* Tokens umgestellt; danach kann dieser Block weg.
     ============================================================ */
  :root {
    /* Background- & Surface-Aliases */
    --paper:         var(--c-white);
    --cream:         var(--c-cream);

    /* Text- & Ink-Aliases */
    --ink:           var(--c-dark);
    --dark:          var(--c-dark);
    --soft:          var(--c-dark-2);
    --muted:         #8A8784;

    /* Border-Aliases */
    --border:        var(--c-grey-15);
    --border-soft:   var(--c-grey-5);

    /* Accent-Aliases */
    --purple-hover:  #8D74AE;
    --live:          #4A7C59;

    /* Easing/Transition-Aliases */
    --ease:          cubic-bezier(.16, 1, .3, 1);
    --trans:         .45s cubic-bezier(.16, 1, .3, 1);

    /* Layout-Tokens (von alter theme.json/brand.css übernommen) */
    --mc-content-max:        var(--container-max);
    --mc-content-narrow:     880px;
    --mc-content-wide:       var(--container-max);
    --mc-content-padding:    24px;
    --mc-content-padding-md: 32px;
    --mc-content-padding-lg: 48px;
    --mc-header-h:           92px;
    --mc-section-padding-x:  var(--gutter);
    --mc-section-padding-y:  clamp(48px, 8vw, 96px);
    --mc-sticky-chat-gutter: 132px;
    --mc-font-sans:          var(--f-sans);

    /* Tracking aus Brand-CSS Legacy */
    --mc-font-xs:            10px;
    --mc-font-sm:            11px;
    --mc-font-md:            14px;
    --mc-font-lg:            15px;
    --mc-tracking-wide:      0.22em;
    --mc-tracking:           0.12em;

    /* Globale Root-Padding-Reset (für `.wp-site-blocks`) */
    --wp--style--root--padding-top:    0;
    --wp--style--root--padding-bottom: 0;
  }

     EDITORIAL ROOM DETAIL v2 — Magazine Style
     ============================================================ */

  /* Side-Page-Counter & globale Editorial-Marker */
  .page-counter {
    position: fixed;
    left: clamp(16px, 2vw, 32px);
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-family: var(--f-sans);
    font-size: 10px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--c-dark);
    opacity: 0.45;
    z-index: 30;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .page-counter .line {
    width: 28px;
    height: 1px;
    background: var(--c-purple);
  }
  @media (max-width: 1200px) { .page-counter { display: none; } }

  /* Breadcrumb editorial-style */
  .ed-breadcrumb {
    background: var(--c-cream);
    padding: clamp(22px, 3vh, 40px) 0 0;
  }
  .ed-breadcrumb .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-family: var(--f-sans);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-dark);
    opacity: 0.55;
  }
  .ed-breadcrumb .list a:hover { color: var(--c-purple); opacity: 1; }
  .ed-breadcrumb .list .sep {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-purple);
    opacity: 0.7;
    text-transform: lowercase;
  }
  .ed-breadcrumb .list .current { color: var(--c-dark); opacity: 1; font-weight: 600; }

  /* ===== EDITORIAL HERO ===== */
  .ed-hero {
    background: var(--c-cream);
    padding: clamp(28px, 4vh, 56px) 0 0;
    position: relative;
    overflow: hidden;
    /* FSE (Twenty-Twenty-Five) setzt auf alle .wp-site-blocks-Kinder einen
       margin-block-start (block-gap). Zwischen Breadcrumb (cream) und Hero
       (cream) entsteht dadurch ein ~16px weisser Spalt (Body scheint durch).
       Hier explizit auf 0 → nahtloser Uebergang. */
    margin-block-start: 0 !important;
  }
  .ed-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    position: relative;
  }
  /* Linke Spalte: Foto, cinematic crop, bleeds an Container-Rand */
  .ed-hero-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
    background: #221f1d;
  }
  .ed-hero-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease;
  }
  .ed-hero-photo:hover img { transform: scale(1.03); }
  /* Overlay-Label oben links auf Foto */
  .ed-hero-photo .ph-label {
    position: absolute;
    top: clamp(18px, 2.4vw, 32px);
    left: clamp(18px, 2.4vw, 32px);
    color: var(--c-white);
    font-family: var(--f-sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.32);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 100px;
  }
  .ed-hero-photo .ph-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--c-purple);
    border-radius: 50%;
  }
  /* Caption rechts unten */
  .ed-hero-photo .ph-caption {
    position: absolute;
    bottom: clamp(18px, 2.4vw, 32px);
    right: clamp(18px, 2.4vw, 32px);
    color: var(--c-white);
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    opacity: 0.9;
    max-width: 16ch;
    text-align: right;
    line-height: 1.4;
  }

  /* Rechte Spalte: Display-Typografie */
  .ed-hero-display {
    padding: clamp(12px, 3vh, 36px) 0;
    position: relative;
  }
  .ed-hero-section {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--f-sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-dark);
    margin: 0 0 clamp(28px, 4vh, 56px);
  }
  .ed-hero-section .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-purple);
    font-weight: 600;
  }
  .ed-hero-section .pill::before {
    content: '';
    width: 22px; height: 1.5px;
    background: var(--c-purple);
  }
  .ed-hero-section .progress {
    margin-left: auto;
    color: var(--c-dark);
    opacity: 0.4;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.02em;
  }

  /* XXL Display-Zahl wurde durch klassische Headline ersetzt — siehe ed-hero-title */

  /* Editorial Headline (statt XXL-Zahl) */
  .ed-hero-title {
    font-family: var(--f-sans);
    font-weight: 200;
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--c-dark);
    margin: 0 0 24px;
    max-width: 14ch;
  }
  .ed-hero-title .it {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-purple);
    font-weight: 300;
  }
  .ed-hero-title .small {
    font-family: var(--f-sans);
    font-style: normal;
    font-size: 0.42em;
    color: var(--c-purple);
    font-weight: 500;
    vertical-align: super;
    margin-left: 4px;
    letter-spacing: 0.02em;
  }
  /* Sub-Text als italic Spectral */
  .ed-hero-sub {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--c-dark);
    opacity: 0.78;
    margin: 0 0 28px;
    max-width: 46ch;
  }
  /* Meta-Pills im Hero */
  .ed-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0 0 32px;
  }
  .ed-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--c-white);
    border: 1px solid var(--c-grey-15);
    border-radius: 100px;
    font-family: var(--f-sans);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--c-dark);
    letter-spacing: 0.02em;
  }
  .ed-hero-pill svg {
    width: 13px; height: 13px;
    color: var(--c-purple);
    stroke-width: 1.8;
  }
  .ed-hero-pill .v {
    color: var(--c-purple);
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.04em;
    font-weight: 400;
  }

  /* Sticky-Bottom als VOLLBREIT-Bar (USPs + Picker + CTA) */
  .ed-sticky {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 40;
    background: var(--c-cream);
    border-top: 1px solid var(--c-grey-15);
    box-shadow: 0 -12px 32px -10px rgba(83,81,79,0.18);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform .4s ease;
    max-width: none;
    border-radius: 0;
    display: block;
    color: var(--c-dark);
  }
  .ed-sticky.is-visible { transform: translateY(0); }
  .ed-sticky .sticky-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: clamp(12px, 1.6vw, 28px);
  }
  .ed-sticky .room-id {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: clamp(16px, 2vw, 28px);
    border-right: 1px solid var(--c-grey-15);
  }
  .ed-sticky .room-id .name {
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-dark);
  }
  .ed-sticky .room-id .from {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--c-dark);
    opacity: 0.65;
  }
  /* USP-Tags */
  .ed-sticky .usp-tags {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 20px);
    flex-wrap: wrap;
  }
  .ed-sticky .usp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-sans);
    font-size: 12px;
    color: var(--c-dark);
    opacity: 0.85;
    font-weight: 500;
  }
  .ed-sticky .usp-tag::before {
    content: '';
    width: 13px; height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a790c4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  /* Picker (Date + Guests) */
  .ed-sticky .picker {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--c-white);
    border: 1px solid var(--c-grey-15);
    border-radius: var(--radius);
    font-family: var(--f-sans);
    font-size: 12.5px;
    color: var(--c-dark);
    cursor: pointer;
    font-weight: 500;
    transition: border-color .2s;
  }
  .ed-sticky .picker:hover { border-color: var(--c-purple); }
  .ed-sticky .picker svg {
    width: 14px; height: 14px;
    color: var(--c-purple);
    stroke-width: 1.7;
  }
  .ed-sticky .picker .sep {
    color: var(--c-dark);
    opacity: 0.35;
    margin: 0 2px;
  }
  .ed-sticky .picker .it {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-purple);
    font-size: 13px;
  }
  /* Buchen-CTA */
  .ed-sticky .btn-buy {
    background: var(--c-purple);
    color: var(--c-white);
    border: 1.5px solid var(--c-purple);
    border-radius: var(--radius);
    padding: 13px 28px;
    font-family: var(--f-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, border-color .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .ed-sticky .btn-buy:hover { background: var(--c-dark); border-color: var(--c-dark); }
  .ed-sticky .btn-buy::after {
    content: '→';
    font-family: var(--f-serif);
    font-size: 15px;
  }

  /* Mobile: kompaktes Layout */
  @media (max-width: 1180px) {
    .ed-sticky .usp-tags { display: none; }
    .ed-sticky .sticky-inner { grid-template-columns: auto 1fr 1fr auto; }
  }
  @media (max-width: 880px) {
    .ed-sticky .room-id .from { display: none; }
    .ed-sticky .picker { display: none; }
    .ed-sticky .sticky-inner { grid-template-columns: 1fr auto; gap: 14px; }
  }
  @media (max-width: 480px) {
    .ed-sticky .room-id { border-right: none; padding-right: 0; }
    .ed-sticky .btn-buy { padding: 12px 18px; font-size: 10.5px; letter-spacing: 0.18em; }
  }


  /* Inline Hero-CTA Row */
  .ed-hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(16px, 2vw, 32px);
  }
  .ed-hero-cta .main-btn,
  .stadtguide-cta .main-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: var(--c-dark);
    color: var(--c-white);
    border: 1.5px solid var(--c-dark);
    border-radius: 100px;
    font-family: var(--f-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
  }
  .ed-hero-cta .main-btn::after,
  .stadtguide-cta .main-btn::after {
    content: '→';
    font-family: var(--f-serif);
    font-size: 16px;
    transition: transform .3s;
  }
  .ed-hero-cta .main-btn:hover { background: var(--c-purple); border-color: var(--c-purple); }
  .ed-hero-cta .main-btn:hover::after { transform: translateX(4px); }
  .ed-hero-cta .alt {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--c-dark);
    opacity: 0.7;
    line-height: 1.5;
  }
  .ed-hero-cta .alt a {
    color: var(--c-purple);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    font-weight: 500;
    font-style: normal;
    font-family: var(--f-sans);
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  @media (max-width: 880px) {
    .ed-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .ed-hero-photo { aspect-ratio: 3/4; max-height: 60vh; }
    .ed-hero-display { padding: 0; }
    /* Hero hat oben Padding, unten 0. Auf Mobile (Grid gestapelt) ist der
     * CTA-Button das letzte Element → klebt direkt an der nächsten (dunklen)
     * Sektion. Unten Luft geben, damit der Button nicht auf der Box liegt. */
    .ed-hero { padding-bottom: clamp(40px, 7vw, 56px); }
  }

  @media (max-width: 480px) {
    /* Eyebrow-Zeile (Pill + "X Gehminuten"-Stat) auf schmalen Phones umbrechen lassen
     * + engeres Tracking, damit der rechte Stat (margin-left:auto) nicht abgeschnitten wird. */
    .ed-hero-section { flex-wrap: wrap; gap: 6px 10px; letter-spacing: 0.18em; }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  /* v0.4.4: Vollständiger Footer mit allen Sektionen wie alt-Theme */
  .mc-footer {
    background: var(--c-dark);
    color: rgba(255,255,255,0.78);
    padding: clamp(56px, 8vw, 88px) 0 28px;
    font-size: 13px;
  }
  .mc-footer .container {
    /* Footer-Container darf eingerahmt sein, nicht edge-to-edge */
    max-width: var(--container-max);
    padding-left: clamp(20px, 3vw, 56px);
    padding-right: clamp(20px, 3vw, 56px);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    padding-bottom: clamp(36px, 5vw, 56px);
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .footer-col h4 {
    color: var(--c-white);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 22px;
  }
  .footer-col h4::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--c-purple);
    margin-top: 12px;
  }
  .footer-col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 11px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.72);
    transition: color .2s, padding-left .25s ease;
    font-size: 13px;
    line-height: 1.5;
  }
  .footer-col a:hover {
    color: var(--c-purple);
    padding-left: 4px;
  }

  /* === Spalte 1: Brand-Identity === */
  .footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--c-white);
  }
  .footer-brand-img {
    height: 44px;
    width: auto;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  .footer-tagline {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-purple);
    font-size: 15px;
    margin: 0 0 22px;
    letter-spacing: 0.02em;
  }
  .footer-address {
    font-style: normal;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin: 0 0 22px;
    font-size: 13px;
  }
  .footer-address a {
    color: rgba(255,255,255,0.72);
    transition: color .2s;
  }
  .footer-address a:hover { color: var(--c-purple); }
  .footer-address-link {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: var(--c-purple) !important;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }
  .footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    min-width: 0;
    overflow-wrap: break-word;   /* E-Mail bricht am <wbr> (nach @) sauber statt mitten im Wort */
    transition: color .2s;
  }
  .footer-contact-link svg { color: var(--c-purple); flex-shrink: 0; }
  .footer-contact-link:hover { color: var(--c-purple); }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all .25s ease;
  }
  .footer-social a:hover {
    background: var(--c-purple);
    border-color: var(--c-purple);
    color: var(--c-white);
    transform: translateY(-2px);
  }

  /* === Newsletter === */
  .footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    padding: clamp(28px, 4vw, 40px) 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .footer-newsletter-text { display: flex; flex-direction: column; gap: 6px; }
  .footer-newsletter-title {
    color: var(--c-white);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.005em;
  }
  .footer-newsletter-sub {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    max-width: 48ch;
  }
  .footer-newsletter form,
  .footer-newsletter .mercure-rapidmail {
    width: 100%;
    min-width: 0;
  }
  /* Rapidmail-Embed: Rahmen liegt auf .rmBase__section (rapidmail-embed.css). */
  .footer-newsletter .mercure-rapidmail form.rmBase__content {
    display: block;
    border: 0;
    overflow: visible;
  }
  .footer-newsletter .mercure-rapidmail .rmBase__container,
  .footer-newsletter .mercure-rapidmail .rmBase__section {
    width: 100%;
  }
  .footer-newsletter .mercure-rapidmail .rmBase__compContainer {
    width: 100%;
    min-width: 0;
  }
  .footer-newsletter form:not(.rmBase__content) {
    display: flex;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s ease;
  }
  .footer-newsletter form:not(.rmBase__content):focus-within { border-color: var(--c-purple); }
  .footer-newsletter input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 14px 16px;
    color: var(--c-white);
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
  }
  .footer-newsletter input::placeholder { color: rgba(255,255,255,0.42); }
  .footer-newsletter button,
  .footer-newsletter .mercure-rapidmail .rmBase__comp--cta {
    background: var(--c-purple);
    color: var(--c-white);
    border: 0;
    padding: 0 22px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
  }
  .footer-newsletter button:hover,
  .footer-newsletter .mercure-rapidmail .rmBase__comp--cta:hover {
    background: var(--c-purple-hover, #8d74ae);
  }

  /* === Bottom-Bar (Managed-by + Copyright + Legal — dezent) === */
  .footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
  }
  .footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
  }
  /* mercure_footer_managed-Shortcode-Output (.mc-footer__managed) */
  .mc-footer__managed,
  .footer-bottom-left p {
    margin: 0;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  /* Mit Logo: wie auf der Live-Website — „Managed by" + EH-Logo HORIZONTAL
     in einer Zeile (Label links, Logo rechts, vertikal zentriert), normale
     Schreibweise statt Versalien. Höhere Spezifität als `.footer-bottom-left p`. */
  .footer-bottom-left .mc-footer__managed--with-logo {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .mc-footer__managed-label {
    font-size: 13px;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
  }
  .mc-footer__eh-link {
    display: inline-flex;
    align-items: center;
    transition: opacity .25s ease;
  }
  .mc-footer__eh-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity .25s ease;
  }
  .mc-footer__eh-link:hover .mc-footer__eh-logo { opacity: 1; }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
  }
  .footer-legal a {
    color: rgba(255,255,255,0.42);
    font-size: 11px;
    letter-spacing: 0.04em;
    transition: color .2s;
  }
  .footer-legal a:hover { color: var(--c-purple); }

  /* === Mobile Cascade — Footer kompakt === */
  @media (max-width: 1180px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 880px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-newsletter {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 560px) {
    .mc-footer { padding: 48px 0 24px; font-size: 12.5px; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
      padding-bottom: 28px;
    }
    .footer-newsletter form:not(.rmBase__content) { flex-direction: column; border-radius: var(--radius); }
    .footer-newsletter input,
    .footer-newsletter .mercure-rapidmail .rmBase__comp--input { padding: 13px 16px; }
    .footer-newsletter button,
    .footer-newsletter .mercure-rapidmail .rmBase__comp--cta { padding: 14px 20px; width: 100%; }
    .footer-bottom {
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.10);
    }
    .footer-legal { gap: 12px 14px; }
    .footer-legal a { font-size: 10.5px; }
    /* Address-Block kompakter */
    .footer-address { margin-bottom: 16px; }
    .footer-contact { margin-bottom: 16px; }
  }

  /* ============================================================
     MOBILE STICKY CTA (immer am unteren Rand)
     ============================================================ */
  .mobile-cta {
    display: none;
    position: fixed;
    left: max(12px, env(safe-area-inset-left, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    background: var(--c-dark);
    color: var(--c-white);
    padding: 14px 16px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
    border: 0;
    width: auto;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    font-family: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta .pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-purple);
    margin-right: 10px;
    animation: pulseGlow 1.8s ease-in-out infinite;
  }
  /* PERFORMANCE (#7): kompositiert (transform/opacity statt box-shadow). */
  @keyframes pulseGlow {
    0%,100% { opacity: 1;   transform: scale(1); }
    50%     { opacity: .5;  transform: scale(1.6); }
  }
  @media (max-width: 880px) {
    .mobile-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      letter-spacing: 0.08em;
      font-size: 11px;
      padding: 14px 12px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .mobile-cta .pulse {
      flex-shrink: 0;
      margin-right: 0;
    }
    body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  }

  /* ════════════════════════════════════════════════════════════
   * MOBILE DRAWER — v0.5.1 Editorial-Minimal
   *  Konsistent zur Theme-Sprache: --radius:2px, Lila nur als
   *  Akzent (Eyebrow + Arrow + Hover), Hairline-Divider, kein
   *  Card-BG, Sub-Pages als sichtbare Liste pro Section.
   * ════════════════════════════════════════════════════════════ */
  .mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--c-white);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .mobile-drawer.open { transform: translateX(0); }

  /* HEAD (sticky) */
  .drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px var(--gutter);
    background: var(--c-white);
    border-bottom: 1px solid var(--c-grey-15);
    flex-shrink: 0;
    z-index: 2;
  }
  .drawer-brand-img {
    height: 30px;
    width: auto;
    display: block;
  }
  .drawer-head-tools {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .drawer-head-tools .lang-switch {
    border-color: var(--c-grey-15);
  }
  .drawer-head-tools .lang-switch a {
    color: var(--c-dark);
    opacity: 0.5;
  }
  .drawer-head-tools .lang-switch a.is-active {
    color: var(--c-white);
    opacity: 1;
  }
  .drawer-close {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--c-dark);
    border: 1px solid var(--c-grey-15);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
  }
  .drawer-close:hover { border-color: var(--c-purple); color: var(--c-purple); }

  /* SCROLL */
  .drawer-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px var(--gutter) 32px;
    display: flex;
    flex-direction: column;
  }

  /* QUICK ACTIONS — minimal */
  .drawer-quick {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--c-grey-15);
  }
  .drawer-cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--c-dark);
    color: var(--c-white);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--ls-button);
    text-transform: uppercase;
    transition: background .2s ease;
  }
  .drawer-cta-primary:hover { background: #1a1816; }
  .drawer-cta-primary .cta-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ec27d;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(78,194,125,0.6);
    animation: pulseGreen 2.4s ease-in-out infinite;
  }
  .drawer-cta-primary .cta-text {
    flex: 1;
    min-width: 0;
  }
  .drawer-cta-primary .cta-arrow {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--c-purple);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }
  .drawer-quick-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
  }
  .drawer-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 4px;
    color: var(--c-dark);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: color .2s ease, opacity .2s ease;
  }
  .drawer-quick-link:hover { color: var(--c-purple); opacity: 1; }
  .drawer-quick-link svg { color: var(--c-purple); flex-shrink: 0; }

  /* NAV — Editorial: Eyebrow + Main + Sub-Liste */
  .drawer-nav {
    display: flex;
    flex-direction: column;
  }
  .drawer-section {
    padding: 22px 0;
    border-bottom: 1px solid var(--c-grey-15);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .drawer-section:first-child { padding-top: 4px; }
  .drawer-section--single { gap: 0; padding: 0; }
  .drawer-section--single .drawer-main {
    padding: 22px 0;
    border-bottom: 1px solid var(--c-grey-15);
  }
  .drawer-section--single .drawer-main:last-child { border-bottom: 0; }
  .drawer-eyebrow {
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-purple);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .drawer-eyebrow::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--c-purple);
  }
  .drawer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--f-sans);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--c-dark);
    text-decoration: none;
    padding: 2px 0;
    transition: color .2s ease;
  }
  .drawer-main:hover { color: var(--c-purple); }
  .drawer-main .drawer-arrow {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--c-purple);
    transition: transform .25s ease;
  }
  .drawer-main:hover .drawer-arrow { transform: translateX(4px); }
  .drawer-sub {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--c-grey-15);
    padding-left: 14px;
  }
  .drawer-sub li { margin: 0; }
  .drawer-sub a {
    display: block;
    padding: 7px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--c-dark);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity .2s ease, color .2s ease;
  }
  .drawer-sub a:hover {
    opacity: 1;
    color: var(--c-purple);
  }

  /* FEATURE — dezent, kein Gradient-Spektakel */
  .drawer-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px var(--gutter);
    margin: 28px calc(var(--gutter) * -1) 0;
    background: var(--c-cream);
    color: var(--c-dark);
    text-decoration: none;
  }
  .drawer-feature .feature-eyebrow {
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-purple);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .drawer-feature .feature-eyebrow::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--c-purple);
  }
  .drawer-feature .feature-title {
    font-family: var(--f-sans);
    font-size: 26px;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 2px 0 6px;
  }
  .drawer-feature .feature-title .it {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-purple);
    font-weight: 300;
  }
  .drawer-feature .feature-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--c-dark);
    opacity: 0.72;
    margin: 0;
  }
  .drawer-feature .feature-link {
    margin-top: 10px;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--c-purple);
  }

  /* RATING — hairline */
  .drawer-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0 4px;
    color: var(--c-dark);
    text-decoration: none;
    transition: color .2s ease;
  }
  .drawer-rating:hover { color: var(--c-purple); }
  .drawer-rating .rating-score {
    font-family: var(--f-sans);
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    color: var(--c-dark);
    letter-spacing: -0.02em;
  }
  .drawer-rating .rating-score span {
    font-size: 13px;
    color: var(--c-dark);
    opacity: 0.5;
    margin-left: 2px;
  }
  .drawer-rating .rating-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }
  .drawer-rating .rating-meta strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-dark);
    letter-spacing: 0.02em;
  }
  .drawer-rating .rating-meta small {
    font-size: 11px;
    color: var(--c-dark);
    opacity: 0.55;
  }
  .drawer-rating .rating-arrow {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-purple);
    font-size: 18px;
  }

  /* FOOT (sticky) */
  .drawer-foot {
    padding: 14px var(--gutter) 18px;
    background: var(--c-white);
    border-top: 1px solid var(--c-grey-15);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .drawer-foot-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
  }
  .drawer-foot-link {
    font-size: 11px;
    color: var(--c-dark);
    opacity: 0.65;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .drawer-foot-link:hover { opacity: 1; color: var(--c-purple); }
  .drawer-foot-social {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
  }
  .drawer-foot-social a {
    width: 30px;
    height: 30px;
    color: var(--c-dark);
    opacity: 0.55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease, opacity .2s ease;
  }
  .drawer-foot-social a:hover {
    color: var(--c-purple);
    opacity: 1;
  }


  /* ════════════════════════════════════════════════════════════
   * BEREICHE — Bento-Pattern (Card-Grid)
   * Shared component used on das-haus, agnesviertel-guide, faq
   * and 6 Unterseiten-Templates. Previously duplicated in
   * agnesviertel.css, das-haus.css, faq.css (identical block) —
   * consolidated to brand.css in v0.4.1.
   * ════════════════════════════════════════════════════════════ */
  /* VIER BEREICHE â€” Bento Layout */
  .bereiche {
    background: var(--c-cream);
    padding: clamp(80px, 11vh, 140px) 0;
  }
  .bereiche-head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vh, 80px); }
  .bereiche-head h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 14px 0 20px;
  }
  .bereiche-head h2 .it { font-family: var(--f-serif); font-style: italic; color: var(--c-purple); font-weight: 300; }
  .bereiche-head .lede {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.6;
    color: var(--c-dark);
    opacity: 0.75;
    max-width: 52ch;
    margin: 0 auto;
  }
  .bereiche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.4vw, 36px);
  }
  @media (max-width: 880px) { .bereiche-grid { grid-template-columns: 1fr; } }
  .bereich-card {
    background: var(--c-white);
    border: 1px solid var(--c-grey-15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .bereich-card:hover { border-color: var(--c-purple); transform: translateY(-2px); }
  .bereich-card .ph {
    overflow: hidden;
    aspect-ratio: 1;
  }
  .bereich-card .ph img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
  }
  .bereich-card:hover .ph img { transform: scale(1.05); }
  .bereich-card .body {
    padding: clamp(24px, 2.4vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }
  .bereich-card .c-eyebrow {
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-purple);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .bereich-card .c-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--c-purple); }
  .bereich-card .c-eyebrow.acc {
    color: var(--c-white);
    background: var(--c-purple);
    padding: 6px 12px;
    border-radius: 100px;
    align-self: flex-start;
  }
  .bereich-card .c-eyebrow.acc::before { display: none; }
  .bereich-card h3 {
    font-family: var(--f-sans);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--c-dark);
    margin: 0;
  }
  .bereich-card h3 .it { font-family: var(--f-serif); font-style: italic; color: var(--c-purple); }
  .bereich-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--c-dark);
    opacity: 0.75;
    margin: 0;
    max-width: 38ch;
  }
  .bereich-card .info {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--c-grey-15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-sans);
    font-size: 11.5px;
    color: var(--c-dark);
    opacity: 0.7;
  }
  .bereich-card .info svg {
    width: 13px; height: 13px;
    color: var(--c-purple); stroke-width: 1.8;
  }
  .bereich-card .info .sep {
    color: var(--c-purple);
    opacity: 0.6;
    margin: 0 4px;
  }
  @media (max-width: 560px) {
    .bereich-card { grid-template-columns: 1fr; }
    .bereich-card .ph { aspect-ratio: 16/10; }
  }

  /* Bestpreis-Garantie — Inline-Links (Templates & Shortcodes) */
  .hero-sub a,
  .ed-hero-sub a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .hero-sub a:hover,
  .ed-hero-sub a:hover {
    color: var(--c-purple);
  }
  a.ed-hero-pill {
    text-decoration: none;
    color: inherit;
  }
  a.ed-hero-pill:hover {
    border-color: var(--c-purple);
  }
  .ed-hero-photo .ph-caption a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .ed-cross-card .body .specs a,
  .ed-cross-card .body a.arrow {
    color: inherit;
  }
  .ed-cross-card .body .specs a {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .ed-cross-card .body .specs a:hover {
    color: var(--c-purple);
  }
  .ed-cross-card .body a.arrow {
    text-decoration: none;
  }
  .specs-detail-list .row .l a,
  .spec-tile .lab a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .spec-tile .desc a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .mercure-hero-booking .guarantees a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
