/* ============================================================
   URBAN FAMILY LOFT — Design System
   ============================================================ */

:root {
  /* Palette: Industrial Loft Premium */
  --bg:           #FAF7F2;        /* warm off-white */
  --bg-alt:      #F2EDE6;         /* slightly deeper sand */
  --surface:     #FFFFFF;
  --surface-2:   #F7F3EC;
  --ink:         #1A1816;         /* warm black */
  --ink-2:       #3A3530;
  --muted:       #6B635C;
  --muted-2:     #A39C94;
  --line:        rgba(26, 24, 22, 0.08);
  --line-strong: rgba(26, 24, 22, 0.16);

  /* Accent: Industrial brass / warm bronze */
  --accent:       #B8804A;
  --accent-dark:  #8C5E33;
  --accent-light: #D9A05A;
  --accent-soft:  rgba(184, 128, 74, 0.10);

  /* Type */
  --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-accent:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-wide: 1440px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-2: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.06);
  --shadow-3: 0 8px 24px rgba(0,0,0,0.10), 0 24px 64px rgba(0,0,0,0.08);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med:  320ms;
  --t-slow: 600ms;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageIn 700ms var(--ease) both;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-body); letter-spacing: -0.01em; }
p  { margin: 0 0 var(--s-4); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

section { padding-block: clamp(var(--s-8), 10vw, var(--s-10)); }
section.tight { padding-block: var(--s-7); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--s-4);
  transition: background var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              padding var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  padding-block: var(--s-3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.nav-brand {
  display: flex; align-items: baseline; gap: var(--s-2);
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--t-med) var(--ease);
}
.nav-brand span:last-child { color: var(--accent); }
.site-header:not(.is-scrolled) .nav-brand { color: #fff; }
.site-header:not(.is-scrolled) .nav-brand span:last-child { color: var(--bg); }

.nav-links {
  display: flex; align-items: center; gap: var(--s-6);
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  opacity: 0.85;
  transition: opacity var(--t-fast), color var(--t-fast);
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.site-header:not(.is-scrolled) .nav-links a { color: #fff; opacity: 0.9; }
.site-header:not(.is-scrolled) .nav-links a:hover { color: var(--bg); opacity: 1; }

.nav-right { display: flex; align-items: center; gap: var(--s-4); }

.lang-switch {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.6);
}
.site-header:not(.is-scrolled) .lang-switch {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.lang-switch a {
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
  letter-spacing: 0.05em;
}
.site-header:not(.is-scrolled) .lang-switch a { color: #fff; }
.lang-switch a.is-active {
  background: var(--ink);
  color: var(--bg);
}
.site-header:not(.is-scrolled) .lang-switch a.is-active {
  background: var(--bg); color: var(--ink);
}

.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface); }
.btn .arr {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .arr { transform: translateX(3px); }

/* mobile nav */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  align-items: center; justify-content: center;
  color: #fff;
}
.site-header.is-scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 52%, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.20) 45%, rgba(0,0,0,0) 75%),
    linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0.62) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding-block: var(--s-9) var(--s-8);
  width: 100%;
}
.hero h1 {
  color: #fff;
  font-weight: 400;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: var(--s-5);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: #D9A05A;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 620px;
  color: #fff;
  margin-bottom: var(--s-6);
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.5);
}
.hero-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; }
.hero-price {
  flex-basis: 100%;
  margin-top: var(--s-2);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.5);
}
.hero-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
  display: flex; align-items: center; gap: var(--s-3);
  justify-content: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; flex: 0 0 32px; height: 1px; background: var(--accent);
}
.hero-eyebrow::after { display: none; }

.hero-scroll {
  position: absolute; bottom: var(--s-5); left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.7; transform-origin: top; }
  50%      { transform: scaleY(0.4); opacity: 1; }
}

/* ============================================================
   Highlights bar
   ============================================================ */
.highlights {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: var(--s-7);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.highlight {
  display: flex; align-items: flex-start; gap: var(--s-3);
  padding: var(--s-3) 0;
  animation: riseIn 700ms var(--ease) both;
}
.highlight:nth-child(2) { animation-delay: 70ms; }
.highlight:nth-child(3) { animation-delay: 140ms; }
.highlight:nth-child(4) { animation-delay: 210ms; }
.highlight:nth-child(5) { animation-delay: 280ms; }
.highlight:nth-child(6) { animation-delay: 350ms; }
.highlight:nth-child(7) { animation-delay: 420ms; }
.highlight:nth-child(8) { animation-delay: 490ms; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.highlight-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.highlight-icon svg { width: 22px; height: 22px; }
.highlight-text { padding-top: 8px; }
.highlight-text h4 { font-size: 0.98rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.highlight-text p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ============================================================
   Airbnb Review showcase
   ============================================================ */
.review-showcase {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--s-7), 8vw, var(--s-10)) var(--s-8);
  background:
    linear-gradient(90deg, rgba(250,247,242,0), rgba(255,255,255,0.78) 22%, rgba(255,255,255,0.78) 78%, rgba(250,247,242,0)),
    radial-gradient(circle at 50% 0%, rgba(184,128,74,0.12), transparent 42%),
    #faf7f2;
  color: var(--ink);
  border-block: 1px solid rgba(26,24,22,0.08);
}
.review-summary {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.review-proof {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 560px);
  align-items: center;
  justify-content: start;
  gap: var(--s-5);
}
.review-summary-copy .eyebrow {
  color: var(--accent);
}
.review-summary-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.96;
}
.review-metrics {
  display: flex;
  flex-direction: row;
  gap: var(--s-3);
}
.review-metric {
  flex: 1;
  min-width: 0;
  padding: var(--s-4);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(184,128,74,0.22);
  box-shadow: 0 22px 60px rgba(26,24,22,0.10);
}
.review-metric strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.review-metric > span {
  display: block;
  margin-top: var(--s-3);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
}
.review-marquee {
  width: 100%;
  overflow: hidden;
  padding-block: var(--s-2) var(--s-5);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.review-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--s-5);
  width: max-content;
  animation: reviewsMove 62s linear infinite;
  will-change: transform;
}
.review-card {
  flex: 0 0 clamp(360px, 30vw, 560px);
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(var(--s-5), 2.4vw, var(--s-7));
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(184,128,74,0.18);
  box-shadow: 0 24px 70px rgba(26,24,22,0.10);
}
.review-card span {
  color: #e89b12;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.review-card p {
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.35vw, 1.55rem);
  line-height: 1.42;
  font-weight: 800;
  margin: var(--s-5) 0;
}
.review-card small {
  color: var(--muted-2);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}
@keyframes reviewsMove {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============================================================
   Intro
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.intro-text h2 { margin-bottom: var(--s-5); }
.intro-text p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-2); }
.intro-text p + p { margin-top: var(--s-4); }
.intro-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.stat {
  text-align: center;
  padding: var(--s-3);
  border-radius: var(--r-md);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Room sections
   ============================================================ */
.room {
  padding-block: clamp(var(--s-8), 9vw, var(--s-10));
}
.room-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: center;
  margin-bottom: var(--s-7);
}
.room-head.reversed .room-feature { order: 2; }
.room-head .room-text { padding: var(--s-4) 0; }
.room-text h2 { margin-bottom: var(--s-4); }
.room-text .room-meta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-4);
}
.room-text p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; }
.room-feature {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.room-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.16) 38%, transparent 58%);
  transform: translateX(-120%);
  animation: imageSheen 8s var(--ease) infinite;
  pointer-events: none;
}
@keyframes imageSheen {
  0%, 55% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}
.room-feature img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room-feature:hover img { transform: scale(1.03); }
.room-feature[data-clickable] { cursor: zoom-in; }

.room-list {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-top: var(--s-4);
}
.room-list li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  color: var(--ink-2);
  font-size: 0.96rem;
}
.room-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  cursor: zoom-in;
  transition: transform var(--t-fast);
}
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med) var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.25));
  opacity: 0;
  transition: opacity var(--t-fast);
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   Floor plan
   ============================================================ */
.floorplan {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(184,128,74,0.16), transparent 34%),
    linear-gradient(135deg, #171411 0%, #25211d 100%);
  color: #fff;
}
.floorplan-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(var(--s-5), 5vw, var(--s-9));
  align-items: stretch;
}
.floorplan-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: clamp(var(--s-5), 4vw, var(--s-8));
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
  backdrop-filter: blur(14px);
}
.floorplan .eyebrow { color: var(--accent); }
.floorplan h2 {
  color: #fff;
  max-width: 560px;
  margin-bottom: var(--s-4);
}
.floorplan p {
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
}
.floorplan-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.floorplan-facts span {
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.floorplan-notes {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.floorplan-notes div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--s-3);
  align-items: baseline;
}
.floorplan-notes strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
}
.floorplan-notes p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}
.floorplan-hint {
  margin: var(--s-5) 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.floorplan-image {
  position: relative;
  display: block;
  width: min(100%, 520px);
  justify-self: end;
  max-height: 1180px;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px);
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.055));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
  cursor: zoom-in;
}
.floorplan-image::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--r-lg) - 6px);
  box-shadow: inset 0 0 0 1px rgba(26,24,22,0.08);
  pointer-events: none;
  z-index: 1;
}
.floorplan-image img {
  width: 100%;
  height: auto;
  max-height: calc(1180px - 36px);
  object-fit: contain;
  border-radius: calc(var(--r-lg) - 10px);
  background: #f7f4ee;
  transition: transform 1.2s var(--ease);
}
.floorplan-image:hover img {
  transform: scale(1.012);
}

