/* ════════════════════════════════════════════════════════════
   HOTEL RESTAURANT AMPERTAL — Haag an der Amper
   Struktur nach dem Vorbild platzhirsch-freising.de:
   vollflächiger Hero, gestapelte, zentrierte Sektionen mit
   gesperrten Versal-Eyebrows, Öffnungszeiten-Block, Formular.
   Anmutung: warmes Papier, Messing, Zirbe, dunkle Stube.
   ════════════════════════════════════════════════════════════ */

:root {
  --ink:        #17120C;
  --ink-soft:   #2A2118;
  --paper:      #F7F2E8;
  --paper-2:    #EFE7D8;
  --brass:      #A9803F;
  --brass-lt:   #D9B679;
  --muted:      #7C6E5C;
  --line:       rgba(23,18,12,.16);
  --line-light: rgba(247,242,232,.18);

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-ui: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --sec-y: clamp(80px, 11vw, 150px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* Sprungziele unter der fixen Navigation freihalten */
[id] { scroll-margin-top: 96px; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (max-width: 480px) {
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* Spürbare Rückmeldung beim Tippen — nur auf Geräten ohne Mauszeiger */
@media (hover: none) {
  .btn:active, .buch__btn:active, .quickbar a:active { transform: scale(.97); }
  .anruf:active { opacity: .75; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-ui);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

img, canvas, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* Überschriften brechen ausgewogen um, Fließtext ohne einzelne Hurenkinder */
h1, h2, h3, .display, .tag__name { text-wrap: balance; }
p, .lead { text-wrap: pretty; }

::selection { background: var(--brass); color: var(--paper); }

/* ─────────────── Typo-Bausteine ─────────────── */

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--light { color: var(--brass-lt); }
.center .eyebrow, .eyebrow.center { text-align: center; }

.eyebrow::after {
  content: "";
  display: block;
  width: 34px; height: 1px;
  margin: 14px 0 0;
  background: currentColor;
  opacity: .55;
}
.center .eyebrow::after { margin-inline: auto; }

.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -.012em;
  margin: 0 0 28px;
}
.display--xl { font-size: clamp(36px, 5.8vw, 70px); }
.display--l  { font-size: clamp(30px, 4.4vw, 54px); }
.display--m  { font-size: clamp(26px, 3vw, 38px); }
.light { color: var(--paper); }

.lead {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(16.5px, 1.5vw, 19px);
  line-height: 1.85;
  color: var(--ink-soft);
}
.center .lead { margin-inline: auto; }
.lead a { color: var(--brass); text-decoration: none; border-bottom: 1px solid currentColor; }

.note { font-size: 13.5px; line-height: 1.7; color: var(--muted); }
.note--light { color: rgba(247, 242, 232, .55); }

.rule {
  width: 1px; height: 64px;
  margin: 48px auto 0;
  background: linear-gradient(var(--brass), transparent);
}

/* ─────────────── Layout ─────────────── */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.center { text-align: center; }

.section { position: relative; padding: var(--sec-y) 0; }
/* Die weit unten liegenden Abschnitte muss der Browser nicht vorab durchrechnen.
   Bilderbänder bleiben außen vor — sonst springt beim Scrollen das Layout. */
#feiern, #finden, #reservierung, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 1100px;
}
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark .lead { color: rgba(247, 242, 232, .72); }
.section--intro { padding-bottom: clamp(56px, 7vw, 100px); }

/* ─────────────── Buttons ─────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
  background: none; color: var(--ink);
  cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
/* Farbwischer läuft hinter der Schrift, aber vor dem Button-Hintergrund */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: scaleY(1); }
.btn:hover { color: var(--paper); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid::before { background: var(--brass); }
.btn--solid:hover { color: var(--ink); border-color: var(--brass); }

.btn--light { border-color: rgba(247, 242, 232, .5); color: var(--paper); }
.btn--light::before { background: var(--paper); }
.btn--light:hover { color: var(--ink); border-color: var(--paper); }

.btn--wide { width: 100%; padding-block: 19px; }

/* ─────────────── Navigation ─────────────── */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 10px 0;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 28px;
  height: 72px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--paper); }
.nav__brand-mark { position: relative; width: 24px; height: 41px; flex: none; }
.nav__brand-mark img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .5s var(--ease);
}
.nav__brand-mark .is-dark { opacity: 0; }
.nav__brand-text {
  font-family: var(--f-display);
  font-size: 24px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper);
  transition: color .5s var(--ease);
}
.nav__links { margin-left: auto; display: flex; gap: 26px; }
.nav__links a {
  font-size: 10.5px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(247, 242, 232, .82);
  position: relative; padding-block: 6px;
  transition: color .35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--brass-lt); }

