/* =========================================================
   BÜRGER KELLER — "Wirtshaus-Journal"
   Editorial · Hochkontrast-Bodoni · Logo-Grün + Forest
   ========================================================= */

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

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

:root {
  /* neutral near-blacks */
  --bg:    #101010;
  --bg-1:  #141414;
  --bg-2:  #1a1a1a;
  --ink:   #f0eeeb;
  --ink-2: #b5b0a8;
  --muted: #787270;

  /* green accent (from logo #4e9a5a) */
  --gold:      #4e9a5a;
  --gold-2:    #6fbf7b;
  --gold-deep: #3a7a44;
  --gold-glow: rgba(78,154,90,.28);

  /* second accent — subtle dark green */
  --wine:    #2d5e35;
  --wine-2:  #3d7d48;
  --wine-deep: #1e3f23;

  /* aged paper (menu) — warm neutral */
  --paper:    #f0ece4;
  --paper-2:  #e5e0d6;
  --paper-ink:#1c1a16;
  --paper-mut:#6e6558;

  --line:   rgba(78,154,90,.18);
  --line-2: rgba(240,238,235,.08);
  --hair:   rgba(240,238,235,.12);

  --panel-solid:#161616;

  --display: "Bodoni Moda", "Times New Roman", serif;
  --body:    "Spectral", Georgia, serif;
  --ui:      "Archivo", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --shadow-card: 0 30px 70px -32px rgba(0,0,0,.9);
  --shadow-soft: 0 14px 46px -22px rgba(0,0,0,.75);

  /* Höhe fixer Kopfzeile (Rahmen & Fortschrittsbalken darunter) */
  --header-h: clamp(88px, 10vh, 104px);

  --safe-t: env(safe-area-inset-top, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --mobile-bar-h: 0px;
}

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

/* Fix 300ms tap-delay auf allen interaktiven Elementen */
a, button, input, select, textarea, label,
[role="button"], [tabindex] {
  touch-action: manipulation;
}
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  scroll-padding-top: calc(var(--header-h) + var(--safe-t) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) var(--bg-2);
}
*::-webkit-scrollbar { width: 11px; height: 11px; }
*::-webkit-scrollbar-track {
  background: var(--bg-2);
  border-left: 1px solid var(--line-2);
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold-deep) 55%, var(--wine) 100%);
  border: 2px solid var(--bg-2);
  border-radius: 1px;
}
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%); }
*::-webkit-scrollbar-corner { background: var(--bg-2); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(78, 154, 90, .18);
  overscroll-behavior-y: none;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
body.no-scroll { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #111111; }

/* grain + vignette */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(78,154,90,.05), transparent 60%),
    radial-gradient(140% 130% at 50% 120%, rgba(0,0,0,.6), transparent 55%);
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; line-height: 1.02; letter-spacing: -.01em; }
.italic { font-style: italic; }
.gold { color: var(--gold-2); }
.wine { color: var(--wine-2); }

.eyebrow {
  font-family: var(--ui); font-weight: 600;
  font-size: 12px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%; max-width: min(var(--maxw), 100%);
  margin: 0 auto; padding: 0 36px;
  box-sizing: border-box;
}
section { position: relative; z-index: 2; max-width: 100%; overflow-x: clip; }
.section-pad { padding: clamp(82px, 12vh, 168px) 0; }

/* big marginal index numeral */
.section-head { position: relative; max-width: 760px; }
.section-head[data-idx]::before {
  content: attr(data-idx);
  position: absolute; right: 100%; top: -.35em; margin-right: 40px;
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: clamp(60px, 9vw, 150px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--line);
  pointer-events: none; user-select: none;
}
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center[data-idx]::before {
  right: auto; left: 50%; top: auto; bottom: 100%; margin: 0 0 -.15em -.5ch;
  transform: translateX(-50%);
}
.section-head h2 { font-size: clamp(44px, 7vw, 96px); margin: 20px 0 0; letter-spacing: -.02em; }
.section-head p { color: var(--ink-2); margin-top: 22px; font-size: 19px; max-width: 54ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ui); font-weight: 600; font-size: 12.5px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 18px 32px; border: 1px solid transparent; border-radius: 4px;
  text-decoration: none; color: #111111;
  background: linear-gradient(120deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  overflow: hidden; box-shadow: 0 10px 30px -12px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), color .4s;
}
.btn::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); transition: left .7s var(--ease-out); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 46px -14px var(--gold-glow); }
.btn:hover::after { left: 140%; }
.btn:active { transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; border-radius: 4px; }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-2); box-shadow: 0 0 20px -6px rgba(78,154,90,.2); }
.btn .ar { transition: transform .4s var(--ease-out); }
.btn:hover .ar { transform: translateX(4px); }

/* ---------- Crest / Monogram ---------- */
.crest {
  width: 48px; height: 48px; position: relative; flex: none;
  display: grid; place-items: center;
}
.crest svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.crest b {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 21px; color: var(--gold-2); letter-spacing: -.02em; z-index: 1;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 200;
  background: #080808;
  display: grid; place-items: center;
  /* Vorhang-Exit: fährt nach oben weg */
  transition: transform .75s cubic-bezier(.86,0,.07,1);
  will-change: transform;
}
#loader.done { transform: translateY(-100%); pointer-events: none; }
body.loader-active { overflow: hidden; }

/* Subtiler radialer Lichtkegel in der Mitte */
.loader-curtain {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% 48%, rgba(78,154,90,.07) 0%, transparent 70%);
  animation: lcPulse 3s ease-in-out infinite;
}
@keyframes lcPulse {
  0%,100% { opacity: .7; }
  50%      { opacity: 1; }
}

/* --- Brand-Container --- */
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.loader-brand {
  position: relative;
  width: clamp(180px, 32vw, 230px);
  height: clamp(180px, 32vw, 230px);
  margin-bottom: 32px;
}

/* --- SVG Ring --- */
.loader-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 20px rgba(78,154,90,.2));
}

/* Hauptkreis zeichnet sich */
.lr-draw {
  transform-origin: 110px 110px;
  transform: rotate(-90deg); /* Start bei 12 Uhr */
  animation: lrDraw 1.1s cubic-bezier(.37,0,.63,1) .1s forwards;
  stroke-dashoffset: 603;
}
@keyframes lrDraw {
  to { stroke-dashoffset: 0; }
}

/* Kompass-Markierungen erscheinen nach dem Kreis */
.lr-marks {
  opacity: 0;
  animation: lrMarksIn .5s ease .9s forwards;
}
@keyframes lrMarksIn {
  from { opacity: 0; transform: scale(.92); transform-origin: 110px 110px; }
  to   { opacity: 1; transform: scale(1);  transform-origin: 110px 110px; }
}

/* --- Logo --- */
.loader-logo-img {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.9);
  height: clamp(64px, 11vw, 90px);
  width: auto;
  max-width: 68%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.6));
  animation: lrLogoIn .8s var(--ease-out) .55s forwards;
}
@keyframes lrLogoIn {
  from { opacity: 0; transform: translate(-50%,-50%) scale(.88); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1);   }
}

/* --- Texte --- */
.loader-texts {
  opacity: 0;
  transform: translateY(8px);
  animation: lrTextIn .7s var(--ease) .75s forwards;
}
@keyframes lrTextIn {
  to { opacity: 1; transform: none; }
}

