/* ===========================================================================
   Kajüte Neun — Musterseite Gastronomie · Webatelier Nord
   Hafen bei Nacht: Teerschwarz als Grund, Messing als Akzent, Papierweiß
   für Text, ein Hauch Salbei für Details.
   =========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('schriften/fraunces-latin-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'InterVar';
  src: url('schriften/inter-latin-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --tief:      #0a1114;
  --grund:     #0f1a1f;
  --nacht:     #14232a;
  --nacht-2:   #1b2f38;
  --messing:   #c9973f;
  --bernstein: #e8c37a;
  --papier:    #f2ece1;
  --papier-70: rgba(242, 236, 225, .70);
  --papier-45: rgba(242, 236, 225, .45);
  --salbei:    #8fa08c;
  --linie:     rgba(201, 151, 63, .22);
  --linie-2:   rgba(242, 236, 225, .10);

  --serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --grotesk: 'InterVar', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --rand:  clamp(1.1rem, 4vw, 3rem);
  --breit: 1240px;
  --schmal: 760px;

  /* Dauern — unter reduced motion nur verkürzt, nie abgeschaltet */
  --d-kurz: .22s;
  --d-mittel: .55s;
  --d-lang: .9s;
  --d-stagger: 40ms;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 7.5rem; }

body {
  margin: 0;
  background: var(--grund);
  color: var(--papier);
  font-family: var(--grotesk);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 20;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
p  { margin: 0 0 1em; }

a { color: inherit; }
a.link { color: var(--bernstein); text-decoration-color: var(--linie); text-underline-offset: 3px; }
a.link:hover { text-decoration-color: var(--messing); }

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

.wrap { width: min(var(--breit), 100% - var(--rand) * 2); margin-inline: auto; }
.schmal { max-width: var(--schmal); }
.mittig { text-align: center; margin-inline: auto; }
.klein { font-size: .84rem; color: var(--papier-45); }
.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--bernstein); color: var(--tief);
  padding: .7rem 1.1rem; border-radius: 4px; font-weight: 600;
  transition: top var(--d-kurz) var(--ease);
}
.skip:focus { top: 1rem; }

.marke {
  font-family: var(--grotesk);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--messing);
  margin-bottom: .9rem;
}
.marke::after {
  content: ''; display: inline-block; vertical-align: middle;
  width: 2.6rem; height: 1px; margin-left: .9rem;
  background: var(--linie);
}
.lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--papier-70); max-width: 56ch; }
.beispiel {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--salbei); opacity: .85;
}

/* ------------------------------- Knöpfe --------------------------------- */
.btn {
  --schimmer: 0;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem;
  min-height: 44px;
  font: inherit; font-weight: 500; font-size: .95rem;
  border-radius: 2px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background var(--d-kurz) var(--ease),
              color var(--d-kurz) var(--ease),
              border-color var(--d-kurz) var(--ease),
              transform var(--d-kurz) var(--ease);
}
.btn.klein { padding: .6rem 1rem; font-size: .87rem; }
.btn-mess {
  background: linear-gradient(100deg, var(--messing), var(--bernstein) 55%, var(--messing));
  background-size: 220% 100%;
  background-position: 0% 0;
  color: #171104;
  transition: background-position .7s var(--ease), transform var(--d-kurz) var(--ease);
}
.btn-mess:hover, .btn-mess:focus-visible { background-position: 100% 0; }
.btn-mess:active { transform: translateY(1px); }
.btn-linie {
  border-color: var(--linie); color: var(--papier);
  background: rgba(242, 236, 225, .03);
}
.btn-linie:hover, .btn-linie:focus-visible {
  border-color: var(--messing); background: rgba(201, 151, 63, .10);
}
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ============================= Statusleiste ============================= */
.statusbar {
  position: relative; z-index: 60;
  background: var(--tief);
  border-bottom: 1px solid var(--linie);
  font-size: .84rem;
}
.statustext {
  margin: 0; padding: .5rem var(--rand);
  display: flex; align-items: center; gap: .6rem;
  justify-content: center; text-align: center;
  color: var(--papier-70); letter-spacing: .02em;
}
.punkt {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--salbei); flex: none;
  box-shadow: 0 0 0 0 rgba(143, 160, 140, .55);
  animation: puls 2.6s var(--ease) infinite;
}
.statusbar.offen .punkt { background: #7fbf6a; box-shadow: 0 0 0 0 rgba(127, 191, 106, .5); }
.statusbar.zu .punkt { background: #b8624c; animation: none; }
@keyframes puls {
  0%   { box-shadow: 0 0 0 0 rgba(127, 191, 106, .45); }
  70%  { box-shadow: 0 0 0 8px rgba(127, 191, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 191, 106, 0); }
}

/* ============================== Kopfzeile ============================== */
.topbar {
  position: sticky; top: 0; z-index: 55;
  display: flex; align-items: center; gap: 1.2rem;
  padding: .85rem var(--rand);
  background: rgba(10, 17, 20, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--d-mittel) var(--ease),
              border-color var(--d-mittel) var(--ease),
              padding var(--d-mittel) var(--ease);
}
.topbar.fest {
  background: rgba(10, 17, 20, .93);
  border-bottom-color: var(--linie);
  padding-block: .6rem;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--papier); flex: none;
}
.brandmark { color: var(--messing); flex: none; }
.brandtext {
  font-family: var(--serif); font-size: 1.28rem; letter-spacing: -.01em;
  font-variation-settings: 'opsz' 40, 'SOFT' 30;
}
.brandtext em { font-style: normal; color: var(--messing); margin-left: .28em; }

.nav { display: flex; gap: 1.5rem; margin-left: auto; }
.nav a {
  text-decoration: none; font-size: .93rem; color: var(--papier-70);
  padding: .35rem 0; position: relative;
  transition: color var(--d-kurz) var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--messing);
  transition: right var(--d-mittel) var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--papier); }