.nav__cta {
  padding: 12px 22px;
  border-color: rgba(247, 242, 232, .45); color: var(--paper);
}
.nav__cta::before { background: var(--paper); }
.nav__cta:hover { color: var(--ink); border-color: var(--paper); }

.nav.is-stuck {
  background: rgba(247, 242, 232, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0;
}
.nav.is-stuck .nav__brand-text { color: var(--ink); }
.nav.is-stuck .nav__brand-mark .is-light { opacity: 0; }
.nav.is-stuck .nav__brand-mark .is-dark { opacity: 1; }
.nav.is-stuck .nav__links a { color: rgba(23, 18, 12, .74); }
.nav.is-stuck .nav__links a.is-active { color: var(--brass); }
.nav.is-stuck .nav__cta { border-color: var(--ink); color: var(--ink); }
.nav.is-stuck .nav__cta::before { background: var(--ink); }
.nav.is-stuck .nav__cta:hover { color: var(--paper); }

.nav__burger {
  display: none; margin-left: auto;
  width: 42px; height: 42px; padding: 0;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 7px;
}
.nav__burger span {
  display: block; height: 1px; width: 26px; margin-inline: auto;
  background: var(--paper);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.nav.is-stuck .nav__burger span { background: var(--ink); }
.nav__burger[aria-expanded="true"] span { background: var(--paper); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  gap: 2px; padding: 0 var(--gutter);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--f-display); font-size: clamp(26px, 7vw, 36px);
  color: var(--paper); text-decoration: none;
  padding-block: 6px;
}
.mobile-menu__foot {
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu__foot a { font-family: var(--f-ui); font-size: 14px; color: rgba(247,242,232,.6); }

/* ─────────────── Hero ─────────────── */
/* Das Foto bleibt unangetastet: keine Überlagerung, kein Verlauf.
   Die Schrift steht unten links und trägt ihre Lesbarkeit selbst. */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 140px var(--gutter) clamp(48px, 7vh, 84px);
  background: var(--ink) url("../assets/img/hero.webp") 58% center / cover no-repeat;
  overflow: hidden;
}
/* Nur hinter der Schrift unten links wird es dunkler — das Bild selbst bleibt frei */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,10,6,.55) 0%, rgba(14,10,6,.18) 12%, rgba(14,10,6,0) 24%),
    linear-gradient(to top, rgba(14,10,6,.80) 0%, rgba(14,10,6,.45) 26%, rgba(14,10,6,0) 58%),
    linear-gradient(to right, rgba(14,10,6,.62) 0%, rgba(14,10,6,.22) 34%, rgba(14,10,6,0) 62%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: min(820px, 92vw);
  text-align: left;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 9vw, 108px);
  line-height: .95;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--paper);
  margin: 0 0 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,.75), 0 3px 14px rgba(0,0,0,.85), 0 10px 46px rgba(0,0,0,.7);
}
.hero__title .char { display: inline-block; will-change: transform, opacity; }
.hero__sub {
  margin: 0 0 32px;
  max-width: 46ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: #FFFCF6;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.9), 0 6px 26px rgba(0,0,0,.75);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__phone { margin: 20px 0 0; }

/* Anruf: keine Pille, aber die ganze Zeile wählt */
.anruf {
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: nowrap; white-space: nowrap;
  padding: 6px 0;
  text-decoration: none;
}
.anruf:focus-visible { outline: 2px solid var(--brass-lt); outline-offset: 4px; }
.anruf__hoerer { width: 15px; height: 15px; fill: var(--brass-lt); flex: none; }
.anruf span {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247, 242, 232, .72);
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.85);
}
.anruf b {
  font-weight: 400; font-size: 15px; letter-spacing: .04em;
  color: #FFFCF6;
  border-bottom: 1px solid rgba(217, 182, 121, .55);
  padding-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.85);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.anruf:hover b { color: var(--brass-lt); border-color: var(--brass-lt); }

/* Öffnungsstatus, live berechnet */
.status {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 22px;
  padding: 7px 16px 7px 13px;
  border: 1px solid rgba(247, 242, 232, .3);
  border-radius: 100px;
  background: rgba(23, 18, 12, .55);
  backdrop-filter: blur(8px);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247, 242, 232, .92);
}
.status[hidden] { display: none; }
.status__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
}
.status.is-open .status__dot {
  background: #7DBE78;
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 190, 120, .55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(125, 190, 120, 0); }
}

