:root{
  --bg:#5b0f1a;
  --header:#2b0a0f;
  --card:#ffffff;
  --text:#111111;
  --muted:#666;
  --accent:#e0b34b;
  --title:#f5e6b8;
  --shadow:0 12px 34px rgba(0,0,0,.35);
  --radius:18px;
  --border:1px solid rgba(0,0,0,.12);

  /* Handy Safe-Area */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

/* Sanftes Scrollen */
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}

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

/* Anker-Ziele nicht vom Sticky Header verdecken */
#kontakt, #oeffnungszeiten, #galerie,
#zimmer-info, #zimmer-galerie,
#speisekarte, #massage-steckbrief,
#feiern-info, #angebote,
#anfrage, #preise, #faq, #leistungen, #hinweise, #ueberblick, #cta{
  scroll-margin-top: 120px;
}

body{
  margin:0;
  font-family:"Inter", system-ui, sans-serif;
  font-weight:400;
  color:var(--text);
  letter-spacing:.15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  background:
    linear-gradient(rgba(91,15,26,.55), rgba(59,7,16,.65)),
    url("bg.webp") center/cover no-repeat;
  background-color: var(--bg);
}
body.no-scroll{ overflow:hidden; }

/* Desktop darf “fester” wirken */
@media (min-width:720px){
  body{ background-attachment: fixed; }
}

/* Layout */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
  background:transparent;
}

/* Buttons: bessere Touch-Fläche */
.btn, .announcement-link, .drawer-link, .nav-link{
  min-height:44px;
}

/* =============================== */
/* HEADER */
/* =============================== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;

  background:
    linear-gradient(rgba(43,10,15,.55), rgba(43,10,15,.55)),
    url("header-bg.webp") center/cover no-repeat;

  border-bottom:2px solid var(--accent);
}

.header-inner{
  display:grid;
  grid-template-columns:46px 1fr 46px;
  align-items:center;
  padding:14px;
}

/* Titel */
.site-title{
  justify-self:center;
  text-align:center;
  text-decoration:none;
  color:var(--title);
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.8px;
  font-size:28px;
}
@media(min-width:720px){
  .site-title{ font-size:38px; }
}

.header-spacer{ width:46px; height:40px; }

/* Hamburger */
.menu-btn{
  width:46px;
  height:40px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  border-radius:12px;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.menu-lines,
.menu-lines::before,
.menu-lines::after{
  background:var(--title);
}
.menu-lines{
  width:18px;
  height:2px;
  position:relative;
}
.menu-lines::before,
.menu-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
}
.menu-lines::before{ top:-6px; }
.menu-lines::after{ top:6px; }

/* Desktop Tabs Navigation */
.site-nav{
  display:none;
  justify-content:center;
  gap:22px;
  padding:6px 14px 14px;
  background:transparent;
}

.nav-link{
  position:relative;
  text-decoration:none;
  color:rgba(245,230,184,.92);
  font-weight:600;
  letter-spacing:.25px;
  padding:10px 2px;
  transition:.2s;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:3px;
  border-radius:999px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s;
  opacity:.95;
}
.nav-link:hover{ color:#fff; }
.nav-link:hover::after{ transform:scaleX(1); }
.nav-link.active{ color:#fff; font-weight:700; }
.nav-link.active::after{ transform:scaleX(1); }

/* Desktop */
@media(min-width:720px){
  .menu-btn{ display:none; }
  .header-inner{ grid-template-columns:1fr; }
  .header-spacer{ display:none; }
  .site-nav{ display:flex; }
  .nav-overlay, .nav-drawer{ display:none !important; }
}

/* =============================== */
/* MOBILE DRAWER */
/* =============================== */
.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:.2s;
  z-index:80;
}
.nav-overlay.open{
  opacity:1;
  pointer-events:auto;
}

.nav-drawer{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:min(82vw, 340px);
  background:var(--header);
  border-right:2px solid rgba(224,179,75,.55);
  transform:translateX(-105%);
  transition:transform .25s ease;
  z-index:90;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  display:flex;
  flex-direction:column;
}
.nav-drawer.open{ transform:translateX(0); }

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 10px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.drawer-title{
  color:var(--title);
  font-weight:700;
  letter-spacing:.6px;
}
.drawer-close{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:var(--title);
  font-size:26px;
  cursor:pointer;
}
.drawer-nav{
  padding:10px 10px 16px;
  display:grid;
  gap:8px;
}
.drawer-link{
  text-decoration:none;
  color:var(--title);
  font-weight:600;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  transition:.2s;
}
.drawer-link:hover{
  background:rgba(224,179,75,.2);
  color:#fff;
}
.drawer-link.active{
  background:var(--accent);
  color:#000;
  border-color:rgba(0,0,0,.1);
  font-weight:700;
}

/* =============================== */
/* ANNOUNCEMENT */
/* =============================== */
.announcement{
  margin-top:16px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.94);
  box-shadow:var(--shadow);
}
.announcement img{
  width:120px;
  height:64px;
  border-radius:14px;
  object-fit:cover;
  flex:0 0 auto;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}
