/* ============================================================
   Western Steakhouse – Design 2026
   Modernes Western-Redesign: Alfa Slab One + Barlow,
   Espresso-Palette, Karten mit Radius, Reveal-Animationen.
   Ein Stylesheet für alle Seiten (DE/EN/NL).
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Alfa Slab One";
  src: url("../fonts/alfa-slab-one-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Design-Tokens 2026 ---------- */
:root {
  --c-dark:      #150B09;                 /* Seiten-Hintergrund (Espresso) */
  --c-panel:     #1D0C0B;                 /* Band-Hintergrund */
  --c-card-a:    #241110;                 /* Karten-Gradient Start */
  --c-card-b:    #1B0C0B;                 /* Karten-Gradient Ende */
  --c-header:    #1C0607;                 /* Topbar / Footer */
  --c-maroon:    #3A0B0D;                 /* Nav / akzentuierte Bänder */
  --c-text:      #F3ECE1;                 /* Creme */
  --c-muted:     rgba(243,236,225,.78);
  --c-soft:      rgba(243,236,225,.8);
  --c-gold:      #D9A05B;
  --c-gold-dim:  rgba(217,160,91,.4);
  --c-line:      rgba(217,160,91,.18);    /* feine goldene Border */
  --c-line-hover:rgba(217,160,91,.45);
  --c-red:       #C40F1C;
  --c-red-dark:  #A50D18;
  --c-white:     #FFFFFF;

  --f-slab: "Alfa Slab One", serif;
  --f-body: "Barlow", sans-serif;
  --f-cond: "Barlow Condensed", sans-serif;

  --grad-card: linear-gradient(160deg, var(--c-card-a), var(--c-card-b));
  --shadow-card: 0 18px 40px rgba(0,0,0,.4);
  --wrap: 1320px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-dark);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--f-slab); font-weight: 400; line-height: 1.15; }
h4 { font-family: var(--f-body); font-weight: 600; }

/* Scroll-Reveal (JS setzt .is-revealed) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.3,1); }
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utilities ---------- */
.section-label {
  font: 600 15px/1 var(--f-cond);
  color: var(--c-gold);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label--center { text-align: center; }
.section-title {
  font: 400 clamp(30px, 3vw, 44px)/1.15 var(--f-slab);
  color: var(--c-text);
  margin-bottom: 20px;
}
.section-title--center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--c-red);
  color: var(--c-white);
  font: 600 15px var(--f-cond);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(196,15,28,.35);
  transition: all .25s ease;
}
.btn:hover {
  background: var(--c-red-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196,15,28,.45);
}
.btn--ghost {
  background: rgba(21,11,9,.35);
  border: 1px solid rgba(243,236,225,.45);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(21,11,9,.35);
  border-color: var(--c-gold);
  color: var(--c-gold);
  box-shadow: none;
}
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--header { padding: 12px 24px; }
.pill {
  display: inline-block;
  font: 600 14px var(--f-cond);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold-dim);
  border-radius: 100px;
  padding: 10px 18px;
  transition: all .25s ease;
}
.pill:hover { background: rgba(217,160,91,.12); border-color: var(--c-gold); color: var(--c-gold); }

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  background: var(--c-header);
  color: rgba(243,236,225,.88);
  font: 500 14px/1 var(--f-cond);
  letter-spacing: .08em;
}
.topbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 11px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__social { display: flex; gap: 10px; }
.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border: 1px solid rgba(243,236,225,.35);
  border-radius: 50%;
  color: rgba(243,236,225,.7);
  transition: all .25s;
}
.topbar__social a:hover { border-color: var(--c-gold); color: var(--c-gold); }
.topbar__address, .topbar__phone { display: flex; align-items: center; gap: 8px; }
.topbar__address svg, .topbar__phone svg { color: var(--c-gold); flex-shrink: 0; }
.topbar__phone a { color: var(--c-text); font-weight: 600; }
.topbar__phone a:hover { color: var(--c-gold); }

