/* ══════════════════════════════════════════════════════════
   M&A Cityhotel Hildesheim
   Elegantes, helles Design · einheitliche warme Töne
   ══════════════════════════════════════════════════════════ */

:root {
  --bg:        #FBFAF7;   /* warmes Weiß – Grundfläche */
  --white:     #FFFFFF;
  --sand:      #F2EDE4;   /* warmer heller Sektion-Ton */
  --charcoal:  #2A2622;   /* warmes Anthrazit – Nav, Footer, Buttons */
  --charcoal2: #3A352F;
  --bronze:    #9C7C4A;   /* gedämpftes, edles Bronze/Gold */
  --bronze-lt: #B89A6A;
  --bronze-dk: #7A5E32;
  --bronze-bg: rgba(156,124,74,0.10);
  --text:      #2A2622;
  --text-soft: #5C554C;
  --muted:     #877E72;
  --border:    rgba(42,38,34,0.12);
  --border-lt: rgba(42,38,34,0.07);
  --font-h:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22,0.61,0.36,1);
  --r:         6px;
  --max:       1180px;
  --shadow:    0 4px 30px rgba(42,38,34,0.07);
  --shadow-lg: 0 16px 50px rgba(42,38,34,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-b);
  font-size: 17px; line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 3px; }

::selection { background: var(--bronze); color: var(--white); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }

/* ─── Reveal ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2.25rem; border-radius: var(--r);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease); cursor: pointer; border: 1.5px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: var(--bronze); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,0.18); color: var(--white); border-color: rgba(255,255,255,0.7); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.95); color: var(--charcoal); border-color: var(--white); }
.btn-bronze { background: var(--bronze); color: var(--white); border-color: var(--bronze); }
.btn-bronze:hover { background: var(--bronze-dk); border-color: var(--bronze-dk); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ─── Section headers ────────────────── */
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze);
  margin-bottom: 0.9rem;
}
.section-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.section-header h2 {
  font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500; line-height: 1.12; margin-bottom: 1rem; color: var(--text);
  letter-spacing: -0.01em;
}
.section-header p { color: var(--text-soft); font-size: 1.08rem; }

/* ════════════ NAVIGATION ════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.85rem 0; transition: all 0.4s var(--ease);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}
#navbar::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(251,250,247,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
#navbar.scrolled {
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}
#navbar.scrolled::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(251,250,247,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; min-width: 0; flex: 0 1 auto; }
.nav-logo img { width: 58px; height: 58px; object-fit: contain; transition: width 0.4s, height 0.4s; }
#navbar.scrolled .nav-logo img { width: 50px; height: 50px; }
.nav-logo-text {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.01em; transition: color 0.4s;
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav-logo-text em { font-style: italic; font-weight: 500; color: var(--bronze); }
#navbar.scrolled .nav-logo-text { color: var(--text); }
#navbar.scrolled .nav-logo-text em { color: var(--bronze); }

.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a {
  font-size: 0.93rem; font-weight: 500; color: var(--text-soft);
  transition: color 0.25s; position: relative; padding: 0.25rem 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--bronze); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a { color: var(--text-soft); }
#navbar.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--bronze); color: var(--white) !important;
  padding: 0.65rem 1.5rem !important; border-radius: var(--r);
  font-weight: 600 !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--charcoal); transform: translateY(-1px); }
#navbar.scrolled .nav-cta { color: var(--white) !important; }

/* Sprachumschalter */
.nav-lang {
  font-size: 0.78rem !important; font-weight: 600 !important;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.7rem !important;
  border: 1px solid rgba(42,38,34,0.2);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.nav-lang:hover { border-color: var(--bronze); background: var(--bronze-bg); }
.nav-lang::after { display: none !important; }
#navbar.scrolled .nav-lang { border-color: rgba(42,38,34,0.2); }
#navbar.scrolled .nav-lang:hover { border-color: var(--bronze); background: var(--bronze-bg); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; padding: 0; z-index: 210; position: relative;
  flex-shrink: 0; width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid rgba(156,124,74,0.45);
  border-radius: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--bronze); background: var(--bronze-bg); }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--charcoal); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* Home-Button in Mobile-Nav (Messeseiten) */
.nav-home {
  font-weight: 600 !important;
  color: var(--bronze) !important;
}
.nav-home:hover { color: var(--bronze-dk) !important; }

