/* === noir-rooms.css === */
/* Bei.Gretel Noir Theme — Zimmer-Übersicht, Detail, Room-Cards, Highlights, SVG-Animationen, FAQ */

/* ========================================================
   16. ROOMS OVERVIEW → GLASS CARDS GRID
   ======================================================== */

body.noir .ce-type-rooms_overview ul.roomsOverview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

body.noir .ce-type-rooms_overview li.room {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-glass);
  transition: all var(--dur-base) var(--ease-out);
  width: auto;
  float: none;
  margin: 0;
}

body.noir .ce-type-rooms_overview li.room:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
}

body.noir .ce-type-rooms_overview li.room > figure {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: calc(-1 * var(--card-padding));
  margin-bottom: 1rem;
  aspect-ratio: 16/10;
  background: var(--bg-deep);
}

body.noir .ce-type-rooms_overview li.room > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.noir .ce-type-rooms_overview li.room > figure figcaption {
  display: none;
}

body.noir .ce-type-rooms_overview li.room article {
  padding: 0;
  background: transparent;
}

body.noir .ce-type-rooms_overview li.room article,
body.noir .ce-type-rooms_overview li.room article * {
  color: var(--text-primary);
}

body.noir .ce-type-rooms_overview li.room h3 {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

body.noir .ce-type-rooms_overview li.room h4 {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

body.noir .ce-type-rooms_overview li.room ul.props {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.75rem;
}

body.noir .ce-type-rooms_overview li.room ul.props li {
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 0.8rem;
}

body.noir .ce-type-rooms_overview li.room ul.props li span {
  color: var(--text-secondary);
}

body.noir .ce-type-rooms_overview li.room ul.price {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.noir .ce-type-rooms_overview li.room ul.price li {
  font-size: 0.9rem;
}

body.noir .ce-type-rooms_overview li.room ul.price strong {
  color: var(--gold);
  font-size: 1.1rem;
}

body.noir .ce-type-rooms_overview li.room ul.price a {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--dur-base) var(--ease-out);
}

body.noir .ce-type-rooms_overview li.room ul.price a:hover {
  background: var(--gold);
  color: var(--text-dark);
}

/* Outro-Text (z.B. "Alle Zimmer ansehen" Button) */
body.noir .ce-type-rooms_overview div.text.outro {
  text-align: center;
  margin-top: 3rem;
}

/* ========================================================
   16b. ROOM DETAIL PAGE — LUXURY PREMIUM (zimmer.view.php)
   ======================================================== */

/* --- Hero: Full-width image with gradient overlay --- */
body.noir .room-hero-luxury {
  margin-bottom: 0;
}

body.noir .room-hero-image {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

body.noir .room-hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

body.noir .room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 3rem var(--section-pad-x);
}

body.noir .room-hero-content {
  max-width: var(--max-content-width);
  margin: 0 auto;
  width: 100%;
}

body.noir .room-hero-content .room-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

body.noir .room-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

body.noir .room-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  margin: 0;
}

/* --- Thumbnail Strip --- */
body.noir .room-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem var(--section-pad-x);
  max-width: var(--max-content-width);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

body.noir .room-thumb {
  flex: 0 0 auto;
  width: 90px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

body.noir .room-thumb:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

body.noir .room-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

body.noir .room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Room Detail Section --- */
body.noir .room-section {
  background: var(--bg-noir);
  padding: var(--section-pad-y) var(--section-pad-x);
}

body.noir .room-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--gap-xl);
  align-items: start;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

/* Room Eyebrow (fallback ohne Bilder) */
body.noir .room-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

body.noir .room-main h2 {
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

body.noir .room-main h3 {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* --- Quick Stats Bar --- */
body.noir .room-stats {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
}

body.noir .room-stat {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--glass-border);
}

body.noir .room-stat:last-child {
  border-right: none;
}

body.noir .room-stat .stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

body.noir .room-stat .stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- Room Description WYSIWYG --- */
body.noir .room-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

body.noir .room-description p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

body.noir .room-description strong {
  color: var(--text-primary);
}

body.noir .room-description ul {
  color: var(--text-secondary);
  padding-left: 1.2em;
  margin-bottom: 1rem;
}

body.noir .room-description ul li {
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

body.noir .room-description h4,
body.noir .room-description h3 {
  color: var(--text-primary);
}

/* --- Booking CTA --- */
body.noir .room-booking {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

/* --- Features Sidebar — Glass Card --- */
body.noir .room-features {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-glass);
  position: sticky;
  top: 6rem;
}

body.noir .room-features h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

body.noir .room-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.noir .room-features ul li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.noir .room-features ul li:last-child {
  border-bottom: none;
}

body.noir .room-features ul li span {
  color: var(--text-primary);
}

/* Inklusive Section */
body.noir .room-inclusive {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}

body.noir .room-inclusive h4 {
  margin-top: 0;
}

body.noir .room-inclusive ul li span {
  color: var(--text-secondary);
}

/* --- Responsive: Room Detail --- */
@media only screen and (max-width: 48rem) {
  body.noir .room-hero-image {
    height: 50vh;
    min-height: 280px;
  }

  body.noir .room-hero-overlay {
    padding: 2rem 1.25rem;
  }

  body.noir .room-hero-content h1 {
    font-size: 1.8rem;
  }

  body.noir .room-thumbs {
    padding: 0.75rem 1rem;
  }

  body.noir .room-thumb {
    width: 70px;
    height: 50px;
  }

  body.noir .room-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.noir .room-stats {
    flex-direction: column;
  }

  body.noir .room-stat {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
  }

  body.noir .room-stat:last-child {
    border-bottom: none;
  }

  body.noir .room-features {
    position: static;
  }

  body.noir .room-booking {
    flex-direction: column;
    align-items: stretch;
  }

  body.noir .room-booking .btn-gold,
  body.noir .room-booking .btn-ghost {
    text-align: center;
  }
}

/* ========================================================
   21. GLASS-CARD MIT BILD-HEADER (Homepage Zimmer-Cards)
   ======================================================== */

body.noir .glass-card .card-image {
  margin: calc(-1 * var(--card-padding));
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-deep);
}

body.noir .glass-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive: Split + Cards auf kleinen Bildschirmen */
@media only screen and (max-width: 48rem) {
  body.noir .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body.noir .split[style*="direction: rtl"] {
    direction: ltr !important;
  }
  body.noir .split[style*="direction: rtl"] > * {
    direction: ltr !important;
  }
}

/* ========================================================
   22. ROOM CARDS GRID — LUXURY (/zimmer/ Übersichtsseite)
   ======================================================== */

body.noir .noir-rooms-grid {
  padding: 0 var(--section-pad-x) var(--section-pad-y);
}

body.noir .noir-rooms-grid .section-inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

body.noir .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  perspective: 1200px;
}

/* Card — Glass with image reveal + 3D tilt */
body.noir .room-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow var(--dur-med) ease, border-color var(--dur-med) ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

/* Light reflection overlay (follows mouse via JS custom properties) */
body.noir .room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(199,171,120,0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

body.noir .room-card:hover::after {
  opacity: 1;
}

body.noir .room-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(199,171,120,0.3);
}

/* Fallback hover for non-JS / touch: keep simple translateY */
body.noir .room-card:hover:not(.is-tilting) {
  transform: translateY(-6px);
}

/* Card Image */
body.noir .room-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

body.noir .room-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

body.noir .room-card:hover .card-image img {
  transform: scale(1.05);
}

/* Card Text Content */
body.noir .room-card h3 {
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 1.25rem 1.25rem 0.3rem;
  line-height: 1.3;
}

body.noir .room-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 1.25rem 1rem;
  font-weight: 300;
}