.announcement-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1.25;
  min-width:0;
}
.announcement-text strong{
  font-weight:700;
  color:#000;
  letter-spacing:.1px;
  font-size:16px;
}
.announcement-text span{
  font-size:14px;
  color:#444;
  margin-top:3px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.announcement-link{
  margin-left:auto;
  flex:0 0 auto;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:#000;
  background:var(--accent);
  padding:12px 14px;
  border-radius:14px;
  align-self:center;
}
.announcement-link:hover{ filter:brightness(.95); }

@media (max-width:719px){
  .announcement{ padding:12px; gap:12px; }
  .announcement img{ width:112px; height:64px; border-radius:12px; }
  .announcement-text strong{ font-size:15px; }
  .announcement-text span{ font-size:13px; white-space:normal; }
  .announcement-link{ padding:11px 12px; }
}

/* =============================== */
/* HERO */
/* =============================== */
.hero{
  position:relative;
  margin-top:16px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  padding:28px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)),
    url("hero.webp") center/cover no-repeat;
  z-index:0;
}
.hero > *{ position:relative; z-index:1; }

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

.kicker{
  margin:0 0 6px;
  color:#5b0f1a;
  font-weight:600;
  letter-spacing:.25px;
}

.hero h1{
  margin:0 0 12px;
  font-size:clamp(30px, 4.5vw, 46px);
  color:#000;
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.25px;
}

.lead{
  margin:0 0 18px;
  color:#333;
  font-size:16px;
  line-height:1.7;
  font-weight:400;
}

/* Buttons */
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:14px;
  background:var(--accent);
  color:#000;
  font-weight:600;
  text-decoration:none;
  border:none;
}
.btn-outline{
  background:var(--accent);
  color:#000;
  border:none;
}
.btn-small{ padding:10px 12px; }

/* Highlights */
.highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:var(--border);
  font-size:13px;
  font-weight:600;
}

/* ===== FIX: Hero-Photo “leeres Fenster” komplett weg ===== */
.hero-photo{ display:none !important; }

/* Hero card */
.hero-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
  max-width:100%;
  overflow:hidden;          /* wichtig: nichts darf rauslaufen */
}
.hero-card h2{
  margin:0 0 12px;
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.2px;
}

/* ===== FIX: Kontakt-Liste darf NIE überlaufen ===== */
.quick-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  max-width:100%;
}
.quick-list li{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
  font-weight:400;

  min-width:0;              /* wichtig für flex-overflow */
  flex-wrap:wrap;           /* darf umbrechen */
}
.quick-list li span{
  min-width:0;
  overflow-wrap:anywhere;   /* bricht lange Wörter/Mails */
  word-break:break-word;
}

/* Buttons unter Kontakt */
.mini-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Map */
.map-embed{
  margin-top:16px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}
.map-embed iframe{
  width:100%;
  height:220px;
  min-height:220px;
  border:0;
  display:block;
}

/* Mobile hero background: heller ohne Bildfläche */
@media (max-width:719px){
  .hero::before{
    background:linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9));
  }
}

/* =============================== */
/* INFO BLOCKS */
/* =============================== */
.info{
  margin-top:22px;
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
}
.info h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.2px;
}
.info p{
  margin:10px 0 0;
  line-height:1.7;
  color:#333;
}

