/* ============================================================
   STRANDHALLE ARNIS — Japandi Kinetic White
   Design-System: Reispapier, Sand, Schlei-Blau, Salbei, Gold
   ============================================================ */

:root {
  --paper: #FAF7F1;
  --paper-2: #F4EFE5;
  --sand: #EDE6D8;
  --slate: #3E5468;
  --slate-deep: #293B4B;
  --sage: #A9B8A4;
  --sage-soft: #CDD5C8;
  --oak: #8B6F52;
  --gold: #C6A971;
  --ink: #2B2A26;
  --ink-soft: #5C574E;
  --line: rgba(62, 84, 104, 0.16);
  --line-soft: rgba(62, 84, 104, 0.1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-1: 0 1px 2px rgba(43, 42, 38, 0.04), 0 4px 14px rgba(62, 84, 104, 0.07);
  --shadow-2: 0 6px 24px rgba(62, 84, 104, 0.12), 0 2px 6px rgba(43, 42, 38, 0.05);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Reset & Grundlagen ---------- */

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

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

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--paper); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 8px; border: 2px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--slate); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Typografie ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.h-display { font-size: clamp(2.75rem, 6.4vw, 5.25rem); font-weight: 500; line-height: 1.04; }
.h-xl { font-size: clamp(2.25rem, 4.6vw, 3.6rem); }
.h-lg { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.h-md { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

.muted { color: var(--ink-soft); }
.center { text-align: center; }
/* ---------- Labels & Accente ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--slate);
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow--center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

.gold-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: relative;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease),
    background 0.55s var(--ease), border-color 0.55s var(--ease), color 0.55s var(--ease);
  will-change: transform;
}

.btn svg { width: 1.05em; height: 1.05em; flex: none; transition: transform 0.55s var(--ease); }

.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--slate);
  color: #FBF9F4;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 8px 22px rgba(62, 84, 104, 0.22);
}
.btn-primary:hover {
  background: var(--slate-deep);
  box-shadow: 0 14px 30px rgba(62, 84, 104, 0.3);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(250, 247, 241, 0.65);
  color: var(--ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(250, 247, 241, 0.95);
  box-shadow: var(--shadow-2);
}

.btn-line {
  padding: 0.4rem 0;
  border-radius: 0;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}
.btn-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.btn-line:hover { transform: none; }
.btn-line:hover::after { transform: scaleX(1); }

/* ---------- Kopfzeile / Navigation ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}

.header-main {
  padding: 1rem 0 0.9rem;
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease), padding 0.6s var(--ease);
}
.site-header.is-scrolled .header-main {
  background: rgba(250, 247, 241, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px rgba(62, 84, 104, 0.06);
  padding: 0.55rem 0;
}

.header-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.85);
  border: 1px solid rgba(62, 84, 104, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.site-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.site-logo img { height: 42px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; justify-content: center; }

.site-nav .nav-link {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.4s var(--ease);
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.35rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.site-nav .nav-link:hover { color: var(--ink); }
.site-nav .nav-link:hover::after, .site-nav .nav-link.is-active::after { transform: scaleX(1); }
.site-nav .nav-link.is-active { color: var(--ink); }

.nav-cta { margin-left: 0.6rem; padding: 0.6rem 1.3rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.9);
  border: 1px solid rgba(62, 84, 104, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0s 0.55s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu a.m-nav-link {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  padding: 0.35rem 0;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a.m-nav-link small {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu .m-cta { margin-top: 2.4rem; }
.mobile-menu .m-meta { margin-top: 2rem; font-size: 0.95rem; color: var(--ink-soft); }
.mobile-menu .m-meta a { color: var(--slate); font-weight: 500; }

body.menu-open { overflow: hidden; }
/* ---------- Held (Hero) ---------- */

.hero {
  position: relative;
  min-height: min(96svh, 1000px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero--tall { min-height: min(72svh, 760px); }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.92) 0%, rgba(250, 247, 241, 0.55) 26%, rgba(250, 247, 241, 0.12) 60%, rgba(43, 42, 38, 0.15) 100%);
}

.hero--dark .hero-scrim {
  background:
    linear-gradient(180deg, rgba(41, 59, 75, 0.4) 0%, rgba(41, 59, 75, 0.22) 34%, rgba(43, 42, 38, 0.1) 58%, rgba(41, 59, 75, 0.72) 100%);
}

.hero-content {
  width: 100%;
  padding: clamp(8.5rem, 15vw, 11.5rem) 0 clamp(4rem, 8vh, 6rem);
}
.hero--dark .hero-content { color: #FBF9F4; }

.hero-content .eyebrow { color: var(--oak); }
.hero--dark .hero-content .eyebrow { color: var(--gold); }
.hero--dark .hero-content .lead { color: rgba(251, 249, 244, 0.88); }

.hero-title { margin: 1.1rem 0 1.4rem; }
.hero-lead { max-width: 34rem; }

.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero--dark .hero-actions .btn-ghost {
  border-color: rgba(251, 249, 244, 0.4);
  background: rgba(251, 249, 244, 0.1);
  color: #FBF9F4;
}

.hero-note {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero--dark .hero-note { color: rgba(251, 249, 244, 0.75); }
.hero-note svg { width: 1.05em; height: 1.05em; color: var(--gold); }

/* Partikel-Animation */


.hero-content, .hero > .container { position: relative; z-index: 1; }

/* Scroll-Indikator */

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 46px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { top: -50%; }
  60%, 100% { top: 110%; }
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Parallax ---------- */

.parallax-wrap { overflow: hidden; will-change: transform; }
.parallax-wrap img { will-change: transform; transform: scale(1.14); }

/* ---------- Seitenübergang ---------- */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  pointer-events: none;
  opacity: 0;
}
.page-is-leaving .page-transition {
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}
.page-is-loading .page-transition {
  opacity: 1;
  transition: none;
}
.page-is-loading .page-transition.is-fading {
  opacity: 0;
  transition: opacity 0.9s var(--ease) 0.1s;
}
/* ---------- Markenaussage ---------- */

.statement { text-align: center; max-width: 46rem; margin-inline: auto; }
.statement h2 { margin: 1.2rem 0 1.4rem; }
.statement .lead { max-width: 40rem; margin-inline: auto; }

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 0.9rem 0 0.9rem; }
.section-head .lead { font-size: 1rem; }

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

/* Fakt-Raster */

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  counter-reset: fact;
}
.fact {
  border-top: 1px solid var(--gold);
  padding-top: 1.6rem;
}
.fact .fact-no {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.fact h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.fact p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Signatur-Gerichte ---------- */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.dish-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-1);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.dish-card .media {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.dish-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.dish-card:hover .media img { transform: scale(1.06); }

.dish-card .gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: 2;
}
.dish-card:hover .gold-line { opacity: 1; }