body.noir .room-card-meta {
  display: flex;
  gap: 0.6rem;
  margin: 0 1.25rem 1rem;
  flex-wrap: wrap;
}

body.noir .room-card-meta .meta-item {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.06);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

body.noir .room-card .detail {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: text-shadow 0.3s ease;
}

/* Room card category label */
body.noir .room-card-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(199,171,120,0.1);
  border: 1px solid rgba(199,171,120,0.2);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin: 1rem 1.25rem 0;
  align-self: flex-start;
}

/* Section eyebrow inside rooms-grid */
body.noir .noir-rooms-grid .section-eyebrow {
  text-align: center;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 48rem) {
  body.noir .cards-grid {
    grid-template-columns: 1fr;
  }

  body.noir .ce-type-rooms_overview li.room ul.price a {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
  }
}

/* ========================================================
   22b. ZIMMER AUSSTATTUNGS-HIGHLIGHTS
   ======================================================== */

body.noir .zimmer-highlights {
  padding: var(--section-pad-y) var(--section-pad-x);
}

body.noir .zimmer-highlights .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

body.noir .zimmer-highlights .section-eyebrow {
  text-align: center;
}

body.noir .zimmer-highlights .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

body.noir .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

body.noir .highlight-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--dur-med) ease, transform var(--dur-med) ease;
}