.nav a:hover::after { right: 0; }

.badge {
  flex: none;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--salbei);
  border: 1px solid rgba(143, 160, 140, .34);
  border-radius: 999px; padding: .28rem .7rem;
  white-space: nowrap;
}
.topcta { flex: none; }
.burger {
  display: none; flex: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--linie); border-radius: 2px;
  cursor: pointer; position: relative;
}
.burger span {
  position: absolute; left: 12px; width: 18px; height: 1.4px; background: var(--papier);
  transition: transform var(--d-kurz) var(--ease), opacity var(--d-kurz) var(--ease);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 24px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ================================ Hero ================================= */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex; align-items: flex-end;
  padding: 0 var(--rand) clamp(3rem, 9vh, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.heroBilder { position: absolute; inset: 0; z-index: -2; }
/* Das neue Bild blendet ÜBER dem alten auf. Würden beide gleichzeitig faden,
   fiele die Helligkeit in der Mitte der Blende sichtbar ab. */
.heroBild {
  position: absolute; inset: 0;
  opacity: 0; z-index: 0;
  transition: opacity 2.4s var(--ease);
}
.heroBild.vorher { opacity: 1; z-index: 1; transition: none; }
.heroBild.an { opacity: 1; z-index: 2; }
.heroBild img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.4%, -1.8%, 0); }
}
.heroSchleier {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--grund) 2%, rgba(15, 26, 31, .78) 32%, rgba(10, 17, 20, .30) 66%, rgba(10, 17, 20, .58)),
    radial-gradient(120% 80% at 50% 100%, transparent 40%, rgba(10, 17, 20, .55));
}
.wasserlinie {
  position: absolute; left: 0; right: 0; bottom: 0; height: 26vh; z-index: -1;
  background: repeating-linear-gradient(
    to bottom, transparent 0 5px, rgba(201, 151, 63, .045) 5px 6px);
  mask-image: linear-gradient(to top, #000, transparent);
  -webkit-mask-image: linear-gradient(to top, #000, transparent);
  animation: wasser 9s linear infinite;
}
@keyframes wasser {
  from { background-position: 0 0; }
  to   { background-position: 0 12px; }
}
.heroText { position: relative; max-width: 46rem; }
.heroText .kicker {
  font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bernstein); margin-bottom: 1rem;
}
.heroText h1 { margin-bottom: .55em; text-shadow: 0 2px 30px rgba(10, 17, 20, .5); }
.heroCtas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.scrollhint {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  margin: 0; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--papier-45); display: flex; align-items: center; gap: .5rem;
}
.scrollhint span {
  display: block; width: 1px; height: 26px;
  background: linear-gradient(to bottom, transparent, var(--messing));
  animation: senken 2.4s var(--ease) infinite;
}
@keyframes senken {
  0%, 100% { transform: scaleY(.4); opacity: .35; transform-origin: top; }
  50%      { transform: scaleY(1);  opacity: 1;   transform-origin: top; }
}

/* ============================== Tagesfang ============================== */
.tagesfang {
  background: var(--tief);
  border-block: 1px solid var(--linie);
  height: 210vh;
  position: relative;
}
.tfSticky {
  position: sticky; top: 0;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.tfGrid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.tfDatum {
  font-family: var(--serif); font-size: 1.35rem; color: var(--bernstein);
  margin-bottom: .6rem;
}
.tfLede { color: var(--papier-70); max-width: 42ch; }
.tfNote { font-size: .92rem; color: var(--papier-45); border-top: 1px solid var(--linie-2); padding-top: 1rem; }

.tfKarten { position: relative; min-height: 20rem; }
.tfKarte {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(242, 236, 225, .055), rgba(242, 236, 225, .015)),
    var(--nacht);
  border: 1px solid var(--linie);
  border-radius: 3px;
  padding: clamp(1.6rem, 3.6vw, 2.6rem);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(18px) scale(.985);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.tfKarte.an { opacity: 1; transform: none; pointer-events: auto; }
.tfKarte::before {
  content: ''; position: absolute; inset: 10px; border: 1px solid var(--linie-2);
  border-radius: 2px; pointer-events: none;
}
.tfKarte h3 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: .35em; }
.tfKarte p { color: var(--papier-70); max-width: 34ch; }
.tfPreis {
  font-family: var(--grotesk); font-size: 1.1rem; color: var(--bernstein);
  margin: .8rem 0 0; font-variant-numeric: tabular-nums;
}
.tfPreis span { color: var(--papier-45); font-size: .84rem; margin-left: .35rem; }
.tfPunkte {
  display: flex; gap: .5rem; justify-content: center; margin-top: 2.2rem;
}
.tfPunkte i {
  display: block; width: 26px; height: 2px; background: var(--linie-2);
  transition: background var(--d-mittel) var(--ease);
}
.tfPunkte i.an { background: var(--messing); }