/* ============================================================
   Header (sticky, blur)
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(58,11,13,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,160,91,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__logo img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.header__brand { display: flex; flex-direction: column; line-height: 1; }
.header__brand-name {
  font: 400 17px var(--f-slab);
  color: var(--c-text);
  letter-spacing: .04em;
  white-space: nowrap;
}
.header__brand-sub {
  font: 600 12px var(--f-cond);
  color: var(--c-gold);
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-top: 5px;
}
.header__burger { display: none; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 600 15px var(--f-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,236,225,.85);
  padding: 18px 10px;
}
.nav__item > a:hover { color: var(--c-gold); }
.nav__item--active > a { color: var(--c-gold); }
.nav__chevron { opacity: .7; }
.nav__item--lang img { border-radius: 2px; }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(38,8,9,.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--c-line);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 50;
  overflow: hidden;
}
.nav__item--dropdown:hover .nav__sub,
.nav__item--dropdown:focus-within .nav__sub,
.nav__item--dropdown.is-open .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 14px var(--f-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243,236,225,.85);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(217,160,91,.08);
}
.nav__sub li:last-child a { border-bottom: 0; }
.nav__sub a:hover { background: rgba(217,160,91,.1); color: var(--c-gold); }

/* ============================================================
   Hero (Startseite)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 86vh, 920px);
  overflow: hidden;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 20px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform-origin: 50% 42%;
  animation: heroKen 26s ease-in-out infinite alternate;
}
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.065); } }
@media (prefers-reduced-motion: reduce) { .hero__bg { animation: none; } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,6,5,.5) 0%, rgba(12,6,5,.2) 30%, rgba(12,6,5,.55) 58%, rgba(18,9,8,.92) 82%, rgba(21,11,9,1) 100%);
}
/* Frost-Oval: verdeckt den im Foto eingebrannten Alt-Text vollständig */
.hero::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%; top: 4%; bottom: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: radial-gradient(ellipse at center, rgba(14,7,6,.6) 0%, rgba(14,7,6,.38) 58%, rgba(14,7,6,.05) 82%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 72%, transparent 96%);
  mask-image: radial-gradient(ellipse at center, #000 72%, transparent 96%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  width: clamp(104px, 11vw, 190px);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  margin-bottom: clamp(20px, 2.6vw, 42px);
}
.hero__welcome {
  font: 600 clamp(13px, 1.05vw, 22px)/1.3 var(--f-cond);
  color: var(--c-gold);
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero__title {
  margin: clamp(14px, 1.5vw, 26px) 0 0;
  font: 400 clamp(34px, 4.3vw, 92px)/1.1 var(--f-slab);
  color: var(--c-text);
  letter-spacing: .01em;
  text-shadow: 0 6px 40px rgba(0,0,0,.6);
}
/* "Zillertal" prominent herausgearbeitet */
.hero__place {
  margin-top: clamp(12px, 1.2vw, 22px);
  font: 400 clamp(20px, 2.1vw, 44px)/1.2 var(--f-slab);
  color: rgba(243,236,225,.85);
  letter-spacing: .02em;
  text-shadow: 0 4px 30px rgba(0,0,0,.65);
}
.hero__place strong {
  font-weight: 400;
  color: var(--c-gold);
  text-shadow: 0 0 34px rgba(217,160,91,.45), 0 4px 30px rgba(0,0,0,.65);
}
.hero__text {
  margin: clamp(16px, 1.5vw, 28px) 0 0;
  max-width: 56ch;
  font: 400 clamp(14px, 1.15vw, 20px)/1.65 var(--f-body);
  color: rgba(243,236,225,.9);
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.hero__text strong { color: var(--c-gold); }
.hero__buttons {
  margin-top: clamp(22px, 2.6vw, 44px);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   Feature-Trio (Steaks/Burger/Desserts)
   ============================================================ */
.features { padding: 26px 28px 40px; }
.features__inner { max-width: var(--wrap); margin: 0 auto; }
.features__cards--trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--grad-card);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: all .3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-hover);
  box-shadow: var(--shadow-card);
}
.feature-card img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.feature-card h4 { font: 400 22px var(--f-slab); color: var(--c-text); margin-bottom: 6px; }
.feature-card p { font: 400 16px/1.5 var(--f-body); color: var(--c-muted); }