.loader-name {
  font-family: var(--display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 8px;
}

.loader-sub {
  font-family: var(--ui);
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding-left: .32em;
}

/* --- Credit --- */
.loader-credit {
  margin-top: 40px;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  animation: lrTextIn .6s var(--ease) 1.1s forwards;
}
.loader-credit a { color: var(--muted); text-decoration: none; transition: color .3s; }
.loader-credit a:hover { color: var(--gold-2); }

/* Shared animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lr-draw   { animation: none; stroke-dashoffset: 0; }
  .lr-marks  { animation: none; opacity: 1; }
  .loader-logo-img { animation: none; opacity: 1; transform: translate(-50%,-50%); }
  .loader-texts, .loader-credit { animation: none; opacity: 1; transform: none; }
  #loader.done { transform: none; opacity: 0; transition: opacity .3s; }
}

/* ---------- Navigation ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  padding-top: var(--safe-t);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(16,16,16,.78) 0%, rgba(16,16,16,.32) 55%, transparent 100%);
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s, box-shadow .5s;
}
header.nav.scrolled {
  background: rgba(16,16,16,.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: var(--line);
  box-shadow: 0 4px 30px rgba(0,0,0,.4), 0 1px 0 rgba(78,154,90,.08);
}
header.nav:not(.scrolled) .nav-links a { color: rgba(240,238,235,.82); }
header.nav:not(.scrolled) .nav-links a:hover,
header.nav:not(.scrolled) .nav-links a.active { color: var(--gold-2); }
header.nav:not(.scrolled) .brand .bt b { color: var(--ink); }

/* slim utility bar — Live-Öffnungsstatus */
.topbar {
  border-bottom: 1px solid var(--line-2); overflow: hidden;
  max-height: 46px; transition: max-height .55s var(--ease), opacity .4s, border-color .5s;
}
header.nav.scrolled .topbar { max-height: 0; opacity: 0; border-color: transparent; pointer-events: none; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 44px; font-family: var(--ui); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.topbar a { color: var(--ink-2); text-decoration: none; transition: color .3s; white-space: nowrap; }
.topbar a:hover { color: var(--gold-2); }
.topbar .tb-left, .topbar .tb-right { display: flex; align-items: center; gap: 14px; min-width: 0; }
.topbar .tb-left { flex: 1; }
#hoursStatus {
  color: var(--ink-2); text-transform: none; letter-spacing: .04em;
  font-size: 12px; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#hoursStatus strong { font-weight: 600; color: var(--ink); letter-spacing: .06em; text-transform: uppercase; font-size: 11px; }
.topbar.is-open #hoursStatus strong {
  color: #6fbf7b;
  animation: pulseStatusOpen 2.6s ease-in-out infinite;
}
.topbar.is-closed #hoursStatus strong {
  color: #e86b6b;
  animation: pulseStatusClosed 2.2s ease-in-out infinite;
}
.topbar.is-soon #hoursStatus strong { color: var(--gold-2); animation: none; }
.topbar .dot {
  flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); transition: background .4s;
}
.topbar .dot.is-open { background: #6cb178; animation: pulseOpen 2.4s infinite; }
.topbar .dot.is-soon { background: var(--gold); animation: pulseSoon 2.4s infinite; }
.topbar .dot.is-closed { background: #e86b6b; animation: pulseClosed 2.2s infinite; }
@keyframes pulseOpen { 0%{box-shadow:0 0 0 0 rgba(108,177,120,.45)} 70%{box-shadow:0 0 0 7px rgba(108,177,120,0)} 100%{box-shadow:0 0 0 0 rgba(108,177,120,0)} }
@keyframes pulseSoon { 0%{box-shadow:0 0 0 0 rgba(78,154,90,.4)} 70%{box-shadow:0 0 0 7px rgba(78,154,90,0)} 100%{box-shadow:0 0 0 0 rgba(78,154,90,0)} }
@keyframes pulseClosed { 0%{box-shadow:0 0 0 0 rgba(232,107,107,.5)} 70%{box-shadow:0 0 0 7px rgba(232,107,107,0)} 100%{box-shadow:0 0 0 0 rgba(232,107,107,0)} }
@keyframes pulseStatusOpen { 0%, 100% { opacity: 1; } 50% { opacity: .82; } }
@keyframes pulseStatusClosed { 0%, 100% { opacity: 1; text-shadow: 0 0 0 transparent; } 50% { opacity: .78; text-shadow: 0 0 14px rgba(232, 107, 107, .35); } }
.topbar .sep { flex: none; width: 1px; height: 12px; background: var(--line); }
header.nav:not(.scrolled) .topbar { border-color: rgba(255,255,255,.08); }

/* Sonder-Schließzeiten — prominentes Banner im Header */
.closure-strip {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Aktuelle Schließung ── */
.cst-active {
  background:
    linear-gradient(90deg,
      rgba(180,105,15,.32) 0%,
      rgba(160,90,10,.20) 50%,
      rgba(180,105,15,.32) 100%);
  border-top:    2px solid rgba(201,147,58,.55);
  border-bottom: 1px solid rgba(201,147,58,.25);
}

.cst-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0;
}

/* Linker Block: Icon + Status + Grund */
.cst-icon {
  color: var(--warn);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 14px;
}

.cst-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cst-title {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warn);
}

.cst-reason {
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
}

/* Trennlinie */
.cst-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(201,147,58,.3);
  margin: 0 28px;
  flex-shrink: 0;
}

/* Rechter Block: Wiedereröffnung */
.cst-reopen {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.cst-reopen-label {
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201,147,58,.7);
}

.cst-reopen-date {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.1;
}

/* ── Geplante Schließung ── */
.cst-notice {
  background: rgba(14,14,14,.95);
  border-bottom: 1px solid var(--line-2);
}
.cst-notice .cst-inner { padding: 10px 0; }

.cst-notice-badge {
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #111;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 14px;
}

.cst-notice-text {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--ink-2);
}

.closure-range-compact strong {
  font-family: var(--display); font-weight: 500; font-size: 14px;
  color: var(--ink); letter-spacing: .02em;
}
.closure-range-compact em {
  font-family: var(--display); font-style: italic;
  font-size: 13px; color: var(--gold-2); margin: 0 3px;
}

/* Mobile */
@media (max-width: 900px) {
  .cst-sep       { margin: 0 18px; }
  .cst-reopen-date { font-size: 18px; }
}
@media (max-width: 640px) {
  .cst-icon   { display: none; }
  .cst-reason { font-size: 14px; }
  .cst-sep    { margin: 0 14px; }
  .cst-reopen-date { font-size: 16px; }
}

.closure-notices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.closure-notices--form {
  margin-top: 0;
  margin-bottom: 22px;
  padding-top: 0;
  border-top: none;
}
.closure-notice {
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(12, 12, 12, .35);
}
.closure-notice.is-active {
  border-color: rgba(111, 191, 123, .35);
  background: rgba(78, 154, 90, .1);
}
.closure-notice-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 10px;
}
.closure-notice-tag {
  flex: none;
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(78, 154, 90, .35);
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
}
.closure-notice.is-active .closure-notice-tag {
  color: #111111;
  background: #6fbf7b;
  border-color: transparent;
}
.closure-notice-title {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.closure-notice-when { margin: 0; }
.closure-notice-range {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  max-width: 300px;
}
.closure-notice-date {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.closure-notice-date i {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}
.closure-notice-date b {
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.closure-notice-sep {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: rgba(78, 154, 90, .5);
  user-select: none;
}
header.nav:not(.scrolled) .topbar a { color: rgba(240,238,235,.75); }
header.nav:not(.scrolled) .topbar a:hover { color: var(--gold-2); }
header.nav:not(.scrolled) #hoursStatus { color: rgba(240,238,235,.82); }
header.nav:not(.scrolled) .topbar.is-open #hoursStatus strong { color: #7fd48a; }
header.nav:not(.scrolled) .topbar.is-closed #hoursStatus strong { color: #f07878; }

.nav-inner {
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr auto;
  align-items: center;
  gap: 20px 24px;
  padding: 12px 0;
  transition: padding .5s var(--ease);
}
header.nav.scrolled .nav-inner { padding: 8px 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  justify-self: start;
  min-height: 48px;
}
.brand .logo {
  flex: none;
  display: block;
  height: clamp(64px, 5.8vw, 84px);
  width: auto;
  max-width: min(340px, 46vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.55));
  transition: transform .5s var(--ease-out), filter .4s var(--ease), height .5s var(--ease);
}
.brand:hover .logo { transform: scale(1.02); filter: drop-shadow(0 4px 14px rgba(0,0,0,.6)); }
.brand--wordmark .bt { display: none; }
header.nav.scrolled .brand .logo {
  height: clamp(52px, 4.8vw, 66px);
  max-width: min(280px, 40vw);
}
.brand .mono { display: none; }
.brand .bt { line-height: 1.12; min-width: 0; }
.brand .bt b {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 26px); letter-spacing: -.01em;
  display: block; white-space: nowrap;
}
.brand .bt small {
  display: block; margin-top: 3px;
  font-family: var(--ui); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; color: var(--gold);
  text-transform: uppercase; white-space: nowrap;
}
header.nav.scrolled .brand .bt small {
  opacity: 0; max-height: 0; margin-top: 0; overflow: hidden;
  transition: opacity .35s var(--ease), max-height .4s var(--ease);
}
header.nav .brand .bt small {
  transition: opacity .35s var(--ease), max-height .4s var(--ease);
}
.brand:hover .crest svg .seal { transform: rotate(8deg); }
.crest svg .seal { transform-origin: 50% 50%; transition: transform .6s var(--ease-out); }

.nav-links {
  justify-self: center;
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: 0; max-width: 100%;
}
.nav-links a {
  position: relative; flex-shrink: 0;
  color: var(--ink-2); text-decoration: none;
  font-family: var(--ui); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 11px; white-space: nowrap;
  transition: color .35s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 14px 24px; font-size: 11px; white-space: nowrap; border-radius: 3px; box-shadow: 0 6px 20px -6px rgba(78,154,90,.4), inset 0 1px 0 rgba(255,255,255,.12); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 2px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: .4s var(--ease); }
.burger span:nth-child(1){ top: 15px; } .burger span:nth-child(2){ top: 21px; } .burger span:nth-child(3){ top: 27px; }
.burger.open span:nth-child(1){ top: 21px; transform: rotate(45deg);}
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ top: 21px; transform: rotate(-45deg);}