/* ════════════ HERO ════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,14,0.92) 0%, rgba(20,17,14,0.45) 48%, rgba(20,17,14,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 0 1.75rem 3rem;
}
.hero-eyebrow {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bronze-lt); margin-bottom: 1.3rem;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(3rem, 7.5vw, 5.6rem);
  font-weight: 500; line-height: 1.05; color: var(--white);
  margin-bottom: 1.4rem; letter-spacing: -0.01em;
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}
.hero-title em { font-style: italic; font-weight: 500; color: #E4D2A8; }
.hero-sub {
  font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.82);
  max-width: 540px; margin-bottom: 2.2rem;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.55s both;
}
.hero-stats {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 0 1.75rem;
  display: flex;
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}
.hstat {
  flex: 1; max-width: 200px;
  padding: 1.5rem 1.5rem;
  background: rgba(251,250,247,0.97);
  border-right: 1px solid var(--border);
  text-align: center;
}
.hstat:first-child { border-radius: var(--r) 0 0 0; }
.hstat:last-child { border-right: none; border-radius: 0 var(--r) 0 0; }
.hstat-n { display: block; font-family: var(--font-h); font-size: 2rem; font-weight: 600; color: var(--charcoal); line-height: 1; }
.hstat-l { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 0.45rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════ HIGHLIGHTS ════════════ */
#highlights { padding: 6rem 0; background: var(--bg); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r); padding: 2.5rem 1.75rem; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.usp-icon {
  width: 56px; height: 56px; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--bronze-bg); border-radius: 50%; color: var(--bronze);
}
.usp-icon svg { width: 26px; height: 26px; }
.usp-card h3 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.6rem; }
.usp-card p { color: var(--text-soft); font-size: 0.97rem; line-height: 1.65; }

/* ════════════ ZIMMER ════════════ */
#zimmer { padding: 7rem 0; background: var(--sand); }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.room-card {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Slideshow */
.room-slideshow { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--charcoal); }
.slides { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease);
}
.slide.active { opacity: 1; }
.room-badge {
  position: absolute; top: 0; left: 0; z-index: 3;
  background: var(--charcoal); color: var(--white);
  padding: 0.45rem 1rem; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 0 0 var(--r) 0;
}
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--charcoal);
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.25s; box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.slide-arrow.prev { left: 0.7rem; }
.slide-arrow.next { right: 0.7rem; }
.room-slideshow:hover .slide-arrow { opacity: 1; }
.slide-arrow:hover { background: var(--bronze); color: var(--white); }
.slide-dots {
  position: absolute; bottom: 0.85rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 0.4rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); transition: all 0.25s; padding: 0;
}
.dot.active { background: var(--white); width: 22px; border-radius: 4px; }

.room-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-family: var(--font-h); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.3rem; }
.room-desc { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 1.1rem; line-height: 1.55; }
.room-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
  margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--border-lt);
}
.room-features li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.86rem; color: var(--text-soft); }
.room-features svg { width: 15px; height: 15px; stroke: var(--bronze); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.room-footer { display: flex; flex-direction: column; gap: 1rem; margin-top: auto; }
.room-price { display: flex; align-items: baseline; gap: 0.3rem; flex-wrap: nowrap; }
.price-from { font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.price-amount { font-family: var(--font-h); font-size: 1.85rem; font-weight: 600; color: var(--charcoal); line-height: 1; white-space: nowrap; }
.price-night { font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.rooms-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 2rem; }

/* ════════════ GALERIE (Schiebe-Galerie) ════════════ */
#galerie { padding: 7rem 0; background: var(--bg); }
.gallery-carousel {
  position: relative;
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0 1.75rem;
}
.gallery-track {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gal-slide {
  flex: 0 0 auto;
  width: 460px; max-width: 78vw;
  scroll-snap-align: center;
  margin: 0; cursor: pointer;
  border-radius: var(--r); overflow: hidden;
  background: var(--charcoal); position: relative;
  box-shadow: var(--shadow);
}
.gal-slide img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gal-slide:hover img { transform: scale(1.05); }
.gal-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(20,17,14,0.85), transparent);
  color: var(--white); font-family: var(--font-h);
  font-size: 1.2rem; font-weight: 500;
}
.gal-arrow {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease); box-shadow: var(--shadow);
  z-index: 5;
}
.gal-arrow:hover { background: var(--bronze); transform: scale(1.08); }
.gal-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }
.gallery-progress {
  max-width: 200px; height: 3px; margin: 2rem auto 0;
  background: var(--border); border-radius: 2px; overflow: hidden;
}
.gallery-progress span {
  display: block; height: 100%; width: 20%;
  background: var(--bronze); border-radius: 2px;
  transition: width 0.3s var(--ease), margin-left 0.3s var(--ease);
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,17,14,0.97); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lb-content { display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: 92vw; }
.lb-content img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: var(--r); }
.lb-content p { color: rgba(255,255,255,0.7); font-size: 0.92rem; letter-spacing: 0.05em; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.lb-close { top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; font-size: 1.1rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 1.8rem; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--bronze); border-color: var(--bronze); }

