/*
Theme Name: Warnemünde FeWo
Theme URI: https://ferienzimmer-warnemuende.de/
Author: EmanCopys
Description: Schlankes Custom-Theme für Ferienwohnung am Leuchtturm in Warnemünde. Modern minimal coastal, ohne Page-Builder, WhatsApp-Buchung.
Version: 1.0.0
Text Domain: warnemuende-fewo
*/

:root {
  --ostsee: #1e4b6b;
  --ostsee-dark: #12314a;
  --ostsee-light: #3b7ba0;
  --sand: #f5ecd7;
  --sand-warm: #ede0c2;
  --weiss: #ffffff;
  --tinte: #1a1a1a;
  --grau: #4a4a4a;
  --grau-light: #e8e8e8;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --accent: #c47c3c;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w: 1200px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--tinte);
  line-height: 1.6;
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ostsee); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ostsee-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--ostsee-dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grau-light);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.05); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ostsee-dark);
  font-weight: 600;
  line-height: 1.2;
}
.site-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--grau);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.main-nav a {
  color: var(--tinte);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ostsee);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

/* Submenu (Desktop: hover-Dropdown) */
.main-nav li.has-submenu { position: relative; }
.submenu-caret { font-size: 0.7em; margin-left: 0.15em; opacity: 0.7; }
.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  background: var(--weiss);
  padding: 0.4rem 0;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 10;
}
.main-nav li.has-submenu:hover > .submenu,
.main-nav li.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.main-nav .submenu li a {
  padding: 0.65rem 1.4rem;
  display: block;
  font-size: 0.92rem;
  white-space: nowrap;
  border-bottom: 0 !important;
}
.main-nav .submenu li a::after { display: none; }
.main-nav .submenu li a:hover { background: var(--sand); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem;
  color: var(--ostsee-dark);
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--grau-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 500px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--pad) 1.5rem;
  }
  .main-nav a {
    display: block;
    padding: .9rem 0;
    border-bottom: 1px solid var(--grau-light);
    font-size: 1.05rem;
  }
  .main-nav li:last-child a { border-bottom: 0; }

  /* Submenu auf Mobile: aufgeklappt, eingerückt, kein Dropdown */
  .main-nav .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0.5rem;
    min-width: 0;
  }
  .main-nav .submenu li a {
    padding: 0.55rem 0 0.55rem 1.5rem;
    font-size: 0.95rem;
    color: var(--grau);
    border-bottom: 0;
  }
  .submenu-caret { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--weiss);
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c5b7f 0%, #1e4b6b 60%, #12314a 100%);
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,49,74,0.4) 0%, rgba(18,49,74,0.75) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--pad);
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--weiss); margin-bottom: 1.5rem; }
.hero__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--wa {
  background: var(--whatsapp);
  color: var(--weiss);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn--wa:hover { background: var(--whatsapp-dark); color: var(--weiss); }
.btn--wa svg { width: 20px; height: 20px; fill: currentColor; }
.btn--ghost {
  background: transparent;
  color: var(--weiss);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--weiss); border-color: var(--weiss); }
.btn--dark {
  background: var(--ostsee-dark);
  color: var(--weiss);
}
.btn--dark:hover { background: var(--ostsee); color: var(--weiss); }

/* ── SECTIONS ── */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ostsee-dark); color: var(--weiss); }
.section--dark h2, .section--dark h3 { color: var(--weiss); }

.section__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ostsee-light);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.section__lead { color: var(--grau); font-size: 1.1rem; }
.section--dark .section__eyebrow { color: var(--sand); }
.section--dark .section__lead { color: rgba(255,255,255,0.85); }

/* ── USPs ── */
.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.usp {
  text-align: center;
  padding: 1rem;
}
.usp__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  color: var(--ostsee);
}
.usp__icon svg { width: 100%; height: 100%; }
.usp h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.usp p { font-size: 0.95rem; color: var(--grau); }

/* ── WENDELTREPPE-CALLOUT ── */
.callout {
  background: linear-gradient(135deg, var(--accent) 0%, #a05e28 100%);
  color: var(--weiss);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 8px 30px rgba(196,124,60,0.25);
  margin: 3rem auto 0;
  max-width: 900px;
}
.callout__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.callout__icon svg { width: 100%; height: 100%; fill: currentColor; }
.callout h3 { color: var(--weiss); font-size: 1.3rem; margin-bottom: .4rem; }
.callout p { font-size: 1rem; opacity: 0.95; }
@media (max-width: 600px) {
  .callout { flex-direction: column; text-align: center; align-items: center; padding: 1.5rem; }
}

/* ── ZIMMER CARDS ── */
.rooms {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.room:nth-child(even) .room__media { order: 2; }
.room__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(30,75,107,0.15);
}
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room__media:hover img { transform: scale(1.05); }
.room__num {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--sand-warm);
  line-height: 1;
  margin-bottom: 1rem;
}
.room h3 { color: var(--ostsee-dark); }
.room__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}
.room__meta span {
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  background: var(--sand);
  border-radius: 2rem;
  color: var(--ostsee-dark);
}
.room__desc { margin-bottom: 1.5rem; color: var(--grau); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.price-table th, .price-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--grau-light);
}
.price-table th {
  font-weight: 500;
  color: var(--grau);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--ostsee-dark); }

@media (max-width: 800px) {
  .room { grid-template-columns: 1fr; gap: 1.5rem; }
  .room:nth-child(even) .room__media { order: 0; }
  .room__num { font-size: 3.5rem; }
}