/* ============================== Signature ============================== */
.signature { padding: clamp(4rem, 11vh, 8rem) 0; }
.sigGrid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.sigBild { margin: 0; position: relative; }
.sigBild img {
  border-radius: 3px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
}
.sigBild::after {
  content: ''; position: absolute; inset: 0; border-radius: 3px; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(10, 17, 20, .55);
}
.sigPreis {
  font-size: 1.5rem; color: var(--bernstein); font-variant-numeric: tabular-nums;
  margin: 1.2rem 0;
}

/* =============================== Galerie =============================== */
.galerie { padding: clamp(3rem, 9vh, 6rem) 0; background: var(--tief); }
.galGrid {
  display: grid; gap: clamp(.9rem, 2vw, 1.6rem);
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--breit), 100% - var(--rand) * 2);
  margin: 2.5rem auto 0;
}
.galKarte { margin: 0; position: relative; overflow: hidden; border-radius: 3px; }
.galKarte img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 1.1s var(--ease), filter var(--d-mittel) var(--ease);
  filter: saturate(.94);
}
.galKarte:hover img { transform: scale(1.05); filter: saturate(1.05); }
.galKarte figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem .95rem .8rem;
  font-size: .88rem; color: var(--papier);
  background: linear-gradient(to top, rgba(10, 17, 20, .9), transparent);
}

/* ============================= Speisekarte ============================= */
.karte {
  padding: clamp(4rem, 11vh, 8rem) 0 clamp(3rem, 8vh, 6rem);
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(201, 151, 63, .07), transparent 60%),
    var(--grund);
}
.karteKopf { text-align: center; margin-bottom: 2.5rem; }
.karteKopf .marke::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 2.6rem; height: 1px; margin-right: .9rem; background: var(--linie);
}

.karteLeiste {
  position: sticky; top: 4.3rem; z-index: 40;
  background: rgba(15, 26, 31, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid var(--linie);
  margin-bottom: 1.6rem;
}
.reiterHuelle { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reiterHuelle::-webkit-scrollbar { display: none; }
.reiter {
  display: flex; gap: 1.6rem; position: relative;
  padding: .8rem .2rem; min-width: max-content;
}
.reiter a {
  text-decoration: none; white-space: nowrap;
  font-size: .93rem; color: var(--papier-45);
  padding: .35rem .1rem; min-height: 34px;
  transition: color var(--d-kurz) var(--ease);
}
.reiter a.aktiv, .reiter a:hover { color: var(--papier); }
.strich {
  position: absolute; bottom: .45rem; left: 0; height: 1.5px; width: 0;
  background: var(--messing);
  transition: transform var(--d-mittel) var(--ease), width var(--d-mittel) var(--ease);
}
.filter {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 0 .2rem .8rem;
}
.filter button {
  font: inherit; font-size: .82rem;
  background: none; color: var(--papier-45); cursor: pointer;
  border: 1px solid var(--linie-2); border-radius: 999px;
  padding: .38rem .85rem; min-height: 34px;
  transition: all var(--d-kurz) var(--ease);
}
.filter button:hover { color: var(--papier); border-color: var(--linie); }
.filter button[aria-pressed="true"] {
  background: rgba(201, 151, 63, .14); border-color: var(--messing); color: var(--bernstein);
}
.filter .filterAus { color: var(--salbei); border-style: dashed; }
.filterInfo {
  font-size: .88rem; color: var(--salbei); margin: 0 0 1.2rem;
}

.editorLeiste {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem;
  margin-bottom: 2.2rem;
}
.editorNote { font-size: .84rem; color: var(--papier-45); }

/* Papierstruktur für das Kartenblatt */
.karteBlatt {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid var(--linie);
  border-radius: 3px;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(242, 236, 225, .012) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(242, 236, 225, .010) 3px 4px),
    radial-gradient(140% 90% at 20% 0%, rgba(242, 236, 225, .05), transparent 55%),
    var(--nacht);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
}
.karteAbschnitt { scroll-margin-top: 10rem; }
.karteAbschnitt + .karteAbschnitt { margin-top: clamp(2.6rem, 6vw, 4.4rem); }
.abschnittKopf {
  border-bottom: 1px solid var(--linie);
  padding-bottom: .9rem; margin-bottom: 1.6rem;
}
.abschnittKopf h3 {
  margin-bottom: .2em; color: var(--papier);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'WONK' 1;
}
.abschnittKopf p { margin: 0; font-size: .93rem; color: var(--papier-45); }

.gerichte { list-style: none; margin: 0; padding: 0; }
.gericht {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--linie-2);
  transition: opacity var(--d-mittel) var(--ease), background var(--d-kurz) var(--ease);
}
.gericht:last-child { border-bottom: 0; }
.gericht.aus { display: none; }
.gerichtKopf { display: flex; align-items: baseline; gap: .5rem; }
.gerichtName {
  font-size: clamp(1.06rem, 1.7vw, 1.24rem); margin: 0; flex: none;
  font-variation-settings: 'opsz' 32, 'SOFT' 30;
  max-width: min(100%, 34ch);
}
.punkte {
  flex: 1 1 auto; min-width: 1.5rem; height: 1px; margin-bottom: .28em;
  background: repeating-linear-gradient(to right, var(--linie-2) 0 2px, transparent 2px 6px);
}
.preis {
  flex: none; font-size: .98rem; color: var(--papier-70);
  font-variant-numeric: tabular-nums; font-weight: 400;
  text-align: right;
  transition: color var(--d-kurz) var(--ease);
}
.gericht:hover .preis { color: var(--bernstein); }
.preis .einheit { display: block; font-size: .74rem; color: var(--papier-45); }
.gerichtText { margin: .3rem 0 0; font-size: .93rem; color: var(--papier-45); max-width: 62ch; }
.istSignature .gerichtName::after {
  content: 'Klassiker'; margin-left: .7rem; vertical-align: middle;
  font-family: var(--grotesk); font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--messing);
  border: 1px solid var(--linie); border-radius: 999px; padding: .18rem .5rem;
}