/* ════════════ FRÜHSTÜCK ════════════ */
#fruehstueck { padding: 7rem 0; background: var(--sand); }
.frueh-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.75rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.frueh-images { position: relative; }
.frueh-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.frueh-small {
  position: absolute; bottom: -2.5rem; right: -2rem; width: 50%;
  aspect-ratio: 1; object-fit: cover; border-radius: var(--r);
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
}
.frueh-badge {
  position: absolute; top: -1.5rem; left: -1.5rem;
  background: var(--charcoal); color: var(--white);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.fb-price { font-family: var(--font-h); font-size: 1.65rem; font-weight: 600; color: var(--bronze-lt); line-height: 1; }
.fb-unit { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; opacity: 0.85; }
.frueh-content h2 {
  font-family: var(--font-h); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.12; margin-bottom: 1.2rem;
}
.frueh-content > p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 1.6rem; }
.frueh-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.4rem; }
.frueh-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--text); }
.frueh-list svg { width: 18px; height: 18px; stroke: var(--bronze); flex-shrink: 0; }
.frueh-times {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--text-soft); font-size: 0.9rem;
  margin-bottom: 1.75rem; padding: 0.7rem 1rem;
  background: var(--bronze-bg); border-radius: 8px;
}
.frueh-times strong { color: var(--charcoal2); }
.frueh-times svg { flex-shrink: 0; stroke: var(--bronze); }
.frueh-times-rows { display: flex; flex-direction: column; gap: 0.2rem; line-height: 1.5; }

/* ════════════ LAGE ════════════ */
#lage { padding: 7rem 0; background: var(--bg); }
.lage-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }
.lage-info { display: flex; flex-direction: column; gap: 1.1rem; }
.lage-card {
  display: flex; gap: 1.1rem; padding: 1.5rem;
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r); transition: box-shadow 0.25s, transform 0.25s;
}
.lage-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.lage-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bronze-bg); border-radius: 50%; color: var(--bronze);
}
.lage-icon svg { width: 20px; height: 20px; }
.lage-card strong { display: block; font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.lage-card p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.6; }
.lage-card a { color: var(--bronze); transition: color 0.2s; }
.lage-card a:hover { color: var(--charcoal); }
.lage-map-wrap {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  position: sticky; top: 100px;
  height: 480px;
}
.lage-map-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
/* Leaflet Karte */
#hotelMap { width: 100%; height: 100%; border-radius: var(--r); display: none; }
#hotelMap .leaflet-popup-content-wrapper { border-radius: 10px !important; box-shadow: 0 8px 30px rgba(42,38,34,0.18) !important; padding: 0 !important; }
#hotelMap .leaflet-popup-content { margin: 12px 14px !important; }
#hotelMap .leaflet-popup-tip { background: #fff; }
#hotelMap .leaflet-popup-close-button { font-size: 18px !important; padding: 6px 8px !important; color: var(--charcoal) !important; }
#hotelMap .map-directions-link { display: inline-block; margin-top: 7px; font-size: 0.82rem; color: #2A7AE2; text-decoration: none; font-weight: 600; }
#hotelMap .map-directions-link:hover { text-decoration: underline; }

/* ════════════ BEWERTUNGEN ════════════ */
#bewertungen { padding: 7rem 0; background: var(--white); }