/* ============================================================
   Erlebnis-Sektion (Bild + Text)
   ============================================================ */
.experience {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.experience__media { position: relative; }
.experience__media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(217,160,91,.35);
  border-radius: 14px;
}
.experience__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.experience__text p { font: 400 17.5px/1.7 var(--f-body); color: var(--c-soft); max-width: 56ch; }
.checklist { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 17px var(--f-body);
  color: var(--c-text);
}
.checklist li::before { content: "★"; color: var(--c-red); font-size: 18px; }
.experience__pills { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Bilder-Karussell (Band)
   ============================================================ */
.carousel {
  background: var(--c-panel);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 30px 0;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: carousel-scroll 60s linear infinite;
}
.carousel:hover .carousel__track { animation-play-state: paused; }
.carousel__slide { flex: 0 0 auto; }
.carousel__slide img {
  width: 260px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ============================================================
   Highlights (Gericht-Karten mit Overlay)
   ============================================================ */
.highlights {
  background: linear-gradient(180deg, var(--c-dark), var(--c-panel) 20%, var(--c-panel) 80%, var(--c-dark));
  border-top: 1px solid rgba(217,160,91,.12);
  border-bottom: 1px solid rgba(217,160,91,.12);
  padding: 84px 28px;
}
.highlights__inner { max-width: var(--wrap); margin: 0 auto; }
.highlights__head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.highlights__text { font: 400 17.5px/1.7 var(--f-body); color: rgba(243,236,225,.75); margin-top: 20px; }
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.dish-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  transition: transform .35s ease;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card__frame { position: relative; }
.dish-card__frame::before { display: none; }
.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.dish-card__frame::after,
.dish-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,6,5,.92));
  pointer-events: none;
}
.dish-card figcaption,
.dish-card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  text-align: center;
  z-index: 2;
}
.dish-card__caption b,
.dish-card figcaption {
  display: block;
  font: 400 22px var(--f-slab);
  color: var(--c-text);
  font-weight: 400;
}
.dish-card__caption span {
  display: block;
  margin-top: 6px;
  font: 600 13px var(--f-cond);
  color: var(--c-gold);
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ============================================================
   Zitat
   ============================================================ */
.quote { max-width: 900px; margin: 0 auto; padding: 90px 28px; text-align: center; background: none; }
.quote__mark { color: rgba(217,160,91,.55); margin: 0 auto 6px; }
.quote blockquote p {
  font: 400 clamp(22px, 2vw, 30px)/1.55 var(--f-body);
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 26px;
}
.quote blockquote footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font: 600 15px var(--f-cond);
  color: var(--c-gold);
  letter-spacing: .26em;
  text-transform: uppercase;
}
.quote blockquote footer::before,
.quote blockquote footer::after {
  content: "";
  height: 1px;
  width: 44px;
  background: rgba(217,160,91,.5);
}

/* ============================================================
   Reservierung + Karte
   ============================================================ */
.reservation {
  background: var(--c-maroon);
  border-top: 1px solid rgba(217,160,91,.2);
  border-bottom: 1px solid rgba(217,160,91,.2);
  padding: 80px 28px;
}
.reservation__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 52px;
  align-items: center;
}
.reservation__content p { font: 400 17.5px/1.7 var(--f-body); color: var(--c-soft); max-width: 52ch; }
.reservation__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.reservation__phone { font: 600 17px var(--f-body); color: var(--c-text); }
.reservation__phone:hover { color: var(--c-gold); }
.reservation__note { margin-top: 26px; font: 400 16px/1.6 var(--f-body); color: var(--c-muted); }
.reservation__content .btn { margin-bottom: 0; }

.map-embed {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: #1a0d0b;
  border: 1px solid rgba(217,160,91,.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}
.map-embed iframe, .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.85) contrast(1.02);
}

.reservation__video { position: relative; }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(217,160,91,.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}