.dish-card .body { padding: 1.5rem 1.6rem 1.7rem; }
.dish-card .tag {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oak);
}
.dish-card h3 { font-size: 1.6rem; margin: 0.45rem 0 0.5rem; }
.dish-card p { font-size: 0.93rem; color: var(--ink-soft); }
.dish-card .foot {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dish-card .price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--slate);
}
.dish-card .price small { font-size: 0.85rem; color: var(--ink-soft); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 2.6rem; }

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.info-card .media { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.info-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.info-card:hover .media img { transform: scale(1.06); }

.info-card .body { display: flex; flex-direction: column; align-items: flex-start; padding: 1.5rem 1.6rem 1.8rem; flex: 1; }
.info-card .tag {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oak);
}
.info-card h3 { font-size: 1.45rem; margin: 0.5rem 0 0.55rem; }
.info-card p { font-size: 0.93rem; color: var(--ink-soft); }
.info-card .btn { margin-top: auto; padding-top: 1.2rem; }

/* ---------- Bildband (Parallax) ---------- */

.image-band {
  position: relative;
  min-height: clamp(320px, 56vw, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.image-band img {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.image-band .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 247, 241, 0.92) 0%, rgba(250, 247, 241, 0.55) 38%, rgba(250, 247, 241, 0) 68%);
}
.image-band--right .scrim {
  background: linear-gradient(270deg, rgba(250, 247, 241, 0.92) 0%, rgba(250, 247, 241, 0.55) 38%, rgba(250, 247, 241, 0) 68%);
}
.image-band .content {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  padding-block: clamp(3.5rem, 8vw, 5rem);
}
.image-band h2 { margin: 0.9rem 0 1rem; }