/* =============================== */
/* RESTAURANT – SPEISEKARTE */
/* =============================== */
#speisekarte{
  margin-top:22px;
  position:relative;
  overflow:hidden;
  width:100%;
  border-radius:18px;

  border:2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(224,179,75,.95), rgba(245,230,184,.85)) border-box;

  box-shadow:var(--shadow);
  padding:22px 26px;
}
#speisekarte, #speisekarte *{
  font-family: "Playfair Display", serif;
}
#speisekarte > h2{
  text-align:center;
  margin:0;
  font-size:34px;
  letter-spacing:.2px;
}
#speisekarte .menu-note{
  text-align:center;
  margin:8px 0 14px;
  font-size:16px;
  color:var(--muted);
}
@media (min-width:900px){
  #speisekarte::before{
    content:"";
    position:absolute;
    top:18px;
    bottom:18px;
    left:50%;
    width:2px;
    transform:translateX(-1px);
    background:linear-gradient(to bottom,
      rgba(224,179,75,0),
      rgba(224,179,75,.55),
      rgba(224,179,75,0)
    );
    opacity:.9;
    pointer-events:none;
  }
  #speisekarte::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(900px 380px at 25% 15%, rgba(224,179,75,.10), transparent 55%),
      radial-gradient(900px 380px at 75% 15%, rgba(224,179,75,.10), transparent 55%),
      linear-gradient(90deg, rgba(0,0,0,.03), transparent 18%, transparent 82%, rgba(0,0,0,.03));
    pointer-events:none;
  }
  #speisekarte > *{ position:relative; z-index:1; }
}

.menu-category{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.10);
}
.menu-category:first-of-type{
  border-top:none;
  padding-top:6px;
}
.menu-category h3{
  margin:0 0 12px;
  font-weight:700;
  letter-spacing:.2px;
  font-size:26px;
  color:#111;
  display:flex;
  align-items:center;
  gap:10px;
}
.menu-category h3::after{
  content:"";
  height:2px;
  flex:1;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(224,179,75,.9), rgba(224,179,75,0));
}

.menu-items{
  display:grid;
  grid-template-columns:1fr;
  gap:12px 18px;
}
@media (min-width:900px){
  .menu-items{ grid-template-columns:1fr 1fr; }
}

.menu-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(224,179,75,.25);
  box-shadow:0 10px 22px rgba(0,0,0,.07);
  min-width:0;
}
.menu-left{ min-width:0; }
.menu-title{
  font-weight:700;
  color:#111;
  letter-spacing:.1px;
  font-size:19px;
}
.menu-desc{
  margin-top:2px;
  font-size:15px;
  color:var(--muted);
  line-height:1.35;
}
.menu-price{
  font-family:"Inter", system-ui, sans-serif;
  font-weight:700;
  color:#111;
  white-space:nowrap;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(224,179,75,.85), rgba(245,230,184,.85));
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 18px rgba(0,0,0,.10);
}

/* =============================== */
/* ZIMMER – GRID + MODAL + SLIDER */
/* =============================== */
.rooms-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width:900px){
  .rooms-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:560px){
  .rooms-grid{ grid-template-columns:1fr; }
}

.room-card{
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.16);
  position:relative;
  transition:.2s;
}
.room-card:hover{ transform:translateY(-4px); }
.room-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}
.room-label{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  font-weight:700;
  font-size:14px;
}

.room-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:16px;
}
.room-modal.open{ display:flex; }

.room-modal-inner{
  width:min(1080px, 100%);
  background:#fff;
  border-radius:18px;
  box-shadow:0 22px 70px rgba(0,0,0,.45);
  overflow:hidden;
  position:relative;
}

.room-modal-close{
  position:absolute;
  top:10px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.room-modal-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
}
.room-modal-media{ background:#111; }

.room-slider{
  position:relative;
  width:100%;
}
.room-slider img{
  width:100%;
  max-height:520px;
  height:auto;
  object-fit:cover;
}

.room-slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:2;
  user-select:none;
}
.room-slider-btn:hover{ background:rgba(0,0,0,.5); }
.room-slider-btn.prev{ left:12px; }
.room-slider-btn.next{ right:12px; }