/* Consent-Fassaden */
.consent-facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
  color: var(--c-muted);
}
.consent-facade > svg { color: var(--c-red); }
.consent-facade p strong { color: var(--c-text); font: 600 16px var(--f-body); }
.consent-facade__note { font-size: 12.5px; max-width: 320px; line-height: 1.5; }
.consent-facade--video { background-size: cover; background-position: center; }
.consent-facade--video::before { content: ""; position: absolute; inset: 0; background: rgba(16,8,7,.35); }
.video-embed__play { position: relative; background: none; border: 0; cursor: pointer; transition: transform .2s; }
.video-embed__play:hover { transform: scale(1.08); }
.consent-facade__note--video { position: relative; color: var(--c-white); text-shadow: 0 1px 3px rgba(0,0,0,.8); }

/* ============================================================
   Blog-Teaser (nummerierte Karten)
   ============================================================ */
.blog { padding: 84px 28px; }
.blog__inner { max-width: var(--wrap); margin: 0 auto; }
.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.blog__all {
  font: 600 15px var(--f-cond);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(217,160,91,.5);
  padding-bottom: 4px;
}
.blog__all:hover { color: var(--c-text); }
.blog__intro { text-align: center; color: var(--c-muted); margin-bottom: 44px; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  border: 0;
}
.blog-card {
  background: var(--grad-card);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s ease;
}
.blog-card + .blog-card { border-left: 1px solid var(--c-line); }
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-hover);
  box-shadow: var(--shadow-card);
}
.blog-card__num { font: 400 30px var(--f-slab); color: rgba(217,160,91,.4); }
.blog-card img { border-radius: 8px; aspect-ratio: 16/9; object-fit: cover; }
.blog-card h3 {
  font: 600 20px/1.35 var(--f-body);
  color: var(--c-text);
  padding: 0;
}
.blog-card > p { font: 400 15.5px/1.6 var(--f-body); color: var(--c-muted); padding: 0; flex-grow: 1; }
.blog-card__more {
  margin-top: auto;
  font: 600 14px var(--f-cond);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 0;
}
.blog-card__more:hover { color: var(--c-text); }
.blog__cta { text-align: center; margin-top: 48px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 880px; margin: 0 auto; padding: 20px 28px 100px; }
.faq__inner { max-width: 100%; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 40px; }
.faq-item {
  background: linear-gradient(160deg, #221010, #1A0B0A);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-item__q {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  font: 600 18px var(--f-body);
  color: var(--c-text);
  transition: color .25s;
}
.faq-item__q:hover { color: var(--c-gold); }
.faq-item.is-open .faq-item__q { color: var(--c-gold); background: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: auto; height: auto;
  border: 0;
  color: var(--c-gold);
  font-size: 22px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .3s ease;
  margin: 0;
}
.faq-item__icon::before { content: "+"; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); margin: 0; }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; }
.faq-item__a-inner p {
  padding: 0 24px 22px;
  font: 400 16.5px/1.65 var(--f-body);
  color: var(--c-muted);
}
.faq-item__a-inner a { color: var(--c-gold); text-decoration: underline; }
.faq-item__a-inner a:hover { color: var(--c-red); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--c-header); border-top: 1px solid rgba(217,160,91,.2); }
.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 70px 28px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 44px;
}
.footer__col--logo { display: block; }
.footer__col--logo img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.footer__col--center { text-align: left; border-left: 0; padding-left: 0; }
.footer__addr, .footer__col--center p {
  margin-top: 18px;
  font: 400 15.5px/1.7 var(--f-body);
  color: var(--c-muted);
  margin-bottom: 0;
}
.footer__col--center p + p { margin-top: 6px; }
.footer__icon { display: none; }
.footer__divider { display: none; }
.footer__col h4 {
  font: 600 15px var(--f-cond);
  color: var(--c-gold);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.footer__col--center .btn,
.footer__link {
  display: inline-block;
  margin-top: 14px;
  background: none;
  box-shadow: none;
  padding: 0 0 3px;
  border-radius: 0;
  font: 600 14px var(--f-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(217,160,91,.5);
}
.footer__col--center .btn:hover, .footer__link:hover { color: var(--c-text); transform: none; background: none; }
.footer__col--center .btn svg { display: none; }
.footer__contact { margin-top: 18px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 15.5px/1.5 var(--f-body);
  color: rgba(243,236,225,.75);
  margin-bottom: 10px;
}
.footer__contact svg { color: var(--c-gold); flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }
.footer__contact a:hover { color: var(--c-gold); }
.footer__follow { margin-top: 26px; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(243,236,225,.35);
  border-radius: 50%;
  color: rgba(243,236,225,.75);
  transition: all .25s;
}
.footer__social a:hover { border-color: var(--c-gold); color: var(--c-gold); background: none; }
.footer__bottom { border-top: 0; }
.footer__bottom-inner {
  max-width: var(--wrap);
  margin: 44px auto 0;
  padding: 22px 28px;
  border-top: 1px solid rgba(217,160,91,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font: 400 14px var(--f-body);
  color: rgba(243,236,225,.45);
}
.footer__bottom a { color: rgba(243,236,225,.55); }
.footer__bottom a:hover { color: var(--c-gold); }
.footer__bottom-inner p:last-child a { margin-left: 18px; }

/* ============================================================
   Speisekarte (Flipbook)
   ============================================================ */
.menu-viewer { padding: 70px 16px 40px; }
.menu-viewer__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.menu-viewer .section-title { margin-bottom: 38px; }
.flipbook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  touch-action: manipulation;
}
.flipbook__stage {
  position: relative;
  max-width: 620px;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(217,160,91,.3);
  border-radius: 12px;
  overflow: hidden;
  background: #1a0d0b;
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}
.flipbook__stage img { width: 100%; height: auto; user-select: none; -webkit-user-drag: none; }
.flipbook__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--c-red);
  color: var(--c-white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(196,15,28,.35);
  transition: all .25s;
}
.flipbook__arrow:hover { background: var(--c-red-dark); transform: scale(1.06); }
.flipbook__arrow:disabled { opacity: .35; cursor: default; transform: none; }
.flipbook__status { margin-top: 18px; font: 500 14px var(--f-cond); letter-spacing: .1em; color: var(--c-muted); }
.menu-viewer__actions { margin-top: 26px; }
.cta-band { padding: 30px 16px 90px; text-align: center; }

/* ============================================================
   Galerie
   ============================================================ */
.page-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,6,5,.25), rgba(21,11,9,.9));
}
.page-hero--tall {
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 16px;
}
.page-hero--tall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14,7,6,.58);
  backdrop-filter: blur(2px);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__content h1 {
  font: 400 clamp(32px, 4vw, 60px)/1.15 var(--f-slab);
  color: var(--c-text);
  margin-bottom: 26px;
  text-shadow: 0 6px 40px rgba(0,0,0,.6);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.gallery-intro { padding: 70px 16px 30px; }
.gallery-intro__inner { max-width: var(--wrap); margin: 0 auto; }
.gallery-intro__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-intro__row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.gallery { padding: 40px 16px 60px; }
.gallery__inner { max-width: var(--wrap); margin: 0 auto; }
.gallery__grid { columns: 4 260px; column-gap: 16px; }
.gallery__item {
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 10px;
}
.gallery__item img { width: 100%; transition: transform .35s ease, opacity .35s ease; }
.gallery__item:hover img { transform: scale(1.04); opacity: .85; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12,6,5,.94);
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 50px rgba(0,0,0,.7);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(196,15,28,.9);
  color: var(--c-white);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--c-red); }