/* Gesamtnote */
.rating-overview {
  display: flex; gap: 3.5rem; align-items: flex-start;
  background: var(--sand); border-radius: var(--r);
  padding: 2.5rem 3rem; margin-bottom: 3.5rem;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.rating-score-wrap {
  display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0;
}
.rating-score {
  font-family: var(--font-h); font-size: 4.5rem; font-weight: 600;
  color: var(--charcoal); line-height: 1; letter-spacing: -0.03em;
}
.rating-score-info {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.rating-label {
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 600;
  color: var(--bronze);
}
.rating-count { font-size: 0.82rem; color: var(--muted); }
.rating-source { font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem; font-style: italic; }

/* Balken */
.rating-bars { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 0.9rem; }
.rating-bar-row { display: flex; align-items: center; gap: 0.85rem; }
.rating-bar-label { font-size: 0.88rem; color: var(--text-soft); width: 110px; flex-shrink: 0; }
.rating-bar-track {
  flex: 1; height: 7px; background: var(--border);
  border-radius: 99px; overflow: hidden;
}
.rating-bar-fill {
  height: 100%; width: var(--pct);
  background: var(--bronze); border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.rating-bar-val { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); width: 2.2rem; text-align: right; }

/* Karten */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
  margin-bottom: 3rem;
}
.review-card {
  background: var(--sand); border-radius: var(--r);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid var(--border-lt); box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,38,34,0.13); }
.review-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.review-text {
  font-size: 0.97rem; color: var(--text-soft); line-height: 1.75;
  flex: 1; font-style: italic;
}
.review-footer { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bronze); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.review-author { display: block; font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.review-source { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.review-score {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 600;
  color: var(--bronze); flex-shrink: 0; letter-spacing: -0.02em;
}
.review-score--top { color: #5A8A5A; }

/* CTA */
.reviews-cta { text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-overview { flex-direction: column; gap: 2rem; padding: 2rem; }
  .rating-bar-label { width: 90px; }
}

/* ── Karten-Platzhalter ── */
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  border-radius: var(--r);
}
.map-placeholder-inner {
  text-align: center; padding: 2rem 1.5rem; max-width: 320px;
}
.map-ph-icon {
  width: 52px; height: 52px; color: var(--bronze);
  margin: 0 auto 1.25rem;
}
.map-ph-title {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.5rem;
}
.map-ph-address {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem; line-height: 1.7;
}
.map-ph-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  margin-top: 1rem; line-height: 1.5;
}
/* Karte-laden-Button auf dunklem Hintergrund sichtbar machen */
.map-placeholder .btn-outline {
  color: var(--white); border-color: rgba(255,255,255,0.5);
}
.map-placeholder .btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); color: var(--white);
}

/* ════════════ Cookie-Banner ════════════ */
.cookie-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(20,16,12,0.55);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.cookie-overlay.visible { opacity: 1; pointer-events: all; }

.cookie-banner {
  position: fixed;
  bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(30px);
  z-index: 9999;
  width: min(640px, calc(100vw - 2rem));
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.1);
  padding: 2rem 2rem 1.75rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.visible {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Header */
.cookie-header {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.cookie-icon-svg {
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--bronze); margin-top: 0.15rem;
}
.cookie-header h3 {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.cookie-header p {
  font-size: 0.84rem; color: var(--text-soft); line-height: 1.6; margin: 0;
}
.cookie-header a { color: var(--bronze); text-decoration: underline; }

/* Kategorien */
.cookie-categories {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; margin-bottom: 1.5rem;
}
.cookie-cat {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 0.5rem;
}
.cookie-cat-title {
  font-size: 0.9rem; font-weight: 600; color: var(--charcoal);
}
.cookie-badge-always {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  background: #EDF3ED; color: #2E5E2E;
  padding: 0.2rem 0.65rem; border-radius: 99px; white-space: nowrap; flex-shrink: 0;
}
.cookie-badge-opt {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--bronze-bg); color: var(--bronze-dk);
  padding: 0.2rem 0.65rem; border-radius: 99px; white-space: nowrap; flex-shrink: 0;
}
.cookie-cat-text {
  font-size: 0.82rem; color: var(--text-soft); line-height: 1.65; margin: 0;
}
.cookie-cat-text code {
  font-family: monospace; font-size: 0.78rem;
  background: var(--sand); padding: 0.1rem 0.35rem; border-radius: 4px;
  color: var(--charcoal2);
}

/* Buttons */
.cookie-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.btn-cookie-accept {
  flex: 1; min-width: 140px;
  background: var(--bronze); color: #fff;
  border: none; border-radius: 8px;
  padding: 0.75rem 1.25rem; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  font-family: var(--font-b);
}
.btn-cookie-accept:hover { background: var(--bronze-dk); transform: translateY(-1px); }
.btn-cookie-necessary {
  flex: 1; min-width: 140px;
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.75rem 1.25rem; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-b);
}
.btn-cookie-necessary:hover { border-color: var(--bronze); background: var(--sand); }