.room-thumbs{
  display:flex;
  gap:10px;
  padding:12px;
  overflow-x:auto;
  background:rgba(0,0,0,.35);
}
.room-thumbs::-webkit-scrollbar{ height:8px; }
.room-thumbs::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.25);
  border-radius:999px;
}
.room-thumb{
  padding:0;
  border:2px solid transparent;
  border-radius:14px;
  background:transparent;
  cursor:pointer;
  flex:0 0 auto;
}
.room-thumb img{
  width:92px;
  height:58px;
  border-radius:12px;
  object-fit:cover;
  opacity:.9;
}
.room-thumb:hover img{ opacity:1; }
.room-thumb.active{ border-color:rgba(224,179,75,.95); }
.room-thumb.active img{ opacity:1; }

.room-modal-info{
  padding:18px 18px 16px;
  border-left:1px solid rgba(0,0,0,.08);
  min-width:0;
  overflow-wrap:anywhere;
}
.room-modal-info h3{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size:26px;
  letter-spacing:.2px;
}

.room-features h4{
  margin:0 0 8px;
  font-size:15px;
  letter-spacing:.2px;
  font-weight:800;
  color:#111;
}
.room-features ul{
  margin:0;
  padding-left:18px;
  color:#333;
  line-height:1.6;
}
.room-features li{ margin:4px 0; }

.room-prices{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  border:2px solid rgba(224,179,75,.55);
  background:linear-gradient(180deg, rgba(245,230,184,.35), rgba(224,179,75,.18));
}
.price-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:12px;
  padding:8px 6px;
  border-bottom:1px dashed rgba(0,0,0,.18);
  min-width:0;
}
.price-row:last-child{ border-bottom:none; }
.price-row span{
  color:#222;
  font-weight:600;
  min-width:0;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.price-row strong{ color:#000; }

.room-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Zimmer modal responsive */
@media (max-width:860px){
  .room-modal-grid{ grid-template-columns:1fr; }
  .room-slider img{ max-height:360px; }
  .room-modal-info{
    border-left:none;
    border-top:1px solid rgba(0,0,0,.08);
  }
  .room-actions .btn{ width:100%; text-align:center; }
  .room-slider-btn{
    width:42px;
    height:42px;
    border-radius:12px;
    font-size:32px;
  }
}

/* =============================== */
/* MASSAGEN – STECKBRIEF */
/* =============================== */
.profile-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:18px;
  align-items:start;
}
.profile-image{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.08);
  background:#fafafa;
}
.profile-image img{
  width:100%;
  height:100%;
  max-height:380px;
  object-fit:cover;
}
.profile-content{
  display:grid;
  gap:14px;
  min-width:0;
}
.profile-card{
  border-radius:18px;
  padding:16px 16px;
  background:linear-gradient(180deg, rgba(245,230,184,.20), rgba(224,179,75,.10));
  border:1px solid rgba(224,179,75,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  min-width:0;
}
.profile-card h3{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size:22px;
  letter-spacing:.15px;
}
.profile-list{
  margin:0;
  padding-left:18px;
  line-height:1.6;
  color:#222;
  overflow-wrap:anywhere;
}
.profile-list li{ margin:6px 0; }
.profile-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width:900px){
  .profile-grid{ grid-template-columns:1fr; }
  .profile-image img{ max-height:300px; }
}

/* =============================== */
/* EVENTS / FEIERN – KACHELN */
/* =============================== */
.event-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
@media (max-width:900px){
  .event-grid{ grid-template-columns:1fr; }
}
.event-card{
  border-radius:18px;
  padding:16px 16px;
  background:linear-gradient(180deg, rgba(245,230,184,.18), rgba(224,179,75,.10));
  border:1px solid rgba(224,179,75,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  min-width:0;
}
.event-card h3{
  margin:0 0 6px;
  font-family:"Playfair Display", serif;
  font-size:22px;
  letter-spacing:.15px;
}
.event-desc{
  margin:0 0 10px;
  color:#222;
  line-height:1.6;
}
.event-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  color:#333;
  font-weight:600;
  font-size:13px;
}
.event-meta span{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(0,0,0,.08);
}

/* =============================== */
/* GALERIE (allgemein) */
/* =============================== */
.gallery{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
  cursor:pointer;
  transition:.2s;
}
.gallery img:hover{ transform:translateY(-4px); }