.lightbox__close { top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; font-size: 22px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 46px; height: 64px; border-radius: 8px; }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }
.lightbox__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-muted);
  font: 500 13px var(--f-cond);
  letter-spacing: .1em;
}

/* ============================================================
   Rechtsseiten / Artikel-Text
   ============================================================ */
.legal { padding: 70px 16px 90px; }
.legal__inner { max-width: 860px; margin: 0 auto; }
.legal h1 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 26px; }
.legal h2 { font: 600 22px var(--f-body); margin: 36px 0 14px; color: var(--c-gold); }
.legal h3 { font: 600 18px var(--f-body); margin: 26px 0 10px; }
.legal p, .legal li { font-size: 15.5px; color: var(--c-muted); margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 14px; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal a { color: var(--c-gold); text-decoration: underline; overflow-wrap: anywhere; }
.legal a:hover { color: var(--c-red); }

/* ============================================================
   Online-Reservieren / Kontakt
   ============================================================ */
.reserve-page { padding: 70px 16px 40px; }
.reserve-page__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.reserve-page iframe { border: 0; background: #fff; border-radius: 12px; }
.reserve-page__fallback { margin-top: 18px; font-size: 14px; color: var(--c-muted); }
.reserve-page__fallback a { color: var(--c-gold); }

.contact { padding: 70px 16px 50px; }
.contact__inner { max-width: var(--wrap); margin: 0 auto; text-align: center; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  text-align: left;
}
.contact__list li { display: flex; gap: 16px; margin-bottom: 24px; }
.contact__list svg { color: var(--c-red); flex-shrink: 0; margin-top: 3px; }
.contact__list h3 { font: 600 17px var(--f-body); margin-bottom: 4px; }
.contact__list p { font-size: 15px; color: var(--c-muted); }
.contact__list a:hover { color: var(--c-gold); }
.contact__info .map-embed { margin-top: 10px; min-height: 280px; }
.contact__form-wrap h2 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; position: relative; }
.contact-form input,
.contact-form textarea {
  background: rgba(36,17,16,.7);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  color: var(--c-text);
  font: 400 15px var(--f-body);
  padding: 13px 15px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--c-gold); }
