@import url("../fonts/fonts.css");

/* ============ Tokens ============ */
:root {
  --gold: #b98c5c;
  --gold-dark: #94683a;
  --gold-mid: #b17f4a;
  --rust: #992c17;
  --rust-dark: #7e2412;
  --text: #555555;
  --heading: #3b3c42;
  --dark: #3b3c42;
  --cream: #f9f2e5;
  --beige: #e0d9ce;
  --green: #65bc7b;
  --line: #e3ded6;
  --white: #ffffff;

  --maxw: 1200px;
  --font-head: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans Pro", "Segoe UI", Roboto, Arial, sans-serif;
  --font-ui: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 6px 26px rgba(59, 60, 66, .13);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(1.9rem, 5.2vw, 3rem); }
h2 { font-size: clamp(1.55rem, 4.2vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 2.4vw, 1.25rem); }
h5 { font-family: var(--font-ui); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-dark); margin: 0 0 .8em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .45em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 900px; }
.section { padding: 62px 0; }
.section--tight { padding: 40px 0; }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--dark { background: var(--dark); color: #d6d6d8; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.1rem; }
.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--gold);
  margin: 0 0 .7em;
  display: block;
  font-weight: 500;
}
.rule { width: 62px; height: 2px; background: var(--gold); border: 0; margin: 0 0 26px; }
.center .rule, .rule--center { margin-left: auto; margin-right: auto; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff !important;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background .22s, border-color .22s, color .22s;
  text-align: center;
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff !important; }
.btn--rust { background: var(--rust); border-color: var(--rust); }
.btn--rust:hover { background: var(--rust-dark); border-color: var(--rust-dark); }
.btn--ghost { background: transparent; color: var(--gold-dark) !important; }
.btn--ghost:hover { background: var(--gold); color: #fff !important; }
.btn--light { background: transparent; border-color: #fff; color: #fff !important; }
.btn--light:hover { background: #fff; color: var(--heading) !important; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ============ Topbar ============ */
/* Original: Hintergrund #94683A, weisser Text, Source Sans, 5px Innenabstand */
.topbar {
  background: var(--gold-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
}
.topbar-contact { display: flex; flex-wrap: wrap; gap: 4px 26px; align-items: center; }
.topbar-social { display: flex; gap: 16px; align-items: center; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--cream); }
.topbar svg { width: 15px; height: 15px; fill: currentColor; flex: none; }
.topbar-social svg { width: 16px; height: 16px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 12px rgba(0, 0, 0, .09);
}
/* Original-Aufbau: Menue links | Logo mittig | Menue rechts */
.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 101px;
  padding: 15px 0;
}
/* Bewusst ohne display:contents – das wird nicht von jedem Browser
   zuverlaessig umgesetzt und liesse die Menuehaelften untereinander fallen. */
.nav-wrap {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.nav-group { flex: 1 1 0; min-width: 0; }
.logo { display: block; flex: 0 0 auto; }
.logo--bar { display: none; }
.logo img {
  height: 48px;
  width: auto;
  max-width: 120px;
  display: block;
}
.nav-group ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.nav-group a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .24px;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 24px;
  padding: 4px 25px;
  display: block;
  border-top: 2px solid transparent;
  white-space: nowrap;
}
.nav-group a:hover { color: var(--rust); }
.nav-group a.is-active { color: var(--rust); border-top-color: var(--rust); }

/* "ONLINEBUCHUNG" ist im Original ein roter Button */
.nav-group a.nav-btn {
  background: var(--rust);
  color: #fff !important;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 17px;
  padding: 13px 29px;
  border-radius: 2px;
  border-top: 0;
  margin-left: 5px;
  white-space: nowrap;
  transition: background .22s;
}
.nav-group a.nav-btn:hover { background: var(--rust-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--heading); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--heading); transition: transform .25s, top .25s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }


/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: min(78vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30, 31, 35, .68) 0%, rgba(30, 31, 35, .3) 65%, rgba(30, 31, 35, .12) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.hero-inner { max-width: 640px; color: #fff; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, .4); }
.hero p { color: #f0eee9; font-size: 1.1rem; }
.hero-seal {
  position: absolute;
  right: 4%; bottom: 8%;
  width: clamp(90px, 12vw, 150px);
  height: auto;
  z-index: 3;
}
.hero-dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 3; display: flex; gap: 10px; justify-content: center; }
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid #fff; background: transparent;
  padding: 0; cursor: pointer; transition: background .2s;
}
.hero-dots button.is-active { background: #fff; }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--dark) center/cover no-repeat;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(30, 31, 35, .5); }
.page-hero .wrap { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.page-hero h1 { color: #fff; margin: 0; text-shadow: 0 2px 18px rgba(0, 0, 0, .4); }
.breadcrumb { font-family: var(--font-ui); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #e6ddcd; margin-bottom: 12px; }
.breadcrumb a { color: #e6ddcd; }
.breadcrumb a:hover { color: var(--gold); }

/* ============ USP icon band ============ */
.usp-band { background: var(--cream); padding: 44px 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px;
  align-items: center;
  justify-items: center;
}
.usp-grid img { max-height: 88px; width: auto; }

/* ============ Feature icons (Zimmer/Veranstaltung/...) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 34px 26px;
  text-align: center;
}
/* Icons wie im Original 60px; Abschnitt bleibt weiss, damit die
   nicht freigestellte Physio-Grafik keinen weissen Kasten zeigt. */
.feature img { width: 60px; height: 60px; object-fit: contain; margin: 0 auto 14px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .4em; }
.feature p { font-size: .96rem; margin: 0; }
.section--tight { padding-top: 0; }

/* ============ Cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(59, 60, 66, .2); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--beige); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .45em; }
.card-body p { font-size: .98rem; }
.card-body .btn { margin-top: auto; align-self: flex-start; }

/* ============ Split (image + text) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-body h2 { margin-bottom: .5em; }

/* ============ Checklist ============ */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: .55em; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.infobox {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 24px 26px;
  border-radius: var(--radius);
  margin-bottom: 26px;
}
.infobox h4 { margin-bottom: .5em; }
.infobox :last-child { margin-bottom: 0; }

/* ============ Contact / address blocks ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { margin-bottom: .6em; }
.label { font-family: var(--font-ui); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-dark); display: block; }

/* ============ Menu (Speisekarte) ============ */
.menu-group { margin-bottom: 44px; }
.menu-group > h3 { border-bottom: 2px solid var(--gold); padding-bottom: .35em; margin-bottom: 1em; }
.dish {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.dish-name { flex: 1; }
.dish-price { font-family: var(--font-ui); font-weight: 500; color: var(--gold-dark); white-space: nowrap; }

/* ============ Gallery ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gallery a {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, filter .3s; }
.gallery a:hover img { transform: scale(1.07); filter: brightness(1.05); }

.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(20, 20, 22, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; border-radius: var(--radius); }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 0; color: #fff;
  width: 50px; height: 50px;
  font-size: 26px; line-height: 1;
  cursor: pointer; border-radius: 50%;
  transition: background .2s;
}
.lightbox button:hover { background: rgba(255, 255, 255, .28); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ============ Parallax band ============ */
.parallax {
  position: relative;
  background: var(--dark) center/cover no-repeat fixed;
  padding: 96px 0;
  text-align: center;
  color: #fff;
}
.parallax::after { content: ""; position: absolute; inset: 0; background: rgba(30, 31, 35, .55); }
.parallax .wrap { position: relative; z-index: 2; }
.parallax h2, .parallax p { color: #fff; }
.parallax p { font-size: 1.15rem; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ============ Umgebung tiles ============ */
.env-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.env-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.env-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.env-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 20, 22, .85) 0%, rgba(20, 20, 22, .1) 62%); }
.env-tile:hover img { transform: scale(1.07); }
.env-txt { position: relative; z-index: 2; padding: 22px 20px; }
.env-txt strong {
  display: block;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .88rem;
  margin-bottom: 6px;
}
.env-txt span { font-size: .9rem; color: #e7e3dc; line-height: 1.5; display: block; }

/* ============ Reviews ============ */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--beige);
  position: absolute;
  top: 4px; left: 18px;
  line-height: 1;
}
.review p { position: relative; font-style: italic; }
.review cite { font-style: normal; font-family: var(--font-ui); color: var(--gold-dark); font-size: .9rem; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; }

/* ============ Price calendar ============ */
.bdtpk-cal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.bdtpk-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.bdtpk-head h3 { margin: 0; font-size: 1.25rem; }
.bdtpk-nav { display: flex; gap: 8px; }
.bdtpk-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: #fff; color: var(--heading);
  border-radius: var(--radius); cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: background .2s, color .2s, border-color .2s;
}
.bdtpk-arrow:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: #fff; }
.bdtpk-arrow:disabled { opacity: .35; cursor: not-allowed; }
.bdtpk-monthname { font-family: var(--font-head); font-size: 1.15rem; color: var(--heading); text-align: center; margin-bottom: 12px; }
.bdtpk-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .84rem; margin-bottom: 16px; }
.bdtpk-legend span { display: inline-flex; align-items: center; gap: 7px; }
.bdtpk-swatch { width: 13px; height: 13px; border-radius: 3px; display: inline-block; }
.bdtpk-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bdtpk-dow { font-family: var(--font-ui); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; text-align: center; color: #8c8c92; padding-bottom: 4px; }
.bdtpk-day {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  background: #f4f2ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: .78rem;
  color: #a4a4aa;
  padding: 2px;
  text-align: center;
}
.bdtpk-day.is-empty { background: transparent; }
.bdtpk-day.is-free { background: #eef6ef; color: var(--heading); }
.bdtpk-day.is-busy { background: #f6ecea; color: #b08f8a; }
.bdtpk-day b { font-weight: 600; font-size: .82rem; display: block; }
.bdtpk-day em { font-style: normal; font-family: var(--font-ui); font-size: .68rem; color: var(--gold-dark); }
.bdtpk-day.is-busy em { color: #b08f8a; }
.bdtpk-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.bdtpk-tab {
  font-family: var(--font-ui);
  font-size: .78rem; letter-spacing: .04em;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: #fff; color: var(--heading);
  border-radius: var(--radius); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.bdtpk-tab.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }
.bdtpk-foot { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.bdtpk-foot small { color: #8c8c92; }
.bdtpk-loading { color: #8c8c92; }

/* ============ Legal pages ============ */
.legal { font-size: 1rem; }
.legal h2 { margin-top: 1.6em; }
.legal h2:first-child { margin-top: 0; }
.legal ol { padding-left: 1.4em; }
.legal ol > li { margin-bottom: 1em; }
.legal a { word-break: break-word; }

/* ============ Footer ============ */
.site-footer { background: var(--dark); color: #b6b6bb; padding: 62px 0 0; font-size: .96rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  font-family: var(--font-ui);
  color: #fff;
  font-size: .88rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.site-footer a { color: #b6b6bb; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5em; }
.footer-logo { width: 170px; margin-bottom: 20px; }
.social { display: flex; gap: 12px; margin-top: 14px; }
.social a {
  width: 42px; height: 42px;
  border: 1px solid #55565d;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.social a:hover { background: var(--gold); border-color: var(--gold); }
.social svg { width: 18px; height: 18px; fill: #b6b6bb; }
.social a:hover svg { fill: #fff; }
.footer-bar {
  border-top: 1px solid #4a4b51;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
}
.footer-bar ul { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bar ul li { margin: 0; }
.made { font-size: .84rem; color: #8f9096; margin-top: 18px; }

.foerder-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.foerder-logos img { max-height: 74px; width: auto; }

.to-top {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 46px; height: 46px;
  border: 0; border-radius: 50%;
  background: var(--gold);
  color: #fff; font-size: 20px; line-height: 1;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, background .2s;
  z-index: 90;
  box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--gold-dark); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--gold); color: #fff;
  padding: 10px 18px; z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============ Responsive ============ */
/* Das Menue bleibt bis 1024px einzeilig: die Wortabstaende schrumpfen
   stufenweise, statt dass Punkte in eine zweite Zeile umbrechen. */
@media (max-width: 1600px) {
  .nav-group a { padding: 4px 17px; }
}

@media (max-width: 1400px) {
  .nav-group a { padding: 4px 13px; }
  .nav-group a.nav-btn { padding: 13px 24px; }
}

@media (max-width: 1240px) {
  .nav-group a { padding: 4px 10px; font-size: 15px; }
  .nav-group a.nav-btn { padding: 12px 20px; }
}

@media (max-width: 1140px) {
  .nav-group a { padding: 4px 7px; font-size: 14px; letter-spacing: 0; }
  .nav-group a.nav-btn { padding: 11px 15px; font-size: 13px; letter-spacing: .6px; }
  .logo--center img { max-width: 92px; }
}

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 1024px) {
  /* Ab hier: Logo links, Burger rechts, beide Menuegruppen in der Schublade */
  .header-inner { min-height: 70px; padding: 10px 0; justify-content: space-between; }
  .logo--bar { display: block; }
  .logo--center { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 130; }
  .nav-wrap {
    display: block;
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 340px);
    height: 100dvh;
    background: #fff;
    box-shadow: -6px 0 30px rgba(0, 0, 0, .18);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding: 84px 26px 40px;
    z-index: 120;
  }
  .nav-wrap.is-open { transform: translateX(0); }
  .nav-group { flex: none; }
  .nav-group ul { flex-direction: column; align-items: stretch; }
  .nav-group li { border-bottom: 1px solid var(--line); }
  .nav-group a {
    padding: 15px 0;
    font-size: 15px;
    letter-spacing: .24px;
    border-top: 0;
    white-space: normal;
  }
  .nav-group a.is-active { border-top: 0; }
  .nav-group a.nav-btn {
    margin: 22px 0 0;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .nav-right li:last-child { border-bottom: 0; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(20, 20, 22, .5);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    z-index: 110;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split-media { order: 0; }
  .parallax { background-attachment: scroll; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 46px 0; }
  .hero { min-height: 74vh; }
  .hero-seal { width: 84px; right: 16px; bottom: 62px; }
  .page-hero { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 34px; }
  .footer-bar { justify-content: flex-start; }
  .topbar .wrap { justify-content: center; gap: 6px 18px; font-size: .76rem; }
  .parallax { padding: 64px 0; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .env-grid { grid-template-columns: repeat(2, 1fr); }
  .bdtpk-cal { padding: 18px 14px; }
  .bdtpk-day { font-size: .62rem; }
  .bdtpk-day b { font-size: .68rem; }
  .bdtpk-day em { font-size: .58rem; }
  .dish { flex-direction: column; gap: 2px; }
}

@media (max-width: 420px) {
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .env-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media print {
  .site-header, .topbar, .site-footer, .to-top, .nav-toggle { display: none; }
}