.kostzeile { margin: .5rem 0 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.kost {
  font-size: .7rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--salbei); border: 1px solid rgba(143, 160, 140, .3);
  border-radius: 999px; padding: .13rem .5rem;
}
.allergene { margin-top: .5rem; }
.allergene summary {
  cursor: pointer; font-size: .78rem; color: var(--papier-45);
  list-style: none; display: inline-flex; align-items: center; gap: .35rem;
  min-height: 30px;
}
.allergene summary::-webkit-details-marker { display: none; }
.allergene summary::before {
  content: '+'; color: var(--messing); font-size: .95rem; line-height: 1;
  transition: transform var(--d-kurz) var(--ease);
}
.allergene[open] summary::before { transform: rotate(45deg); }
.allergene > p {
  margin: .4rem 0 0; font-size: .82rem; color: var(--papier-45);
  animation: auf .22s var(--ease);
}
@keyframes auf {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.allergene b { color: var(--bernstein); font-weight: 600; }
.leerHinweis { margin: 1rem 0 0; font-size: .9rem; color: var(--salbei); }

.legende { margin-top: 2rem; }
.legende summary {
  cursor: pointer; font-size: .9rem; color: var(--papier-70);
  padding: .8rem 0; min-height: 44px; display: flex; align-items: center;
}
.legendeInhalt {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem; padding-bottom: 1.4rem;
}
.legendeInhalt h3 { font-size: 1rem; margin-bottom: .6rem; }
.legendeInhalt ul { list-style: none; margin: 0 0 .8rem; padding: 0; columns: 2; font-size: .85rem; }
.legendeInhalt li { color: var(--papier-45); break-inside: avoid; }
.legendeInhalt b { color: var(--bernstein); display: inline-block; width: 1.4rem; }

/* --------------------------- Demo-Editor -------------------------------- */
body.editor .karteBlatt {
  outline: 1px dashed var(--messing); outline-offset: 10px;
}
body.editor .gericht {
  cursor: grab; padding-inline: .7rem; border-radius: 2px;
}
body.editor .gericht:hover { background: rgba(201, 151, 63, .07); }
body.editor .gericht.zieht { opacity: .35; cursor: grabbing; }
body.editor .gericht.ueber { box-shadow: inset 0 2px 0 var(--messing); }
body.editor [data-feld] {
  outline: 1px dotted var(--linie); outline-offset: 3px; border-radius: 2px;
}
body.editor [data-feld]:focus {
  outline: 2px solid var(--bernstein); background: rgba(201, 151, 63, .10);
}
.editorGriff { display: none; }
body.editor .editorGriff {
  display: inline-flex; margin-right: .45rem; color: var(--messing);
  cursor: grab; user-select: none;
}
.tfSchalter { display: none; }
body.editor .tfSchalter {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--salbei); background: none; cursor: pointer;
  border: 1px solid rgba(143, 160, 140, .3); border-radius: 999px;
  padding: .2rem .6rem; margin-left: .6rem; min-height: 28px;
}
body.editor .tfSchalter[aria-pressed="true"] {
  color: var(--bernstein); border-color: var(--messing);
  background: rgba(201, 151, 63, .12);
}
.editorBalken {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translateX(-50%) translateY(140%);
  z-index: 90;
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; justify-content: center;
  background: var(--nacht-2); border: 1px solid var(--messing); border-radius: 3px;
  padding: .7rem .9rem;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .9);
  transition: transform var(--d-mittel) var(--ease);
  max-width: calc(100% - 2rem);
}
body.editor .editorBalken { transform: translateX(-50%) translateY(0); }
.editorBalken p { margin: 0; font-size: .84rem; color: var(--papier-70); }

/* ============================= Reservierung ============================ */
.reservieren {
  padding: clamp(4rem, 11vh, 8rem) 0;
  background: var(--tief); border-block: 1px solid var(--linie);
}
.resGrid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem); align-items: start;
}
.resPunkte { margin: 1.4rem 0; padding: 0; list-style: none; }
.resPunkte li {
  position: relative; padding-left: 1.4rem; margin-bottom: .5rem;
  font-size: .93rem; color: var(--papier-70);
}
.resPunkte li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 6px; height: 1px; background: var(--messing);
}
.musterkasten {
  border-left: 2px solid var(--messing);
  background: rgba(201, 151, 63, .07);
  padding: .85rem 1rem; font-size: .9rem; color: var(--papier-70);
  border-radius: 0 2px 2px 0;
}