.contact-form button { align-self: flex-start; }
.contact-form__note { font-size: 12.5px; color: var(--c-muted); }

/* ============================================================
   Text-Sektionen / Landingpages
   ============================================================ */
.text-section { padding: 70px 16px; }
.text-section__inner { max-width: 860px; margin: 0 auto; }
.text-section p { color: var(--c-muted); font-size: 16px; margin-bottom: 14px; }
.text-section a:not(.btn) { color: var(--c-gold); text-decoration: underline; }
.text-section__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.text-media { padding: 30px 16px 70px; }
.text-media__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 56px;
  align-items: start;
}
.text-media__text p { color: var(--c-muted); font-size: 16px; margin-bottom: 14px; }
.text-media__text a:not(.btn) { color: var(--c-gold); text-decoration: underline; }
.text-media__text .btn { margin-top: 12px; }
.text-media__media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  box-shadow: 0 26px 60px rgba(0,0,0,.4);
  position: sticky;
  top: 96px;
}

.lp { max-width: 940px; margin: 0 auto; padding: 60px 16px 80px; }
.lp-heading {
  font: 400 clamp(26px, 2.6vw, 38px)/1.2 var(--f-slab);
  color: var(--c-text);
  text-align: center;
  margin: 52px 0 18px;
}
h1.lp-heading { margin-top: 10px; }
h3.lp-heading { font: 600 21px var(--f-body); color: var(--c-gold); }
.lp-text {
  color: var(--c-muted);
  font-size: 16px;
  margin: 0 auto 14px;
  text-align: center;
  max-width: 760px;
}
.lp-btn-row { text-align: center; margin: 26px 0 34px; }
.lp-figure { margin: 38px auto; max-width: 560px; }
.lp-figure img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  box-shadow: 0 22px 50px rgba(0,0,0,.4);
}
.lp-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 0;
  align-items: center;
  margin: 34px 0;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--grad-card);
  transition: all .3s ease;
}
.lp-card:hover { border-color: var(--c-line-hover); box-shadow: var(--shadow-card); }
.lp-card:nth-of-type(even) { direction: rtl; }
.lp-card:nth-of-type(even) > * { direction: ltr; }
.lp-card img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  /* Crop priorisiert den oberen Bildbereich (Gesichter) */
  object-position: 50% 22%;
}
/* Hochformat-Fotos (JS setzt .is-portrait) werden nie beschnitten */
.lp-card img.is-portrait {
  object-fit: contain;
  max-height: 480px;
  background: rgba(10,5,4,.35);
}
.lp-card__body { padding: 30px 32px; }
.lp-card__body h3 { font: 600 21px var(--f-body); color: var(--c-gold); margin-bottom: 10px; }
.lp-card__body p { color: var(--c-muted); font-size: 15.5px; margin-bottom: 10px; }
.lp-form { max-width: 560px; margin: 50px auto 0; }