@media (max-width: 480px) {
  .cookie-banner {
    padding: 1.25rem;
    bottom: 0.75rem;
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cookie-actions { flex-direction: column; }
  .cookie-header { flex-direction: column; gap: 0.75rem; }
  .cookie-categories { margin-bottom: 0.75rem; }
  .cookie-cat-text { font-size: 0.82rem; }
}

/* ════════════ FAQ ════════════ */
#faq { padding: 7rem 0; background: var(--sand); }

.faq-grid {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow);
}

.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 1.4rem 1.75rem;
  text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: 1.02rem; font-weight: 600;
  color: var(--text); transition: background 0.2s, color 0.2s;
}
.faq-q:hover { background: var(--bronze-bg); color: var(--bronze); }
.faq-q[aria-expanded="true"] { color: var(--bronze); background: var(--bronze-bg); }

.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--bronze); transition: transform 0.35s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.35s var(--ease);
  padding: 0 1.75rem;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.75rem 1.4rem;
}
.faq-a p {
  color: var(--text-soft); font-size: 1rem; line-height: 1.78;
  border-left: 3px solid var(--bronze-bg); padding-left: 1rem;
}
.faq-a strong { color: var(--charcoal); font-weight: 600; }

/* ════════════ BUCHUNGSANFRAGE ════════════ */
#anfrage { padding: 7rem 0; background: var(--charcoal); }
.anfrage-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.anfrage-intro .section-label { color: var(--bronze-lt); }
.anfrage-intro h2 {
  font-family: var(--font-h); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.12; margin-bottom: 1.1rem; color: var(--white);
}
.anfrage-intro > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2rem; }
.anfrage-contact { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  color: rgba(255,255,255,0.85); font-size: 1rem; transition: color 0.2s;
}
.contact-item svg { width: 20px; height: 20px; color: var(--bronze-lt); flex-shrink: 0; }
.contact-item:hover { color: var(--white); }