/* ============================================================
   Amenities (Ausstattung)
   ============================================================ */
.amenities {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.amenities-header {
  text-align: center;
  margin-bottom: var(--s-8);
}
.amenities-header h2 { margin-bottom: var(--s-3); }
.amenities-header p { color: var(--muted); max-width: 600px; margin: 0 auto; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.amenity-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.amenity-list li {
  padding: var(--s-2) 0;
  font-size: 0.97rem;
  color: var(--ink-2);
  display: flex; align-items: flex-start; gap: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list svg {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 3px;
}

/* ============================================================
   Access section
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.access-step {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.access-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.access-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.access-step h4 { margin-bottom: var(--s-2); }
.access-step p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ============================================================
   Notes
   ============================================================ */
.notes {
  background: var(--bg-alt);
}
.notes-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: var(--s-8); align-items: start;
}
.note-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  margin-bottom: var(--s-3);
  border-left: 3px solid var(--accent);
  font-size: 0.96rem;
}
.note-card strong { color: var(--ink); display: block; margin-bottom: 4px; }
.note-card p { margin: 0; color: var(--muted); }
.notes-extras h3 { margin-bottom: var(--s-4); }
.notes-extras ul li {
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.96rem;
}

/* ============================================================
   Booking
   ============================================================ */
/* === Buchungsbereich (v58, Richtung C): abgedunkeltes Loft-Foto + Glas-Tool === */
.booking {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,16,0.72) 0%, rgba(20,18,16,0.55) 45%, rgba(20,18,16,0.78) 100%),
    url('/img/hero/titelbild.webp') center/cover no-repeat;
  z-index: 0;
}
.booking > .container { position: relative; z-index: 1; max-width: 600px; }
.booking .eyebrow { color: var(--accent-light); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.booking h2 { color: #fff; margin-bottom: var(--s-3); text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.booking-lead {
  text-align: center;
  color: rgba(255,255,255,0.9);
  max-width: 30rem;
  margin: 0 auto var(--s-5);
  font-size: 1.05rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.booking-header { text-align: center; }
/* Frame ist jetzt nur noch transparenter Wrapper — Glas kommt aus .ufl-inline-glass */
.booking-frame {
  background: transparent;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  color: #fff;
  box-shadow: none;
}
.booking-fallback {
  text-align: center; padding: var(--s-6);
}
.booking-direct-link {
  padding: var(--s-3) 0 0;
  margin: 0;
  font-size: 0.9rem;
}
.booking-direct-link a {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.booking-direct-link a:hover { color: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0F0E0D;
  color: rgba(255,255,255,0.6);
  padding-block: var(--s-8) var(--s-6);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
.footer-brand {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: var(--s-3);
  font-weight: 400;
}
.footer-brand span { color: var(--accent); }
.footer-tag { color: rgba(255,255,255,0.5); }
.footer h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 var(--s-3);
}
.footer ul li { padding: 4px 0; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15, 14, 13, 0.96);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  animation: fadeIn 220ms var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.lightbox-close { top: var(--s-5); right: var(--s-5); }
.lightbox-prev  { left:   var(--s-5); top: 50%; transform: translateY(-50%); }
.lightbox-next  { right:  var(--s-5); top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover  { background: rgba(255,255,255,0.18); }
.lightbox-prev:hover  { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover  { transform: translateY(-50%) translateX(2px); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: absolute;
  bottom: var(--s-5); left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid  { grid-template-columns: repeat(2, 1fr); }
  .access-grid     { grid-template-columns: 1fr; }
  .room-head       { grid-template-columns: 1fr; gap: var(--s-6); }
  .room-head.reversed .room-feature { order: 0; }
  .floorplan-grid  { grid-template-columns: 1fr; }
  .floorplan-copy  { position: static; order: 1; text-align: center; }
  .floorplan-copy p { margin-inline: auto; }
  .floorplan-facts { justify-content: center; }
  .floorplan-notes div { grid-template-columns: 1fr; gap: 0.25rem; }
  .floorplan-image { order: 2; justify-self: center; max-height: 860px; }
  .floorplan-image img { max-height: 830px; }
  .intro-grid      { grid-template-columns: 1fr; gap: var(--s-6); }
  .notes-grid      { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .gallery         { grid-template-columns: repeat(3, 1fr); }
  .review-summary  { text-align: center; }
  .review-summary-copy h2 { margin-inline: auto; }
  .review-proof    { grid-template-columns: 1fr; justify-items: center; justify-content: center; }
  .review-favorite { max-width: 440px; }
  .review-metrics  { width: 100%; max-width: 520px; }
  .review-card     { flex-basis: 440px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }
  .nav-toggle.is-open + .nav-links,
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 4px);
    right: var(--s-5);
    background: var(--surface);
    padding: var(--s-5);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-3);
    gap: var(--s-4);
    align-items: flex-start;
    min-width: 200px;
  }
  .nav.is-open .nav-links a { color: var(--ink); }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .amenities-grid  { grid-template-columns: 1fr; gap: var(--s-5); }
  .gallery         { grid-template-columns: repeat(2, 1fr); }
  .review-summary  { width: min(100% - 32px, 1360px); gap: var(--s-5); }
  .review-metrics  { flex-direction: column; width: 100%; max-width: 340px; margin-inline: auto; }
  .review-metric   { padding: var(--s-4); }
  .review-card     { flex-basis: min(82vw, 360px); min-height: 230px; }
  .floorplan-image { width: min(100%, 360px); max-height: 720px; }
  .floorplan-image img { max-height: 690px; }
  .intro-stats     { grid-template-columns: 1fr 1fr; gap: var(--s-3); padding: var(--s-4); }
  .footer-grid     { grid-template-columns: 1fr; }
  .lightbox-prev   { left: var(--s-3); }
  .lightbox-next   { right: var(--s-3); }
  .hero-eyebrow::before { display: none; }
  .hero-cta .btn { flex: 1; justify-content: center; }

}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* Print fallback */
@media print {
  .site-header, .booking, .lightbox, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Award badges (Booking.com + Airbnb Gäste-Favorit)
   ============================================================ */
.awards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.award {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5) var(--s-3) var(--s-3);
  border-radius: var(--r-lg);
  text-decoration: none;
  box-shadow: var(--shadow-2);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  flex: 1 1 240px;
  min-width: 0;
}
.award:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }

/* Booking.com — brand blue */
.award-booking { background: #003580; color: #fff; }
.award-score {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: #006ce4;
  font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; color: #fff;
}

/* Airbnb Gäste-Favorit — light card */
.award-airbnb { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.award-laurel {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 2px;
  color: var(--ink);
  min-width: 60px;
}
.award-laurel .laurel { width: 18px; height: 36px; }
.award-laurel .laurel-r { transform: scaleX(-1); }
.award-laurel-num { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }

.award-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; min-width: 0; }
.award-text strong { font-weight: 700; font-size: 0.9rem; letter-spacing: -0.005em; }
.award-booking .award-text strong { color: #fff; }
.award-booking .award-text span { font-size: 0.8rem; color: rgba(255,255,255,0.78); }
.award-airbnb .award-text strong { color: var(--ink); }
.award-airbnb .award-text span { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 480px) {
  .awards { flex-direction: column; }
  .award { flex: 1 1 auto; }
}

/* ============================================================
   Location / Map section
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
  align-items: center;
}
.location-text h2 { margin-bottom: var(--s-4); }
.location-text p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; }
.location-address {
  font-style: normal;
  margin: var(--s-5) 0;
  padding: var(--s-4) var(--s-5);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--r-sm);
  line-height: 1.7;
  color: var(--ink-2);
}
.location-address strong { color: var(--ink); }
.location-map {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--bg-alt);
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(26,24,22,0.04), rgba(26,24,22,0.04)),
    repeating-linear-gradient(45deg, var(--bg-alt) 0 18px, var(--surface-2) 18px 36px);
  padding: var(--s-5);
}
.map-consent-inner { max-width: 340px; }
.map-pin { width: 40px; height: 40px; color: var(--accent); margin: 0 auto var(--s-4); }
.map-consent p { font-size: 0.88rem; color: var(--muted); margin-bottom: var(--s-4); line-height: 1.6; }

@media (max-width: 1024px) {
  .location-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ============================================================
   Brand logo (Header + Footer)
   ============================================================ */
.nav-brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  transition: opacity var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
/* Über dem Hero (Header transparent): helles Logo zeigen */
.site-header:not(.is-scrolled) .brand-logo-dark { display: none; }
.site-header.is-scrolled .brand-logo-light { display: none; }
.site-header.is-scrolled .brand-logo { height: 60px; }

.footer-logo {
  height: 76px;
  width: auto;
  margin-bottom: var(--s-3);
}
@media (max-width: 720px) {
  .brand-logo { height: 54px; }
  .site-header.is-scrolled .brand-logo { height: 48px; }
}

/* ============================================================
   Floorplan callout (Erwartungssteuerung Durchgangs-Loft)
   ============================================================ */
.floorplan-callout {
  margin: var(--s-5) 0 var(--s-4);
  padding: var(--s-4) var(--s-5);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
}
.floorplan-callout strong {
  display: block;
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.floorplan-callout p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ============================================================
   Reviews: JS-Transform-Marquee (alle Größen) — Drag + kinetisch
   JS setzt .is-js sobald aktiv; CSS-Animation bleibt Fallback.
   ============================================================ */
.review-marquee.is-js {
  touch-action: pan-y;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.review-marquee.is-js.is-grabbing { cursor: grabbing; }
.review-marquee.is-js .review-track {
  animation: none;
  width: max-content;
  will-change: transform;
}


/* ============================================================
   UFL v23 — Upgrades (Motion, Hotspots, FAQ, Host, CTA, POI)
   ============================================================ */

/* Fix: leere i18n-Platzhalter-<li> erzeugten Streu-Punkte */
.room-list li.i18n-list,
.room-list li:empty { display: none; }

/* ---------- Hero: Wort-Stagger + gestaffelter Einstieg ---------- */
.hero h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: wordIn 850ms var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { opacity: 0; animation: fadeUp 700ms var(--ease) 100ms forwards; }
.hero-lead    { opacity: 0; animation: fadeUp 900ms var(--ease) 600ms forwards; }
.hero-cta     { opacity: 0; animation: fadeUp 900ms var(--ease) 800ms forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Scroll-Parallax auf Raum-Bildern (progressive) ---------- */
@supports (animation-timeline: view()) {
  .room-feature { overflow: hidden; }
  .room-feature img {
    animation: parallaxDrift linear both;
    animation-timeline: view();
    animation-range: entry 10% exit 90%;
  }
  @keyframes parallaxDrift {
    from { transform: scale(1.1) translateY(-3.5%); }
    to   { transform: scale(1.1) translateY(3.5%); }
  }
}

/* ---------- Reveal-Choreografie: Galerie & Listen gestaffelt ---------- */
.gallery.reveal .gallery-item {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.gallery.reveal.is-visible .gallery-item { opacity: 1; transform: none; }
.gallery.reveal .gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery.reveal .gallery-item:nth-child(2) { transition-delay: 0.10s; }
.gallery.reveal .gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery.reveal .gallery-item:nth-child(4) { transition-delay: 0.20s; }
.gallery.reveal .gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery.reveal .gallery-item:nth-child(6) { transition-delay: 0.30s; }
.gallery.reveal .gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery.reveal .gallery-item:nth-child(8) { transition-delay: 0.40s; }
.gallery.reveal .gallery-item:nth-child(9) { transition-delay: 0.45s; }

.room-head.reveal .room-list li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.room-head.reveal.is-visible .room-list li { opacity: 1; transform: none; }
.room-head.reveal .room-list li:nth-child(2) { transition-delay: 0.12s; }
.room-head.reveal .room-list li:nth-child(3) { transition-delay: 0.20s; }
.room-head.reveal .room-list li:nth-child(4) { transition-delay: 0.28s; }
.room-head.reveal .room-list li:nth-child(5) { transition-delay: 0.36s; }
.room-head.reveal .room-list li:nth-child(6) { transition-delay: 0.44s; }

/* ---------- Grundriss: Stage + interaktive Hotspots ---------- */
.floorplan-stage {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}
.floorplan-stage .floorplan-image { width: 100%; justify-self: auto; }
.fp-spot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 22px; height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(184,128,74,0.25), 0 4px 14px rgba(0,0,0,0.4);
  cursor: pointer;
  z-index: 3;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fp-spot:hover, .fp-spot:focus-visible {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 0 0 6px rgba(184,128,74,0.3), 0 6px 18px rgba(0,0,0,0.45);
}
.fp-spot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,128,74,0.8);
  animation: spotPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes spotPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fp-spot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  z-index: 4;
}
.fp-spot:hover span, .fp-spot:focus-visible span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- FAQ ---------- */
:root { interpolate-size: allow-keywords; }
.faq-header { text-align: center; margin-bottom: var(--s-7); }
.faq-header p { color: var(--muted); margin: 0 auto; max-width: 560px; }
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  margin-bottom: var(--s-3);
  overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}
.faq-item[open] { box-shadow: var(--shadow-1); border-color: var(--line-strong); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  transition: transform var(--t-med) var(--ease);
}
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item::details-content {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
  transition: content-visibility 400ms allow-discrete,
              opacity 400ms var(--ease),
              block-size 400ms var(--ease);
}
.faq-item[open]::details-content { opacity: 1; block-size: auto; }
.faq-a { padding: 0 var(--s-5) var(--s-5); }
.faq-a p { margin: 0; line-height: 1.7; font-size: 0.98rem; color: var(--ink-2); }

/* ---------- Host ---------- */
.host { background: var(--bg-alt); }
.host-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  align-items: center;
  padding: clamp(var(--s-5), 4vw, var(--s-7));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-1);
}
.host-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  flex-shrink: 0;
}
.host-copy h2 { margin-bottom: var(--s-3); }
.host-copy p { color: var(--ink-2); line-height: 1.7; max-width: 640px; }
.host-points { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.host-points span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ---------- POI / Entfernungen ---------- */
.poi-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: var(--s-5) 0 var(--s-3);
}
.poi-list { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.poi-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
}
.poi-chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Booking-Perks ---------- */
.booking-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-5);
  margin: 0 auto var(--s-6);
  max-width: 820px;
}
.booking-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
}
.booking-perks span::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Sticky Mobile-CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 10px var(--s-4) calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-top: 1px solid var(--line-strong);
  transform: translateY(110%);
  transition: transform 320ms var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta-rating { display: flex; flex-direction: column; line-height: 1.25; }