/* Zwei-Spalten-Paar */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split__reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-1);
}
.split-media .media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-media .badge {
  position: absolute;
  left: -1.2rem; bottom: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-2);
}
.split-media .badge strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--slate);
  line-height: 1.1;
}
.split-media .badge span { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.split-media .badge.gold-badge {
  background: var(--slate);
  border-color: transparent;
}
.split-media .badge.gold-badge strong, .split-media .badge.gold-badge span { color: #FBF9F4; }

.split-copy .eyebrow { margin-bottom: 0.4rem; }
.split-copy h2 { margin: 0.6rem 0 1.1rem; }
.split-copy .mt { margin-top: 1.6rem; }

.check-list { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.check-list svg { width: 1.05rem; height: 1.05rem; margin-top: 0.3rem; color: var(--sage); flex: none; }
/* ---------- Bewertungen / Slider ---------- */

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.review-badge strong { font-family: var(--serif); font-size: 1.3rem; color: var(--slate); font-weight: 500; }
.review-badge .stars { color: var(--gold); display: inline-flex; gap: 1px; }
.review-badge .stars svg { width: 0.95em; height: 0.95em; }

.reviews-shell { position: relative; }

.reviews-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.reviews-track {
  display: flex;
  transition: transform 0.85s var(--ease);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0.4rem;
}
@media (min-width: 860px) {
  .review-slide { flex: 0 0 50%; }
}

.review-card {
  position: relative;
  height: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 2.1rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-1);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }

.review-card .quote-mark {
  position: absolute;
  top: 1.1rem; right: 1.5rem;
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(62, 84, 104, 0.1);
  pointer-events: none;
}

.review-card .stars { color: var(--gold); display: inline-flex; gap: 2px; }
.review-card .stars svg { width: 1em; height: 1em; }

.review-card blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.review-card blockquote em { color: var(--oak); font-weight: 500; }

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
}
.review-card .avatar {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-soft), var(--sand));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--slate);
}
.review-card figcaption strong { display: block; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em; }
.review-card figcaption span { font-size: 0.8rem; color: var(--ink-soft); }