.mobile-menu {
  position: fixed; inset: 0; z-index: 115;
  background: rgba(16, 16, 16, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column; align-items: stretch;
  padding:
    calc(var(--header-h) + 16px)
    max(24px, var(--safe-r))
    max(20px, calc(16px + var(--safe-b)))
    max(24px, var(--safe-l));
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
  overflow: hidden;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-links {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 2px; min-height: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-links a {
  font-family: var(--display); font-size: clamp(30px, 8vw, 36px);
  line-height: 1.15; color: var(--ink); text-decoration: none;
  padding: 8px 0; opacity: 0; transform: translateY(14px);
  transition: color .3s;
}
.mobile-menu.open .mobile-menu-links a { animation: fadeUp .5s var(--ease) forwards; }
.mobile-menu-links a:hover { color: var(--gold-2); font-style: italic; }
.mobile-menu-cta {
  flex: none; width: 100%; margin-top: 20px;
  justify-content: center; text-align: center;
  padding: 16px 20px; font-size: 11px; letter-spacing: .14em;
  line-height: 1.35; white-space: nowrap;
  box-sizing: border-box;
}
.mobile-menu.open .mobile-menu-cta { animation: fadeUp .5s var(--ease) .35s forwards; opacity: 0; }

/* ---------- Tagesempfehlung Sektion ---------- */
.te-section {
  margin-bottom: clamp(32px, 5vw, 56px);
  position: relative;
}

.te-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(30,63,35,.55) 0%, rgba(20,20,20,.4) 100%);
  border: 1px solid rgba(78,154,90,.22);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}

.te-section-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(78,154,90,.08) 0%, transparent 60%);
  pointer-events: none;
}

.te-section-left {
  flex: 1;
  min-width: 0;
}

.te-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(78,154,90,.12);
  border: 1px solid rgba(78,154,90,.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.te-section-tag::before {
  content: "✦";
  font-size: 8px;
}

.te-section-dish {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
  font-style: italic;
}

.te-section-desc {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 8px;
}

.te-section-note {
  font-family: var(--ui);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
}

.te-section-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.te-section-price {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--gold-2);
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 680px) {
  .te-section-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .te-section-right { align-items: flex-start; flex-direction: row; align-items: center; }
  .te-section-price { font-size: 28px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -6% 0 -6% 0; z-index: 0; will-change: transform; }
.hero-bg img {
  width: 100%; height: 112%;
  object-fit: cover; object-position: 62% 42%;
  filter: saturate(.78) brightness(.78) contrast(1.06);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(90% 80% at 68% 38%, rgba(16,16,16,.35), rgba(16,16,16,.82) 72%),
    linear-gradient(180deg, rgba(16,16,16,.72) 0%, rgba(16,16,16,.42) 38%, rgba(16,16,16,.68) 78%, rgba(16,16,16,.96) 100%),
    linear-gradient(90deg, rgba(16,16,16,.85) 0%, rgba(16,16,16,.42) 42%, rgba(16,16,16,.55) 100%);
}

/* thin inset frame around hero */
.hero-frame {
  position: absolute;
  top: var(--header-h);
  right: 24px; bottom: 24px; left: 24px;
  z-index: 3;
  border: 1px solid rgba(78,154,90,.38);
  border-top: none;
  pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--gold-2);
}
.hero-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* vertical rail */
.hero-rail {
  position: absolute; left: 34px; top: 50%; z-index: 4;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--ui); font-size: 10px; font-weight: 600;
  letter-spacing: .44em; text-transform: uppercase;
  color: rgba(78,154,90,.55);
  display: flex; align-items: center; gap: 18px;
}
.hero-rail::after {
  content: ""; width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
}

.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 920px;
  padding: clamp(110px, 14vh, 150px) 36px clamp(72px, 10vh, 100px)
           clamp(72px, 9vw, 118px);
}
.hero .eyebrow.center {
  width: 100%; justify-content: center;
  opacity: 0; animation: heroIn .85s var(--ease) .15s forwards;
}
.hero .eyebrow.center::before,
.hero .eyebrow.center::after { width: clamp(36px, 6vw, 72px); }

.hero h1 {
  font-size: clamp(64px, 10.5vw, 156px);
  line-height: .88; margin: 28px 0 0; letter-spacing: -.035em;
  font-weight: 500;
  opacity: 0;
}
.hero h1.ready { animation: heroIn 1.05s var(--ease) .35s forwards; }
.hero h1 .line1 {
  display: block; color: var(--ink);
  font-weight: 500;
  text-shadow: 0 2px 30px rgba(0,0,0,.5), 0 0 60px rgba(0,0,0,.3);
}
.hero h1 .line2 {
  display: block; margin-top: .04em;
  font-style: italic; font-weight: 400;
  color: var(--gold-2);
  text-shadow: 0 2px 30px rgba(0,0,0,.5), 0 0 60px rgba(78,154,90,.18);
}
.hero .lead {
  font-family: var(--body); font-style: italic; font-weight: 300;
  font-size: clamp(19px, 2.2vw, 26px); line-height: 1.55;
  color: rgba(240,238,235,.92); margin-top: 28px; max-width: 34ch;
  text-shadow: 0 1px 20px rgba(0,0,0,.5);
  opacity: 0; animation: heroIn 1s var(--ease) .65s forwards;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
  opacity: 0; animation: heroIn 1s var(--ease) .85s forwards;
}
.hero .btn.ghost {
  color: var(--ink);
  border-color: rgba(240,238,235,.42);
  background: rgba(0,0,0,.3);
}
.hero .btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(78,154,90,.06);
}
@keyframes heroIn { from { opacity: 0; transform: translateY(22px);} to {opacity:1; transform:none;} }

.scroll-cue {
  position: absolute; right: 38px; bottom: 42px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(78,154,90,.65);
  font-family: var(--ui); font-size: 10px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
  opacity: 0; animation: heroIn 1s var(--ease) 1.1s forwards;
}
.scroll-cue i {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-2); animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { to { top: 120%; } }

/* ---------- Marquee (specialties ticker) ---------- */
.marquee {
  position: relative; z-index: 2; width: 100%; max-width: 100%;
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 80px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2) 15%, transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-2) 15%, transparent);
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 30px; padding: 0 30px; font-family: var(--display); font-style: italic; font-size: clamp(22px, 3vw, 34px); color: var(--ink); white-space: nowrap; }
.marquee-item::after { content: "✦"; font-style: normal; font-size: 14px; color: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: var(--header-h); left: 0; z-index: 121;
  height: 2px; width: calc(var(--page-scroll, 0) * 100%);
  background: linear-gradient(90deg, var(--wine-2), var(--gold) 40%, var(--gold-2) 75%, var(--gold));
  box-shadow: 0 0 20px var(--gold-glow), 0 0 6px rgba(78,154,90,.4);
  pointer-events: none;
  transition: width .12s linear;
}