/* Navigation über dem hellen Foto lesbar halten */
.nav:not(.is-stuck) .nav__brand-text,
.nav:not(.is-stuck) .nav__links a,
.nav:not(.is-stuck) .nav__cta {
  text-shadow: 0 1px 2px rgba(0,0,0,.85), 0 2px 12px rgba(0,0,0,.85);
}
.nav:not(.is-stuck) .nav__brand-mark img { filter: drop-shadow(0 2px 5px rgba(12,8,4,.8)); }

/* Sprungmarke: erst sichtbar, wenn sie den Tastaturfokus bekommt */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  padding: 14px 22px;
  background: var(--ink); color: var(--paper);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

/* ─────────────── Anlässe (Feiern) ─────────────── */

.anlaesse {
  margin-top: clamp(30px, 4vw, 44px);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 12px;
}
.anlaesse span {
  padding: 9px 18px;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  font-size: 12px; letter-spacing: .1em;
  color: rgba(247, 242, 232, .78);
}

/* ─────────────── Ankündigung im Hero ─────────────── */
/* Eine Zeile, kein Kasten — sie soll das Bild nicht zerschneiden */

.ankuendigung {
  position: absolute; z-index: 3;
  left: var(--gutter); right: var(--gutter); top: 106px;
}
.ankuendigung[hidden] { display: none; }
.ankuendigung a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 0;
  text-decoration: none;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247, 242, 232, .82);
  text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 2px 12px rgba(0,0,0,.85);
  transition: color .35s var(--ease);
}
.ankuendigung a:hover { color: var(--brass-lt); }
.ankuendigung a:focus-visible { outline: 2px solid var(--brass-lt); outline-offset: 4px; }
.ankuendigung__punkt {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass-lt); flex: none;
  box-shadow: 0 0 10px rgba(217, 182, 121, .8);
}
.ankuendigung__pfeil {
  font-size: 13px; opacity: .6;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.ankuendigung a:hover .ankuendigung__pfeil { transform: translateX(4px); opacity: 1; }

/* ─────────────── Veranstaltung ─────────────── */

.event__fakten {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.event__fakt {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.event__label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass);
}
.event__wert {
  font-family: var(--f-display); font-size: clamp(24px, 2.6vw, 32px); line-height: 1.1;
}
.event__zusatz { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ─────────────── Handlungsaufforderungen ─────────────── */

.cta-row { margin-top: clamp(36px, 5vw, 56px); }

.anruf-btn { display: inline-flex; align-items: center; gap: 11px; }
.anruf-btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }

/* Schnellzugriff am unteren Rand (nur Handy) */
.quickbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: rgba(23, 18, 12, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-light);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
}
.quickbar a {
  flex: 1 1 0; padding: 16px 6px;
  text-align: center; text-decoration: none;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247, 242, 232, .78);
  border-right: 1px solid var(--line-light);
}
.quickbar a:last-child { border-right: 0; }
.quickbar__primary { background: var(--brass); color: var(--ink) !important; font-weight: 500; }

/* ─────────────── Spezialtage ─────────────── */

.tage {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}
.tag {
  padding: clamp(28px, 4vw, 46px) 20px;
  text-align: center;
  border-right: 1px solid var(--line-light);
}
.tag:last-child { border-right: 0; }
.tag__day {
  margin: 0 0 14px;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass-lt);
}
.tag__neu {
  display: inline-block; margin-left: 7px;
  padding: 3px 8px 2px;
  background: var(--brass); color: var(--ink);
  border-radius: 100px;
  font-size: 9px; letter-spacing: .14em; font-weight: 500;
}
.tag--neu .tag__name { color: #FFF7E6; }
.tag__name {
  margin: 0;
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.05;
  color: var(--paper);
}
.tag__price {
  margin: 14px 0 0;
  font-size: 13.5px; color: rgba(247, 242, 232, .55);
}

/* ─────────────── Bilder ─────────────── */
/* Bilder behalten ihr eigenes Format — kein Zuschnitt */

.figure { margin: 0; position: relative; }
.figure > img {
  width: 100%; height: auto;
  background: var(--ink-soft);
}
.figure figcaption {
  margin-top: 12px;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.section--dark .figure figcaption { color: rgba(247,242,232,.5); }

/* Galerien als Spalten: unterschiedliche Formate ordnen sich von selbst */
.gallery {
  margin-top: clamp(48px, 7vw, 92px);
  columns: 3;
  column-gap: clamp(14px, 2vw, 26px);
}
.gallery--4 { columns: 4; }
.gallery--2 { columns: 2; }
.gallery .figure {
  break-inside: avoid;
  margin-bottom: clamp(14px, 2vw, 26px);
}

/* Vollbild-Band: breites Foto über die ganze Seitenbreite */
.band {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}
.band > img,
.band picture,
.band picture img { width: 100%; height: auto; display: block; }
.band__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 5vw, 56px) var(--gutter);
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(to top, rgba(23,18,12,.82), rgba(23,18,12,0));
  color: var(--paper);
}
.band__eyebrow {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-lt);
}
.band__title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(24px, 3.4vw, 44px); line-height: 1.1;
  max-width: 20ch;
}