.resForm {
  background: var(--nacht); border: 1px solid var(--linie); border-radius: 3px;
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  position: relative; overflow: hidden;
}
.resSchritte {
  display: flex; gap: .4rem; list-style: none; margin: 0 0 1.8rem; padding: 0;
  counter-reset: s;
}
.resSchritte li {
  flex: 1; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--papier-45); padding-top: .6rem;
  border-top: 2px solid var(--linie-2);
  transition: color var(--d-mittel) var(--ease), border-color var(--d-mittel) var(--ease);
}
.resSchritte li.an { color: var(--bernstein); border-top-color: var(--messing); }
.resSchritte li.fertig { color: var(--salbei); border-top-color: rgba(143, 160, 140, .5); }

.resSchritt { display: none; border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.resSchritt.an { display: block; animation: schrittRein .42s var(--ease); }
@keyframes schrittRein {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}
.resSchritt legend {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  padding: 0; margin-bottom: 1.2rem;
}
.zahlen { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.zahlen button {
  width: 52px; height: 52px; font: inherit; font-size: 1rem;
  background: none; color: var(--papier-70); cursor: pointer;
  border: 1px solid var(--linie-2); border-radius: 2px;
  transition: all var(--d-kurz) var(--ease);
}
.zahlen button:hover { border-color: var(--linie); color: var(--papier); }
.zahlen button.an {
  background: rgba(201, 151, 63, .16); border-color: var(--messing); color: var(--bernstein);
}
.resWahlen { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 1.4rem; }
.resWahlen label {
  display: flex; align-items: center; gap: .5rem; font-size: .92rem;
  color: var(--papier-70); cursor: pointer; min-height: 44px;
}
.resWahlen input { accent-color: var(--messing); width: 18px; height: 18px; }
.resHinweis { font-size: .87rem; color: var(--salbei); margin: 0 0 1rem; }

.tage { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .5rem; margin-bottom: 1.4rem; }
.tage button {
  font: inherit; padding: .7rem .4rem; text-align: center; cursor: pointer;
  background: none; color: var(--papier-70);
  border: 1px solid var(--linie-2); border-radius: 2px; min-height: 62px;
  transition: all var(--d-kurz) var(--ease);
}
.tage button b { display: block; font-size: 1.05rem; font-weight: 500; color: var(--papier); }
.tage button small { display: block; font-size: .74rem; color: var(--papier-45); }
.tage button:hover:not([disabled]) { border-color: var(--linie); }
.tage button.an { background: rgba(201, 151, 63, .16); border-color: var(--messing); }
.tage button.an b, .tage button.an small { color: var(--bernstein); }
.tage button[disabled] { opacity: .32; cursor: not-allowed; }
.tage button[disabled] small { color: #b8624c; }

.zeiten { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: .5rem; margin-bottom: 1rem; }
.zeiten button {
  font: inherit; padding: .7rem .3rem; cursor: pointer; min-height: 46px;
  background: none; color: var(--papier-70); font-variant-numeric: tabular-nums;
  border: 1px solid var(--linie-2); border-radius: 2px;
  transition: all var(--d-kurz) var(--ease);
}
.zeiten button:hover:not([disabled]) { border-color: var(--linie); color: var(--papier); }
.zeiten button.an { background: rgba(201, 151, 63, .16); border-color: var(--messing); color: var(--bernstein); }
.zeiten button[disabled] { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

.feld { margin-bottom: 1rem; }
.feld label { display: block; font-size: .85rem; color: var(--papier-70); margin-bottom: .35rem; }
.feld input, .feld textarea, .feld select {
  width: 100%; font: inherit; font-size: 1rem;
  padding: .8rem .9rem; min-height: 48px;
  background: rgba(10, 17, 20, .6); color: var(--papier);
  border: 1px solid var(--linie-2); border-radius: 2px;
  transition: border-color var(--d-kurz) var(--ease), background var(--d-kurz) var(--ease);
}
.feld textarea { min-height: 96px; resize: vertical; }
.feld input:focus, .feld textarea:focus, .feld select:focus {
  border-color: var(--messing); background: rgba(10, 17, 20, .85);
}
.feld input::placeholder, .feld textarea::placeholder { color: rgba(242, 236, 225, .3); }
.feld input[aria-invalid="true"] { border-color: #b8624c; }

.resZusammen {
  border-top: 1px solid var(--linie-2); padding-top: 1rem;
  font-size: .92rem; color: var(--bernstein);
}
.resNav { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.resFertig { text-align: center; padding: 1rem 0; animation: schrittRein .5s var(--ease); }
.resFertig svg { color: var(--messing); margin: 0 auto 1rem; }
.resFertig .musterkasten { text-align: left; margin: 1.2rem 0; }

/* ============================ Räume & Anlässe ========================== */
.raeume { padding: clamp(4rem, 11vh, 8rem) 0; }
.raumGrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem); margin-top: 2.5rem;
}
.raum {
  background: var(--nacht); border: 1px solid var(--linie-2); border-radius: 3px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--d-mittel) var(--ease), transform var(--d-mittel) var(--ease);
}
.raum:hover { border-color: var(--linie); transform: translateY(-3px); }
.raum img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.raumText { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.raumText h3 { margin-bottom: .1em; }
.raumZahl {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--messing); margin-bottom: .8rem;
}
.raumText p { font-size: .92rem; color: var(--papier-45); flex: 1; }
.raumText .btn { align-self: flex-start; margin-top: .6rem; }

/* =========================== Geschichte & Team ========================= */
.haus { padding: clamp(4rem, 11vh, 8rem) 0; background: var(--tief); border-block: 1px solid var(--linie); }
.hausGrid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-bottom: clamp(3rem, 8vw, 5rem);
}
.hausBild { margin: 0; overflow: hidden; border-radius: 3px; }
.hausBild img { border-radius: 3px; }
.teamGrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.person { margin: 0; }
.person img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 3px; filter: saturate(.9) contrast(1.03);
}
.person figcaption { padding-top: .8rem; font-size: .9rem; }
.person figcaption b { display: block; font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.person figcaption span { color: var(--papier-45); font-size: .85rem; }
.personText {
  display: flex; align-items: center;
  border: 1px dashed var(--linie); border-radius: 3px; padding: 1.2rem;
}
.personText figcaption { padding: 0; }
.personText .beispiel { margin-top: .8rem; font-size: .72rem; }

/* ============================= Gästestimmen ============================ */
.stimmen { padding: clamp(4rem, 11vh, 8rem) 0; }
.stimmenGrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem); margin-top: 2.5rem;
}
.stimmen blockquote {
  margin: 0; padding: 1.6rem;
  border: 1px solid var(--linie-2); border-radius: 3px;
  background: linear-gradient(165deg, rgba(242, 236, 225, .035), transparent);
  position: relative;
}
.stimmen blockquote::before {
  content: '„'; position: absolute; top: .1rem; left: .8rem;
  font-family: var(--serif); font-size: 4rem; color: var(--linie); line-height: 1;
}
.stimmen blockquote p {
  font-family: var(--serif); font-size: 1.08rem; line-height: 1.5;
  position: relative; margin-bottom: 1rem;
}
.stimmen blockquote footer { font-size: .8rem; color: var(--salbei); letter-spacing: .04em; }