/* ---------- Reveal (wiederholt beim Hoch-/Runterscrollen) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="zoom"]  { transform: scale(.92); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"].in  { transform: none; }
[data-reveal="right"].in { transform: none; }
[data-reveal="zoom"].in  { transform: none; }

/* Sektion sichtbar: statisch, ohne Dauer-Animation */
section.in-view .section-head[data-idx]::before {
  opacity: 0.55;
  -webkit-text-stroke-color: rgba(78,154,90,.35);
}
section .section-head[data-idx]::before {
  opacity: 0.28;
  transition: opacity .8s var(--ease), -webkit-text-stroke-color .8s;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  [data-reveal] { opacity: 1; transform: none !important; transition: none; }
  .hero-bg img { animation: none !important; }
  .lr-draw, .lr-marks, .loader-logo-img,
  .loader-texts, .loader-credit { animation: none !important; opacity: 1 !important; }
  .lr-draw { stroke-dashoffset: 0 !important; }
  .loader-logo-img { transform: translate(-50%,-50%) !important; }
  .masonry .tile img { transition: none !important; transform: none !important; }
  .marquee:hover .marquee-track,
  .marquee:focus-within .marquee-track { animation-play-state: running; }
  .topbar.is-open #hoursStatus strong,
  .topbar.is-closed #hoursStatus strong,
  .topbar .dot.is-open,
  .topbar .dot.is-closed { animation: none !important; }
}

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-1)); }
/* ---------- Geschichte / Story ---------- */
.story-band { background: linear-gradient(180deg, var(--bg), var(--bg-1)); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.story-frame { overflow: hidden; border: 1px solid var(--line); position: relative; }
.story-frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(240,238,235,.22); pointer-events: none; }
.story-frame img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.story-badge {
  margin-top: 16px; font-family: var(--ui); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.story-copy p { color: var(--ink-2); margin-top: 20px; max-width: 58ch; }
.story-source { margin-top: 28px !important; font-family: var(--ui); font-size: 12px; }
.story-source a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.story-source a:hover { color: var(--ink); }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.about-copy h2 { font-size: clamp(40px, 5.6vw, 76px); margin-top: 18px; }
.about-copy p { color: var(--ink-2); margin-top: 22px; }
.about-copy a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .35s var(--ease);
}
.about-copy a:hover { color: var(--ink); }
.sign-team {
  margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px;
}
.sign-person { display: flex; flex-direction: column; gap: 8px; }
.sign-person .name {
  font-family: var(--display); font-style: italic;
  font-size: clamp(26px, 3vw, 32px); color: var(--gold-2); line-height: 1.1;
}
.sign-person small {
  color: var(--muted); font-family: var(--ui); font-size: 10.5px;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase; line-height: 1.55;
}
@media (max-width: 560px) {
  .sign-team { grid-template-columns: 1fr; gap: 22px; }
}

.about-media { position: relative; }
.about-media .frame-main { position: relative; overflow: hidden; box-shadow: var(--shadow-card); }
.about-media .frame-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.about-media:hover .frame-main img { transform: scale(1.06); }
.about-media .frame-main::after { content:""; position:absolute; inset:14px; border:1px solid rgba(240,238,235,.25); pointer-events:none; }
.about-media .badge { position: absolute; bottom: -28px; left: -28px; background: var(--wine-deep); border: 1px solid var(--wine-2); padding: 22px 28px; box-shadow: var(--shadow-card); }
.about-media .badge b { font-family: var(--display); font-size: 44px; color: var(--ink); display: block; line-height: 1; }
.about-media .badge small { font-family: var(--ui); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.about-media .deco { position: absolute; top: -26px; right: -26px; width: 130px; height: 130px; border: 1px solid var(--line); z-index: -1; }

/* stats */
.stats { margin-top: 100px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 44px 26px; text-align: center; border-left: 1px solid var(--line-2); }
.stat:first-child { border-left: none; }
.stat b { font-family: var(--display); font-size: clamp(48px, 5.5vw, 76px); color: var(--ink); display: block; line-height: 1; font-weight: 500; }
.stat b .suf { color: var(--gold-2); font-style: italic; }
.stat small { display: block; margin-top: 14px; color: var(--muted); font-family: var(--ui); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }

/* ---------- Kegelbahn ---------- */
.kegel {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(124,45,40,.12), transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg));
}
.kegel-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center;
}
.kegel-frame { position: relative; overflow: hidden; box-shadow: var(--shadow-card); }
.kegel-frame img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; transition: transform 1.4s var(--ease-out); }
.kegel-media:hover .kegel-frame img { transform: scale(1.05); }
.kegel-frame::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(240,238,235,.22); pointer-events: none; z-index: 2;
}
.kegel-lanes {
  position: absolute; inset: auto 14px 14px 14px; z-index: 3;
  display: grid; grid-template-columns: 1fr 10px 1fr; gap: 0; height: 72px;
}
.kegel-lane {
  display: grid; place-items: center;
  background: rgba(16,16,16,.72); border: 1px solid rgba(78,154,90,.35);
  font-family: var(--ui); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2);
}
.kegel-lane-divider {
  background: repeating-linear-gradient(
    180deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px
  );
  opacity: .85;
}
.kegel-copy h2 { margin-top: 18px; }
.kegel-copy p { color: var(--ink-2); margin-top: 20px; }
.kegel-features {
  list-style: none; margin: 34px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.kegel-features li {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start;
  padding-bottom: 22px; border-bottom: 1px solid var(--line-2);
}
.kegel-features li:last-child { border-bottom: none; padding-bottom: 0; }
.kegel-feat-ic {
  font-family: var(--display); font-style: italic; font-size: 28px; color: var(--gold-deep); line-height: 1;
}
.kegel-features b { display: block; font-family: var(--display); font-size: 24px; color: var(--ink); font-weight: 500; margin-bottom: 6px; }
.kegel-features p { margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.55; }
.kegel-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.kegel-hint {
  margin-top: 18px; font-family: var(--ui); font-size: 13px; line-height: 1.55; color: var(--muted);
}

/* =========================================================
   MENU — warm paper card
   ========================================================= */
.menu { background:
   radial-gradient(120% 90% at 50% 0%, var(--bg-2), var(--bg) 70%); }
.menu .section-head[data-idx]::before { -webkit-text-stroke-color: var(--line); }

.paper {
  margin-top: 60px; position: relative;
  background:
    radial-gradient(130% 120% at 0% 0%, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--paper-ink);
  padding: clamp(40px, 6vw, 80px);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.85);
  border: 1px solid #c8c4bc;
}
.paper::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.paper::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(28,26,22,.25); pointer-events: none; }
.paper-head { position: relative; text-align: center; margin-bottom: 18px; }
.paper-head .pk { font-family: var(--ui); font-size: 11px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--wine); }
.paper-head h3 { font-family: var(--display); font-size: clamp(34px, 5vw, 60px); color: var(--paper-ink); margin-top: 8px; }
.paper-head .rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; color: var(--wine); }
.paper-head .rule::before, .paper-head .rule::after { content: ""; height: 1px; width: 80px; background: rgba(36,28,17,.3); }

.menu-tabs { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 26px 0 8px; }
.menu-tab { font-family: var(--ui); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-mut); background: transparent; border: 1px solid rgba(36,28,17,.2); padding: 10px 20px; border-radius: 40px; transition: .35s var(--ease); }
.menu-tab:hover { border-color: var(--paper-ink); color: var(--paper-ink); }
.menu-tab.active { color: var(--paper); background: var(--wine); border-color: transparent; }