.mobile-cta-rating strong { color: var(--ink); font-size: 1rem; }
.mobile-cta-rating span { color: var(--muted); font-size: 0.74rem; }
.mobile-cta .btn { padding: 0.6rem 0.9rem; font-size: 0.86rem; gap: 6px; }
.mobile-cta-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mobile-cta-avail svg { width: 17px; height: 17px; }
@media (max-width: 400px) {
  .mobile-cta-rating { display: none; }
  .mobile-cta-actions { flex: 1; }
  .mobile-cta-avail, .mobile-cta-book { flex: 1; justify-content: center; }
}

/* ---------- Lightbox: Open-Transition + Caption ---------- */
.lightbox.is-open .lightbox-img { animation: lbZoom 380ms var(--ease); }
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  position: absolute;
  bottom: calc(var(--s-5) + 46px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 80vw;
}

/* ---------- Responsive für neue Komponenten ---------- */
@media (max-width: 1024px) {
  .floorplan-stage { justify-self: center; }
}
@media (max-width: 720px) {
  .floorplan-stage { width: min(100%, 360px); }
  .fp-spot { width: 18px; height: 18px; }
  .mobile-cta { display: flex; }
  .host-card { grid-template-columns: 1fr; text-align: center; }
  .host-avatar { margin-inline: auto; }
  .host-points { justify-content: center; }
  .host-copy p { margin-inline: auto; }
}

/* ---------- Hero-Hintergrundvideo (v23.1) ---------- */
.hero-bg .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1200ms var(--ease);
}
.hero-bg .hero-video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg .hero-video { display: none; }
}

/* ---------- Host-Foto (v23.2) ---------- */
.host-photo {
  width: clamp(170px, 22vw, 230px);
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .host-photo { margin-inline: auto; width: min(70%, 240px); }
}

/* ---------- Reveal-Reset (v24): Zuruecksetzen ohne sichtbares Ausblenden ---------- */
.reveal:not(.is-visible),
.gallery.reveal:not(.is-visible) .gallery-item,
.room-head.reveal:not(.is-visible) .room-list li {
  transition: none;
}

/* ---------- Verfügbarkeitskalender (v28) ---------- */
.availability-calendar {
  max-width: 1000px;
  margin: 0 auto var(--s-6);
  text-align: center;
}
.availability-calendar .cal-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: var(--s-3);
}
#smoobuCalendarIframe iframe { border: 0; }
#smoobuCalendarIframe .cal-small { display: none; width: 100%; max-width: 320px; }
#smoobuCalendarIframe .cal-big   { display: none; width: 100%; max-width: 1000px; }
@media (min-width: 768px) {
  #smoobuCalendarIframe .cal-big { display: inline-block; }
}
@media (max-width: 767px) {
  #smoobuCalendarIframe .cal-small { display: inline-block; }
}