/* ============================================================
   Events / Veranstaltungen
   ============================================================ */
.events-page { padding: 70px 16px 50px; }
.events-page__inner { max-width: 840px; margin: 0 auto; text-align: center; }
.events-page__sub {
  font: 500 18px var(--f-cond);
  font-style: italic;
  color: var(--c-gold);
  letter-spacing: .15em;
  border-top: 1px solid rgba(217,160,91,.3);
  display: inline-block;
  padding: 12px 44px 0;
  margin-bottom: 44px;
}
.event-calendar {
  background: var(--grad-card);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  color: var(--c-text);
  padding: 30px 34px 32px;
  text-align: left;
  box-shadow: var(--shadow-card);
}
.event-calendar__year { text-align: center; margin-bottom: 20px; }
.event-calendar__year span {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-text);
  font: 700 19px var(--f-cond);
  letter-spacing: .12em;
  padding: 5px 20px;
  border-radius: 3px;
  transform: rotate(1deg);
  box-shadow: 0 6px 16px rgba(196,15,28,.35);
}
.event-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(217,160,91,.14);
}
.event-row:last-child { border-bottom: 0; }
.event-row__date { flex: 0 0 62px; text-align: center; line-height: 1.05; }
.event-row__mon {
  display: block;
  font: 700 12px var(--f-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-red);
}
.event-row__day { display: block; font: 400 28px var(--f-slab); color: var(--c-text); }
.event-row__name { flex: 1; font: 600 19px var(--f-body); color: var(--c-text); margin: 0; }
.event-row__time { font: 700 17px var(--f-cond); letter-spacing: .06em; color: var(--c-gold); }
.events-page__note { margin-top: 22px; font-size: 14px; color: var(--c-muted); }

.bands { padding: 40px 16px 90px; }
.bands__inner { max-width: var(--wrap); margin: 0 auto; }
.bands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.band-card { text-align: center; }
.band-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  margin-bottom: 12px;
  transition: all .3s ease;
}
.band-card:hover img { border-color: var(--c-line-hover); transform: translateY(-4px); }
.band-card figcaption { font: 600 15px var(--f-cond); letter-spacing: .1em; text-transform: uppercase; color: var(--c-text); }

/* ============================================================
   Blog-Übersicht + Artikel
   ============================================================ */