.menu-panel { position: relative; margin-top: 40px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 70px; }
.dish { position: relative; padding: 20px 0; border-bottom: 1px dotted rgba(36,28,17,.28); }
.dish .dh { display: flex; align-items: baseline; gap: 12px; }
.dish h4 { font-family: var(--display); font-size: 25px; font-weight: 600; color: var(--paper-ink); transition: color .3s; }
/* dotted leader between name and price */
.dish .dh .leader { flex: 1; border-bottom: 1.5px dotted rgba(36,28,17,.32); transform: translateY(-5px); min-width: 16px; }
.dish:hover h4 { color: var(--wine); }
.dish .tag { font-family: var(--ui); font-size: 8.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); border: 1px solid rgba(124,45,40,.5); padding: 3px 7px; border-radius: 20px; white-space: nowrap; }
.dish .price { font-family: var(--display); font-size: 24px; color: var(--paper-ink); font-weight: 600; white-space: nowrap; }
.dish p { color: var(--paper-mut); font-family: var(--body); font-size: 15px; line-height: 1.55; margin-top: 6px; max-width: 52ch; font-style: italic; }

.menu-note { position: relative; text-align: center; margin-top: 60px; color: var(--ink-2); font-size: 15px; }
.menu-note .btn { margin-top: 22px; }


/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.masonry {
  columns: 3;
  column-gap: 20px;
  margin-top: 56px;
  width: 100%;
  max-width: 100%;
}
.gallery-fallback { text-align: center; color: var(--ink-2); padding: 40px 20px; column-span: all; }
.masonry .tile {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--bg-2);
  cursor: zoom-in;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease-out);
}
.masonry .tile::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(243, 234, 214, .2);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease), inset .45s var(--ease-out);
  z-index: 1;
}
.masonry .tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 1.05s var(--ease-out), filter .5s var(--ease);
  filter: saturate(.88) brightness(.9);
}
.masonry .tile .zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(16, 16, 16, .55);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 17px;
  opacity: 0;
  transform: scale(.75);
  transition: opacity .4s var(--ease), transform .4s var(--ease-out), border-color .35s;
}
@media (hover: hover) {
  .masonry .tile:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 154, 90, .45);
    box-shadow: var(--shadow-card), 0 0 36px -10px rgba(78, 154, 90, .18);
  }
  .masonry .tile:hover::after {
    opacity: 1;
    inset: 10px;
  }
  .masonry .tile:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) brightness(1);
  }
  .masonry .tile:hover .zoom {
    opacity: 1;
    transform: scale(1);
    border-color: var(--gold);
  }
}