.booking-form {
  background: var(--white); border-radius: var(--r);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-section-title {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bronze); padding-bottom: 0.7rem; border-bottom: 2px solid var(--bronze-bg);
  display: flex; align-items: center; gap: 0.4rem; overflow: visible;
}
.form-section-title:not(:first-child) { margin-top: 0.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--text);
  font-family: var(--font-b); font-size: 1rem;
  padding: 0.85rem 1rem; transition: all 0.25s; width: 100%;
  -webkit-appearance: none; appearance: none; color-scheme: light;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px var(--bronze-bg); background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group select { cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23877E72' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.checkbox-label { display: flex; align-items: flex-start; gap: 0.8rem; cursor: pointer; font-size: 0.95rem; color: var(--text-soft); line-height: 1.5; }
.checkbox-label input { display: none; }
.checkbox-custom {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border: 1.5px solid var(--border); border-radius: 5px;
  background: var(--bg); position: relative; transition: all 0.2s;
}
.checkbox-label input:checked ~ .checkbox-custom { background: var(--bronze); border-color: var(--bronze); }
.checkbox-label input:checked ~ .checkbox-custom::after {
  content: ''; position: absolute; left: 7px; top: 3px;
  width: 6px; height: 11px; border: 2.5px solid var(--white);
  border-top: none; border-left: none; transform: rotate(43deg);
}
.checkbox-label strong { color: var(--text); font-weight: 600; }

.form-note { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
#submitBtn { padding: 1.1rem; font-size: 1rem; }
#submitBtn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: var(--r); font-size: 0.95rem; text-align: center; }
.form-status.success { display: block; background: #EDF3ED; border: 1.5px solid #5A8A5A; color: #2E5E2E; }
.form-status.error { display: block; background: #F7ECEC; border: 1.5px solid #B95C5C; color: #8A3030; }
.field-error { color: #B95C5C; font-size: 0.82rem; margin-top: 6px; }

/* ─── Room Picker ────────────────────────────────────── */
.room-picker {
  border: 1.5px solid #ddd;
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
}
.room-picker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 18px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.room-picker-row:last-child { border-bottom: none; }
.room-picker-row.active { background: rgba(156,124,74,0.07); }
.room-picker-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.room-picker-name { font-weight: 600; font-size: 0.95rem; color: var(--charcoal); }
.room-picker-price { font-size: 0.82rem; color: var(--bronze); font-weight: 500; }
.room-picker .rp-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C7C4A' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 9px 32px 9px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.2s;
  width: 80px !important;
  flex-shrink: 0;
  text-align: center;
}
.room-picker .rp-select:focus { outline: none; border-color: var(--bronze); }
.room-picker .rp-select.active { border-color: var(--bronze); color: var(--bronze); }

/* Bestätigung nach Absenden */
.form-confirm {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
  padding: 3rem 2.5rem; text-align: center;
}
.confirm-icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  background: #EDF3ED; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.confirm-icon svg { width: 32px; height: 32px; stroke: #5A8A5A; }
.form-confirm h3 {
  font-family: var(--font-h); font-size: 1.65rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.75rem;
}
.form-confirm p {
  color: var(--text-soft); line-height: 1.75; margin-bottom: 0.6rem; font-size: 0.97rem;
}
.confirm-sub { font-size: 0.88rem !important; color: var(--muted) !important; margin-top: 1.25rem !important; }
.confirm-contact {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.confirm-contact a {
  color: var(--bronze); font-weight: 600; font-size: 0.95rem;
  transition: color 0.2s;
}
.confirm-contact a:hover { color: var(--charcoal); }

/* ════════════ FOOTER ════════════ */
#footer { background: #211E1A; color: rgba(255,255,255,0.6); }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 4.5rem 1.75rem 3rem;
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 4rem;
}
.footer-brand img { width: 78px; height: 78px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand h3 {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.7rem;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.65; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze-lt); margin-bottom: 1.2rem;
}
.footer-col address, .footer-col ul { font-size: 0.95rem; line-height: 2; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--bronze-lt); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max); margin: 0 auto; padding: 1.6rem 1.75rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.85rem;
}
.footer-bar a { margin-left: 1.25rem; transition: color 0.2s; color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; }
.footer-bar a:first-child { margin-left: 0; }
.footer-bar a:hover { color: var(--bronze-lt); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--charcoal); color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--bronze); transform: translateY(-3px); }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .frueh-inner { gap: 3rem; }
  .anfrage-inner { gap: 2.5rem; }
}