.blog-index { padding: 70px 16px 80px; }
.blog-index__inner { max-width: var(--wrap); margin: 0 auto; }
.blog-index h2 { font: 400 26px var(--f-slab); color: var(--c-gold); margin: 52px 0 24px; }
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  background: var(--grad-card);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.post-card:hover { border-color: var(--c-line-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card h3 { font: 600 16.5px/1.4 var(--f-body); padding: 18px 18px 8px; color: var(--c-text); }
.post-card p { font-size: 13.5px; color: var(--c-muted); padding: 0 18px; flex-grow: 1; }
.post-card span {
  display: inline-block;
  font: 600 13px var(--f-cond);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 14px 18px 18px;
}

.article { padding-bottom: 80px; }
.article__hero { max-height: 440px; overflow: hidden; position: relative; }
.article__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21,11,9,.85));
}
.article__hero img { width: 100%; object-fit: cover; }
.article__inner { max-width: 820px; margin: 0 auto; padding: 44px 16px 0; }
.article h1 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 10px; }
.article__meta { color: var(--c-muted); font: 500 13px var(--f-cond); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 32px; }
.article h2 { font: 600 24px var(--f-body); margin: 36px 0 14px; color: var(--c-gold); }
.article h3 { font: 600 19px var(--f-body); margin: 26px 0 10px; }
.article h4 { font: 600 16px var(--f-body); margin: 20px 0 8px; color: var(--c-gold); }
.article p, .article li { font-size: 16px; color: var(--c-muted); margin-bottom: 13px; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 16px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article a { color: var(--c-gold); text-decoration: underline; }
.article a:hover { color: var(--c-red); }
.article__inner img {
  margin: 26px auto;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  max-height: 440px;
  width: auto;
  max-width: 100%;
  box-shadow: 0 14px 34px rgba(0,0,0,.3);
}
.article blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 10px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--c-text);
  background: var(--grad-card);
  border-radius: 0 10px 10px 0;
}
.article table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px; }
.article th, .article td {
  border: 1px solid var(--c-line);
  padding: 10px 13px;
  text-align: left;
  color: var(--c-muted);
}
.article th { background: rgba(36,17,16,.8); color: var(--c-text); font-family: var(--f-cond); letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Fine Dining ---------- */
.finedining__h { font: 600 22px var(--f-body); margin: 22px 0 10px; color: var(--c-gold); }
.features__media { position: relative; }
.features__img { width: 100%; border-radius: 14px; border: 1px solid var(--c-line); box-shadow: 0 26px 60px rgba(0,0,0,.4); }
.features__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 56px;
  align-items: start;
  padding: 40px 0;
}
.features__title { font: 400 clamp(28px, 3vw, 42px)/1.2 var(--f-slab); margin-bottom: 20px; }
.features__text { color: var(--c-soft); font-size: 16.5px; margin-bottom: 18px; }
.features__cards { display: flex; flex-direction: column; gap: 16px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .text-media__inner { grid-template-columns: 1fr; gap: 34px; }
  .bands__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-index__grid { grid-template-columns: repeat(2, 1fr); }
  .header__brand { display: none; }
}

@media (max-width: 820px) {
  .topbar__inner { justify-content: center; }
  .topbar__address { display: none; }

  .header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .header__burger span {
    width: 24px; height: 2px;
    background: var(--c-text);
    transition: transform .25s, opacity .25s;
  }
  .header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(38,8,9,.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(217,160,91,.15);
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item > a {
    padding: 15px 22px;
    border-bottom: 1px solid rgba(217,160,91,.08);
    justify-content: space-between;
  }
  .nav__sub {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: rgba(0,0,0,.25);
  }
  .nav__item--dropdown.is-open .nav__sub { display: block; }
  .nav__sub a { padding-left: 40px; }
  .btn--header { display: none; }

  .hero { min-height: 78vh; }
  .hero::after { left: 4%; right: 4%; }

  .features { padding: 26px 16px 30px; }
  .experience { padding: 50px 16px; gap: 40px; }
  .experience__media::before { display: none; }

  .highlights { padding: 60px 16px; }
  .blog { padding: 60px 16px; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-card + .blog-card { border-left: 1px solid var(--c-line); }
  .blog-index__grid { grid-template-columns: 1fr; }

  .reservation { padding: 60px 16px; }
  .quote { padding: 64px 20px; }

  .lp-card { grid-template-columns: 1fr; }
  .lp-card img { max-height: 260px; }

  .gallery__grid { columns: 2 140px; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; border-radius: 6px; }
  .gallery-intro__row { grid-template-columns: 1fr; }
  .page-hero { height: 190px; }

  .flipbook { gap: 8px; }
  .flipbook__arrow { width: 38px; height: 38px; }
  .menu-viewer { padding: 44px 10px 30px; }

  .event-calendar { padding: 22px 16px; }
  .event-row__name { font-size: 16.5px; }

  .footer__inner { padding: 50px 20px 0; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ============================================================
   Video-Sektion "Ein Abend im Saloon"
   ============================================================ */
.saloon-video { padding: 84px 28px 40px; }
.saloon-video__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 52px;
  align-items: center;
}
.saloon-video__text p:not(.section-label) {
  font: 400 17.5px/1.7 var(--f-body);
  color: var(--c-soft);
  max-width: 46ch;
}
@media (max-width: 900px) {
  .saloon-video { padding: 56px 16px 20px; }
  .saloon-video__inner { grid-template-columns: 1fr; gap: 32px; }
}