#lightbox { position: fixed; inset: 0; z-index: 180; background: rgba(8,6,3,.97); backdrop-filter: blur(10px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img { max-width: 86vw; max-height: 84dvh; box-shadow: 0 40px 100px -30px #000; transform: scale(.94); transition: transform .5s var(--ease-out); }
#lightbox.open img { transform: none; }
#lightbox .lb-close, #lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--ink); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; transition: .3s; backdrop-filter: blur(6px); }
#lightbox .lb-close:hover, #lightbox .lb-nav:hover { background: var(--gold); color: #111111; border-color: transparent; }
#lightbox .lb-close { top: 26px; right: 26px; }
#lightbox .lb-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
#lightbox .lb-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Reservation ---------- */
.reserve { background: var(--bg); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: stretch; }
.reserve-aside { position: relative; overflow: hidden; min-height: 500px; }
.reserve-aside img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.9); }
.reserve-aside .ra-body { position: relative; z-index: 2; padding: 50px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.reserve-aside::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,16,16,.3), rgba(16,16,16,.94)); }
.reserve-aside h3 { font-size: 44px; }
.reserve-aside p { color: var(--ink-2); margin-top: 14px; }
.reserve-aside .contact-quick { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.reserve-aside .contact-quick a { color: var(--gold-2); text-decoration: none; font-family: var(--display); font-size: 24px; }
.reserve-lead { max-width: 52ch; margin: 18px auto 0; color: var(--ink-2); line-height: 1.65; }

.form-card { background: linear-gradient(165deg, rgba(22,22,22,.98), var(--panel-solid)); border: 1px solid var(--line); border-radius: 6px; padding: 46px; box-shadow: var(--shadow-card), 0 0 60px -20px rgba(78,154,90,.08); position: relative; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; position: relative; }
.field label { display: block; font-family: var(--ui); font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.field input, .field select, .field textarea { width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line-2); color: var(--ink); font-family: var(--body); font-size: 16px; padding: 14px 16px; border-radius: 2px; transition: border-color .3s, background .3s, box-shadow .3s; }
.field-hint { margin-top: 8px; font-family: var(--ui); font-size: 11px; color: var(--muted); line-height: 1.45; }
.field input::placeholder, .field textarea::placeholder { color: #706b66; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(78,154,90,.05); box-shadow: 0 0 0 3px rgba(78,154,90,.08); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  background-color: var(--bg-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234e9a5a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select option,
.field select optgroup {
  background-color: #1a1a1a;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  padding: 8px 12px;
}
.field select option[value=""] {
  color: var(--muted);
}
.field select option:checked,
.field select option:hover,
.field select option:focus {
  background: linear-gradient(90deg, #1f2f22, #1a261c);
  color: #e8f0ea;
}
.field select:focus option:checked {
  background-color: #2a4e30;
  color: #e8f0ea;
}
.field.invalid input, .field.invalid select { border-color: var(--wine-2); box-shadow: 0 0 0 3px rgba(61,125,72,.16); }
.field .err { color: var(--wine-2); font-family: var(--ui); font-size: 12px; margin-top: 6px; opacity: 0; height: 0; transition: opacity .3s; }
.field.invalid .err { opacity: 1; height: auto; }
/* Anfrage-Typ Toggle */
.res-type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.res-type-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: 4px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2);
  color: var(--ink-2); font-family: var(--ui); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: .25s; text-align: left;
}
.res-type-btn:hover { border-color: var(--gold); color: var(--ink); background: rgba(78,154,90,.06); }
.res-type-btn.active { background: linear-gradient(120deg, rgba(78,154,90,.15), rgba(78,154,90,.08)); border-color: var(--gold); color: var(--ink); }
.res-type-ic { font-size: 18px; line-height: 1; flex-shrink: 0; }

.party-step { display: flex; gap: 8px; flex-wrap: wrap; }
.party-step button { flex: 1; min-width: 44px; background: rgba(255,255,255,.03); border: 1px solid var(--line-2); color: var(--ink-2); padding: 12px 0; border-radius: 2px; font-family: var(--ui); font-size: 15px; transition: .3s; }
.party-step button:hover { border-color: var(--line); color: var(--ink); }
.party-step button.sel { background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #111111; border-color: transparent; }
.form-reserve-hint {
  margin: 4px 0 14px; padding: 12px 14px; border-radius: 2px;
  font-family: var(--ui); font-size: 13px; line-height: 1.55; color: var(--ink-2);
  background: rgba(78,154,90,.06); border: 1px solid var(--line);
}
.form-card .btn.submit { width: 100%; justify-content: center; margin-top: 0; }
.form-card .btn.submit:disabled { opacity: .7; cursor: wait; transform: none; }
.field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-status {
  margin-bottom: 16px; padding: 12px 14px; border-radius: 2px;
  font-family: var(--ui); font-size: 14px; line-height: 1.5;
  background: rgba(158,74,61,.12); border: 1px solid rgba(158,74,61,.45); color: var(--wine-2);
}
.form-status:not(.error) { background: rgba(78,154,90,.08); border-color: var(--line); color: var(--gold-2); }

.form-confirm { position: absolute; inset: 0; background: var(--panel-solid); display: grid; place-items: center; text-align: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.form-confirm.show { opacity: 1; visibility: visible; }
.check-ring { width: 92px; height: 92px; margin: 0 auto 22px; }
.check-ring circle { fill: none; stroke: var(--gold); stroke-width: 3; stroke-dasharray: 264; stroke-dashoffset: 264; }
.check-ring path { fill: none; stroke: var(--gold-2); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; }
.form-confirm.show .check-ring circle { animation: draw .7s var(--ease-out) forwards; }
.form-confirm.show .check-ring path { animation: draw .5s var(--ease-out) .55s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-confirm h3 { font-size: 38px; }
.form-confirm p { color: var(--ink-2); margin-top: 12px; max-width: 42ch; margin-left: auto; margin-right: auto; }
.form-confirm-lead { margin-top: 10px !important; }
.form-confirm .pending-note {
  margin: 22px auto 0; max-width: 40ch; padding: 16px 18px; text-align: left;
  background: rgba(158,74,61,.1); border: 1px solid rgba(158,74,61,.35); border-radius: 2px;
}
.form-confirm .pending-note strong {
  display: block; font-family: var(--ui); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--wine-2); margin-bottom: 8px;
}
.form-confirm .pending-note p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); max-width: none; }
.form-confirm .rcap-label {
  margin: 22px 0 6px; font-family: var(--ui); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.form-confirm .rcap { margin-top: 0; color: var(--gold-2); font-family: var(--display); font-size: 22px; font-style: italic; }
.form-confirm .btn { margin-top: 26px; }

/* ---------- Google-Bewertung CTA ---------- */
.google-cta { background: linear-gradient(180deg, var(--bg-1), var(--bg)); }
.g-review-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: clamp(48px, 7vw, 72px) clamp(32px, 5vw, 56px);
  background: linear-gradient(160deg, rgba(22,22,22,.95), var(--panel-solid));
  border: 1px solid rgba(78,154,90,.35);
  border-radius: 6px;
  box-shadow: var(--shadow-card), 0 0 80px -30px rgba(78,154,90,.1);
  position: relative;
}
.g-review-card::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(78,154,90,.22); pointer-events: none;
}
.g-review-kicker {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: .38em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.g-review-card h2 {
  font-family: var(--display); font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 500; color: var(--ink); line-height: 1.12;
  letter-spacing: -.02em;
}
.g-review-text {
  margin-top: 22px; color: var(--ink-2);
  font-size: clamp(17px, 2vw, 20px); line-height: 1.65;
  max-width: 54ch; margin-left: auto; margin-right: auto;
}
.g-review-stars {
  display: inline-flex; gap: clamp(10px, 2vw, 18px);
  margin-top: 36px; text-decoration: none;
  transition: transform .35s var(--ease-out);
}
.g-review-stars:hover { transform: translateY(-3px); }
.g-review-stars span {
  font-size: clamp(34px, 5vw, 44px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  transition: -webkit-text-stroke-color .3s, transform .3s;
}
.g-review-stars:hover span { -webkit-text-stroke-color: var(--gold-2); }
.g-review-stars:hover span:nth-child(odd) { transform: translateY(-2px); }
.g-review-hint {
  margin-top: 18px;
  font-family: var(--ui); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.g-review-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 32px; padding: 16px 32px;
  background: #fff; color: #3c4043;
  font-family: var(--ui); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-radius: 6px;
  box-shadow: 0 8px 28px -8px rgba(0,0,0,.45);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.g-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -10px rgba(0,0,0,.55), 0 0 0 1px rgba(78,154,90,.15);
}
.g-review-btn .g-logo { flex: none; }
.g-review-thanks {
  margin-top: 28px;
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 2.4vw, 22px); color: var(--ink-2);
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: stretch; }
.contact-info .ci-block { padding: 28px 0; border-bottom: 1px solid var(--line-2); display: flex; gap: 22px; align-items: flex-start; }
.contact-info .ci-block:first-of-type { border-top: 1px solid var(--line-2); }
.contact-info .ci-ic { width: 48px; height: 48px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); font-size: 18px; }
.contact-info .ci-block small { font-family: var(--ui); font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.contact-info .ci-block b { font-family: var(--display); font-weight: 500; font-size: 24px; display: block; margin-top: 4px; }
.contact-info .ci-block a { color: var(--ink); text-decoration: none; }
.contact-info .ci-block a:hover { color: var(--gold-2); }
.contact-info .ci-block .hrs { color: var(--ink-2); font-size: 15px; margin-top: 6px; }
.contact-info .ci-block .hrs span { display: flex; justify-content: space-between; gap: 24px; max-width: 300px; padding: 3px 0; }
.contact-info .ci-block .hrs span i { font-style: italic; color: var(--muted); }
.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 460px;
  background: var(--bg-2);
}
.map-view {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.map-view[hidden] { display: none !important; }
.map-view iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}
.map-view--google iframe {
  filter: grayscale(.35) contrast(1.05) brightness(.82);
}
.map-view--osm iframe { filter: none; }
.map-consent[hidden] { display: none !important; }
.map-frame.is-map-loaded .map-consent { display: none !important; }
.map-consent {
  position: relative;
  z-index: 3;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 48px 36px;
}
.map-consent-title { font-family: var(--display); font-size: 26px; font-style: italic; color: var(--gold-2); }
.map-consent-text { color: var(--ink-2); max-width: 42ch; font-size: 15px; line-height: 1.55; }
.map-consent-text a { color: var(--gold-2); }
.map-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 48px 14px max(14px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, rgba(20, 16, 10, .75) 28%, rgba(20, 16, 10, .96) 100%);
  pointer-events: none;
}
.map-actions[hidden] { display: none !important; }
.map-actions .btn {
  pointer-events: auto;
  flex: 1 1 140px;
  justify-content: center;
  font-size: 10px;
  padding: 13px 14px;
  letter-spacing: .12em;
}
.map-frame .map-pin {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  padding: 12px 18px;
  font-family: var(--display);
  color: var(--gold-2);
  font-size: 19px;
  font-style: italic;
  pointer-events: none;
}
@media (min-width: 769px) {
  .map-actions--mobile { display: none !important; }
  .map-frame.is-map-loaded .map-view--osm { display: none !important; }
}

.bk-consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  background: rgba(16, 16, 16, .96); border-top: 1px solid var(--line);
  padding: 14px 0 max(14px, env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, .5);
}
.bk-consent-bar[hidden] { display: none; }
.bk-consent-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; }
.bk-consent-inner p { margin: 0; color: var(--ink-2); font-size: 13px; max-width: 52ch; line-height: 1.45; }
.bk-consent-inner a { color: var(--gold-2); }
.bk-consent-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }
body.bk-consent-open .mobile-bar { display: none !important; }
body.bk-consent-open .totop { display: none !important; }

/* ---------- Footer ---------- */
footer.foot {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  padding: 88px 0 36px;
  position: relative; z-index: 2;
}
footer.foot::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-2) 50%, var(--gold) 70%, transparent);
  opacity: .5;
}

/* ---------- Besucherzähler ---------- */
.visitor-counter {
  padding: 44px 0 36px;
  text-align: center;
}

.vc-deco {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vc-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 40%, var(--line-2) 60%, transparent);
}

.vc-star {
  font-size: 10px;
  color: var(--gold-2);
  opacity: .7;
  flex-shrink: 0;
}

.vc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vc-num {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.01em;
  /* subtiler grüner Schimmer */
  text-shadow: 0 0 60px rgba(78,154,90,.15);
}

.vc-label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: .22em;
}