/* ============================== Gutscheine ============================= */
.gutschein { padding: clamp(4rem, 11vh, 8rem) 0; background: var(--tief); border-block: 1px solid var(--linie); }
.gutGrid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(2rem, 6vw, 4rem); align-items: center;
}
.gutForm {
  background: var(--nacht); border: 1px solid var(--linie); border-radius: 3px;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.formHint { margin: .9rem 0 0; font-size: .88rem; color: var(--bernstein); min-height: 1.2em; }

/* =========================== Kontakt & Anfahrt ========================= */
.kontakt { padding: clamp(4rem, 11vh, 8rem) 0; }
.kontaktGrid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3rem); margin-top: 2.5rem;
}
.kontaktSpalte h3 {
  font-size: 1.06rem; margin-bottom: .8rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--linie);
}
.kontaktSpalte h3 + h3 { margin-top: 1.8rem; }
.kontaktSpalte p { font-size: .93rem; color: var(--papier-70); }
.adresse { line-height: 1.9; }
.adresse b { color: var(--papier); font-weight: 500; }
.zeitenTabelle { width: 100%; border-collapse: collapse; font-size: .93rem; margin-bottom: .8rem; }
.zeitenTabelle th, .zeitenTabelle td { text-align: left; padding: .5rem 0; font-weight: 400; }
.zeitenTabelle th { color: var(--papier-70); }
.zeitenTabelle td { color: var(--papier-45); text-align: right; font-variant-numeric: tabular-nums; }
.zeitenTabelle tr { border-bottom: 1px solid var(--linie-2); }
.zeitenTabelle tr:last-child { border-bottom: 0; }
.zeitenTabelle tr.heute { background: rgba(201, 151, 63, .10); }
.zeitenTabelle tr.heute th { color: var(--bernstein); font-weight: 600; }
.zeitenTabelle tr.heute td { color: var(--bernstein); }
.zeitenTabelle tr.heute th::before {
  content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--messing); margin-right: .5rem; vertical-align: middle;
}
.zeitenTabelle .klein { display: block; }

.hafenkarte { margin: 3rem 0 0; }
.hafenkarte svg {
  width: 100%; height: auto; border: 1px solid var(--linie); border-radius: 3px;
  background: var(--tief);
}
.hafenkarte figcaption { margin-top: .8rem; font-size: .84rem; color: var(--papier-45); }