/* ── AUSSTATTUNG ── */
.equipment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.eq-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 0.95rem;
}
.eq-item svg { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.8; }

/* ── ANGEBOT / KOMBI ── */
.offer {
  background: var(--weiss);
  color: var(--tinte);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.offer h3 { color: var(--ostsee-dark); margin-bottom: 0.8rem; }
.offer p { color: var(--grau); margin-bottom: 1.5rem; }

/* ── LAGEPLAN ── */
.lage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lage-features { list-style: none; }
.lage-features li {
  display: flex;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--grau-light);
  align-items: center;
  font-size: 1rem;
}
.lage-features li:last-child { border-bottom: 0; }
.lage-features svg { width: 22px; height: 22px; color: var(--ostsee); flex-shrink: 0; }
.lage-img {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30,75,107,0.15);
}
.lage-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) {
  .lage-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── KONTAKT CTA ── */
.contact-cta {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: linear-gradient(135deg, var(--ostsee) 0%, var(--ostsee-dark) 100%);
  color: var(--weiss);
  overflow: hidden;
}
.contact-cta > .container { position: relative; z-index: 2; }
.contact-cta__bg { position: absolute; inset: 0; z-index: 0; }
.contact-cta__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,49,74,0.55) 0%, rgba(18,49,74,0.85) 100%);
  z-index: 2;
}
.slideshow--cta { position: absolute; inset: 0; z-index: 1; }
.contact-cta h2 { color: var(--weiss); margin-bottom: 1rem; }
.contact-cta p { max-width: 560px; margin: 0 auto 2rem; opacity: 0.95; font-size: 1.1rem; }
.contact-info { margin-top: 2rem; opacity: 0.9; font-size: 0.95rem; }
.contact-info a { color: var(--sand); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--weiss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  z-index: 90;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.1); color: var(--weiss); }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }

/* ── FOOTER ── */
.site-footer {
  background: var(--tinte);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-grid h4 {
  color: var(--weiss);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--weiss); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: .5rem; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── PAGE (AGB / Impressum) ── */
.page-hero {
  padding: 6rem 0 3rem;
  background: var(--sand);
  text-align: center;
}
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem var(--pad);
}
.page-content h2 { margin-top: 2rem; }
.page-content h3 { margin-top: 1.5rem; }
.page-content p, .page-content li { color: var(--grau); }
.page-content ol, .page-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ── SLIDESHOW (Hero) ── */
.slideshow { position: absolute; inset: 0; overflow: hidden; }
.slideshow__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slideshow__slide.active { opacity: 1; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow__nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slideshow__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.slideshow__dot:hover { background: rgba(255,255,255,0.7); }
.slideshow__dot.active { background: var(--weiss); transform: scale(1.3); }

/* ── ROOM ACTIONS ── */
.room__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.room__media { display: block; cursor: zoom-in; }
a.room__media { text-decoration: none; }

/* ── GALLERY GRID ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  background: var(--grau-light);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery--umgebung { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  color: var(--weiss);
  border: 0;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  z-index: 301;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.3); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
}
@media (max-width: 600px) {
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
}

/* ── ZIMMER-DETAIL PAGE ── */
.zimmer-hero {
  min-height: 55vh;
  padding: 6rem 0 3.5rem;
  color: var(--weiss);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.zimmer-hero .container { position: relative; }
.zimmer-hero__back {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.zimmer-hero__back:hover { color: var(--weiss); }
.zimmer-hero__num {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.55;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.zimmer-hero h1 { color: var(--weiss); margin-bottom: 0.4rem; }
.zimmer-hero__label { font-size: 1.15rem; opacity: 0.9; margin-bottom: 1rem; }
.zimmer-hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.zimmer-hero__meta span {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2rem;
  font-size: 0.85rem;
}

.zimmer-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .zimmer-detail-grid { grid-template-columns: 1fr; } }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: var(--grau);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ostsee);
  font-weight: 600;
}

.price-card {
  background: var(--sand);
  padding: 2rem;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}
.price-card h3 { color: var(--ostsee-dark); margin-bottom: 1rem; }
.price-card .price-table { margin-bottom: 1.2rem; }
.price-card__note {
  font-size: 0.85rem;
  color: var(--grau);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.callout-strip {
  background: var(--sand-warm);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.callout-strip p { color: var(--tinte); font-size: 0.95rem; margin: 0; }

/* ── ZIMMER VIDEO ── */
.zimmer-video {
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30,75,107,0.18);
}
.zimmer-video video {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

/* ── OTHER ROOMS (bottom of detail page) ── */
.other-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.other-room {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  color: var(--weiss);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
  align-items: center;
}
.other-room:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  color: var(--weiss);
}
.other-room__media {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 4px;
  overflow: hidden;
}
.other-room__media img { width: 100%; height: 100%; object-fit: cover; }
.other-room__body { flex: 1; }
.other-room__num {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.3rem;
}
.other-room h3 { color: var(--weiss); font-size: 1.3rem; margin-bottom: 0.3rem; }
.other-room p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0.6rem; }
.other-room__cta { font-size: 0.9rem; color: var(--sand); font-weight: 500; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--tinte);
  color: var(--weiss);
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  animation: cb-slide .4s ease-out;
}
@keyframes cb-slide { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cookie-banner a { color: var(--sand); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; padding: 0.6rem 1.4rem; font-size: 0.9rem; background: var(--sand); color: var(--tinte); }
.cookie-banner .btn:hover { background: var(--weiss); color: var(--tinte); }
@media (max-width: 700px) {
  .cookie-banner__inner { flex-direction: column; gap: 0.8rem; text-align: center; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