/* ─────────────── Über uns ─────────────── */

.split {
  display: grid; grid-template-columns: 0.8fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 68px);
}
.split__text p { margin: 0 0 22px; color: var(--ink-soft); }
.split__text p:first-child::first-letter {
  float: left;
  font-family: var(--f-display);
  font-size: 66px; line-height: .78;
  padding: 6px 12px 0 0;
  color: var(--brass);
}

.quote {
  margin: 38px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-style: italic; line-height: 1.35;
  color: var(--ink);
}
.quote cite {
  display: block; margin-top: 16px;
  font-family: var(--f-ui); font-style: normal;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────── Speisekarte ─────────────── */

.dishes { list-style: none; margin: 22px 0 0; padding: 0; }
.dish { padding: 18px 0; border-bottom: 1px solid var(--line); }
.dish:first-child { border-top: 1px solid var(--line); }
.dish__head { display: flex; align-items: baseline; gap: 10px; }
.dish__head h4 {
  margin: 0; font-family: var(--f-display); font-weight: 400;
  font-size: clamp(19px, 1.9vw, 23px); line-height: 1.2;
  white-space: nowrap;
}
.dish__dots {
  flex: 1 1 auto; height: 1px; min-width: 16px;
  background: repeating-linear-gradient(to right, var(--line) 0 2px, transparent 2px 6px);
  transform: translateY(-3px);
}
.dish__price {
  font-family: var(--f-display); font-size: clamp(19px, 1.9vw, 23px);
  color: var(--brass); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.dish__price::after { content: " €"; font-size: .62em; }
.dish p { margin: 5px 0 0; font-size: 14px; color: var(--muted); }

.beliebt { margin-top: clamp(56px, 8vw, 96px); }
.beliebt .dishes { margin-top: 26px; }

/* ── Speisekarte als Heft ── */

.buch { margin-top: clamp(28px, 4vw, 48px); }
.buch__stage {
  position: relative;
  height: clamp(420px, 80vh, 860px);
  width: 100%;
}
.buch__stage canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  touch-action: pan-y;
  cursor: grab;
  outline: none;
}
.buch__stage canvas:active { cursor: grabbing; }
.buch__stage canvas:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

.buch__ui {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.buch__btn {
  min-width: 46px; height: 46px; padding: 0 16px;
  background: none; border: 1px solid var(--line); color: var(--ink);
  font: inherit; font-size: 15px; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.buch__btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.buch__btn:disabled { opacity: .3; cursor: default; }
.buch__btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.karten-fallback ul {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.karten-fallback a { font-size: 14px; color: var(--brass); }

.essen {
  margin-top: clamp(48px, 7vw, 88px);
  columns: 4;
  column-gap: clamp(12px, 1.6vw, 20px);
}
.essen .figure {
  break-inside: avoid;
  margin-bottom: clamp(12px, 1.6vw, 20px);
}

/* ─────────────── Hotel ─────────────── */

.rooms {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
/* Einheitliche Kacheln — in einer Dreierreihe müssen die Bilder gleich hoch sein,
   sonst franst die Zeile aus. Freie Formate gibt es weiter in den Galerien. */
.room .figure > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.room__title {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(23px, 2.2vw, 28px); line-height: 1.15;
}
.room p {
  margin: 8px 0 0;
  font-size: 14.5px; line-height: 1.7; color: var(--muted);
  max-width: 32ch;
}

.booking { margin-top: clamp(44px, 6vw, 72px); }
.booking p { margin: 0 0 22px; color: var(--ink-soft); }

/* ─────────────── Öffnungszeiten & Kontakt ─────────────── */

.info {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: 1.15fr 1fr 1.1fr;
  gap: clamp(32px, 5vw, 60px);
}
.info__title {
  margin: 0 0 22px;
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass);
}
.hours { list-style: none; margin: 0 0 20px; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.hours li span:first-child { color: var(--muted); }
.hours .closed { color: var(--brass); }
.hours li.is-today { font-weight: 500; }
.hours li.is-today span:first-child { color: var(--ink); }
.hours li.is-today span:first-child::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px; margin-right: 8px; vertical-align: middle;
  background: var(--brass); border-radius: 50%;
}

.is-zoomable { cursor: zoom-in; }
.is-zoomable:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.address { font-style: normal; font-size: 15px; line-height: 1.9; color: var(--ink-soft); }
.address a { color: var(--brass); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.address a:hover { border-color: currentColor; }

.map {
  width: 100%; aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #E4DBC8 0%, #D8CDB6 100%);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75); }
.map__laden {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px;
  background: none; border: 0; cursor: pointer;
  font: inherit; text-align: center;
}
.map__titel {
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass); padding-bottom: 5px;
}
.map__hinweis { max-width: 32ch; font-size: 12px; line-height: 1.6; color: var(--muted); }
.map__laden:hover .map__titel { color: var(--brass); }
.map__laden:focus-visible { outline: 2px solid var(--brass); outline-offset: -4px; }
.map__link {
  display: inline-block; margin-top: 12px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.map__link:hover { color: var(--brass); }

/* ─────────────── Formular ─────────────── */

.form { margin-top: clamp(40px, 6vw, 64px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__row--three { grid-template-columns: 0.8fr 1fr 1fr; }
.field { display: block; margin-bottom: 22px; }
.field > span {
  display: block; margin-bottom: 8px;
  font-size: 10.5px; letter-spacing: .17em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 0;
  font-family: var(--f-ui); font-size: 15.5px; font-weight: 300; color: var(--ink);
  background: none; border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--brass);
}
.field input:user-invalid, .field textarea:user-invalid { border-bottom-color: #9E3B2E; }

.checkbox { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 32px; }
.checkbox input { margin-top: 5px; accent-color: var(--brass); flex: none; }
.checkbox span { font-size: 13px; line-height: 1.65; color: var(--muted); }
.checkbox a { color: var(--brass); white-space: nowrap; }

.form__status { margin: 18px 0 0; font-size: 14px; color: var(--brass); min-height: 1.5em; text-align: center; }

/* ─────────────── Footer ─────────────── */

.footer { background: var(--ink); color: var(--paper); padding: clamp(60px, 8vw, 96px) 0 36px; }
.footer__top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 48px; border-bottom: 1px solid var(--line-light);
}
.footer__logo { width: 150px; height: auto; margin-bottom: 14px; }
.footer__adresse {
  font-style: normal; padding-top: 8px;
  font-size: 13px; line-height: 1.9; color: rgba(247, 242, 232, .62);
}
.footer__adresse a { text-decoration: none; }
.footer__adresse a:hover { color: var(--brass-lt); }
.footer__brand .note { max-width: 36ch; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 11px; padding-top: 8px; }
.footer__nav a, .footer__contact a {
  font-size: 12.5px; letter-spacing: .09em; text-decoration: none;
  color: rgba(247, 242, 232, .62);
  width: fit-content;
  transition: color .3s var(--ease);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--brass-lt); }
.footer__legal {
  padding-top: 30px;
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 12px 32px;
}
.footer__recht { display: flex; gap: 26px; }
.footer__recht a {
  font-size: 12px; letter-spacing: .12em; text-decoration: none;
  color: rgba(247, 242, 232, .62);
}
.footer__recht a:hover { color: var(--brass-lt); }
.footer__legal p { margin: 0; font-size: 11.5px; line-height: 1.8; color: rgba(247, 242, 232, .38); }
.footer__legal strong { color: rgba(247, 242, 232, .6); font-weight: 500; }
.footer__legal a { color: rgba(247, 242, 232, .55); }

/* ─────────────── Lightbox ─────────────── */

.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12, 9, 6, .93);
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 48px);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__inner { margin: 0; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox__inner img {
  max-height: calc(100svh - 160px); max-width: 100%;
  width: auto; object-fit: contain;
  background: #fff;
  box-shadow: 0 30px 80px -30px #000;
}
.lightbox__inner figcaption {
  margin-top: 16px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247, 242, 232, .6);
}
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line-light); color: var(--paper);
  font-size: 15px; cursor: pointer;
  transition: background .3s, color .3s;
}
.lightbox__close:hover { background: var(--paper); color: var(--ink); }

/* ─────────────── Loader ─────────────── */

.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: grid; place-items: center; gap: 26px;
  grid-auto-rows: min-content;
}
.loader__mark { width: 42px; height: auto; opacity: .9; }
.loader__bar { width: 160px; height: 1px; background: rgba(247, 242, 232, .18); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: var(--brass); }

/* ─────────────── Reveal-Grundzustand ─────────────── */

[data-reveal] { opacity: 0; }
[data-reveal-words] .word {
  display: inline-block; overflow: hidden;
  padding-bottom: .08em; margin-bottom: -.08em;
}
[data-reveal-words] .word i { display: inline-block; font-style: inherit; }
.no-motion [data-reveal] { opacity: 1; }

/* ─────────────── Responsive ─────────────── */

@media (max-width: 1120px) {
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 10px; letter-spacing: .12em; }
}