/* ============================== Umgebung / FAQ ========================= */
.umgebung { padding: clamp(3rem, 9vh, 6rem) 0; background: var(--tief); border-top: 1px solid var(--linie); }
.umgebung p { color: var(--papier-70); }
.faq { padding: clamp(4rem, 11vh, 8rem) 0; }
.faq details {
  border-bottom: 1px solid var(--linie-2); padding: .3rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0;
  font-family: var(--serif); font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  position: relative; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: .3rem; top: 1.6rem;
  width: 11px; height: 11px;
  border-right: 1.4px solid var(--messing); border-bottom: 1.4px solid var(--messing);
  transform: rotate(45deg);
  transition: transform var(--d-kurz) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
.faq details p {
  color: var(--papier-45); font-size: .95rem; max-width: 68ch;
  padding-bottom: 1rem; animation: auf .26s var(--ease);
}

/* ============================== Newsletter ============================= */
.brief {
  padding: clamp(4rem, 11vh, 7rem) 0; text-align: center;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(201, 151, 63, .09), transparent 65%),
    var(--tief);
  border-top: 1px solid var(--linie);
}
.brief p { color: var(--papier-70); }
.briefForm {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-top: 1.6rem;
}
.briefForm input {
  flex: 1 1 260px; max-width: 340px; font: inherit; font-size: 1rem;
  padding: .8rem 1rem; min-height: 48px;
  background: rgba(10, 17, 20, .65); color: var(--papier);
  border: 1px solid var(--linie-2); border-radius: 2px;
}
.briefForm input:focus { border-color: var(--messing); }

/* =============================== Fußzeile ============================== */
.fuss {
  padding: clamp(2.5rem, 6vh, 4rem) 0 calc(clamp(2rem, 5vh, 3rem) + env(safe-area-inset-bottom));
  background: var(--tief); border-top: 1px solid var(--linie);
}
.fussGrid {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  align-items: flex-start; padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--linie-2); margin-bottom: 1.4rem;
}
.brandFuss { font-size: 1.5rem; margin-bottom: .6rem; }
.fussLinks { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.fussLinks a {
  font-size: .9rem; color: var(--papier-45); text-decoration: none;
  transition: color var(--d-kurz) var(--ease);
}
.fussLinks a:hover { color: var(--bernstein); }
.entwurf-hinweis {
  margin: 0; font-size: .84rem; line-height: 1.7; color: var(--papier-70);
  border-left: 2px solid var(--messing); padding-left: 1rem;
  max-width: 74ch;
}
.entwurf-hinweis a { color: var(--bernstein); text-underline-offset: 3px; }

/* ========================== Daumenleiste (Handy) ======================= */
.daumen {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(10, 17, 20, .96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--linie);
  padding-bottom: env(safe-area-inset-bottom);
}
.daumen a, .daumen button {
  flex: 1; min-height: 56px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  font: inherit; font-size: .72rem; letter-spacing: .04em;
  background: none; border: 0; color: var(--papier-70);
  text-decoration: none; cursor: pointer;
}
.daumen svg { color: var(--messing); }
.daumenHaupt { color: var(--bernstein); }

/* ============================ Musterhinweis ============================ */
.melder {
  position: fixed; left: 50%; bottom: 1.4rem; transform: translate(-50%, 140%);
  z-index: 120; max-width: min(30rem, calc(100% - 2rem));
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--nacht-2); border: 1px solid var(--messing); border-radius: 3px;
  padding: .9rem 1rem;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .95);
  transition: transform var(--d-mittel) var(--ease), opacity var(--d-mittel) var(--ease);
  opacity: 0;
}
.melder.an { transform: translate(-50%, 0); opacity: 1; }
.melder p { margin: 0; font-size: .9rem; line-height: 1.5; color: var(--papier); }
.melder button {
  flex: none; width: 30px; height: 30px; margin: -.2rem -.3rem 0 0;
  background: none; border: 0; color: var(--papier-45); cursor: pointer; font-size: 1rem;
}
.melder button:hover { color: var(--papier); }

/* ======================= Unterseiten (Rechtstexte) ===================== */
.unterseite .topbar { position: static; }
.navFlach { margin-left: auto; }
.rechtstext {
  padding: clamp(2.5rem, 8vh, 5rem) 0 clamp(3rem, 9vh, 6rem);
  background:
    radial-gradient(90% 50% at 50% 0%, rgba(201, 151, 63, .06), transparent 60%),
    var(--grund);
}
.rechtsWarnung {
  border: 1px solid var(--messing);
  background: rgba(201, 151, 63, .09);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  font-size: .93rem; color: var(--papier-70);
  margin-bottom: 2.5rem;
}
.rechtsWarnung b { color: var(--bernstein); }
.rechtstext h1 { margin-bottom: .6em; }
.rechtstext h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-top: 2.2rem; padding-bottom: .45rem;
  border-bottom: 1px solid var(--linie);
}
.rechtstext p, .rechtstext li { color: var(--papier-70); font-size: .96rem; }
.rechtstext ul { padding-left: 1.1rem; margin-bottom: 1em; }
.rechtstext li { margin-bottom: .4rem; }
.platz { color: var(--salbei); font-size: .84rem; }

/* ========================== Scroll-Choreografie ======================== */
[data-rev] { will-change: opacity, transform; }
[data-rev="up"], [data-rev="text"] {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--d-lang) var(--ease), transform var(--d-lang) var(--ease);
}
[data-rev="up"].sichtbar, [data-rev="text"].sichtbar { opacity: 1; transform: none; }

/* Text zeilenweise: Wörter gestaffelt */
[data-rev="text"].wortweise { opacity: 1; transform: none; transition: none; }
[data-rev="text"].wortweise .wort {
  display: inline-block;
  opacity: 0; transform: translateY(.5em) rotate(1.2deg);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
  transition-delay: calc(var(--i) * var(--d-stagger));
}
[data-rev="text"].wortweise.sichtbar .wort { opacity: 1; transform: none; }