/* ---------- Zurück zum Grundriss — kontextueller Link in Raumsektion (v31) ---------- */
.room-back {
  display: none;
  align-items: center;
  gap: 7px;
  margin-top: var(--s-4);
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  width: fit-content;
}
.room-back.is-visible {
  display: inline-flex;
  animation: roomBackIn 0.35s var(--ease);
}
.room-back:hover { background: var(--accent-dark); }
@keyframes roomBackIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .room-back.is-visible { animation: none; }
}

/* ---------- Verfügbarkeits-Modal + Buchungskarte (v43) ---------- */
/* Schwebende Buchungskarte (nur Desktop) — Glas-auf-Glas, hell & transparent */
.book-card {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 85;
  width: min(360px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-xl);
  backdrop-filter: saturate(140%) blur(28px);
  -webkit-backdrop-filter: saturate(140%) blur(28px);
  box-shadow: 0 16px 50px rgba(26, 24, 22, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #fff;
  text-shadow: 0 1px 2px rgba(26, 24, 22, 0.28);
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.book-card-head { display: flex; flex-direction: column; gap: 0.25rem; }
.book-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.book-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff;
}

/* Innere Glas-Pillen (Glas auf Glas) */
.book-card-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.book-card-pill-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}
.book-card-dates {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
}
.book-card-nights {
  grid-column: 2;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: -0.1rem;
}

.book-card-price {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 0.18rem;
  flex-wrap: wrap;
}
.book-card-price .amount { font-size: 1.95rem; color: #fff; }
.book-card-hint {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.66);
  padding: 0 0.15rem;
}
.book-card-hint[hidden] { display: none; }

.book-card-cta,
.book-card-cta.btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  font-size: 0.98rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-radius: var(--r-md);
  text-shadow: none;
  /* Bronze-Glas von Anfang an, leicht abgesetzt */
  background: linear-gradient(180deg, rgba(198,142,86,0.82), rgba(152,104,58,0.82));
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  box-shadow: 0 8px 24px rgba(184,128,74,0.46), inset 0 1px 0 rgba(255,255,255,0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.book-card-cta:hover,
.book-card-cta.btn-primary:hover {
  /* dezent satter/heller, kein Farbsprung */
  background: linear-gradient(180deg, rgba(150,102,58,0.90), rgba(108,72,38,0.92));
  box-shadow: 0 4px 14px rgba(108,72,38,0.40), inset 0 1px 0 rgba(255,255,255,0.20);
  transform: translateY(-1px);
}
.book-card-cta:active,
.book-card-cta.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(140,94,51,0.34), inset 0 1px 0 rgba(255,255,255,0.24);
}
.book-card-cta .arr { transition: transform var(--t-fast) var(--ease); }
.book-card-cta:hover .arr { transform: translateX(3px); }