/* ✅ Handy: “echtes” 1-Bild-pro-Slide Gefühl */
@media(max-width:719px){
  .gallery{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:4px 2px 10px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scroll-padding-left: 12px;
  }

  .gallery::-webkit-scrollbar{ height:8px; }
  .gallery::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,.25);
    border-radius:999px;
  }

  /* ein Bild pro “Slide” */
  .gallery img{
    flex:0 0 100%;
    height:240px;
    scroll-snap-align:center;
    scroll-snap-stop:always;
    border-radius:18px;
  }
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}
.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
  box-shadow:0 0 40px rgba(0,0,0,.6);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  background:transparent;
  border:none;
  color:#fff;
  cursor:pointer;
  user-select:none;
  font-weight:400;
}
.lightbox-close{ top:20px; right:30px; font-size:40px; }
.lightbox-prev,
.lightbox-next{
  top:50%;
  transform:translateY(-50%);
  font-size:60px;
  padding:20px;
}
.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }

/* Öffnungszeiten */
.hours{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.hours-row{
  display:flex;
  justify-content:space-between;
  padding:14px;
  border-radius:14px;
  background:#f3f3f3;
  font-weight:500;
  min-width:0;
}
.hours-row span{
  min-width:0;
  overflow-wrap:anywhere;
}

/* CTA */
.cta{
  margin-top:24px;
  padding:26px;
  border-radius:20px;
  background:linear-gradient(135deg, #e0b34b, #f2d27c);
  text-align:center;
  box-shadow:var(--shadow);
}
.cta h2{
  margin:0 0 10px;
  font-size:28px;
  color:#000;
  font-family:"Playfair Display", serif;
  font-weight:700;
}

/* Footer */
.footer{
  margin-top:26px;
  background:var(--header);
  border-top:2px solid var(--accent);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  padding:14px 18px;
  flex-wrap:wrap;
  color:var(--title);
}
.footer a{
  color:inherit;
  text-decoration:none;
  font-weight:500;
}
.footer a:hover{ text-decoration:underline; }
.muted{ color:#c9bfa3; }
.small{ font-size:12px; }

/* =============================== */
/* KANU – Zusatz (falls vorhanden) */
/* =============================== */
.two-col{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width:900px){
  .two-col{ grid-template-columns:1fr; }
}
.panel{
  border-radius:18px;
  padding:16px 16px;
  background:linear-gradient(180deg, rgba(245,230,184,.18), rgba(224,179,75,.10));
  border:1px solid rgba(224,179,75,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  min-width:0;
}
.panel-title{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size:22px;
  letter-spacing:.15px;
}
.checklist{
  margin:0;
  padding-left:18px;
  line-height:1.7;
  color:#222;
}
.checklist li{ margin:6px 0; }
.price-table{
  margin-top:14px;
  border-radius:18px;
  padding:10px;
  background:linear-gradient(180deg, rgba(245,230,184,.20), rgba(224,179,75,.10));
  border:1px solid rgba(224,179,75,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.price-table .price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  margin:10px 0;
  min-width:0;
}
.price-table .price-row span{
  font-weight:600;
  color:#222;
  min-width:0;
  overflow-wrap:anywhere;
}
.price-table .price-row strong{ font-weight:700; color:#000; }

.faq{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.faq details{
  border-radius:16px;
  background:#f6f6f6;
  border:1px solid rgba(0,0,0,.08);
  padding:10px 12px;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+";
  float:right;
  font-weight:800;
}
.faq details[open] summary::after{ content:"–"; }
.faq p{
  margin:10px 0 0;
  color:#333;
  line-height:1.7;
}

/* =============================== */
/* MOBILE CLEAN-UP */
/* =============================== */
@media (max-width:719px){
  .container{ padding:12px; }

  /* Header safe area */
  .site-header{ padding-top: var(--safe-top); }
  .header-inner{ padding:12px; }

  .site-title{
    font-size:26px;
    line-height:1.1;
  }

  /* Announcement: schöner untereinander */
  .announcement{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .announcement img{
    width:100%;
    height:140px;
    border-radius:16px;
  }
  .announcement-link{
    width:100%;
    text-align:center;
  }
  .announcement-text span{ white-space:normal; }

  .hero{
    padding:16px;
    gap:14px;
  }

  .hero h1{
    font-size:clamp(26px, 7.4vw, 34px);
    line-height:1.12;
  }
  .lead{
    font-size:15px;
    line-height:1.65;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
    margin-bottom:16px;
  }
  .hero-actions .btn{
    width:100%;
    text-align:center;
  }

  .highlights{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .pill{
    text-align:center;
    border-radius:14px;
    padding:10px 10px;
    font-size:13px;
  }

  .quick-list{
    gap:8px;
  }
  .quick-list li{
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    padding:10px 12px;
    border-radius:14px;
    background:#f6f6f6;
  }

  .mini-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .mini-actions .btn{
    width:100%;
    text-align:center;
  }

  .map-embed iframe{
    height:220px;
    min-height:220px;
  }

  .hours-row{
    padding:12px;
    font-size:14px;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .footer-inner{
    gap:10px;
    justify-content:center;
    text-align:center;
    padding-bottom: calc(14px + var(--safe-bottom));
  }

  #speisekarte{ padding:18px 16px; }
  #speisekarte > h2{ font-size:30px; }
  .menu-category h3{ font-size:24px; }
  .menu-title{ font-size:18px; }
  .menu-desc{ font-size:15px; }

  .room-modal{ padding:10px; }
  .room-modal-inner{ border-radius:16px; }
  .room-modal-close{
    width:44px;
    height:44px;
    border-radius:14px;
  }
  .room-slider img{ max-height:320px; }

  .profile-actions{
    flex-direction:column;
  }
  .profile-actions .btn{
    width:100%;
    text-align:center;
  }

  .cta .btn{
    width:100%;
    text-align:center;
  }
}

/* EXTRA: sehr kleine Geräte <= 380px */
@media (max-width:380px){
  .site-title{ font-size:24px; }
  .pill{ font-size:12px; padding:9px 8px; }
  .hero h1{ font-size:clamp(24px, 8vw, 32px); }
}

/* =============================== */
/* ZIMMER MODAL – HANDY: 15% top + Swipe-Galerie */
/* =============================== */
@media (max-width:719px){

  /* Modal nicht zentriert, sondern weiter oben starten */
  .room-modal{
    align-items:flex-start;         /* statt center */
    padding: 15vh 12px 12px;        /* 15% von oben */
    overflow:auto;                  /* falls Inhalt hoch ist */
  }

  /* Modal-Box: volle Breite + angenehme Höhe */
  .room-modal-inner{
    width:100%;
    max-width: 560px;               /* optional, kann auch raus */
    max-height: 80vh;               /* bleibt im Screen */
    overflow:auto;
  }

  /* Slider als echte Swipe-Galerie: 1 Bild = 1 Slide */
  .room-slider{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scroll-behavior:smooth;
    width:100%;
  }

  /* Scrollbar hübsch/klein */
  .room-slider::-webkit-scrollbar{ height:8px; }
  .room-slider::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.25);
    border-radius:999px;
  }

  /* Jedes Bild als Slide */
  .room-slider img{
    flex:0 0 100%;
    width:100%;
    height:260px;                   /* passend fürs Handy */
    object-fit:cover;
    scroll-snap-align:start;
    scroll-snap-stop:always;
    border-radius:0;                /* damit es sauber in der Box sitzt */
    cursor:pointer;                 /* zeigt: klickbar */
  }

  /* Pfeile im Modal auf Handy ausblenden (wir wischen stattdessen) */
  .room-slider-btn{ display:none !important; }

  /* Thumbs optional: wenn du willst, können die bleiben,
     aber meistens wirkt es cleaner ohne */
  .room-thumbs{
    padding:10px;
  }

  /* Info-Teil etwas luftiger */
  .room-modal-info{
    padding:14px;
  }
}

/* =============================== */
/* 📱 HANDY: Hintergrund nur im Header */
/* =============================== */
@media (max-width:719px){

  body{
    background: var(--bg);
  }

  .site-header{
    background:
      linear-gradient(rgba(43,10,15,.55), rgba(43,10,15,.55)),
      url("header-bg.webp") center/cover no-repeat;
  }

}