/* Zahlungsmöglichkeiten (Footer) */
.pay-methods {
  margin-top: 52px;
  padding: 44px 28px 40px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(78, 154, 90, .08) 0%, rgba(78, 154, 90, .02) 48%, transparent 100%),
    rgba(16, 16, 16, .5);
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.pay-methods:hover {
  border-color: rgba(78, 154, 90, .28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}
.pay-methods-head { max-width: 520px; margin: 0 auto; }
.pay-methods-eyebrow {
  display: block;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3.5vw, 32px); line-height: 1.15;
  color: var(--gold); letter-spacing: .01em;
  transition: color .4s var(--ease);
}
.pay-methods:hover .pay-methods-eyebrow { color: var(--gold-2); }
.pay-methods-head h2 {
  margin: 2px 0 0;
  font-family: var(--ui); font-weight: 700;
  font-size: clamp(28px, 4.5vw, 40px); line-height: 1.1;
  letter-spacing: -.02em; text-transform: none;
  color: var(--ink);
}
.pay-methods-rule {
  display: block; width: 64px; height: 2px; margin: 18px auto 32px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-2) 80%, transparent);
  transition: width .5s var(--ease-out), opacity .4s;
}
.pay-methods:hover .pay-methods-rule { width: 88px; opacity: 1; }
.pay-methods-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center;
  gap: 20px 18px;
}
.pay-method {
  flex: 0 1 108px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.pay-method-card {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 18px 14px 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(22, 22, 22, .85) 0%, rgba(12, 12, 12, .65) 100%);
  overflow: hidden;
  outline: none;
  transition:
    transform .45s var(--ease-out),
    border-color .4s var(--ease),
    background .4s var(--ease),
    box-shadow .45s var(--ease);
}
.pay-method-glow {
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 50% 80%, rgba(78, 154, 90, .22) 0%, transparent 58%);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .45s var(--ease), transform .55s var(--ease-out);
  pointer-events: none;
}
.pay-method-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, .07) 0%, transparent 42%, transparent 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.pay-method-icon {
  position: relative; z-index: 1;
  width: 56px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(232, 240, 234, .58);
  transition: transform .5s var(--ease-out), color .35s var(--ease), filter .4s;
}
.pay-method-icon svg { width: auto; height: 100%; max-width: 56px; max-height: 36px; }
.pay-method-label {
  font-family: var(--ui); font-size: 11px; font-weight: 500;
  line-height: 1.35; color: var(--muted); text-align: center;
  letter-spacing: .04em;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
@media (hover: hover) {
  .pay-method:hover .pay-method-card,
  .pay-method:focus-within .pay-method-card {
    transform: translateY(-5px);
    border-color: rgba(78, 154, 90, .55);
    background: linear-gradient(165deg, rgba(26, 26, 26, .95) 0%, rgba(14, 14, 14, .88) 100%);
    box-shadow:
      0 14px 32px rgba(0, 0, 0, .38),
      0 0 0 1px rgba(78, 154, 90, .15),
      0 0 28px rgba(78, 154, 90, .14);
  }
  .pay-method:hover .pay-method-glow,
  .pay-method:focus-within .pay-method-glow {
    opacity: 1;
    transform: scale(1);
  }
  .pay-method:hover .pay-method-card::after,
  .pay-method:focus-within .pay-method-card::after { opacity: 1; }
  .pay-method:hover .pay-method-icon,
  .pay-method:focus-within .pay-method-icon {
    transform: scale(1.1);
    color: var(--gold-2);
    filter: drop-shadow(0 2px 10px rgba(78, 154, 90, .35));
  }
  .pay-method:hover .pay-method-label,
  .pay-method:focus-within .pay-method-label {
    color: var(--ink);
    transform: translateY(-1px);
  }
}
.pay-method-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(78, 154, 90, .25);
}
.pay-method.in .pay-method-card {
  animation: payCardIn .7s var(--ease) backwards;
}
@keyframes payCardIn {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pay-method.in .pay-method-card { animation: none; }
  .pay-method:hover .pay-method-card,
  .pay-method:focus-within .pay-method-card { transform: none; }
  .pay-method:hover .pay-method-icon,
  .pay-method:focus-within .pay-method-icon { transform: none; }
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
.foot-brand .brand { margin-bottom: 20px; }
.foot-brand p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.foot-col h5 { font-family: var(--ui); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: var(--ink-2); text-decoration: none; font-size: 15px; padding: 5px 0; transition: color .3s; }
.foot-col a:hover { color: var(--gold-2); }

.foot-col a.foot-reserve {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; margin-top: 22px; padding: 14px 16px 14px 18px;
  color: var(--ink);
  background: linear-gradient(145deg, #1c1c1c, #121212);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 28px -16px rgba(0,0,0,.8), inset 0 1px 0 rgba(78,154,90,.12);
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .45s;
  position: relative; overflow: hidden;
}
.foot-col a.foot-reserve:hover {
  color: var(--ink);
  transform: translateY(-3px);
  border-color: var(--gold-2);
  box-shadow: 0 16px 40px -14px var(--gold-glow), inset 0 1px 0 rgba(78,154,90,.2);
}
.foot-reserve-text {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  line-height: 1.2; position: relative; z-index: 1;
}
.foot-reserve-text small {
  font-family: var(--ui); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
}
.foot-reserve-text b {
  font-family: var(--ui); font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
}
.foot-reserve-ar {
  flex: none; width: 40px; height: 40px;
  display: grid; place-items: center;
  font-family: var(--ui); font-size: 18px; font-weight: 700;
  color: #111111;
  background: linear-gradient(125deg, var(--gold-2), var(--gold-deep));
  border-radius: 50%;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.5);
  transition: transform .4s var(--ease-out);
  position: relative; z-index: 1;
}
.foot-col a.foot-reserve:hover .foot-reserve-ar { transform: translateX(4px); }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: .4s var(--ease); }
.socials a:hover { background: var(--gold); color: #111111; border-color: transparent; transform: translateY(-3px); }
.foot-meta {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px 28px; flex-wrap: wrap;
}
.foot-bottom-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
.foot-copy {
  margin: 0; display: flex; flex-direction: column; gap: 4px;
  font-family: var(--ui); font-size: 12.5px; line-height: 1.45;
  color: var(--muted); text-align: left;
}
.foot-copy-main { color: var(--ink-2); font-weight: 500; letter-spacing: .02em; }
.foot-copy-sub { font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }
.foot-legal {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.foot-legal a {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .35s var(--ease);
}
.foot-legal a:hover { color: var(--gold-2); }
.foot-visitor {
  margin: 20px 0 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(78, 154, 90, .06);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-visitor-ic {
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
}
.foot-visitor-lbl { color: var(--muted); }
.foot-visitor-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--gold-2);
  line-height: 1;
}
.foot-credit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 8px;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
}
.foot-credit-lbl {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  color: var(--muted);
}
.foot-credit-sep {
  color: rgba(78, 154, 90, .45);
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  user-select: none;
}
.foot-credit a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: none;
  text-decoration: none;
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
@media (hover: hover) {
  .foot-credit a:hover {
    color: var(--gold-2);
    border-bottom-color: rgba(78, 154, 90, .45);
  }
}
.foot-credit a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.totop { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: rgba(16,16,16,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); color: var(--gold-2); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px) scale(.9); transition: opacity .45s var(--ease), visibility .45s, transform .45s var(--ease), background .4s, color .4s, border-color .4s; box-shadow: var(--shadow-soft); }
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #111111; border-color: transparent; transform: translateY(-4px); }
.totop .tt-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.totop .tt-track {
  fill: none;
  stroke: rgba(78, 154, 90, .22);
  stroke-width: 2;
}
.totop .tt-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset .12s linear, stroke .35s var(--ease);
  filter: drop-shadow(0 0 6px rgba(78, 154, 90, .35));
}
.totop:hover .tt-progress { stroke: #111111; filter: none; }
.totop .tt-arrow { width: 20px; height: 20px; position: relative; transition: transform .4s var(--ease-out); }
.totop:hover .tt-arrow { transform: translateY(-2px); }
.totop .tt-arrow path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Mobile Schnellzugriff ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 125;
  width: 100%; max-width: 100%;
  box-sizing: border-box;
  padding: 8px max(16px, var(--safe-l)) calc(8px + var(--safe-b)) max(16px, var(--safe-r));
  gap: 10px;
  background: rgba(16, 16, 16, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .45);
}
.mobile-bar-btn {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  touch-action: manipulation;
}
.mobile-bar-btn-primary {
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  color: #111111;
  border-color: transparent;
}
.mobile-bar-ic { font-size: 14px; line-height: 1; opacity: .9; }
body.mobile-menu-open .mobile-bar,
body.loader-active .mobile-bar,
body.no-scroll:not(.loader-active) .mobile-bar { display: none !important; }