/* Header-CTA: gleiche Bronze-Glas-Glow-Sprache wie der Karten-Button (v44) */
.nav-cta.btn-primary {
  background: linear-gradient(180deg, rgba(198,142,86,0.82), rgba(152,104,58,0.82));
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  box-shadow: 0 8px 24px rgba(184,128,74,0.46), inset 0 1px 0 rgba(255,255,255,0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav-cta.btn-primary:hover {
  background: linear-gradient(180deg, rgba(150,102,58,0.90), rgba(108,72,38,0.92));
  box-shadow: 0 4px 14px rgba(108,72,38,0.40), inset 0 1px 0 rgba(255,255,255,0.20);
  transform: translateY(-1px);
}
.nav-cta.btn-primary .arr { transition: transform var(--t-fast) var(--ease); }
.nav-cta.btn-primary:hover .arr { transform: translateX(3px); }

.book-card.near-booking {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}
@media (prefers-reduced-motion: reduce) { .book-card { transition: opacity var(--t-med) var(--ease); } }

/* ---------- Hero-Karte mobil (v55): erscheint beim Rausscrollen, wegwischbar ----------
   Statt display:none (nicht animierbar) -> versteckt via transform/opacity,
   sichtbar via .mobile-in. Volle Karte, KEIN Pill-Schrumpfen auf Mobile. */
@media (max-width: 720px) {
  .book-card {
    left: 12px;
    right: 12px;
    bottom: 20vh;
    width: auto;
    max-width: none;
    /* Milchglas-Look IMMER gleich (unabhaengig von is-pill/on-light) */
    padding: 1.5rem 1.5rem 1.6rem;
    background: rgba(38, 36, 34, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 55px rgba(26, 24, 22, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    backdrop-filter: saturate(150%) blur(34px);
    -webkit-backdrop-filter: saturate(150%) blur(34px);
    color: #fff;
    /* sanfter einblenden: weiter Weg + lange Dauer + weiches Easing */
    transform: translateY(40px);
    opacity: 0;
    pointer-events: none;
    transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), opacity 620ms cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom center;
    animation: none;
  }
  .book-card.mobile-in {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop-Zustandsklassen mobil neutralisieren (kein dunkler on-light-Look, kein Pill-Schrumpfen) */
  .book-card.is-pill,
  .book-card.collapsing,
  .book-card.on-light {
    width: auto;
    padding: 1.5rem 1.5rem 1.6rem;
    background: rgba(38, 36, 34, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 55px rgba(26, 24, 22, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    backdrop-filter: saturate(150%) blur(34px);
    -webkit-backdrop-filter: saturate(150%) blur(34px);
    animation: none;
  }
  .book-card.is-pill > *:not(.book-card-pillbtn),
  .book-card.is-pill #bookCardBody { display: flex; }
  .book-card.is-pill .book-card-min { display: inline-flex; }
  .book-card.near-booking { transform: translateY(40px); opacity: 0; }
}
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .book-card { transition: opacity 200ms linear; transform: translateY(130%); }
  .book-card.mobile-in { transform: translateY(0); }
}

/* ---------- Buchungskarte: Pill-Zustand + Sog-Animation + on-light (v44) ---------- */
/* Minimier-Button (oben rechts in der Karte) */
.book-card { position: fixed; }
.book-card-min {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast), color var(--t-fast);
  z-index: 2;
}
.book-card-min:hover { background: rgba(255,255,255,0.20); color: #fff; }
.book-card-min svg { width: 15px; height: 15px; }
.book-card.is-pill .book-card-min { display: none; }

/* Theme über hellem Grund: dunkles Glas, lesbar */
.book-card.on-light {
  background: rgba(26,24,22,0.82);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 50px rgba(26,24,22,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
}
.book-card.on-light .book-card-pill {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}
/* Sog-Animation: Karte wird beim Schrumpfen zur Ecke eingesaugt */
.book-card { transform-origin: bottom right; }
.book-card.collapsing {
  animation: cardSuck 650ms cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}
@keyframes cardSuck {
  to { opacity: 0; transform: scale(0.28) translate(28px, 28px); }
}
/* Pill-Zustand */
.book-card.is-pill {
  width: auto;
  padding: 0; gap: 0;
  background: transparent; border: none; box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  animation: none; opacity: 1; transform: none;
}
.book-card.is-pill > *:not(.book-card-pillbtn) { display: none; }
.book-card.is-pill #bookCardBody { display: none; }
.book-card-pillbtn {
  display: none;
  align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  background: linear-gradient(180deg, rgba(217,160,90,0.92), rgba(184,128,74,0.94));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(184,128,74,0.42), inset 0 1px 0 rgba(255,255,255,0.34);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  animation: pillIn 360ms var(--ease) both;
}
.book-card.is-pill .book-card-pillbtn { display: inline-flex; }
.book-card-pillbtn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(184,128,74,0.52), inset 0 1px 0 rgba(255,255,255,0.4); }
.book-card-pillbtn:active { transform: translateY(0); }
.book-card-pillbtn svg { width: 17px; height: 17px; }
.book-card-pillbtn .arr { transition: transform var(--t-fast); }
.book-card-pillbtn:hover .arr { transform: translateX(3px); }
@keyframes pillIn { from { opacity:0; transform: scale(0.86) translateY(10px); } to { opacity:1; transform: scale(1) translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .book-card.collapsing { animation: none; opacity: 0; }
  .book-card-pillbtn { animation: none; }
}
@media (max-width: 720px) { .book-card-pillbtn { display: none !important; } }

/* ===================================================================
   v45 — Hero-Karte (durchblättern + Stepper + Gesamtpreis) & Modal-Kalender
   Klassen entsprechen calendar-booking.js. Wiederverwendet bestehende
   .book-card / .book-card-pill / .book-card-cta / Pill-Sog-Regeln.
   =================================================================== */

/* ---- Perioden-Pille mit Blätter-Pfeilen ---- */
.book-card-period {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem;
}
.book-card-period .bc-nav {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: #fff; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), opacity var(--t-fast);
}
.book-card-period .bc-nav:hover:not(:disabled) { background: rgba(255,255,255,0.24); }
.book-card-period .bc-nav:disabled { opacity: 0.28; cursor: default; }
.book-card-period .bc-nav svg { width: 15px; height: 15px; }
.book-card-period .bc-center { flex: 1; text-align: center; min-width: 0; }
.book-card-period .book-card-pill-label { display: block; }
.book-card-period .book-card-dates { display: block; font-size: 1.04rem; }
.book-card-period .book-card-nights {
  display: block;
  grid-column: auto;        /* altes Grid-Verhalten neutralisieren */
  margin-top: 1px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.66);
}

/* ---- Preiszeile: Gesamtpreis links, Personen-Stepper rechts ---- */
.book-card-pricerow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
}
.book-card-pricerow .book-card-price { flex-wrap: nowrap; }
.book-card-pricerow .book-card-price .amount { font-size: 1.95rem; }
.bc-stepperwrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem;
}
.bc-stepperlbl {
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
}
.bc-stepper {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; overflow: hidden; flex: none;
}
.bc-stepper button {
  width: 28px; height: 28px; padding: 0;
  border: none; background: rgba(255,255,255,0.14);
  color: #fff; cursor: pointer; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.12s;
}
.bc-stepper button:hover:not(:disabled) { background: rgba(255,255,255,0.26); }
.bc-stepper button:disabled { opacity: 0.3; cursor: default; }
.bc-stepper .v {
  min-width: 30px; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
}

/* ---- Sub-Zeile + Empty-State ---- */
.book-card-totalsub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.62);
  padding: 0 0.15rem;
}
.book-card-empty {
  padding: 1.6rem 0.4rem;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

/* ===================================================================
   Modal-Kalender (.ufl-cal) — Glasoptik, Drag-Auswahl, Stepper, Gesamtpreis
   =================================================================== */
.ufl-cal {
  width: 100%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: saturate(150%) blur(26px);
  -webkit-backdrop-filter: saturate(150%) blur(26px);
  box-shadow: 0 24px 70px rgba(26,24,22,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
  user-select: none;
}
.ufl-cal-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem 0.9rem; }
.ufl-cal-month { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; color: #fff; }
.ufl-cal-nav { display: flex; gap: 0.4rem; }
.ufl-cal-nav button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background .15s, border-color .15s, opacity .15s;
}
.ufl-cal-nav button:hover:not(:disabled) { background: rgba(255,255,255,0.22); }
.ufl-cal-nav button:disabled { opacity: 0.25; cursor: default; }
.ufl-cal-nav svg { width: 16px; height: 16px; }
.ufl-cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); padding: 0 0.9rem; }
.ufl-cal-weekdays span { text-align: center; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.6); padding: 0.3rem 0; text-transform: uppercase; letter-spacing: 0.03em; }
.ufl-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; padding: 0.3rem 0.9rem 1rem; }
.ufl-cal-cell {
  height: 44px; border: none; background: transparent; border-radius: 9px;
  cursor: pointer; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1px; font-family: var(--font-body);
  position: relative; padding: 0; transition: background .1s, color .1s;
}
.ufl-cal-cell.empty { visibility: hidden; }
.ufl-cal-cell .d { font-size: 0.92rem; font-weight: 600; color: #fff; line-height: 1; }
.ufl-cal-cell .p { font-size: 0.6rem; color: rgba(255,255,255,0.6); line-height: 1; font-weight: 600; }
.ufl-cal-cell.blocked { cursor: default; }
.ufl-cal-cell.blocked .d { color: rgba(255,255,255,0.28); text-decoration: line-through; }
.ufl-cal-cell.blocked .p { display: none; }
.ufl-cal-cell.past { cursor: default; }
.ufl-cal-cell.past .d { color: rgba(255,255,255,0.22); }
.ufl-cal-cell.past .p { display: none; }
.ufl-cal-cell.free:hover { background: rgba(217,160,90,0.3); }
.ufl-cal-cell.sel-start, .ufl-cal-cell.sel-end, .ufl-cal-cell.in-range { background: var(--accent) !important; }
.ufl-cal-cell.sel-start .d, .ufl-cal-cell.sel-end .d, .ufl-cal-cell.in-range .d,
.ufl-cal-cell.sel-start .p, .ufl-cal-cell.sel-end .p, .ufl-cal-cell.in-range .p { color: #fff !important; }

.ufl-cal-foot { border-top: 1px solid rgba(255,255,255,0.16); padding: 1rem 1.3rem 1.2rem; }
.ufl-cal-hint { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-align: center; padding: 0.2rem 0 0.1rem; }
.ufl-cal-warn {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  background: rgba(200,80,60,0.92); color: #fff; font-size: 0.82rem; font-weight: 600;
  padding: 0.6rem 0.9rem; border-radius: 10px; margin-bottom: 0.7rem;
  animation: uflWarnPulse 0.4s ease;
}
.ufl-cal-warn svg { width: 16px; height: 16px; flex: none; }
@keyframes uflWarnPulse { 0% { transform: scale(0.94); opacity: 0; } 60% { transform: scale(1.02); } 100% { transform: scale(1); opacity: 1; } }
.ufl-cal-vorteil { display: flex; align-items: center; gap: 0.4rem; justify-content: center; font-size: 0.78rem; color: var(--accent-light); font-weight: 700; margin-bottom: 0.7rem; }
.ufl-cal-vorteil svg { width: 15px; height: 15px; }
.ufl-cal-selrow { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.8rem; }
.ufl-cal-dates { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #fff; }
.ufl-cal-nights { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.ufl-cal-reset { background: none; border: none; color: var(--accent-light); font-size: 0.8rem; cursor: pointer; font-weight: 600; text-decoration: underline; font-family: var(--font-body); }
.ufl-cal-persons { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.ufl-cal-persons label { font-size: 0.88rem; font-weight: 600; color: #fff; }
.ufl-stepper { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; overflow: hidden; }
.ufl-stepper button {
  width: 34px; height: 34px; border: none; background: rgba(255,255,255,0.12);
  cursor: pointer; font-size: 1.1rem; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; transition: background .12s;
}
.ufl-stepper button:hover:not(:disabled) { background: rgba(255,255,255,0.22); }
.ufl-stepper button:disabled { opacity: 0.3; cursor: default; }
.ufl-stepper .val { min-width: 34px; text-align: center; font-weight: 700; font-family: var(--font-display); color: #fff; }
.ufl-cal-pricerow { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.9rem; }
.ufl-cal-pricelabel { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.ufl-cal-price { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff; }
.ufl-cal-price .cur { font-size: 1.1rem; }
.ufl-cal-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.95rem; border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--r-md); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  box-shadow: 0 8px 24px rgba(184,128,74,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: filter .15s, transform .12s;
}
.ufl-cal-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.ufl-cal-loading, .ufl-cal-error { padding: 3rem 1.3rem; text-align: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; }


/* Sekundaer-Link in der Hero-Karte: Kalender oeffnen (v45) */
.book-card-callink {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  width: 100%; background: none; border: none; padding: 0.15rem; cursor: pointer;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.82); transition: color var(--t-fast);
}
.book-card-callink svg { width: 15px; height: 15px; }
.book-card-callink:hover { color: #fff; }


/* Hero-Karten-Body: konsistenter vertikaler Rhythmus (v45.1) */
#bookCardBody {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
#bookCardBody .book-card-totalsub {
  margin-top: -0.45rem;   /* Sub-Zeile direkt unter die Preis-Pille ziehen */
}

/* Modal */
.cal-modal { position: fixed; inset: 0; z-index: 120; }
.cal-modal[hidden] { display: none; }
.cal-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,18,16,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cal-modal.is-open .cal-modal-backdrop { opacity: 1; }
.cal-modal-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -46%);
  width: min(94vw, 420px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--r-lg);
  opacity: 0;
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
  overflow: visible;
}
.cal-modal.is-open .cal-modal-card { transform: translate(-50%, -50%); opacity: 1; }
.cal-modal-head {
  position: absolute;
  top: -14px; right: -14px;
  z-index: 6;
  padding: 0;
  border: none;
}
.cal-modal-title { display: none; }
.cal-modal-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  margin: 0;
  border-radius: 50%; cursor: pointer;
  background: rgba(30,27,24,0.72); color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  box-shadow: 0 6px 18px rgba(0,0,0,0.34);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-fast);
}
.cal-modal-close svg { width: 18px; height: 18px; }
.cal-modal-close:hover { background: rgba(50,45,40,0.88); transform: scale(1.06); }
.cal-modal-mount {
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cal-modal-mount iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.ufl-cal-cell.checkout-only { box-shadow: inset 0 0 0 1px rgba(217,160,90,0.5); }
.ufl-cal-cell.checkout-only .d { color: rgba(255,255,255,0.85); }




.ufl-cal-swipe { overflow: hidden; width: 100%; }
.ufl-cal-track { display: flex; width: 300%; will-change: transform; }
.ufl-cal-panel { width: 33.3333%; flex: 0 0 33.3333%; }
.ufl-cal-panel .ufl-cal-grid { padding-top: 0; }
.ufl-cal { overflow: hidden; }

.ufl-cal-cell.lp-active { transform: scale(1.12); z-index: 2; transition: transform .12s ease; }

/* ---- Kalender-Modal mobil (v48) ---- */
@media (max-width: 520px) {
  .cal-modal-card { width: calc(100vw - 28px); max-height: 88vh; }
  .ufl-cal-head { padding: 0.95rem 1rem 0.7rem; }
  .ufl-cal-month { font-size: 1.05rem; }
  .ufl-cal-weekdays { padding: 0 0.6rem; }
  .ufl-cal-weekdays span { font-size: 0.62rem; }
  .ufl-cal-grid { padding: 0.25rem 0.6rem 0.8rem; gap: 1px; }
  .ufl-cal-cell { height: 40px; }
  .ufl-cal-cell .d { font-size: 0.86rem; }
  .ufl-cal-cell .p { font-size: 0.54rem; }
  .ufl-cal-foot { padding: 0.85rem 1rem 1rem; }
  .cal-modal-close { width: 34px; height: 34px; top: -12px; right: -12px; }
  .cal-modal-close svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cal-modal-backdrop, .cal-modal-card { transition: opacity 0.2s linear; }
  .cal-modal-card { transform: translate(-50%, -50%); }
}

/* ---------- Gäste-Favorit-Bild im Bewertungsbereich (v37) ---------- */
.review-favorite { margin: 0; }
.review-favorite img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  border: 1px solid rgba(184,128,74,0.22);
  box-shadow: 0 22px 60px rgba(26,24,22,0.10);
}
@media (max-width: 980px) {
  .review-proof { max-width: 520px; margin-inline: auto; width: 100%; }
}

/* ---------- Kalender-Button im Buchungsbereich (v40, ersetzt festen Kalender) ---------- */
.booking-cal-cta {
  display: flex;
  justify-content: center;
  margin-block: var(--s-5) var(--s-6);
}
.booking-cal-cta .btn {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.booking-cal-cta .btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.booking-cal-cta .btn svg { width: 19px; height: 19px; }


/* ===================================================================
   Inline-Buchungstool (v58) — Liste freier Termine + Buchungs-Schritt
   nf-* = Termin-Liste, bk-* = Buchungs-Schritt, cal-backlink = Kalender-Zurueck.
   Glas-Container (.ufl-cal*) ist bereits weiter oben definiert (Modal teilt es).
   =================================================================== */
.nf-wrap{ padding:1.2rem 1.3rem 1.3rem; }
.nf-head{
  display:flex; align-items:center; justify-content:center; gap:0.5rem; margin-bottom:0.9rem;
}
.nf-head svg{ width:18px; height:18px; color:var(--accent-light); flex:none; }
.nf-head h3{ font-family:var(--font-display); font-weight:700; font-size:1.02rem; color:#fff; letter-spacing:-0.01em; }
.nf-list{ display:flex; flex-direction:column; gap:0.55rem; }
.nf-item{
  display:flex; align-items:center; justify-content:space-between; gap:0.8rem;
  width:100%; text-align:left; cursor:pointer;
  background:rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.22);
  border-radius:var(--r-md); padding:0.75rem 0.95rem;
  font-family:var(--font-body); color:#fff;
  transition:background .14s, border-color .14s, transform .12s;
}
.nf-item:hover{ background:rgba(217,160,90,0.26); border-color:rgba(217,160,90,0.5); transform:translateY(-1px); }
.nf-item .nf-when{ display:flex; flex-direction:column; gap:0.15rem; flex:1; }
.nf-item .nf-dates{ font-family:var(--font-display); font-weight:700; font-size:0.98rem; }
.nf-item .nf-nights{ font-size:0.76rem; color:rgba(255,255,255,0.66); font-weight:600; }
.nf-item .nf-price{ display:flex; flex-direction:column; align-items:flex-end; gap:0.1rem; flex:none; }
.nf-item .nf-from{ font-size:0.66rem; color:rgba(255,255,255,0.6); font-weight:600; text-transform:uppercase; letter-spacing:0.04em; }
.nf-item .nf-amount{ font-family:var(--font-display); font-weight:700; font-size:1.12rem; }
.nf-item .nf-amount .cur{ font-size:0.82rem; }
.nf-item .nf-arr{ margin-left:0.2rem; color:var(--accent-light); font-weight:700; }
/* Last-minute-Badge auf dem ersten freien Zeitraum */
.nf-item.nf-item--hot{ border-color:rgba(217,160,90,0.55); box-shadow:0 0 0 1px rgba(217,160,90,0.16) inset; }
.nf-badge{ display:inline-flex; align-items:center; gap:0.3rem; align-self:flex-start; margin-bottom:0.34rem; padding:0.2rem 0.54rem 0.2rem 0.44rem; border-radius:999px; background:linear-gradient(135deg,#edc079,#d59a4f); color:#241a0e; font-size:0.6rem; font-weight:800; line-height:1; text-transform:uppercase; letter-spacing:0.07em; box-shadow:0 2px 8px rgba(213,154,79,0.38); }
.nf-badge svg{ width:0.72rem; height:0.72rem; flex:none; }
.nf-empty{ color:rgba(255,255,255,0.75); font-size:0.9rem; text-align:center; padding:1.4rem 0.5rem; }

.nf-divider{
  display:flex; align-items:center; gap:0.8rem; margin:1rem 0;
  color:rgba(255,255,255,0.5); font-size:0.74rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em;
}
.nf-divider::before, .nf-divider::after{ content:''; flex:1; height:1px; background:rgba(255,255,255,0.18); }

.nf-calbtn{
  display:flex; align-items:center; justify-content:center; gap:0.5rem;
  width:100%; margin-top:0; padding:0.85rem;
  background:rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.28);
  border-radius:var(--r-md); cursor:pointer;
  font-family:var(--font-display); font-weight:700; font-size:0.92rem; color:#fff;
  transition:background .14s, transform .12s;
}
.nf-calbtn:hover{ background:rgba(255,255,255,0.20); transform:translateY(-1px); }
.nf-calbtn svg{ width:17px; height:17px; }

/* ======= Kalender (1:1 aus styles.css .ufl-cal*) ======= */
.ufl-cal-head { display:flex; align-items:center; justify-content:space-between; padding:1.1rem 1.3rem 0.9rem; }
.ufl-cal-month { font-family:var(--font-display); font-weight:700; font-size:1.15rem; letter-spacing:-0.01em; color:#fff; }
.ufl-cal-nav { display:flex; gap:0.4rem; }
.ufl-cal-nav button { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.28); background:rgba(255,255,255,0.12); cursor:pointer; display:inline-flex; align-items:center; justify-content:center; color:#fff; transition:background .15s, border-color .15s, opacity .15s; }
.ufl-cal-nav button:hover:not(:disabled) { background:rgba(255,255,255,0.22); }
.ufl-cal-nav button:disabled { opacity:0.25; cursor:default; }
.ufl-cal-nav svg { width:16px; height:16px; }
.ufl-cal-weekdays { display:grid; grid-template-columns:repeat(7,1fr); padding:0 0.9rem; }
.ufl-cal-weekdays span { text-align:center; font-size:0.7rem; font-weight:700; color:rgba(255,255,255,0.6); padding:0.3rem 0; text-transform:uppercase; letter-spacing:0.03em; }
.ufl-cal-swipe { overflow:hidden; width:100%; }
.ufl-cal-track { display:flex; width:300%; will-change:transform; }
.ufl-cal-panel { width:33.3333%; flex:0 0 33.3333%; }
.ufl-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; padding:0.3rem 0.9rem 1rem; }
.ufl-cal-panel .ufl-cal-grid { padding-top:0; }
.ufl-cal-cell { height:44px; border:none; background:transparent; border-radius:9px; cursor:pointer; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1px; font-family:var(--font-body); position:relative; padding:0; transition:background .1s, color .1s; }
.ufl-cal-cell.empty { visibility:hidden; }
.ufl-cal-cell .d { font-size:0.92rem; font-weight:600; color:#fff; line-height:1; }
.ufl-cal-cell .p { font-size:0.6rem; color:rgba(255,255,255,0.6); line-height:1; font-weight:600; }
.ufl-cal-cell.blocked { cursor:default; }
.ufl-cal-cell.blocked .d { color:rgba(255,255,255,0.28); text-decoration:line-through; }
.ufl-cal-cell.blocked .p { display:none; }
.ufl-cal-cell.past { cursor:default; }
.ufl-cal-cell.past .d { color:rgba(255,255,255,0.22); }
.ufl-cal-cell.past .p { display:none; }
.ufl-cal-cell.free:hover { background:rgba(217,160,90,0.3); }
.ufl-cal-cell.sel-start, .ufl-cal-cell.sel-end, .ufl-cal-cell.in-range { background:var(--accent) !important; }
.ufl-cal-cell.sel-start .d, .ufl-cal-cell.sel-end .d, .ufl-cal-cell.in-range .d,
.ufl-cal-cell.sel-start .p, .ufl-cal-cell.sel-end .p, .ufl-cal-cell.in-range .p { color:#fff !important; }
.ufl-cal-cell.checkout-only { box-shadow:inset 0 0 0 1px rgba(217,160,90,0.5); }
.ufl-cal-cell.checkout-only .d { color:rgba(255,255,255,0.85); }
.ufl-cal-cell.lp-active { transform:scale(1.12); z-index:2; transition:transform .12s ease; }
.cal-backlink{
  display:inline-flex; align-items:center; gap:0.4rem; margin:0.2rem 0 0 1.3rem;
  background:none; border:none; color:rgba(255,255,255,0.78); cursor:pointer;
  font-family:var(--font-body); font-size:0.8rem; font-weight:600; padding:0.6rem 0;
}
.cal-backlink:hover{ color:#fff; }
.cal-backlink svg{ width:15px; height:15px; }

/* ======= Buchungs-Schritt (Footer) ======= */
.bk-foot { border-top:1px solid rgba(255,255,255,0.16); padding:1rem 1.3rem 1.2rem; }
.bk-hint { font-size:0.85rem; color:rgba(255,255,255,0.7); text-align:center; padding:0.2rem 0 0.1rem; }
.bk-warn { display:flex; align-items:center; gap:0.5rem; justify-content:center; background:rgba(200,80,60,0.92); color:#fff; font-size:0.82rem; font-weight:600; padding:0.6rem 0.9rem; border-radius:10px; margin-bottom:0.7rem; animation:uflWarnPulse 0.4s ease; }
.bk-warn svg { width:16px; height:16px; flex:none; }
@keyframes uflWarnPulse { 0% { transform:scale(0.94); opacity:0; } 60% { transform:scale(1.02); } 100% { transform:scale(1); opacity:1; } }
.bk-vorteil { display:flex; align-items:center; gap:0.4rem; justify-content:center; font-size:0.78rem; color:var(--accent-light); font-weight:700; margin-bottom:0.8rem; }
.bk-vorteil svg { width:15px; height:15px; }
.bk-selrow { display:flex; align-items:center; justify-content:space-between; gap:0.8rem; margin-bottom:1rem; }
.bk-dates { font-family:var(--font-display); font-weight:700; font-size:0.98rem; color:#fff; }
.bk-nights { font-size:0.78rem; color:rgba(255,255,255,0.6); font-weight:600; }
.bk-reset { background:none; border:none; color:var(--accent-light); font-size:0.8rem; cursor:pointer; font-weight:600; text-decoration:underline; font-family:var(--font-body); }

/* 3 Personen-Stepper */
.bk-guests{ display:flex; flex-direction:column; gap:0.6rem; margin-bottom:1rem; }
.bk-grow{ display:flex; align-items:center; justify-content:space-between; gap:0.8rem; }
.bk-grow .lbl{ display:flex; flex-direction:column; gap:0.1rem; }
.bk-grow .lbl b{ font-size:0.88rem; font-weight:600; color:#fff; }
.bk-grow .lbl small{ font-size:0.72rem; color:rgba(255,255,255,0.6); font-weight:500; }
.bk-stepper { display:inline-flex; align-items:center; border:1px solid rgba(255,255,255,0.28); border-radius:999px; overflow:hidden; flex:none; }
.bk-stepper button { width:34px; height:34px; border:none; background:rgba(255,255,255,0.12); cursor:pointer; font-size:1.1rem; color:#fff; display:inline-flex; align-items:center; justify-content:center; transition:background .12s; }
.bk-stepper button:hover:not(:disabled) { background:rgba(255,255,255,0.22); }
.bk-stepper button:disabled { opacity:0.3; cursor:default; }
.bk-stepper .v { min-width:34px; text-align:center; font-weight:700; font-family:var(--font-display); color:#fff; }
/* Aufenthalt verlaengern/verkuerzen im Buchungs-Schritt */
.bk-stayrow{ display:flex; align-items:center; justify-content:space-between; gap:0.8rem; margin-bottom:1rem; }
.bk-staylbl{ font-size:0.88rem; font-weight:600; color:#fff; }
.bk-staystepper .v{ min-width:auto; padding:0 0.65rem; white-space:nowrap; font-size:0.92rem; }
.bk-stayhint{ display:flex; align-items:center; gap:0.35rem; margin:-0.65rem 0 1rem; font-size:0.72rem; font-weight:600; color:var(--accent-light); }
.bk-stayhint::before{ content:""; width:0.5rem; height:0.5rem; border-radius:999px; background:var(--accent-light); flex:none; }
/* Paket 2: Reassurance-Zeile + Storno-Akkordeon im Buchungs-Schritt */
.bk-reass{ display:flex; flex-direction:column; gap:0.45rem; margin:0.3rem 0 1.1rem; }
.bk-reass span{ display:flex; align-items:center; gap:0.55rem; font-size:0.78rem; font-weight:500; color:rgba(255,255,255,0.74); }
.bk-reass svg{ width:0.95rem; height:0.95rem; color:var(--accent-light); flex:none; }
.bk-cancel{ margin-top:0.85rem; border-top:1px solid rgba(255,255,255,0.12); padding-top:0.85rem; }
.bk-cancel summary{ display:flex; align-items:center; justify-content:space-between; gap:0.6rem; cursor:pointer; list-style:none; font-size:0.8rem; font-weight:600; color:rgba(255,255,255,0.82); }
.bk-cancel summary::-webkit-details-marker{ display:none; }
.bk-cancel summary:hover{ color:#fff; }
.bk-chev{ width:1rem; height:1rem; color:rgba(255,255,255,0.55); flex:none; transition:transform .2s ease; }
.bk-cancel[open] .bk-chev{ transform:rotate(180deg); }
.bk-cancel-body{ margin-top:0.65rem; display:flex; flex-direction:column; gap:0.5rem; }
.bk-cancel-body div{ position:relative; padding-left:0.9rem; font-size:0.76rem; line-height:1.35; color:rgba(255,255,255,0.62); }
.bk-cancel-body div::before{ content:""; position:absolute; left:0; top:0.52em; width:0.34rem; height:0.34rem; border-radius:999px; background:var(--accent-light); }

.bk-pricerow { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:1rem; }
.bk-pricelabel { font-size:0.85rem; color:rgba(255,255,255,0.7); font-weight:600; }
.bk-price { font-family:var(--font-display); font-weight:700; font-size:1.7rem; color:#fff; }
.bk-price .cur { font-size:1.1rem; }
.bk-cta {
  display:flex; align-items:center; justify-content:center; gap:0.5rem;
  width:100%; padding:0.95rem; border:1px solid rgba(255,255,255,0.34);
  border-radius:var(--r-md); cursor:pointer;
  font-family:var(--font-display); font-weight:700; font-size:1rem; color:#fff;
  background:linear-gradient(180deg, var(--accent-light), var(--accent));
  box-shadow:0 8px 24px rgba(184,128,74,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition:filter .15s, transform .12s;
}
.bk-cta:hover:not(:disabled) { filter:brightness(1.06); transform:translateY(-1px); }
.bk-cta:disabled { opacity:0.6; cursor:default; }
.bk-err { color:#ffd9d2; font-size:0.82rem; text-align:center; margin-top:0.7rem; min-height:1em; font-weight:600; }
.bk-loading { padding:3rem 1.3rem; text-align:center; color:rgba(255,255,255,0.75); font-size:0.9rem; }

@media (max-width:520px){
  .bk-foot { padding:0.85rem 1rem 1rem; }
  .nf-wrap{ padding:1rem 1rem 1.1rem; }
}

/* Lade-Spinner im "Jetzt buchen"-Button (v58) */
.bk-spin{
  display:inline-block; width:16px; height:16px; margin-right:0.5rem;
  vertical-align:-2px;
  border:2px solid rgba(255,255,255,0.45);
  border-top-color:#fff;
  border-radius:50%;
  animation:bkSpin 0.7s linear infinite;
}
@keyframes bkSpin{ to{ transform:rotate(360deg); } }
.bk-cta:disabled{ opacity:0.85; cursor:default; }

/* ===================================================================
   Gemeinsame Glasoptik fuer das Inline-Buchungstool (v58)
   Gilt sowohl inline (#booking) als auch im Modal (#calModalMount).
   =================================================================== */
.ufl-inline-glass{
  width:100%;
  background:rgba(255,255,255,0.13);
  border:1px solid rgba(255,255,255,0.26);
  border-radius:var(--r-xl);
  overflow:hidden;
  backdrop-filter:saturate(160%) blur(30px);
  -webkit-backdrop-filter:saturate(160%) blur(30px);
  box-shadow:0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  color:#fff;
}
.cal-modal-mount.ufl-inline-glass{ max-height:86vh; overflow-y:auto; }

/* ============================================================
   PRIVATKOCH / PEOPLEEAT  (v67)
   Full-Bleed-Foto mit lokalem Schatten links, darunter Zeitachse.
   Kontrast gemessen: schlechtester Wert 3.0:1 (Headline, grosse Schrift),
   Lead 5.7:1, Kleintext 9.0:1 — Aenderungen am Scrim bitte nachmessen.
   ============================================================ */
.chef {
  background: var(--ink); color: #F5F0E8;
  padding: 0;            /* globale section-Polsterung aufheben: sonst dunkler Balken ueber dem Foto */
  scroll-margin-top: clamp(72px, 9vh, 110px);  /* fixierte Kopfzeile darf das Foto nicht anschneiden */
}

/* Hero: Foto liegt als eigene Ebene, Text steht im Fluss (kann nicht ueberlaufen) */
.chef-hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(520px, 72vh, 760px);
}
.chef-bg { position: absolute; inset: 0; z-index: 0; }
.chef-bg img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  filter: brightness(1.13) saturate(1.08);
}
.chef-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,
      rgba(10,9,8,.80) 0%, rgba(10,9,8,.68) 22%, rgba(10,9,8,.40) 40%,
      rgba(10,9,8,.12) 53%, rgba(10,9,8,0) 63%),
    linear-gradient(to top,
      rgba(10,9,8,.68) 0%, rgba(10,9,8,.32) 18%, rgba(10,9,8,.07) 40%,
      rgba(10,9,8,0) 58%);
}

.chef-copy {
  position: relative; z-index: 2; width: 100%;
  padding-top: clamp(var(--s-7), 9vh, var(--s-9));
  padding-bottom: clamp(var(--s-6), 5vw, var(--s-8));
}
.chef-kicker {
  display: inline-block; margin: 0 0 var(--s-4);
  padding: .45rem .95rem; border-radius: 999px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .20em; text-transform: uppercase; color: #EFC79A;
  background: rgba(10,9,8,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
}
.chef-title {
  font-family: var(--font-accent); font-weight: 400; line-height: 1.02;
  font-size: clamp(2.3rem, 6vw, 4.6rem); letter-spacing: -.01em;
  color: #fff; max-width: 15ch; margin: 0 0 var(--s-5);
  text-shadow: 0 2px 10px rgba(0,0,0,.55), 0 1px 30px rgba(0,0,0,.35);
}
.chef-lead {
  max-width: 44ch; margin: 0 0 var(--s-5);
  font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.6;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 0 14px rgba(0,0,0,.5);
}
.chef .btn-primary { background: var(--accent); color: #17150F; box-shadow: 0 10px 30px -12px rgba(0,0,0,.8); }
.chef .btn-primary:hover { background: var(--accent-light); }
.chef-note {
  margin: var(--s-4) 0 0; font-size: .82rem; color: rgba(255,255,255,.78);
  text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 0 12px rgba(0,0,0,.55);
}

/* Bild im Bild — erst ab Desktop, ragt bewusst in den naechsten Block */
.chef-card { display: none; }
@media (min-width: 1024px) {
  .chef-card {
    display: block; position: absolute; z-index: 3; margin: 0;
    right: clamp(1.5rem, 5vw, 5rem); bottom: -56px;
    width: clamp(250px, 23vw, 340px);
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 34px 80px -24px rgba(0,0,0,.85), 0 2px 0 rgba(255,255,255,.06) inset;
  }
  .chef-card img { display: block; width: 100%; height: auto; border-radius: inherit; }
  .chef-card figcaption {
    position: absolute; left: 14px; top: 14px;
    padding: .42rem .8rem; border-radius: 999px;
    background: rgba(10,9,8,.55);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.16);
    font-family: var(--font-body); font-size: .62rem; letter-spacing: .16em;
    text-transform: uppercase; color: rgba(255,255,255,.92);
  }
}

/* Ablauf als Zeitachse */
.chef-flow { padding: clamp(var(--s-8), 9vw, var(--s-9)) 0 clamp(var(--s-6), 5vw, var(--s-8)); }
.chef-offer-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-6); align-items: center;
  margin: 0 0 clamp(var(--s-6), 5vw, var(--s-7));
}
.chef-offer { padding-left: var(--s-4); border-left: 2px solid var(--accent); }
.chef-offer-cta { justify-self: end; text-align: right; }
.chef-btn-ghost { background: transparent; color: #fff; border-color: rgba(184,128,74,.85); }
.chef-btn-ghost:hover {
  background: var(--accent); color: #17150F; border-color: var(--accent);
  transform: translateY(-1px);
}
.chef-cta-sub {
  margin: var(--s-3) 0 0 auto; max-width: 30ch;
  font-size: .82rem; line-height: 1.5; color: rgba(245,240,232,.62);
}
@media (max-width: 900px) {
  .chef-offer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .chef-offer-cta { justify-self: start; text-align: left; }
  .chef-cta-sub { margin-left: 0; }
}
.chef-perk {
  max-width: 46ch; margin: 0;
  font-family: var(--font-accent); font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #fff;
}
.chef-amount {
  font-family: var(--font-accent); font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1; color: var(--accent-light); margin-right: .35rem;
  display: inline-block; vertical-align: -.08em;
}
.chef-code-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3);
  margin: var(--s-4) 0 0;
}
.chef-code-label {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent-light);
}
.chef-code {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: .22em; color: #fff;
  padding: .45rem .55rem .45rem .77rem; border-radius: 6px;
  border: 1px dashed rgba(184,128,74,.8); background: rgba(184,128,74,.16);
}
.chef-code-hint { font-size: .85rem; color: rgba(245,240,232,.62); }
.chef-steps {
  list-style: none; margin: 0; padding: 0; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5);
}
.chef-steps::before {
  content: ""; position: absolute; top: 5px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, rgba(184,128,74,.15), rgba(184,128,74,.55), rgba(184,128,74,.15));
}
.chef-step { position: relative; padding-top: calc(var(--s-5) + 2px); }
.chef-step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 11px; height: 11px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(184,128,74,.18);
}
.chef-step h3 { font-family: var(--font-accent); font-weight: 400; font-size: 1.15rem; color: #fff; margin: 0 0 var(--s-2); }
.chef-step p { font-size: .88rem; line-height: 1.55; color: rgba(245,240,232,.72); margin: 0; }

.chef-mobilecard { display: none; margin: 0; }
.chef-mobilecard img {
  display: block; width: 100%; height: auto;
  border-radius: 14px; border: 1px solid rgba(255,255,255,.14);
}

/* Mobil/Tablet: Text braucht volle Breite -> Schatten steigt von unten,
   oberes Bilddrittel bleibt frei */
@media (max-width: 1023px) {
  .chef-hero { min-height: clamp(560px, 78vh, 720px); }
  .chef-scrim {
    background: linear-gradient(to top,
      rgba(10,9,8,.86) 0%, rgba(10,9,8,.78) 30%, rgba(10,9,8,.56) 48%,
      rgba(10,9,8,.22) 64%, rgba(10,9,8,.02) 80%, rgba(10,9,8,0) 100%);
  }
  /* Ohne das Bild-im-Bild (erst ab 1024px) waere das Kuechenfoto hier gar nicht sichtbar */
  .chef-mobilecard { display: block; margin-top: var(--s-5); }
  /* Vier schmale Spalten werden unter 1024px zu eng -> Liste mit senkrechter Achse */
  .chef-steps { grid-template-columns: 1fr; gap: 0; }
  .chef-steps::before {
    top: 6px; bottom: 6px; left: 5px; right: auto; width: 1px; height: auto;
    background: linear-gradient(to bottom, rgba(184,128,74,.55), rgba(184,128,74,.15));
  }
  .chef-step { padding: 0 0 var(--s-5) var(--s-6); }
  .chef-step::before { top: 6px; }
}

/* Link von der Startseite auf die eigene Privatkoch-Seite */
.chef-more { margin: clamp(var(--s-6), 5vw, var(--s-7)) 0 0; font-size: .92rem; }
.chef-more a {
  color: var(--accent-light); text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(184,128,74,.5);
}
.chef-more a:hover { text-decoration-color: var(--accent-light); }
.chef-more .arr { color: var(--accent-light); margin-left: .3rem; }

/* Abschlussband nur auf privatkoch.html: zurueck zur Unterkunft */
.chef-back {
  background: var(--bg-alt); border-top: 1px solid var(--line);
  padding: clamp(var(--s-7), 7vw, var(--s-9)) 0;
  text-align: center;
}
.chef-back h2 {
  font-family: var(--font-accent); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 var(--s-3);
}
.chef-back p { color: var(--muted); max-width: 52ch; margin: 0 auto var(--s-5); }

/* Ruecksprung zur Privatkoch-Sektion, steht hinter dem Essbereich */
.chef-jump { background: var(--bg); padding: 0 0 clamp(var(--s-6), 5vw, var(--s-7)); }
.chef-jump .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s-3) var(--s-4); text-align: center;
}
.chef-jump p { margin: 0; color: var(--muted); font-family: var(--font-accent); font-size: 1.05rem; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Eigene Privatkoch-Seite: Kopfzeile immer deckend, da das Foto direkt darunter beginnt */
.page-privatkoch .site-header {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.page-privatkoch .site-header .nav-brand { color: var(--ink); }
.page-privatkoch .site-header .brand-logo-light { display: none; }
.page-privatkoch .site-header .brand-logo-dark { display: block; }