@media (max-width: 1020px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .info { grid-template-columns: 1fr 1fr; }
  .info__col--map { grid-column: 1 / -1; }
  .map { aspect-ratio: 21 / 9; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .essen { columns: 3; }
  .tage { grid-template-columns: 1fr 1fr; }
  .tag:nth-child(2n) { border-right: 0; }
  .tag:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .event__fakten { grid-template-columns: 1fr 1fr; }
  .gallery--4 { columns: 2; }
}

@media (max-width: 700px) {
  :root { --sec-y: clamp(60px, 14vw, 92px); }
  /* Lange deutsche Wörter auf schmalen Zeilen trennen */
  .lead, .split__text p, .dish p, .room p, .event__zusatz {
    hyphens: auto; -webkit-hyphens: auto;
  }
  .gallery, .gallery--4, .gallery--2 { columns: 1; }
  .hero {
    background-image: url("../assets/img/hero-hoch.webp");
    background-position: center 30%;
  }
  .band__title { max-width: none; }
  /* Hochformat-Zuschnitt: das Band bekommt auf dem Handy richtig Fläche */
  .band picture img { aspect-ratio: 900 / 1080; object-fit: cover; }
  .band__caption { padding-bottom: clamp(28px, 6vw, 44px); }
  .essen { columns: 2; }
  .rooms { grid-template-columns: 1fr; }
  .info { grid-template-columns: 1fr; }
  .tage { grid-template-columns: 1fr; }
  .tag { border-right: 0; border-bottom: 1px solid var(--line-light); padding-block: 26px; }
  .tag:last-child { border-bottom: 0; }
  .event__fakten { grid-template-columns: 1fr; }
  .ankuendigung { top: 88px; }
  .ankuendigung a { font-size: 10px; letter-spacing: .12em; gap: 8px; }
  .form__row, .form__row--three { grid-template-columns: 1fr; gap: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .hero { padding-bottom: clamp(40px, 6vh, 64px); }
  .hero__content { max-width: none; }
  .dish__head { flex-wrap: wrap; }
  .dish__head h4 { white-space: normal; flex: 1 1 100%; }
  .dish__dots { display: none; }
  .buch__stage { height: min(68vh, 520px); }
  .field input, .field select, .field textarea { font-size: 16px; }
  /* Fingerfreundliche Trefferflächen */
  .footer__nav a, .footer__contact a, .mobile-menu__foot a { padding-block: 9px; }
  .footer__nav, .footer__contact { gap: 2px; }
  .address a { display: inline-block; padding-block: 6px; }
  .checkbox input { width: 22px; height: 22px; margin-top: 2px; }
  .anruf { gap: 9px; }
  .anruf span { font-size: 10px; letter-spacing: .14em; }
  .anruf b { font-size: 14.5px; }
  .nav__burger { width: 44px; height: 44px; }
  /* Weichzeichner kostet auf Handys Bildrate */
  .nav.is-stuck, .quickbar, .status { backdrop-filter: none; }
  .nav.is-stuck { background: rgba(247, 242, 232, .985); }
  .quickbar { background: rgba(23, 18, 12, .985); }
  .quickbar { display: flex; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; }
  .menu-card:hover, .karte:hover { transform: none; }
}
