    /* ── VARIABLES ────────────────────────────────────────────────── */
    :root {
      --black:   #0D0D0B;
      --dark:    #141410;
      --navy:    #1C2B3A;
      --gold:    #C4965A;
      --gold-l:  #DFC49A;
      --gold-xl: #F0E0C4;
      --cream:   #F5F2EC;
      --paper:   #FDFAF5;
      --mid:     #8C8880;
      --rule:    #2E2C28;
      --rule-l:  #D8D2C8;
      --white:   #FFFFFF;
    }

    /* ── RESET ───────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    body {
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      background: var(--black);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAVIGATION ──────────────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 999;
      padding: 0 48px; height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(13,13,11,0.97);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 rgba(196,150,90,0.2);
      transition: background 0.5s ease, box-shadow 0.5s ease;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.65); transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a.active { color: var(--gold); }
    .nav-book {
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--black); background: var(--gold);
      padding: 10px 22px; transition: background 0.3s;
    }
    .nav-book:hover { background: var(--gold-l); }
    .nav-burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
    }
    .nav-burger span { display: block; width: 24px; height: 1px; background: var(--white); }

    /* ── HERO ────────────────────────────────────────────────────── */
    .hero {
      position: relative; width: 100%; height: 100vh;
      min-height: 600px; overflow: hidden;
    }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; will-change: transform, opacity;
      transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide.kb-1 { animation: kb1 11s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
    .hero-slide.kb-2 { animation: kb2 11s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
    .hero-slide.kb-3 { animation: kb3 11s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
    /* Ken Burns — 6 unique movements: zoom-in panning, zoom-out panning, drift */
    @keyframes kb1 {
      from { transform: scale(1.0) translate(0%, 2%); }
      to   { transform: scale(1.14) translate(-3%, -1%); }
    }
    @keyframes kb2 {
      from { transform: scale(1.14) translate(3%, -2%); }
      to   { transform: scale(1.0) translate(0%, 1%); }
    }
    @keyframes kb3 {
      from { transform: scale(1.06) translate(-2%, 0%); }
      to   { transform: scale(1.14) translate(2%, -3%); }
    }
    /* Mobile portrait: slow horizontal drift — works better with tall/cropped landscape images */
    @media (max-width: 600px) and (orientation: portrait) {
      .hero-slide.kb-1 { animation: kb-mob-1 12s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
      .hero-slide.kb-2 { animation: kb-mob-2 12s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
      .hero-slide.kb-3 { animation: kb-mob-3 12s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
    }
    @keyframes kb-mob-1 {
      from { transform: scale(1.06) translateX(-6%); }
      to   { transform: scale(1.02) translateX(6%); }
    }
    @keyframes kb-mob-2 {
      from { transform: scale(1.02) translateX(6%); }
      to   { transform: scale(1.06) translateX(-6%); }
    }
    @keyframes kb-mob-3 {
      from { transform: scale(1.0) translateX(0%); }
      to   { transform: scale(1.05) translateX(-4%); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.75) 100%);
      z-index: 1;
    }
    .hero-content {
      position: absolute; inset: 0; z-index: 2;
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      padding-bottom: 90px; text-align: center;
    }
    .hero-eyebrow {
      font-size: 10px; font-weight: 600; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
      opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 7vw, 92px); font-weight: 300;
      letter-spacing: 0.06em; line-height: 1.05; color: var(--white);
      margin-bottom: 20px;
      opacity: 0; animation: fadeUp 1s 0.8s ease forwards;
    }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(16px, 2.5vw, 22px); font-weight: 300;
      font-style: italic; color: var(--gold-xl);
      letter-spacing: 0.08em; margin-bottom: 36px;
      opacity: 0; animation: fadeUp 1s 1.1s ease forwards;
    }

    .hero-trust {
      font-size: 13px; color: rgba(247,244,238,0.8);
      margin-bottom: 20px; letter-spacing: 0.06em;
      opacity: 0; animation: fadeUp 1s 0.9s ease forwards;
      background: rgba(0,0,0,0.25); display: inline-flex;
      align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 20px;
      border: 1px solid rgba(200,169,110,0.3);
    }
    .hero-stars { color: #f5c842; font-size: 11px; letter-spacing: 2px; }
    .hero-trust-label { color: rgba(247,244,238,0.75); }
    .hero-price {
      font-size: 13px; color: rgba(247,244,238,0.55);
      margin-bottom: 28px; letter-spacing: 0.04em;
      opacity: 0; animation: fadeUp 1s 1.3s ease forwards;
    }
    .hero-price strong { color: var(--gold-xl); font-size: 16px; font-weight: 400; }

    .hero-perperson {
      font-size: 11px; color: rgba(247,244,238,0.45); letter-spacing: 0.06em;
      margin-top: -20px; margin-bottom: 28px;
      opacity: 0; animation: fadeUp 1s 1.4s ease forwards;
    }
    /* ── EXCLUSIVITY STRIP ──────────────────────────────────────────── */
    .excl-strip {
      background: var(--paper); border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      display: flex; justify-content: center; gap: 0;
      flex-wrap: wrap;
    }
    .excl-item {
      display: flex; align-items: center; gap: 10px;
      padding: 18px 36px; border-right: 1px solid var(--rule);
      flex: 1; min-width: 200px;
    }
    .excl-item:last-child { border-right: none; }
    .excl-icon { font-size: 18px; flex-shrink: 0; }
    .excl-text { font-size: 12px; font-weight: 400; color: var(--black); line-height: 1.4; }
    .excl-text strong { font-weight: 600; display: block; }
    @media (max-width: 700px) {
      .excl-item { border-right: none; border-bottom: 1px solid var(--rule); padding: 14px 24px; }
      .excl-item:last-child { border-bottom: none; }
    }
    /* ── AVAIL STRIP ────────────────────────────────────────────────── */
    .avail-strip {
      background: var(--dark); padding: 10px 48px;
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      border-bottom: 1px solid rgba(196,150,90,0.15);
    }
    .avail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(232,217,192,0.5); white-space: nowrap; }
    .avail-months { display: flex; gap: 8px; flex-wrap: wrap; }
    .avail-m { display: flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 300; color: rgba(247,244,238,0.7); }
    .avail-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .avail-dot.free  { background: #4caf50; }
    .avail-dot.part  { background: #ff9800; }
    .avail-dot.full  { background: #ef5350; }
    .avail-next { margin-left: auto; font-size: 11px; font-weight: 300;
      color: rgba(247,244,238,0.55); white-space: nowrap; }
    @media (max-width: 900px) { .avail-strip { padding: 10px 24px; } .avail-next { display: none; } }
    /* ── KONZEPT CTA ────────────────────────────────────────────────── */
    .konzept-cta {
      display: inline-block; margin-top: 28px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
      text-decoration: none; transition: opacity 0.2s;
    }
    .konzept-cta:hover { opacity: 0.7; }
    /* ── HERO SPLIT SLIDE ───────────────────────────────────────────── */
    .hero-slide-split { background-image: url('fotos-webp/detox-sommer2026-101.webp'); background-size: cover; background-position: center center; }
    .hero-split-l, .hero-split-r { display: none; }
    @media (max-width: 600px) {
      .hero-slide-split { flex-direction: column; }
    }

    /* ── FAQ ────────────────────────────────────────────────────────── */
    .faq-section { background: var(--cream); padding: 88px 48px; }
    .faq-list { max-width: 780px; margin: 48px auto 0; }
    details.faq-item {
      border-top: 1px solid var(--rule); overflow: hidden;
    }
    details.faq-item:last-child { border-bottom: 1px solid var(--rule); }
    details.faq-item summary {
      list-style: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; gap: 16px;
      font-size: 15px; font-weight: 400; color: var(--black);
      font-family: 'Cormorant Garamond', serif;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary::after {
      content: '+'; font-size: 22px; font-weight: 300; color: var(--gold);
      flex-shrink: 0; transition: transform 0.25s;
    }
    details.faq-item[open] summary::after { content: '−'; }
    .faq-answer {
      font-size: 13px; font-weight: 300; color: var(--mid);
      line-height: 1.8; padding: 0 0 22px;
    }

    .hero-cta {
      display: inline-block; font-size: 10px; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--black); background: var(--gold);
      padding: 16px 44px; transition: background 0.3s;
      opacity: 0; animation: fadeUp 1s 1.5s ease forwards;
    }
    .hero-cta:hover { background: var(--gold-l); }
    @media (max-width: 767px) { .hero-cta { display: none; } }
    .hero-inquiry {
      display: block; margin-top: 12px;
      font-size: 11px; font-weight: 300; letter-spacing: 0.04em;
      color: rgba(232,217,192,0.6); text-decoration: none;
      transition: color 0.2s;
    }
    .hero-inquiry:hover { color: var(--gold-l); }
    @media (max-width: 767px) { .hero-inquiry { display: none; } }
    .hero-dots {
      position: absolute; bottom: 36px; right: 48px;
      z-index: 3; display: flex; gap: 8px;
    }
    .hero-dot {
      width: 28px; height: 1px;
      background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s;
    }
    .hero-dot.active { background: var(--gold); }
    .scroll-hint {
      position: absolute; bottom: 16px; left: 50%;
      transform: translateX(-50%); z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: fadeIn 1s 2s ease forwards;
    }
    .scroll-hint span {
      font-size: 9px; font-weight: 500; letter-spacing: 0.25em;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
    }
    .scroll-arrow {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

    /* ── KONZEPT ────────────────────────────────────────────────── */
    .konzept-section {
      background: var(--dark); padding: 96px 48px;
      text-align: center; border-bottom: 1px solid rgba(196,150,90,0.12);
    }
    .konzept-eyebrow {
      font-size: 9px; font-weight: 600; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
    }
    .konzept-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 5vw, 62px); font-weight: 300;
      color: var(--white); line-height: 1.15; margin-bottom: 0;
    }
    .konzept-divider {
      width: 40px; height: 1px; background: rgba(196,150,90,0.5);
      margin: 40px auto;
    }
    .konzept-body {
      font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6);
      line-height: 1.9; max-width: 580px; margin: 0 auto 16px;
    }
    .konzept-body:last-child { margin-bottom: 0; }
    .quote-sub {
      font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 20px;
    }

    /* ── TAGLINE / STATS ─────────────────────────────────────────── */
    .tagline-section {
      background: var(--dark); padding: 96px 48px;
      text-align: center; border-top: 1px solid var(--rule);
    }
    .tagline-super {
      font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
    }
    .tagline-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 3.5vw, 42px); font-weight: 300;
      line-height: 1.45; color: var(--cream);
      max-width: 780px; margin: 0 auto 48px;
    }
    .tagline-text em { font-style: italic; color: var(--gold-l); }
    .tagline-divider {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      margin: 0 auto 48px;
    }
    .stats {
      display: flex; justify-content: center;
      gap: 0; flex-wrap: nowrap; max-width: 1100px; margin: 0 auto;
    }
    .stat { padding: 28px 32px; border-left: 1px solid var(--rule); text-align: center; flex: 1; }
    .stat:first-child { border-left: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 6px;
    }
    .stat-label {
      font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--mid);
    }

    /* ── SPLIT SECTIONS ──────────────────────────────────────────── */
    .split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
    .split.reverse { direction: rtl; }
    .split.reverse > * { direction: ltr; }
    .split-photo { position: relative; overflow: hidden; }
    .split-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
    .split-photo:hover img { transform: scale(1.04); }
    .split-kb-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1);
    }
    .split-kb-slide.active { opacity: 1; }
    .split-kb-dots {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; gap: 8px;
    }
    .split-kb-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.35); cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .split-kb-dot.active { background: var(--gold); transform: scale(1.3); }
    .split-kb-hint {
      position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
      z-index: 3; font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.45);
      white-space: nowrap; pointer-events: none;
      animation: scrollPulse 2s ease-in-out infinite;
    }
    .split-kb-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 3; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.2);
      color: #fff; width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 22px; user-select: none; line-height: 1;
      backdrop-filter: blur(4px); transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .split-kb-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
    .split-kb-arrow.prev { left: 16px; }
    .split-kb-arrow.next { right: 16px; }
    .penthouse-wrapper { position: relative; }
    .stube-wrapper { position: relative; }
    .stube-wrapper .split { min-height: calc(100vh - 72px); }
    .penthouse-wrapper .split { min-height: calc(100vh - 72px); }
    .split-text {
      background: var(--dark); padding: 72px 60px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .split-text.light { background: var(--cream); color: var(--black); }
    .split-eyebrow {
      font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    }
    .split-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3.5vw, 44px); font-weight: 400;
      line-height: 1.2; color: inherit; margin-bottom: 24px;
    }
    .split-text.light .split-title { color: var(--black); }
    .split-body {
      font-size: 15px; font-weight: 300; line-height: 1.85;
      color: var(--mid); max-width: 420px; margin-bottom: 20px;
    }
    .split-text.light .split-body { color: #6B6560; }
    .split-link {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); transition: gap 0.3s;
      margin-top: 12px;
    }
    .split-link::after { content: '→'; font-size: 14px; }
    .split-link:hover { gap: 18px; }

    /* ── QUOTE ───────────────────────────────────────────────────── */
    .quote-section {
      position: relative; height: 60vh; min-height: 400px;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .quote-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center 30%;
      transition: transform 8s ease;
    }
    .quote-section:hover .quote-bg { transform: scale(1.03); }
    .quote-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); }
    .quote-content {
      position: relative; z-index: 1;
      text-align: center; padding: 0 48px; max-width: 760px;
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px; line-height: 0.5; color: var(--gold);
      display: block; margin-bottom: 24px;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(20px, 3vw, 32px); font-weight: 300;
      font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 20px;
    }
    .quote-attr {
      font-size: 10px; font-weight: 500; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold-l);
    }

    /* ── SECTION HEADER ──────────────────────────────────────────── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-eyebrow {
      font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 50px); font-weight: 400;
      color: var(--black); line-height: 1.2; margin-bottom: 16px;
    }
    .section-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto; }

    /* ── ROOMS ───────────────────────────────────────────────────── */
    .rooms-section { background: var(--cream); padding: 88px 48px; }
    .rooms-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; max-width: 1200px; margin: 0 auto;
    }
    .room-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
    .room-card.large { grid-column: span 2; aspect-ratio: 16/9; }
    .room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .room-card:hover img { transform: scale(1.06); }
    .room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); }
    .room-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; }
    .room-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 3px; }
    .room-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; color: var(--gold-l); }

    /* ── ROOMS TABS ──────────────────────────────────────────────── */
    .rooms-tabs { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
    .rooms-tab {
      padding: 8px 24px; font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
      text-transform: uppercase; border: 1px solid rgba(28,27,26,0.2);
      background: transparent; color: var(--mid); cursor: pointer; transition: all 0.2s;
    }
    .rooms-tab.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
    .rooms-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }

    /* ── FLOOR PLAN ──────────────────────────────────────────────── */
    .fp-wrap { max-width: 900px; margin: 0 auto; padding: 32px 0 0; }
    .fp-floor-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 24px; }
    .fp-floor-tab {
      padding: 7px 20px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; border: 1px solid rgba(28,43,58,0.25);
      background: transparent; color: var(--mid); cursor: pointer; transition: all 0.2s;
    }
    .fp-floor-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .fp-floor { display: none; }
    .fp-floor.active { display: block; }
    .fp-img-wrap { position: relative; display: inline-block; width: 100%; user-select: none; }
    .fp-img { width: 100%; height: auto; display: block; border-radius: 4px; }
    .fp-spot {
      position: absolute; cursor: pointer;
      background: rgba(184,150,106,0); border: 2px solid transparent;
      border-radius: 3px; transition: background 0.2s, border-color 0.2s;
      display: flex; align-items: flex-end; padding: 4px 6px;
    }
    .fp-spot:hover, .fp-spot.active {
      background: rgba(184,150,106,0.18); border-color: rgba(184,150,106,0.6);
    }
    .fp-spot-label { display: none; }
    .fp-tooltip {
      position: fixed; z-index: 999; background: var(--navy);
      border-radius: 6px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.35);
      width: 240px; pointer-events: none; opacity: 0; transition: opacity 0.15s;
      display: none;
    }
    .fp-tooltip.visible { opacity: 1; }
    .fp-tip-photo { width: 100%; height: 140px; object-fit: cover; display: block; }
    .fp-tip-body { padding: 10px 12px 12px; }
    .fp-tip-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 400; color: var(--cream); margin-bottom: 3px; }
    .fp-tip-sub { font-size: 10px; font-weight: 300; color: var(--mid); line-height: 1.5; }
    @media (max-width: 600px) {
      .fp-tooltip { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); width: calc(100vw - 32px); max-width: 340px; pointer-events: auto; }
      .fp-spot-label { font-size: 7px; }
    }

    /* ── GRUNDRISS WIDGET TOKENS ─────────────────────────────────── */
    .ag-explorer {
      --ag-gold:      #B8966A;
      --ag-gold-soft: rgba(184,150,106,.18);
      --ag-ink:       #1C2B3A;
      --ag-card:      #F7F4EE;
      --ag-line:      #E8D9C0;
      --ag-font-display: 'Cormorant Garamond', Georgia, serif;
      --ag-font-body:    'Lato', system-ui, sans-serif;
    }
    .ag-lb { padding: 20px clamp(48px,10vw,160px) 20px !important; }
    .ag-lb-body { max-height: 68vh !important; }
    .ag-lb-body img { max-height: 68vh !important; background: #F7F4EE !important; }
    .ag-stage { aspect-ratio: unset !important; height: auto !important; overflow: visible !important; }
    .ag-stage img { width: auto !important; height: auto !important; max-width: 100% !important; max-height: 300px !important; object-fit: unset !important; display: block !important; margin: 0 auto !important; }
    @media (max-width: 900px) { .ag-panel { display: none !important; } }

    /* ── AUSSTATTUNG ──────────────────────────────────────────────── */
    .aust-section { background: var(--paper); padding: 80px 48px; }
    .aust-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 32px; }
    .aust-item { display: flex; gap: 14px; align-items: flex-start; }
    .aust-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
    .aust-name { font-size: 13px; font-weight: 400; color: var(--black); display: block; line-height: 1.4; }
    .aust-sub { font-size: 11px; font-weight: 300; color: var(--mid); display: block; margin-top: 2px; line-height: 1.5; }
    .aust-badge { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 2px 6px; margin-top: 4px; }
    .aust-footer { max-width: 1100px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(28,27,26,0.1); text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); }

    /* ── FEATURES STRIP ──────────────────────────────────────────── */
    .features-strip {
      background: var(--black); padding: 72px 48px;
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    }
    .feature { padding: 28px 32px; border-left: 1px solid var(--rule); text-align: center; }
    .feature:first-child { border-left: none; }
    .feature-icon { font-size: 28px; margin-bottom: 14px; display: block; }
    .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--cream); margin-bottom: 8px; }
    .feature-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; }

        /* ── REVIEWS ─────────────────────────────────────────────────── */
    .reviews-section { background: var(--cream); padding: 88px 48px; }
    .reviews-section .section-title { color: var(--black); }
    .reviews-avg {
      text-align: center; margin-bottom: 48px;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
    }
    .reviews-avg-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px; font-weight: 300; color: var(--gold); line-height: 1;
    }
    .reviews-stars-lg { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
    .reviews-avg-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #6B6560; }
    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; max-width: 1200px; margin: 0 auto;
    }
    .review-card {
      background: var(--white); padding: 32px 28px;
      border-top: 2px solid var(--gold);
      display: flex; flex-direction: column; gap: 12px;
    }
    .review-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
    .review-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--black); line-height: 1.25; }
    .review-body { font-size: 13px; font-weight: 300; color: #6B6560; line-height: 1.75; flex: 1; }
    .review-author { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding-top: 12px; border-top: 1px solid var(--rule-l); }
    .review-card.review-hidden { display: none; }
    .review-card.review-visible { display: flex; animation: reviewFadeIn 0.5s ease forwards; }
    .reviews-grid .review-card.review-hidden:nth-child(-n+6) { display: flex; }
    @keyframes reviewFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
    .reviews-load-more {
      text-align: center; margin-top: 40px;
    }
    .reviews-load-more-btn {
      font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--black); border: 1px solid rgba(0,0,0,0.25);
      padding: 14px 36px; background: transparent; cursor: pointer;
      transition: all 0.3s; display: inline-block;
    }
    .reviews-load-more-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

    /* ── PRESS ─────────────────────────────────────────────────── */
    .press-section { background: var(--navy); padding: 88px 48px; }
    .press-section .section-eyebrow { color: var(--gold); }
    .press-section .section-title { color: var(--cream); }
    .press-section .section-rule { background: var(--gold); opacity: 0.4; }
    .press-cards { max-width: 960px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .press-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,106,0.2); border-top: 3px solid var(--gold); padding: 40px 36px 32px; display: flex; flex-direction: column; transition: transform 0.3s ease, background 0.3s ease; position: relative; }
    .press-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 96px; line-height: 0.75; color: var(--gold); opacity: 0.35; display: block; margin-bottom: 20px; }
    .press-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
    .press-card-outlet { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .press-card-quote { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400; font-style: italic; color: var(--cream); line-height: 1.45; margin: 0 0 20px; flex: 1; }
    .press-card-meta { font-size: 11px; font-weight: 300; color: rgba(247,244,238,0.45); margin-bottom: 20px; }
    .press-card-link { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; align-self: flex-start; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
    .press-card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.press-card-links { display: flex; flex-direction: column; gap: 8px; margin-top: auto; position: relative; z-index: 2; }
.press-card-links a { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.press-card-links a:hover { color: #e8d9c0; }
    .press-card-link:hover { border-color: var(--gold); }

    /* ── INSTAGRAM / UGC ────────────────────────────────────────── */
    .insta-section { background: var(--paper); padding: 88px 48px; }
    .stories-row { display: flex; justify-content: center; gap: 36px; margin: 40px 0 52px; flex-wrap: wrap; }
    .story-bubble { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
    .story-ring { width: 84px; height: 84px; border-radius: 50%; padding: 3px; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); transition: opacity 0.3s; }
    .story-ring.viewed { background: #c8c0b8; }
    .story-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--paper); display: block; }
    .story-label { font-size: 11px; color: var(--mid); letter-spacing: 0.06em; text-align: center; }
    .ugc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 780px; margin: 0 auto 40px; }
    .ugc-item { aspect-ratio: 1; overflow: hidden; display: block; position: relative; }
    .ugc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .ugc-item:hover img { transform: scale(1.07); }
    .insta-cta-wrap { text-align: center; }
    .insta-cta-link { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
    .insta-cta-link:hover { color: var(--gold); border-color: var(--gold); }

    /* ── STORY OVERLAY ──────────────────────────────────────────── */
    .story-overlay { position: fixed; inset: 0; z-index: 11000; background: #000; display: flex; align-items: center; justify-content: center; }
    .story-overlay.hidden { display: none; }
    .story-header { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 420px; padding: 14px 16px 0; z-index: 2; pointer-events: none; }
    .story-progress-bars { display: flex; gap: 3px; margin-bottom: 10px; }
    .story-prog-seg { flex: 1; height: 2px; background: rgba(255,255,255,0.35); border-radius: 2px; overflow: hidden; }
    .story-prog-fill { height: 100%; background: #fff; width: 0%; }
    .story-prog-fill.done { width: 100%; }
    .story-prog-fill.active { animation: storyProgress var(--dur,4s) linear forwards; }
    @keyframes storyProgress { from { width: 0% } to { width: 100% } }
    .story-user { display: flex; align-items: center; gap: 10px; pointer-events: none; }
    .story-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.6); }
    .story-username { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Lato', sans-serif; }
    .story-ts { color: rgba(255,255,255,0.55); font-size: 12px; font-family: 'Lato', sans-serif; }
    .story-close { position: absolute; top: 14px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.85); font-size: 26px; cursor: pointer; z-index: 3; line-height: 1; padding: 4px; }
    .story-close:hover { color: #fff; }
    .story-media { position: relative; max-width: 420px; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; }
    .story-media img { max-height: 100vh; max-width: 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
    .story-tap-prev { position: absolute; left: 0; top: 0; bottom: 0; width: 35%; cursor: pointer; z-index: 2; }
    .story-tap-next { position: absolute; right: 0; top: 0; bottom: 0; width: 65%; cursor: pointer; z-index: 2; }

    /* ── GALLERY ─────────────────────────────────────────────────── */
    .gallery-section { background: var(--dark); padding: 88px 48px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px; max-width: 1400px; margin: 48px auto 0;
    }
    .gallery-item { overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
    .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0); transition: background 0.3s;
    }
    .gallery-item:hover::after { background: rgba(0,0,0,0.15); }

    /* ── PRESS ─────────────────────────────────────────────────── */
    .press-section { background: var(--navy); padding: 88px 48px; }
    .press-section .section-eyebrow { color: var(--gold); }
    .press-section .section-title { color: var(--cream); }
    .press-section .section-rule { background: var(--gold); opacity: 0.4; }
    .press-cards { max-width: 960px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .press-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,106,0.2); border-top: 3px solid var(--gold); padding: 40px 36px 32px; display: flex; flex-direction: column; transition: transform 0.3s ease, background 0.3s ease; position: relative; }
    .press-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 96px; line-height: 0.75; color: var(--gold); opacity: 0.35; display: block; margin-bottom: 20px; }
    .press-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
    .press-card-outlet { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .press-card-quote { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400; font-style: italic; color: var(--cream); line-height: 1.45; margin: 0 0 20px; flex: 1; }
    .press-card-meta { font-size: 11px; font-weight: 300; color: rgba(247,244,238,0.45); margin-bottom: 20px; }
    .press-card-link { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; align-self: flex-start; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
    .press-card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
    .press-card-link:hover { border-color: var(--gold); }

    /* ── GALLERY EXPAND ─────────────────────────────────────────── */
    .gallery-grid.collapsed .gallery-item:nth-child(n+31) { display: none; }
    .gallery-more-wrap { text-align: center; margin-top: 32px; }
    .gallery-more-btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--black); background: var(--gold); padding: 14px 36px;
      border: none; cursor: pointer; transition: background 0.3s;
    }
    .gallery-more-btn:hover { background: var(--gold-l); }

    /* ── NATURE ──────────────────────────────────────────────────── */
    .nature-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
    .nature-panel { position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 48px 48px 20px; }
    .nature-slides { position: absolute; inset: 0; }
    .nature-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.4s ease;
    }
    .nature-slide.active { opacity: 1; }
    .nature-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 45%, transparent 70%); z-index: 1; }
    .nature-content { position: relative; z-index: 2; }
    .nature-season { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
    .nature-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.4vw, 30px); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
    .nature-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
    .nature-dots { display: flex; gap: 6px; margin-top: 16px; }
    .nature-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.35); cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .nature-dot.active { background: var(--gold); transform: scale(1.3); }
    .nature-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 3; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.8); font-size: 20px; line-height: 1;
      width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s;
      user-select: none; backdrop-filter: blur(4px);
    }
    .nature-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
    .nature-arrow.prev { left: 16px; }
    .nature-arrow.next { right: 16px; }

    /* ── AKTIVITÄTEN ─────────────────────────────────────────────── */
    .activities-section { background: var(--cream); padding: 88px 48px; }
    .activities-section .section-title { color: var(--black); }
    .activities-section .act-card { background: var(--white); border-color: rgba(0,0,0,0.1); }
    .activities-section .act-card:hover { border-color: rgba(196,150,90,0.5); }
    .activities-section .act-card-title { color: var(--black); }
    .activities-section .act-card-body { color: #6B6560; }
    .activities-section .act-tag { color: rgba(0,0,0,0.5); background: rgba(0,0,0,0.06); }
    .activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1200px; margin: 48px auto 0; }
    .activity-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
    .activity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
    .activity-card:hover img { transform: scale(1.06); }
    .activity-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); }
    .activity-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px; }
    .activity-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
    .activity-desc { font-size: 11px; font-weight: 300; color: var(--gold-l); line-height: 1.5; }

    /* ── AKTIVITÄTEN TABS ───────────────────────────────────────── */
    .act-tabs {
      display: flex; justify-content: center; gap: 0;
      max-width: 480px; margin: 48px auto 48px;
      border: 1px solid var(--rule);
    }
    .act-tab {
      flex: 1; padding: 13px 16px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--mid); background: transparent; border: none; border-left: 1px solid var(--rule);
      cursor: pointer; transition: color 0.3s, background 0.3s;
    }
    .act-tab:first-child { border-left: none; }
    .act-tab.active { color: var(--black); background: var(--gold); }
    .act-tab:not(.active):hover { color: var(--gold-l); }
    .act-panel { display: none; max-width: 1200px; margin: 0 auto; }
    .act-panel.active { display: block; }
    .act-sublabel {
      font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin: 40px 0 18px; padding-bottom: 10px;
      border-bottom: 1px solid var(--rule);
    }
    .act-sublabel:first-child { margin-top: 0; }
    .act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .act-grid.cols2 { grid-template-columns: repeat(2, 1fr); }
    .act-card {
      background: rgba(255,255,255,0.03); border: 1px solid var(--rule);
      padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
      transition: border-color 0.3s;
    }
    .act-card:hover { border-color: rgba(196,150,90,0.45); }
    .act-card-head { display: flex; align-items: flex-start; gap: 12px; }
    .act-card-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
    .act-card-titles { display: flex; flex-direction: column; gap: 4px; }
    .act-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 400; color: var(--cream); line-height: 1.2;
    }
    .act-card-badge {
      font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold);
    }
    .act-card-body { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.75; flex: 1; }
    .act-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
    .act-tag {
      font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.45);
      background: rgba(255,255,255,0.05); padding: 3px 9px;
    }

    /* ── HOST / GASTGEBER ────────────────────────────────────────── */
    .host-section {
      background: var(--dark); padding: 96px 48px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .host-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .host-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--cream); line-height: 1.25; margin-bottom: 28px; }
    .host-body { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 16px; }
    .host-contacts { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--rule); }
    .host-contact-row { display: flex; align-items: center; gap: 14px; }
    .host-contact-icon { font-size: 15px; flex-shrink: 0; }
    .host-contact-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7); }
    .host-contact-text a { color: var(--gold-l); transition: color 0.2s; }
    .host-contact-text a:hover { color: var(--gold); }
    .host-photo { width: 50%; border-radius: 2px; display: block; border: 1px solid rgba(196,150,90,0.3); }

    /* ── LAGE ────────────────────────────────────────────────────── */
    .lage-section { background: var(--cream); padding: 88px 48px; }
    .lage-section .section-title { color: var(--black); }
    .lage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 48px auto 0; align-items: start; }
    .lage-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--black); margin-bottom: 16px; }
    .lage-text p { font-size: 13.5px; font-weight: 300; color: #6B6560; line-height: 1.85; margin-bottom: 16px; }
    .lage-info { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
    .lage-row { display: flex; gap: 14px; align-items: flex-start; }
    .lage-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
    .lage-val { font-size: 13px; font-weight: 300; color: #6B6560; line-height: 1.55; }
    .lage-val strong { color: var(--black); font-weight: 500; }
    .lage-map { width: 100%; height: 380px; border: none; display: block; }
    .lage-map-open { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); transition: gap 0.3s; }
    .lage-map-open::after { content: '→'; font-size: 14px; }
    .lage-map-open:hover { gap: 16px; color: var(--gold); }

    /* ── BUCHUNG ─────────────────────────────────────────────────── */
    .booking-section { background: var(--navy); padding: 96px 48px; }
    .booking-intro { text-align: center; max-width: 680px; margin: 0 auto 64px; }
    .booking-intro .section-eyebrow { color: var(--gold-l); }
    .booking-intro .section-title { color: var(--cream); }
    .booking-intro p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; margin-top: 16px; }
    .booking-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto 64px; }
    .book-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(196,150,90,0.25);
      padding: 36px 28px; display: flex; flex-direction: column; gap: 12px;
      transition: border-color 0.3s, background 0.3s;
    }
    .book-card:hover { border-color: var(--gold); background: rgba(196,150,90,0.06); }
    .book-card-icon { font-size: 28px; }
    .book-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--cream); }
    .book-card-desc { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.65; flex: 1; }
    .book-btn {
      margin-top: 8px; display: inline-block;
      font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; padding: 13px 26px; transition: all 0.3s;
    }
    .book-btn.gold { background: var(--gold); color: var(--black); }
    .book-btn.gold:hover { background: var(--gold-l); }
    .book-btn.outline { border: 1px solid rgba(196,150,90,0.5); color: var(--gold); }
    .book-btn.outline:hover { border-color: var(--gold); background: rgba(196,150,90,0.08); }
    .book-btn.green { background: #25D366; color: var(--white); }
    .book-btn.green:hover { background: #20c05c; }
    .book-contact-link {
      display: block; margin-top: 8px;
      font-size: 12px; font-weight: 300; color: var(--mid);
      text-decoration: none; transition: color 0.2s;
    }
    .book-contact-link:hover { color: var(--gold); }
    .booking-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1100px; margin: 0 auto; padding-top: 48px; border-top: 1px solid rgba(196,150,90,0.2); }
    .bdet { padding: 0 32px; border-left: 1px solid rgba(196,150,90,0.15); text-align: center; }
    .bdet:first-child { border-left: none; }
    .bdet-label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .bdet-val { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75); }

    /* ── GESCHICHTE TIMELINE ─────────────────────────────────────── */
    .geschichte-section { background: var(--black); padding: 88px 0 0; }
    .geschichte-section .section-header { padding: 0 48px 72px; }
    .gesch-intro { max-width: 700px; margin: -24px auto 0; text-align: center; padding: 0 48px 80px; }
    .gesch-intro p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 10px; }
    .gesch-intro em { font-style: italic; color: var(--gold-l); }
    .tl-entry { display: grid; grid-template-columns: 1fr 1fr; }
    .tl-photo { position: relative; overflow: hidden; min-height: 420px; }
    .tl-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
    .tl-photo:hover img { transform: scale(1.04); }
    .tl-photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 8px 16px; background: rgba(0,0,0,0.55);
      font-size: 10px; font-weight: 400; letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55); text-align: center;
    }
    .tl-text {
      background: var(--dark); padding: 64px 56px;
      display: flex; flex-direction: column; justify-content: center;
      border-top: 1px solid var(--rule);
    }
    .tl-entry:first-of-type .tl-text { border-top: none; }
    .tl-entry.rev .tl-photo { order: 2; }
    .tl-entry.rev .tl-text { order: 1; background: var(--black); }
    .tl-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .tl-year-deco {
      font-family: 'Cormorant Garamond', serif; font-size: 88px; font-weight: 300;
      color: rgba(196,150,90,0.1); line-height: 1; margin-bottom: -16px; display: block;
      letter-spacing: -0.02em;
    }
    .tl-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 38px); font-weight: 400; color: var(--cream); line-height: 1.2; margin-bottom: 22px; }
    .tl-body { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.9; }
    .tl-body p { margin-bottom: 12px; }
    .tl-body p:last-child { margin-bottom: 0; }
    .tl-body strong { color: var(--cream); font-weight: 400; }

    /* ── FOOTER ──────────────────────────────────────────────────── */
    footer {
      background: var(--black); border-top: 1px solid var(--rule);
      padding: 56px 48px;
      display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center;
    }
    .footer-logo img { height: 90px; width: auto; display: block; }
    .footer-links { display: flex; gap: 32px; list-style: none; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-social { display: flex; gap: 20px; }
    .footer-social a { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
    .footer-social a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: rgba(140,136,128,0.5); letter-spacing: 0.05em; }
    .footer-desc { font-size: 10px; color: rgba(140,136,128,0.35); max-width: 680px; margin: 10px auto 0; line-height: 1.6; }

    /* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 9999;
      width: 54px; height: 54px; border-radius: 50%; background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35); transition: transform 0.3s, box-shadow 0.3s;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* ── ANIMATIONS ──────────────────────────────────────────────── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── LIGHTBOX ────────────────────────────────────────────────── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 10000;
      background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }

    .lightbox-close {
      position: absolute; top: 24px; right: 32px;
      font-size: 32px; color: rgba(255,255,255,0.6); cursor: pointer;
      line-height: 1; transition: color 0.2s;
    }
    .lightbox-close:hover { color: var(--gold); }
    .lightbox-prev, .lightbox-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      font-size: 32px; color: rgba(255,255,255,0.5); cursor: pointer;
      padding: 16px; transition: color 0.2s; user-select: none;
    }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
    .lightbox-img-wrap {
      position: relative; display: inline-block;
      max-width: 90vw; max-height: 90vh;
    }
    .lightbox-img-wrap img {
      display: block; max-width: 90vw; max-height: 90vh; object-fit: contain;
    }
    .lightbox-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 9px 18px 11px;
      background: rgba(0,0,0,0.58);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(12px, 1.4vw, 15px); font-style: italic; font-weight: 300;
      color: rgba(255,255,255,0.88); text-align: center; letter-spacing: 0.04em;
      pointer-events: none;
    }
    .lightbox-counter {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
    }

    /* ── ROOM GALLERY MODAL ─────────────────────────────────────── */
    .rg-modal {
      display: none; position: fixed; inset: 0; z-index: 10500;
      background: rgba(0,0,0,0.94); flex-direction: column;
      align-items: center; justify-content: center;
    }
    .rg-modal.open { display: flex; }
    .rg-close {
      position: absolute; top: 22px; right: 30px;
      background: none; border: none; font-size: 32px;
      color: rgba(255,255,255,0.5); cursor: pointer; line-height: 1;
      transition: color 0.2s;
    }
    .rg-close:hover { color: var(--gold); }
    .rg-img-wrap { max-width: 88vw; max-height: 78vh; display: flex; align-items: center; justify-content: center; }
    .rg-img-wrap img { max-width: 88vw; max-height: 78vh; object-fit: contain; border: 1px solid rgba(196,150,90,0.2); transition: opacity 0.25s; }
    .rg-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.2);
      color: #fff; width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 24px; z-index: 2;
      backdrop-filter: blur(4px); transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .rg-arrow:hover { background: var(--gold); border-color: var(--gold); color: #000; }
    .rg-prev { left: 20px; }
    .rg-next { right: 20px; }
    .rg-footer { position: absolute; bottom: 20px; text-align: center; }
    .rg-title { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
    .rg-dots { display: flex; gap: 8px; justify-content: center; }
    .rg-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s, transform 0.3s; }
    .rg-dot.active { background: var(--gold); transform: scale(1.3); }
    .room-card[data-room-gallery] { cursor: zoom-in; }
    .room-card[data-room-gallery] .room-overlay::after {
      content: '⊕'; position: absolute; top: 14px; right: 14px;
      font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1;
      text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }

    /* ── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .booking-options { grid-template-columns: 1fr; max-width: 500px; }
      .booking-details { grid-template-columns: 1fr 1fr; gap: 24px; }
      .bdet { border-left: none; border-top: 1px solid rgba(196,150,90,0.15); padding: 20px 0; }
      .bdet:nth-child(odd) { border-left: none; }
      .activities-grid { grid-template-columns: 1fr 1fr; }
      .act-grid { grid-template-columns: 1fr 1fr; }
      .act-grid.cols2 { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      #nav { padding: 0 24px; }
      .nav-links, .nav-book { display: none; }
      .nav-burger { display: flex; }
      .split, .host-section, .lage-grid { grid-template-columns: 1fr; gap: 0; }
      .split-photo { min-height: 300px; }
      .split.reverse { direction: ltr; }
      .split-text { padding: 48px 32px; }
      .rooms-grid { grid-template-columns: 1fr 1fr; }
      .room-card.large { grid-column: span 2; aspect-ratio: 4/3; }
      .features-strip { grid-template-columns: 1fr 1fr; }
      .aust-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
      .gallery-item { aspect-ratio: 4/3; }
      .nature-section { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .tagline-section { padding: 64px 24px; }
      .host-section { padding: 64px 24px; }
      .lage-section { padding: 64px 24px; }
      .lage-grid { grid-template-columns: 1fr; }
      .lage-map { height: 280px; }
      .tl-entry, .tl-entry.rev { grid-template-columns: 1fr; }
      .tl-entry.rev .tl-photo { order: 0; }
      .tl-entry.rev .tl-text { order: 1; }
      .tl-photo { min-height: 260px; }
      .tl-text { padding: 40px 28px; }
      .tl-year-deco { font-size: 60px; }
      .gesch-intro { padding: 0 24px 56px; }
      .geschichte-section .section-header { padding: 0 24px 48px; }
      .booking-details { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .rooms-grid { grid-template-columns: 1fr; }
      .room-card.large { grid-column: 1; }
      .features-strip { grid-template-columns: 1fr; }
      .aust-section { padding: 64px 24px; }
      .aust-grid { gap: 20px 24px; }
      .feature { border-left: none; border-top: 1px solid var(--rule); }
      .feature:first-child { border-top: none; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .stats { flex-direction: column; align-items: center; }
      .stat { border-left: none; border-top: 1px solid var(--rule); width: 100%; }
      .stat:first-child { border-top: none; }
      .reviews-grid { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: 1fr; }
      .act-grid, .act-grid.cols2 { grid-template-columns: 1fr; }
      .act-tabs { max-width: 100%; }
      .act-tab { font-size: 9px; padding: 12px 8px; }
      footer { padding: 40px 24px; }
      .footer-links { gap: 16px; }
      .booking-section { padding: 64px 24px; }
      .gallery-section, .rooms-section, .press-section { padding: 64px 24px; }
      .press-cards { grid-template-columns: 1fr; }
      .press-card { padding: 28px 24px; }
      .press-card::before { font-size: 64px; margin-bottom: 12px; }
      .booking-details { grid-template-columns: 1fr; }
      .hero-dots { right: 24px; }
    }



    /* ── STICKY CTA (mobile) ── */
    #stickyCta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 1900;
      padding: 12px 16px;
      background: rgba(13,13,11,0.97);
      border-top: 1px solid rgba(196,150,90,0.2);
      backdrop-filter: blur(8px);
    }
    #stickyCta a {
      display: block; width: 100%; text-align: center;
      font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--black);
      background: var(--gold); padding: 16px;
      transition: background 0.3s;
    }
    #stickyCta a:hover { background: var(--gold-l); }
    @media (max-width: 767px) { #stickyCta { display: block; } }
    /* ── COOKIE BANNER ───────────────────────────────────────────── */
    #cookieBanner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
      background: rgba(13,13,11,0.97);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(196,150,90,0.4);
      padding: 20px 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    #cookieBanner.visible { transform: translateY(0); }
    .cookie-text {
      font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.75);
      line-height: 1.65; flex: 1;
    }
    .cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
    .cookie-buttons { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
    .cookie-accept {
      font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
      background: var(--gold); color: var(--black);
      border: none; padding: 10px 24px; cursor: pointer; transition: background 0.3s;
    }
    .cookie-accept:hover { background: var(--gold-l); }
    .cookie-decline {
      font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(255,255,255,0.45); background: none; border: none;
      cursor: pointer; transition: color 0.2s; padding: 10px 4px;
    }
    .cookie-decline:hover { color: rgba(255,255,255,0.8); }
    @media (max-width: 600px) {
      #cookieBanner { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; }
      .cookie-buttons { width: 100%; }
      .cookie-accept { flex: 1; text-align: center; }
    }

    /* ── LANGUAGE SWITCHER ───────────────────────────────────────────── */
    .nav-left { display: flex; align-items: center; gap: 14px; }
    .lang-switcher {
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid rgba(196,150,90,0.4);
      border-radius: 3px; overflow: hidden;
    }
    .lang-btn {
      font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
      padding: 4px 9px;
      border-bottom: 1px solid rgba(196,150,90,0.3);
      color: rgba(255,255,255,0.6); transition: all 0.2s;
      background: transparent; text-decoration: none;
      display: flex; align-items: center; gap: 4px; line-height: 1.4;
    }
    .lang-btn:last-child { border-bottom: none; }
    .lang-btn:hover { color: var(--white); background: rgba(196,150,90,0.15); }
    .lang-btn.active { color: var(--gold); background: rgba(196,150,90,0.12); }
    .lang-flag { font-size: 12px; line-height: 1; }

    /* ── MOBILE IMAGE POSITION FIXES ─────────────────────────────── */
    @media (max-width: 900px) {
      .hero-slide-house { background-position: 72% center; }
      .slide-holzbalken { background-position: center 20%; }
    }
    /* Sommer 2026 hero: start zoomed out to show full landscape, Ken Burns zooms in */
    .hero-slide-sommer41 {
      background-size: 130% auto;
      background-repeat: no-repeat;
      background-position: center 48%;
      background-color: #111;
    }
    /* Mobile: switch landscape slides to cover so no black bars on portrait screens */
    @media (max-width: 600px) {
      .hero-slide-sommer41 {
        background-size: auto 130%;
        background-position: 55% 85%;
      }
      .hero-slide-s2 { background-image: url('fotos-webp/detox-sommer2026-48.webp') !important; background-position: center 35%; }
      .hero-slide-s3 { background-size: 92% auto !important; background-position: center 33% !important; background-repeat: no-repeat; background-color: #0d0b09; }
      .hero-slide-split { background-image: none; background-color: #0d0b09; display: flex; flex-direction: column; }
      .hero-split-r { display: none; }
      .hero-split-l { display: block; flex: 1; background-image: url('fotos-webp/detox-sommer2026-101.webp'); background-size: 92% auto; background-position: center 33%; background-repeat: no-repeat; }
      .hero-slide-exterior { background-position: 40% center; }
      .hero-slide-mountain  { background-position: center 25%; }
    }

/* ── LODGIFY ── */
    .lodgify-bar-wrap {
      background: var(--dark);
      padding: 24px 48px;
      border-bottom: 1px solid rgba(196,150,90,0.2);
    }
    @media (max-width: 900px) {
      .lodgify-bar-wrap { padding: 20px 24px; }
    }
    :root {
      --ldg-psb-background: #ffffff;
      --ldg-psb-border-radius: 0.42em;
      --ldg-psb-box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.1);
      --ldg-psb-padding: 14px;
      --ldg-psb-input-background: #ffffff;
      --ldg-psb-button-border-radius: 0px;
      --ldg-psb-color-primary: #c4965a;
      --ldg-psb-color-primary-lighter: #e2cbad;
      --ldg-psb-color-primary-darker: #624b2d;
      --ldg-psb-color-primary-contrast: #1a1a1a;
      --ldg-semantic-color-primary: #c4965a;
      --ldg-semantic-color-primary-lighter: #e2cbad;
      --ldg-semantic-color-primary-darker: #624b2d;
      --ldg-semantic-color-primary-contrast: #1a1a1a;
      --ldg-component-modal-z-index: 999;
    }
    #lodgify-search-bar { width: 100%; }