body.noir .highlight-item:hover {
  border-color: rgba(199,171,120,0.25);
  transform: translateY(-3px);
}

body.noir .highlight-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
  filter: grayscale(0.3);
}

body.noir .highlight-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

body.noir .highlight-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media only screen and (max-width: 64rem) {
  body.noir .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 36rem) {
  body.noir .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  body.noir .highlight-item {
    padding: 1.5rem 1.25rem;
  }
}

/* ========================================================
   22c. ANIMATED SVG HIGHLIGHT ICONS (/zimmer/ Ausstattung)
   Stroke-basierte Icons mit CSS-Animationen.
   Animationen starten via .is-visible (noir-reveal.js).
   ======================================================== */

/* Container */
body.noir .highlight-svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

body.noir .highlight-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- Bed: Pillow breathing --- */
body.noir .is-visible .highlight-svg--bed .svg-pillow {
  animation: svg-breathe 3s ease-in-out infinite;
}
body.noir .is-visible .highlight-svg--bed .svg-pillow:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes svg-breathe {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.92); }
}

/* --- Tea: Steam rising --- */
body.noir .highlight-svg--tea .svg-steam {
  opacity: 0;
}
body.noir .is-visible .highlight-svg--tea .svg-steam {
  animation: svg-steam-rise 2.5s ease-in-out infinite;
}
body.noir .is-visible .highlight-svg--tea .svg-steam--2 {
  animation-delay: 0.5s;
}
body.noir .is-visible .highlight-svg--tea .svg-steam--3 {
  animation-delay: 1s;
}