/* ── Tablet (iPad Portrait & ähnliche) ────────────────── */
@media (max-width: 800px) {
  /* Navigation → Hamburger immer rechts, per position:absolute → funktioniert bei JEDER Breite */
  .nav-inner {
    position: relative;
    padding-left: 1.25rem;
    padding-right: calc(44px + 1.25rem + 0.5rem); /* Platz für den 44px-Button */
  }
  .nav-toggle {
    display: flex !important;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Logo-Text leicht verkleinern */
  .nav-logo-text { font-size: 1.15rem; }

  /* nav-links: position:fixed funktioniert jetzt korrekt da #navbar
     kein backdrop-filter mehr hat (ist jetzt im ::before Pseudo-Element) */
  .nav-links {
    position: fixed; inset: 0;
    background: var(--charcoal); flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; color: var(--white) !important; }
  #navbar.scrolled .nav-links a { color: var(--white) !important; }
  .nav-cta { padding: 0.85rem 2.5rem !important; font-size: 1.1rem !important; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .nav-toggle.active span { background: var(--white) !important; }

  /* Zimmer 2-spaltig auf Tablet behalten */
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }

  /* Anfrage-Formular auf Tablet */
  .anfrage-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Room Picker auf Tablet */
  .room-picker-row { gap: 20px; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .frueh-inner { grid-template-columns: 1fr; gap: 4.5rem; }
  .frueh-small { width: 42%; right: 0; bottom: -2rem; }
  .lage-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lage-map-wrap { position: static; height: 360px; }
  .anfrage-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 760px) {
  /* Hero */
  #hero { min-height: 88vh; }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: row; padding: 0 1rem; }
  .hstat { padding: 1rem 0.5rem; }
  .hstat-n { font-size: 1.4rem; }
  .hstat-l { font-size: 0.66rem; }

  /* Sections */
  #highlights, #zimmer, #galerie, #fruehstueck, #lage, #anfrage { padding: 4.5rem 0; }
  .section-header { margin-bottom: 2.75rem; }

  .usp-grid { grid-template-columns: 1fr; gap: 1rem; }
  .rooms-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .room-slideshow { aspect-ratio: 3/2; }
  .slide-arrow { opacity: 1; width: 42px; height: 42px; }

  /* Gallery mobile */
  .gallery-carousel { padding: 0 0.75rem; gap: 0.25rem; }
  .gal-slide img { height: 240px; }
  .gal-slide figcaption { font-size: 1.05rem; }
  .gal-arrow { width: 42px; height: 42px; font-size: 1.4rem; }

  .frueh-inner { gap: 4rem; }
  .frueh-badge { width: 92px; height: 92px; top: -1.2rem; left: -0.5rem; }
  .fb-price { font-size: 1.35rem; }
  /* Frühstück-Button zentrieren */
  .frueh-content [data-breakfast-btn] { display: block; text-align: center; width: 100%; }

  .booking-form { padding: 1.6rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Room Picker mobile – max. 5 Zeilen sichtbar, Rest scrollbar */
  .room-picker { max-height: 320px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .room-picker-row { padding: 12px 14px; gap: 14px; }
  .room-picker-name { font-size: 0.9rem; }
  .room-picker .rp-select { width: 74px !important; min-height: 44px; padding: 10px 28px 10px 10px; }

  /* Bewertungen mobile */
  .rating-score { font-size: 3.8rem; }
  .rating-overview { flex-direction: column; gap: 1.5rem; padding: 1.75rem; }
  .rating-bar-label { width: 90px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 1.5rem; }

  /* Anfrage Intro mobile */
  .anfrage-intro h2 { font-size: 2rem; }
  .contact-item { font-size: 0.95rem; }

  /* Bestätigungspanel */
  .form-confirm { padding: 2rem 1.5rem; }

  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar { flex-direction: column; text-align: center; }
  .footer-bar a { margin: 0 0.6rem; }

  .lb-prev { left: 0.5rem; width: 46px; height: 46px; }
  .lb-next { right: 0.5rem; width: 46px; height: 46px; }
  .lb-close { top: 1rem; right: 1rem; }

  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  .container, .hero-content, .frueh-inner, .footer-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* nav-inner behält den extra padding-right für den Hamburger-Button */
  .nav-inner { padding-left: 1.25rem; padding-right: calc(44px + 1.25rem + 0.5rem); }
  .nav-logo-text { font-size: 1.05rem; }
  .nav-logo img { width: 44px; height: 44px; }
  .frueh-small { display: none; }

  /* Hero: Inhalt von oben statt unten, Navbar-Abstand berücksichtigen */
  #hero { justify-content: flex-start; min-height: 100svh; }
  .hero-content { padding-top: 5.5rem; padding-bottom: 1.25rem; }
  .hero-title { font-size: 2rem; margin-bottom: 0.9rem; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 1.3rem; }
  .hero-actions { gap: 0.6rem; }
  .hstat { padding: 0.75rem 0.4rem; }
  .hstat-n { font-size: 1.3rem; }

  /* Formular auf sehr kleinen Screens */
  .booking-form { padding: 1.2rem; gap: 1rem; }
  .room-picker { max-height: 290px; }
  .room-picker-row { padding: 10px 12px; gap: 10px; }
  .room-picker-name { font-size: 0.85rem; }
  .room-picker-price { font-size: 0.75rem; }
  .room-picker .rp-select { width: 66px !important; font-size: 0.95rem; }

  /* Rating Bars auf sehr kleinen Screens */
  .rating-bar-label { width: 80px; font-size: 0.8rem; }
  .rating-score { font-size: 3.2rem; }
  .rating-overview { padding: 1.5rem; }

  /* Hero Stats enger */
  .hstat-l { font-size: 0.65rem; }

  /* Frühstücks-Badge Position */
  .frueh-badge { left: 0; }

  /* Back-to-Top weiter oben damit kein Overlap mit Cookie-Banner */
  .back-to-top { bottom: 5rem; right: 1rem; }

  /* Footer Links Abstand */
  .footer-bar a { margin: 0 0.4rem; }
}

@media (max-width: 340px) {
  .hero-title { font-size: 1.75rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-stats { display: none; } /* Stats auf winzigen Screens ausblenden */
  .nav-logo-text { display: none; } /* Nur Logo-Icon, kein Text */
}