[data-rev="img"] img, [data-rev="img"] svg {
  clip-path: inset(100% 0 0 0);
  transform: scale(1.06);
  transition: clip-path 1.15s var(--ease), transform 1.35s var(--ease);
}
[data-rev="img"].sichtbar img, [data-rev="img"].sichtbar svg {
  clip-path: inset(0 0 0 0); transform: none;
}

[data-rev="karte"] {
  opacity: 0;
  transition: opacity var(--d-lang) var(--ease), transform var(--d-lang) var(--ease);
}
[data-rev="karte"].links  { transform: translateX(-38px) rotate(-3deg); }
[data-rev="karte"].rechts { transform: translateX(38px) rotate(3deg); }
[data-rev="karte"].sichtbar { opacity: 1; transform: none; }

[data-parallax] { will-change: transform; }
[data-parallax] > picture > img { transform: translate3d(0, var(--py, 0), 0) scale(1.1); }

/* ============================== Breakpoints ============================ */
@media (max-width: 1200px) {
  .galGrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 0 0 auto; top: 0;
    flex-direction: column; gap: 0;
    background: rgba(10, 17, 20, .985);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 6rem var(--rand) 2.4rem;
    transform: translateY(-102%);
    transition: transform .42s var(--ease);
    border-bottom: 1px solid var(--linie);
    max-height: 100svh; overflow-y: auto;
  }
  .nav.auf { transform: none; }
  .nav a {
    font-family: var(--serif); font-size: 1.5rem; color: var(--papier);
    padding: .8rem 0; border-bottom: 1px solid var(--linie-2); min-height: 52px;
  }
  .burger { display: block; order: 3; }
  .topcta { display: none; }
  .badge { order: 2; margin-left: auto; }
  .brand { margin-right: auto; }

  .tfGrid, .sigGrid, .hausGrid, .resGrid, .gutGrid { grid-template-columns: 1fr; }
  .tagesfang { height: auto; }
  .tfSticky { position: static; min-height: 0; }
  .tfKarten { position: static; min-height: 0; display: grid; gap: 1rem; }
  .tfKarte { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .sigGrid .sigBild { order: -1; }
  .raumGrid, .stimmenGrid, .kontaktGrid { grid-template-columns: 1fr; }
  .teamGrid { grid-template-columns: repeat(2, 1fr); }
  .galGrid { grid-template-columns: repeat(2, 1fr); }
  [data-parallax] > picture > img { transform: none; }
}

@media (max-width: 768px) {
  body { font-size: 17px; padding-bottom: 4.2rem; }
  .daumen { display: flex; }
  .statustext { font-size: .8rem; padding-inline: 1rem; }
  html { scroll-padding-top: 6rem; }
  .karteLeiste { top: 3.9rem; }
  .karteAbschnitt { scroll-margin-top: 9.5rem; }
  .hero { min-height: min(88svh, 760px); }
  .melder, .editorBalken { bottom: 4.6rem; }
  /* Name darf umbrechen, der Preis bleibt rechts in der ersten Zeile stehen */
  .gerichtKopf { flex-wrap: nowrap; gap: .9rem; }
  .gerichtName { flex: 1 1 auto; min-width: 0; max-width: none; }
  .punkte { display: none; }
  .preis { font-size: 1rem; margin-left: auto; white-space: nowrap; }
  .preis .einheit { white-space: normal; }
  .legendeInhalt ul { columns: 1; }
  .fussGrid { flex-direction: column; gap: 1.4rem; }
}

@media (max-width: 480px) {
  :root { --rand: 1.05rem; }
  .galGrid { grid-template-columns: 1fr; }
  .teamGrid { grid-template-columns: 1fr; }
  .zahlen button { width: 46px; height: 46px; }
  .resSchritte li { font-size: .62rem; }
  .heroCtas .btn { flex: 1 1 100%; justify-content: center; }
}

/* Lange Abschnitte erst rendern, wenn sie gebraucht werden */
@supports (content-visibility: auto) {
  .raeume, .haus, .stimmen, .gutschein, .kontakt, .umgebung, .faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }
}

/* ============================ Reduced Motion ===========================
   Bewusst NICHT abgeschaltet: die Seite animiert weiter, nur kürzer und
   ohne Parallax und ohne Sticky-Kapitel.
   ====================================================================== */
@media (prefers-reduced-motion: reduce) {
  :root {
    --d-kurz: .12s;
    --d-mittel: .24s;
    --d-lang: .34s;
    --d-stagger: 16ms;
  }
  .heroBild img { animation: none; transform: scale(1.04); }
  .heroBild { transition-duration: 1.1s; }
  .wasserlinie { animation: none; }
  .scrollhint span { animation: none; opacity: .7; }
  .punkt { animation: none; }
  .tagesfang { height: auto; }
  .tfSticky { position: static; min-height: 0; }
  .tfKarten { position: static; min-height: 0; display: grid; gap: 1rem; }
  .tfKarte { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .tfPunkte { display: none; }
  [data-parallax] > picture > img { transform: none; }
  [data-rev="karte"].links, [data-rev="karte"].rechts {
    transform: translateY(16px); /* keine Rotation, nur kurzer Weg */
  }
  [data-rev="img"] img, [data-rev="img"] svg { transition-duration: .4s, .45s; }
  .galKarte img { transition-duration: .3s; }
}