/* Navigation: etwas kompakter auf mittleren Desktop-Breiten */
@media (max-width: 1280px) and (min-width: 1081px) {
  .nav-inner { gap: 16px; }
  .nav-links a { font-size: 11.5px; padding: 8px 9px; letter-spacing: .08em; }
  .nav-links a::after { left: 9px; right: 9px; }
  .nav-cta .btn { padding: 12px 18px; font-size: 10.5px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  :root { --mobile-bar-h: calc(64px + var(--safe-b)); }
  html {
    scroll-behavior: auto;
    /* Anker-Sprünge berücksichtigen jetzt auch die fixe Bottom-Bar */
    scroll-padding-bottom: var(--mobile-bar-h);
  }
  body { padding-bottom: var(--mobile-bar-h); }
  .mobile-bar { display: flex; }
  .topbar .tb-right { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar .tb-left { flex: none; max-width: 100%; justify-content: center; }
  #hoursStatus { font-size: 11px; max-width: min(100%, 320px); }
  .closure-strip-card { align-items: flex-start; gap: 8px; }
  .closure-strip-line { flex-direction: column; align-items: flex-start; text-align: left; gap: 2px; }
  .closure-strip-sep { display: none; }
  .closure-range-compact strong { font-size: 13px; }

  .wrap {
    padding-left: max(20px, var(--safe-l));
    padding-right: max(20px, var(--safe-r));
  }
  header.nav .wrap {
    padding-left: max(20px, var(--safe-l));
    padding-right: max(20px, var(--safe-r));
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
  }
  .nav-links { display: none; }
  .brand { flex: 0 1 auto; min-width: 0; justify-self: auto; }
  .nav-cta {
    flex: none;
    margin: 0;
    justify-self: auto;
  }
  .burger { display: block; flex-shrink: 0; }
  .nav-cta .btn:not(.burger) { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media { order: -1; }
  .about-grid, .kegel-grid, .reserve-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: none; }
  .masonry { columns: 2; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .hero-rail { display: none; }
  .hero-frame { display: none; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(16,16,16,.82) 0%, rgba(16,16,16,.45) 42%, rgba(16,16,16,.88) 100%),
      linear-gradient(90deg, rgba(16,16,16,.9) 0%, rgba(16,16,16,.5) 100%);
  }
  .hero-inner {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: max(100px, calc(80px + var(--mobile-bar-h)));
    padding-left: max(20px, var(--safe-l));
    padding-right: max(20px, var(--safe-r));
    max-width: none;
  }
  .hero .eyebrow.center {
    justify-content: flex-start;
    font-size: 10px;
    letter-spacing: .2em;
    gap: 10px;
    line-height: 1.5;
  }
  .hero .eyebrow.center::after { display: none; }
  .hero .eyebrow.center::before { width: 28px; flex-shrink: 0; }
  .section-head[data-idx]::before { display: none; }
  .totop {
    right: max(12px, var(--safe-r));
    bottom: calc(var(--mobile-bar-h) + 12px);
  }
  body.bk-consent-open { padding-bottom: 0; }
  .bk-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .bk-consent-inner p { max-width: none; font-size: 14px; }
  .bk-consent-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .bk-consent-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .about-media .deco { display: none; }
  .about-media .badge { left: 0; right: auto; }
  .menu-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    scrollbar-width: none;
  }
  .paper { overflow-x: clip; }
  .masonry .tile { max-width: 100%; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex: 0 0 auto; scroll-snap-align: start; }
}
@media (max-width: 760px) {
  :root { --header-h: clamp(80px, 11vh, 96px); }
  body { font-size: 16px; }
  .paper { padding: 28px 20px; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .form-row { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .scroll-cue { display: none; }
  .g-review-card { padding: 36px 20px; }
  .g-review-card::before { inset: 8px; }
  .form-card { padding: 28px 20px; }
  .reserve-aside { min-height: 280px; }
  .about-media .badge { left: 0; bottom: -18px; padding: 16px 20px; }
  .about-media .badge b { font-size: 34px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .pay-methods { margin-top: 36px; padding: 32px 18px 28px; }
  .pay-methods-list { gap: 14px 12px; }
  .pay-method { flex: 0 1 calc(50% - 12px); max-width: 140px; }
  .pay-method-card { min-height: 64px; padding: 14px 10px 12px; }
  .pay-method-icon { width: 48px; height: 32px; }
  .foot-meta {
    margin-top: 40px;
    padding-top: 22px;
    padding-bottom: max(4px, env(safe-area-inset-bottom, 0px));
  }
  .foot-bottom { flex-direction: column; align-items: stretch; gap: 16px; }
  .foot-copy { width: 100%; }
  .foot-bottom-end {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line-2);
    gap: 12px;
  }
  .foot-legal { gap: 16px 22px; width: 100%; }
  .foot-credit {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .foot-credit a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
  }
  .foot-visitor {
    margin-top: 14px;
    padding: 14px 16px;
    gap: 8px 12px;
  }
  .foot-visitor-num { font-size: 20px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); margin-top: 20px; }
  .hero .lead { font-size: 17px; max-width: none; line-height: 1.55; margin-top: 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 28px; }
  .hero-cta .btn {
    width: 100%; justify-content: center; min-height: 50px;
    padding: 15px 18px; font-size: 11px; letter-spacing: .12em;
    line-height: 1.35; white-space: nowrap; box-sizing: border-box;
  }
  .hero-cta .btn.ghost { white-space: nowrap; }
  .kegel-cta { flex-direction: column; }
  .kegel-cta .btn { width: 100%; justify-content: center; min-height: 48px; }
  .section-head h2 { font-size: clamp(36px, 9vw, 56px); }
  .section-head p { font-size: 17px; }
  .dish h4 { font-size: 21px; }
  .dish .price { font-size: 20px; }
  .dish .dh { flex-wrap: wrap; gap: 8px; }
  .dish .dh .leader { display: none; }
  .dish .price { margin-left: auto; }
  .map-frame { min-height: min(72vh, 420px); }
  .map-view iframe { min-height: min(72vh, 420px); }
  .map-consent { min-height: min(72vh, 420px); padding: 32px 20px; }
  .map-consent-title { font-size: 22px; }
  .map-consent-text { font-size: 14px; max-width: none; }
  .map-frame .map-pin { font-size: 15px; padding: 10px 14px; max-width: calc(100% - 36px); }
  .contact-info .ci-block .hrs span {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: none;
  }
  .field input, .field select, .field textarea { font-size: 16px; }
  .party-step button { min-height: 48px; padding: 14px 0; }
  .brand .logo { height: 56px; max-width: min(220px, 62vw); }
  header.nav.scrolled .brand .logo { height: 48px; max-width: min(190px, 58vw); }
  .brand .bt b { font-size: 20px; }
  #lightbox .lb-close, #lightbox .lb-nav {
    width: 52px; height: 52px;
    font-size: 24px;
    /* Größeres Touch-Target */
    min-width: 44px; min-height: 44px;
  }
  #lightbox img { max-width: 94vw; max-height: 78dvh; }
  #lightbox .lb-close { top: max(16px, var(--safe-t)); right: max(16px, var(--safe-r)); }
  #lightbox .lb-nav.prev { left: max(12px, var(--safe-l)); }
  #lightbox .lb-nav.next { right: max(12px, var(--safe-r)); }
  .loader-brand {
    width: clamp(150px, 52vw, 195px);
    height: clamp(150px, 52vw, 195px);
    margin-bottom: 24px;
  }
  .loader-name { font-size: clamp(18px, 5vw, 26px); }
  .loader-sub  { font-size: clamp(9px, 2.2vw, 11px); letter-spacing: .22em; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none !important; border-top: 1px solid var(--line-2); }
  .stat:first-child { border-top: none; }
  .brand .bt small { display: none; }
  .nav-cta .burger { width: 46px; height: 46px; }
  .marquee-item { font-size: 20px; padding: 0 22px; }
  .foot-visitor {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 14px;
  }
  .foot-visitor-lbl {
    font-size: 9px;
    letter-spacing: .14em;
    line-height: 1.4;
  }
  .foot-visitor-num { font-size: 26px; }
  .foot-credit-lbl { flex: 0 0 auto; }
  .foot-credit-sep { display: none; }
  .foot-credit a {
    flex: 0 0 100%;
    min-height: 40px;
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .15s !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}
