/*
Theme Name: Bergblick
Theme URI: https://bergblick-worpswede.de
Author: Bergblick
Description: Custom Theme für Bergblick Restaurant &amp; Rooms, Worpswede. 1:1 aus der bestehenden statischen Website übernommen.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: bergblick
*/

:root {
  --beige: #F4EBE0;
  --beige-warm: #FAF4EA;
  --black: #000000;
  --ink: #1a1a1a;
  --yellow: #F6C543;
  --yellow-deep: #C99A1F;
  --blue: #14599E;
  --blue-deep: #0E3E6E;
  --navy: #0C2C4A;
  --green: #445540;
  --stone: #A9A196;
  --muted: #6B6156;
  --muted-light: #B9C6D6;
  --serif: "Fraunces", "Iowan Old Style", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--beige);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Time bar ---------- */
.timebar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 100;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--beige-warm) 50%, var(--blue) 100%);
}
.timebar-marker {
  position: absolute;
  top: -4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--black);
  transform: translateX(-50%);
  transition: left 0.05s linear, background 0.3s ease;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 90;
  background: rgba(244, 235, 224, 0.96);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand img { margin-right: 10px; }
.nav-brand img { height: 68px; width: 68px; }
.nav-brand span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--black);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li:not(:last-child) { margin-right: 32px; }
@media (max-width: 780px) {
  .nav-links li:not(:last-child) { margin-right: 0; }
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--black);
  transition: right 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--beige-warm);
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-deep); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--beige); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 80px;
  background: var(--beige);
}
.hero img.hero-logo {
  width: 320px;
  height: auto;
  margin-bottom: 28px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.25;
  margin: 0 0 18px;
  max-width: 780px;
}
.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-ctas a:not(:last-child) { margin-right: 14px; }
.scroll-cue {
  margin-top: 64px;
  width: 1px;
  height: 46px;
  background: var(--muted);
  position: relative;
  opacity: 0.5;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted);
  transform: translateX(-50%);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { top: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 46px; opacity: 0; }
}

/* ---------- Section shell ---------- */
.section {
  padding: 110px 32px;
}
.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-art { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-art { order: 0; }
}

.split-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 42px);
  margin: 0 0 20px;
}
.split-copy p {
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 46ch;
}
.section-sushi .split-copy p { color: var(--muted-light); }

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.section-sushi .menu-list { border-top-color: rgba(255,255,255,0.15); }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-size: 14.5px;
}
.section-sushi .menu-list li { border-bottom-color: rgba(255,255,255,0.15); }
.menu-list .name { font-weight: 500; }
.menu-list .desc { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; font-weight: 400; }
.section-sushi .menu-list .desc { color: var(--muted-light); }
.menu-list .price { font-family: var(--mono); white-space: nowrap; }