@keyframes svg-steam-rise {
  0%   { opacity: 0; transform: translateY(0); }
  30%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* --- Mountain: Sun rising + rays pulsing --- */
body.noir .highlight-svg--mountain .svg-sun {
  transform-origin: center;
}
body.noir .is-visible .highlight-svg--mountain .svg-sun {
  animation: svg-sun-rise 1.8s ease-out forwards;
}

body.noir .highlight-svg--mountain .svg-ray {
  opacity: 0;
}
body.noir .is-visible .highlight-svg--mountain .svg-ray {
  animation: svg-ray-appear 0.6s ease-out forwards;
}
body.noir .is-visible .svg-ray--1 { animation-delay: 1s; }
body.noir .is-visible .svg-ray--2 { animation-delay: 1.1s; }
body.noir .is-visible .svg-ray--3 { animation-delay: 1.2s; }
body.noir .is-visible .svg-ray--4 { animation-delay: 1.3s; }
body.noir .is-visible .svg-ray--5 { animation-delay: 1.1s; }
body.noir .is-visible .svg-ray--6 { animation-delay: 1.2s; }

@keyframes svg-sun-rise {
  0%   { transform: translateY(6px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes svg-ray-appear {
  0%   { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- Cloche: Lid lifts --- */
body.noir .highlight-svg--cloche .svg-lid,
body.noir .highlight-svg--cloche .svg-knob {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.noir .is-visible .highlight-svg--cloche:hover .svg-lid {
  transform: translateY(-4px) rotate(-3deg);
  transform-origin: 10px 36px;
}
body.noir .is-visible .highlight-svg--cloche:hover .svg-knob {
  transform: translateY(-4px) rotate(-3deg);
  transform-origin: 10px 12px;
}

/* --- Wellness: Waves flowing --- */
body.noir .highlight-svg--wellness .svg-wave {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}
body.noir .is-visible .highlight-svg--wellness .svg-wave {
  animation: svg-wave-draw 1.5s ease-out forwards;
}
body.noir .is-visible .highlight-svg--wellness .svg-wave--2 {
  animation-delay: 0.2s;
}
body.noir .is-visible .highlight-svg--wellness .svg-wave--3 {
  animation-delay: 0.4s;
}

@keyframes svg-wave-draw {
  to { stroke-dashoffset: 0; }
}

/* --- WiFi: Signal pulsing outward --- */
body.noir .highlight-svg--wifi .svg-signal {
  opacity: 0;
}
body.noir .is-visible .highlight-svg--wifi .svg-signal {
  animation: svg-signal-pulse 2s ease-out infinite;
}
body.noir .is-visible .highlight-svg--wifi .svg-signal--2 {
  animation-delay: 0.3s;
}
body.noir .is-visible .highlight-svg--wifi .svg-signal--3 {
  animation-delay: 0.6s;
}

@keyframes svg-signal-pulse {
  0%   { opacity: 0; transform: scaleY(0.8); }
  40%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* --- Reduced motion: show static, no animation --- */
@media (prefers-reduced-motion: reduce) {
  body.noir .highlight-svg--tea .svg-steam,
  body.noir .highlight-svg--mountain .svg-ray,
  body.noir .highlight-svg--wifi .svg-signal {
    opacity: 0.7;
    animation: none;
  }
  body.noir .highlight-svg--wellness .svg-wave {
    stroke-dashoffset: 0;
    animation: none;
  }
  body.noir .is-visible .highlight-svg--bed .svg-pillow,
  body.noir .is-visible .highlight-svg--mountain .svg-sun {
    animation: none;
  }
}

/* ========================================================
   22d. ZIMMER SVG ORNAMENT DIVIDER
   Dekorative Linie zwischen Highlights und Room-Cards
   ======================================================== */

body.noir .zimmer-divider {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

body.noir .zimmer-divider svg {
  width: 200px;
  height: 40px;
  color: var(--gold);
}

body.noir .zimmer-divider .svg-draw-line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.5s ease-out;
}

body.noir .zimmer-divider .svg-draw-diamond {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.8s ease-out 0.8s;
}

body.noir .zimmer-divider.is-visible .svg-draw-line {
  stroke-dashoffset: 0;
}

body.noir .zimmer-divider.is-visible .svg-draw-diamond {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.noir .zimmer-divider .svg-draw-line,
  body.noir .zimmer-divider .svg-draw-diamond {
    stroke-dashoffset: 0;
  }
}

/* ========================================================
   22e. ROOM CARD HOVER ENHANCEMENTS
   Warm image filter, CTA reveal, price glow
   ======================================================== */

/* Image warm tint on hover */
body.noir .room-card:hover .card-image img {
  transform: scale(1.05);
  filter: brightness(1.08) saturate(1.1);
}

/* Card footer: price + CTA side by side */
body.noir .room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  margin-top: auto;
  border-top: 1px solid var(--glass-border);
}

body.noir .room-card-footer .detail {
  padding: 0;
  margin: 0;
  border: none;
}

/* "Entdecken →" CTA — hidden, slides in on hover */
body.noir .room-card-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.noir .room-card:hover .room-card-cta {
  opacity: 1;
  transform: translateX(0);
}

/* Price glow on hover */
body.noir .room-card:hover .detail {
  text-shadow: 0 0 12px rgba(199,171,120,0.3);
}

/* ========================================================
   22f. ZIMMER FAQ SECTION
   Native <details> styled as luxury accordion
   ======================================================== */

body.noir .zimmer-faq {
  padding: var(--section-pad-y) var(--section-pad-x);
}

body.noir .zimmer-faq .section-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

body.noir .zimmer-faq .section-eyebrow {
  text-align: center;
}

body.noir .zimmer-faq .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

body.noir .faq-list {
  text-align: left;
}

body.noir .faq-item {
  border-bottom: 1px solid var(--glass-border);
}

body.noir .faq-item:first-child {
  border-top: 1px solid var(--glass-border);
}

body.noir .faq-item summary {
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  list-style: none;
  transition: color 0.2s ease;
}

/* Remove default marker */
body.noir .faq-item summary::-webkit-details-marker {
  display: none;
}

body.noir .faq-item summary::marker {
  display: none;
  content: '';
}

/* Custom gold chevron */
body.noir .faq-item summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s ease;
}

body.noir .faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

body.noir .faq-item summary:hover {
  color: var(--gold);
}

body.noir .faq-answer {
  padding: 0 0 1.25rem;
}

body.noir .faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