.reviews-controls {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.reviews-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.reviews-arrow:hover { background: var(--slate); color: var(--paper); border-color: var(--slate); transform: translateY(-2px); }
.reviews-arrow svg { width: 1.1rem; height: 1.1rem; }

.reviews-dots { display: flex; gap: 0.55rem; }
.reviews-dots button {
  width: 34px; height: 4px;
  border-radius: 4px;
  background: var(--line);
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.reviews-dots button.is-active { background: var(--gold); width: 54px; }

.reviews-track-wrap:focus-visible { outline-offset: 6px; }

@media (max-width: 760px) {
  .reviews-dots {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .reviews-dots button { width: 22px; height: 4px; }
  .reviews-dots button.is-active { width: 34px; background: var(--gold); }
}
/* ---------- Öffnungszeiten / CTA-Band ---------- */

.hours-band {
  background: var(--slate);
  color: #F4EFE5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 2rem;
  align-items: center;
}
.hours-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hours-band .eyebrow { color: var(--gold); }
.hours-band h2 { color: #FBF9F4; margin: 0.6rem 0 0.4rem; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.hours-band p { color: rgba(244, 239, 229, 0.78); font-size: 0.95rem; }
.hours-tab { text-align: center; padding-inline: 1.4rem; border-left: 1px solid rgba(244, 239, 229, 0.16); }
.hours-tab strong { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: #FBF9F4; }
.hours-tab span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.hours-tab .small { color: rgba(244, 239, 229, 0.7); font-size: 0.82rem; margin-top: 0.3rem; }

/* ---------- Kontakt / Formular ---------- */

.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 169, 113, 0.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }

.form-note { font-size: 0.86rem; color: var(--ink-soft); margin-top: 1rem; }
.form-success {
  display: none;
  margin-top: 1.4rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(169, 184, 164, 0.22);
  border: 1px solid rgba(169, 184, 164, 0.6);
  color: var(--ink);
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; animation: fadeUp 0.7s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.contact-item h3 {
  font-size: 0.78rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.55rem;
}
.contact-item p, .contact-item a {
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.contact-item a:hover { color: var(--slate); }

.info-note {
  border-left: 2px solid var(--gold);
  background: var(--paper-2);
  padding: 1.3rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.info-note strong { color: var(--ink); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  line-height: 0;
  background: var(--sand);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; filter: saturate(0.9); }

/* ---------- Galerie ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 0.8rem;
}
.gallery a { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), opacity 0.6s var(--ease);
}
.gallery a:hover img { transform: scale(1.07); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ---------- Menüseite ---------- */

.menu-pills {
  position: sticky;
  top: 132px;
  z-index: 40;
  background: rgba(250, 247, 241, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--line-soft);
  padding-block: 0.9rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}
.menu-pills .pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.15rem 0;
}
.menu-pills .pills::-webkit-scrollbar { display: none; }
.pill {
  flex: none;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.pill:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-1px); }
.pill.is-active { background: var(--slate); border-color: var(--slate); color: #FBF9F4; }
.pill[data-cat="alle"].is-active { background: var(--gold); border-color: var(--gold); }

.menu-section { scroll-margin-top: 150px; }
.menu-section + .menu-section { margin-top: clamp(3.4rem, 7vw, 5.5rem); }
.menu-section .section-head { text-align: center; margin-inline: auto; }
.menu-section .section-head .eyebrow { justify-content: center; }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.menu-item:hover {
  background: var(--paper-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.menu-item .name { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; line-height: 1.3; }
.menu-item .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(62, 84, 104, 0.3);
  transform: translateY(-4px);
  min-width: 2rem;
}
.menu-item .desc { display: block; margin-top: 0.3rem; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }
.menu-item .desc em { font-style: italic; color: var(--oak); }
.menu-item .meta { color: var(--ink-soft); font-size: 0.86rem; margin-top: 0.45rem; display: block; }
.menu-item .price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--slate);
  white-space: nowrap;
  padding-left: 0.2rem;
}

.menu-tip {
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  padding-top: 1.8rem;
}
.menu-tip strong { color: var(--slate); }

.drink-block { margin-bottom: 1.4rem; }
.drink-block h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-soft);
}
/* ---------- Seitenfuß ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(244, 239, 229, 0.78);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: #FBF9F4; }

.footer-main {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.8rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.site-footer h3 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-logo img { height: 54px; width: auto; }
.footer-logo p { margin-top: 1.2rem; font-size: 0.94rem; max-width: 22rem; }
.footer-links li + li { margin-top: 0.55rem; }
.footer-links a { font-size: 0.95rem; position: relative; }
.footer-links a::before {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.footer-links a:hover::before { transform: scaleX(1); }

.footer-contact p { font-size: 0.95rem; display: flex; gap: 0.55rem; align-items: flex-start; margin-bottom: 0.6rem; }
.footer-contact svg { width: 1rem; height: 1rem; margin-top: 0.3rem; color: var(--gold); flex: none; }

.socials { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 229, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 239, 229, 0.85);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 1.05rem; height: 1.05rem; }

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 229, 0.12);
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(244, 239, 229, 0.55);
}
.footer-bottom a { color: rgba(244, 239, 229, 0.75); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Innen-Seiten Startkopf ---------- */

.page-hero {
  min-height: min(54vh, 520px);
  padding-top: clamp(10rem, 14vh, 12rem);
  padding-bottom: clamp(2.6rem, 5vh, 3.6rem);
  align-items: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { text-align: center; margin: 1rem 0 0.8rem; }
.page-hero .lead { text-align: center; max-width: 38rem; margin-inline: auto; }

/* Freie Quotation-Sektion / Infobox */

.quote-band { text-align: center; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-top { justify-content: space-between; }
  .menu-pills { top: 74px; }
  .menu-section { scroll-margin-top: 94px; }
  .hours-band { grid-template-columns: 1fr; text-align: center; }
  .hours-tab { border-left: 0; border-top: 1px solid rgba(244, 239, 229, 0.16); padding-top: 1.4rem; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__reverse .split-media { order: 0; }
  .split-media .badge { left: 1rem; }
}

@media (max-width: 760px) {
  .header-main { padding: 0.6rem 0; }
  .header-main .container { gap: 0.55rem; }
  .site-logo img { height: 34px; }
  .dish-grid, .fact-grid, .info-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide { grid-column: span 2; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .image-band .scrim {
    background: linear-gradient(180deg, rgba(250, 247, 241, 0.92) 0%, rgba(250, 247, 241, 0.7) 55%, rgba(250, 247, 241, 0) 100%);
  }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reviews-track { transition: none; }
  .scroll-cue { display: none; }
  .hero-media img, .parallax-wrap img { transform: scale(1.06); }
}
/*__END7__*/