.menu-soon {
  font-size: 14.5px;
  font-style: italic;
  color: var(--muted);
  padding: 20px 0;
  margin: 0 0 34px;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.menu-soon-light {
  color: var(--muted-light);
  border-top-color: rgba(255,255,255,0.15);
  border-bottom-color: rgba(255,255,255,0.15);
}

.split-art {
  aspect-ratio: 4 / 3.4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-art svg { width: 68%; height: 68%; }

/* ---------- Frühstück ---------- */
.section-fruehstueck { background: var(--beige-warm); }
.section-fruehstueck .split-art { background: #FBE7BC; }

/* ---------- Sushi ---------- */
.section-sushi { background: var(--navy); color: #fff; }
.section-sushi .split-art { background: #123B63; }
.section-sushi .eyebrow { color: var(--muted-light); }

/* ---------- Divider ---------- */
.divider {
  height: 64px;
  overflow: hidden;
}
.divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Rooms ---------- */
.section-rooms { background: var(--beige); }
.section-rooms .split-art { background: #E4E9DE; }
.rooms-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.rooms-meta div:not(:last-child) { margin-right: 28px; }
.rooms-meta div { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.rooms-meta strong { display: block; font-family: var(--sans); font-size: 14px; color: var(--ink); margin-bottom: 2px; font-weight: 500; }

/* ---------- Instagram ---------- */
.section-social {
  background: var(--beige-warm);
  text-align: center;
}
.section-social h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 8px;
}
.section-social .handle {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 44px;
}
.social-follow {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
}
.social-empty {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--beige);
  padding: 72px 32px 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 72px; width: 72px; }
.footer-brand span { font-family: var(--serif); font-size: 20px; }
.footer address { font-style: normal; font-size: 14px; line-height: 1.9; color: var(--stone); }
.footer h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 18px;
}
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hours-row .time { font-family: var(--mono); color: var(--beige); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a:not(:last-child) { margin-right: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.footer-social svg { width: 16px; height: 16px; stroke: var(--beige); }
.footer-bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12.5px;
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-banner,
.opening-banner {
  position: fixed;
  top: 4px;
  left: 0; right: 0;
  z-index: 89;
  margin-top: 68px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
}
.opening-banner {
  text-align: center;
  padding: 10px 20px;
}
.launch-banner {
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 22s linear infinite;
  padding-left: 100%;
}
.marquee-track span {
  padding-right: 64px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; padding-left: 20px; }
  .marquee-track span:nth-child(2) { display: none; }
}
.rooms-hero { padding-top: 190px; }
@media (max-width: 480px) {
  .launch-banner, .opening-banner { margin-top: 84px; font-size: 12px; }
  .rooms-hero { padding-top: 210px; }
}

.bb-slideshow {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  isolation: isolate;
}
.bb-track {
  aspect-ratio: 16/8;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bb-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-size: 14px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.bb-slide.bb-active { opacity: 1; z-index: 2; }
.bb-slide:first-child { opacity: 1; }
.bb-slideshow.bb-ready .bb-slide:first-child { opacity: 0; }
.bb-slideshow.bb-ready .bb-slide.bb-active { opacity: 1; }
.bb-slide span { background: rgba(244,235,224,0.9); padding: 5px 12px; border-radius: 2px; }
.bb-slide.g1 { background: #E4E9DE; }
.bb-slide.g2 { background: #DCE3D4; }
.bb-slide.g3 { background: #ECE6D8; }
.bb-slide.g4 { background: #D8DED0; }
.bb-slide.g5 { background: #E9E2D0; }
.bb-slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 1; }

.bb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 10;
}
.bb-arrow.prev { left: 48px; }
.bb-arrow.next { right: 48px; }
.bb-arrow:hover { background: #fff; }

.bb-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 10;
}
.bb-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
}
.bb-dots button.bb-active { background: var(--ink); }

@media (max-width: 780px) {
  .bb-arrow { width: 34px; height: 34px; }
  .bb-arrow.prev { left: 12px; }
  .bb-arrow.next { right: 12px; }
}
.rooms-nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 90;
  background: rgba(244, 235, 224, 0.96);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.rooms-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.rooms-back {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  color: var(--muted);
}
.rooms-back:hover { color: var(--ink); }
.rooms-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.rooms-brand img { height: 56px; width: 56px; margin-right: 10px; }
.rooms-brand span { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--black); }
@media (max-width: 480px) {
  .rooms-nav-inner { flex-wrap: wrap; gap: 10px; padding: 12px 20px; }
  .rooms-brand span { font-size: 15px; }
}

.rooms-hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 70px;
  background: var(--beige);
}
.rooms-hero img { width: 260px; height: auto; margin-bottom: 24px; }
.rooms-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 48px);
  margin: 0 0 16px;
}
.rooms-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 30px;
}

.gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 8px;
}
.gallery-tile {
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-size: 12.5px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.gallery-tile span {
  background: rgba(244,235,224,0.9);
  padding: 4px 9px;
  border-radius: 2px;
}
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.g1 { background: #E4E9DE; }
.gallery-tile.g2 { background: #DCE3D4; }
.gallery-tile.g3 { background: #ECE6D8; }
.gallery-tile.g4 { background: #D8DED0; }
.gallery-tile.g5 { background: #E9E2D0; }
.gallery-note {
  max-width: var(--max);
  margin: 14px auto 0;
  padding: 0 32px;
  font-size: 12.5px;
  color: var(--muted);
}

.amenities {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 780px) { .amenities { grid-template-columns: 1fr; gap: 36px; } }
.amenities h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 18px;
}
.amenities p { font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 46ch; }
.amenity-list { list-style: none; padding: 0; margin: 0; }
.amenity-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
}
.amenity-list li span:last-child { font-family: var(--mono); color: var(--muted); font-size: 13px; }

.rooms-intro {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px 60px;
  text-align: center;
}
.rooms-intro p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

.room-cards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 32px 20px;
}
.room-cards > .kicker {
  text-align: center;
  margin-bottom: 54px;
}
.room-cards h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 0 0 10px;
}
.room-cards .kicker p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.room-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 980px) {
  .room-grid-3 { grid-template-columns: 1fr; }
}
.room-card {
  background: var(--beige-warm);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.room-card .thumb {
  position: relative;
  height: 220px;
  border-radius: 3px;
  margin-bottom: 22px;
  overflow: hidden;
  color: var(--muted);
}
.room-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.room-card .thumb span { position: absolute; left: 12px; bottom: 12px; background: rgba(244,235,224,0.9); padding: 3px 8px; border-radius: 2px; font-size: 12px; }
.room-card:nth-child(1) .thumb { background: #F6E2B8; }
.room-card:nth-child(2) .thumb { background: #E4E9DE; }
.room-card:nth-child(3) .thumb { background: #DCE6EF; }
.room-card:nth-child(4) .thumb { background: #ECE0D6; }
.room-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 8px;
}
.room-card p.desc { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; flex-grow: 1; }
.room-card .room-specs {
  list-style: none;
  margin: 0 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.room-card .room-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
}
.room-card .room-specs li span:last-child { color: var(--ink); font-weight: 500; }
.room-card .room-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.room-card .room-price strong {
  font-family: var(--mono);
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.locality {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 32px;
}
.locality .kicker { text-align: center; margin-bottom: 50px; }
.locality h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 0 0 10px;
  text-align: center;
}
.locality .kicker p { color: var(--muted); font-size: 15px; margin: 0; text-align: center; }
.locality-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 780px) { .locality-list { grid-template-columns: 1fr; gap: 32px; } }
.locality-list .dist {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}
.locality-list h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 8px;
}
.locality-list p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }

.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 32px;
}
.faq h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 40px;
  text-align: center;
}
.faq-item { padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item h4 { font-family: var(--sans); font-weight: 500; font-size: 15px; margin: 0 0 8px; }
.faq-item p { font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0; }

@media (max-width: 780px) {
  .room-grid { grid-template-columns: 1fr; }
}
.booking-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 32px;
}
.booking-band p.eyebrow { color: var(--muted-light); }
.booking-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 14px;
}
.booking-band p.sub {
  color: var(--muted-light);
  font-size: 15px;
  margin: 0 0 32px;
}
.btn-booking {
  background: #003580;
  color: #fff;
  font-weight: 500;
  padding: 15px 34px;
  font-size: 15px;
}
.btn-booking:hover { background: #002a66; }
.booking-note { margin-top: 16px; font-size: 12px; color: var(--muted-light); }
.booking-note a { color: var(--muted-light); text-decoration: underline; }
.booking-note a:hover { color: #fff; }
.reveal { opacity: 1; transform: none; }
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Legal pages (Impressum, Datenschutz, AGB) ---------- */
.legal-nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 90;
  background: rgba(244, 235, 224, 0.96);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.legal-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  max-width: var(--max);
  margin: 0 auto;
  text-decoration: none;
  font-size: 13px;
  color: var(--muted);
}
.legal-nav-inner:hover { color: var(--ink); }
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 130px 32px 100px;
}
.legal-main h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 40px;
}
.legal-block {
  margin-bottom: 46px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 16px;
}
.legal-main h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  margin: 28px 0 10px;
}
.legal-main p, .legal-main li {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 14px;
}
.legal-main address { font-style: normal; }
.legal-main ul { padding-left: 20px; margin: 0 0 14px; }
.legal-main a { color: var(--blue); }
.legal-operator {
  background: var(--beige-warm);
  padding: 22px 26px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.legal-operator p { margin: 0; color: var(--ink); }
.legal-operator .role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a { color: inherit; }

/* ---------- WordPress-Anpassung: Rechtsseiten-Inhalt kommt jetzt aus dem Editor ---------- */
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.legal-content > h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* ---------- Menü-Galerie (Abendkarte, Sushi-Sektion) ---------- */
.menu-gallery {
  padding: 50px 32px 70px;
  display: flex;
  justify-content: center;
}
.bb-menu-slideshow {
  max-width: 380px;
  width: 100%;
  padding: 0;
}
.bb-menu-slideshow .bb-track {
  aspect-ratio: 148/210;
  background: #fff;
}
.bb-menu-slideshow .bb-slide {
  padding: 0;
}
.bb-menu-slideshow .bb-slide img {
  object-fit: contain;
  background: #fff;
}
.bb-menu-slideshow .bb-arrow.prev { left: -18px; }
.bb-menu-slideshow .bb-arrow.next { right: -18px; }

/* ---------- Mini-Slideshow in Zimmer-Karten (bis zu 3 Bilder pro Zimmer) ---------- */
.room-card .thumb.bb-room-slideshow {
  padding: 0 !important;
  height: 220px;
  max-width: none;
  display: block;
}
.room-card .thumb.bb-room-slideshow .bb-track {
  aspect-ratio: auto;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.room-card .thumb.bb-room-slideshow .bb-slide { padding: 0; }
.room-card .thumb.bb-room-slideshow .bb-arrow {
  width: 28px;
  height: 28px;
}
.room-card .thumb.bb-room-slideshow .bb-arrow.prev { left: 8px; }
.room-card .thumb.bb-room-slideshow .bb-arrow.next { right: 8px; }
.room-card .thumb.bb-room-slideshow .bb-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin-top: 0;
}
.room-card .thumb.bb-room-slideshow .bb-dots button {
  background: rgba(255,255,255,0.6);
}
.room-card .thumb.bb-room-slideshow .bb-dots button.bb-active {
  background: #fff;
}
