/* Anker & Rauke · Restaurant an der Weser (Demo)
   Palette: Tiefblau / Creme / Kupfer. Headlines in Fraunces, lokal.
   v1.6.1 (07/2026) Flaechen beruhigt, Fraunces statt Georgia
   v1.4.0 (03/2026) Grundriss-Styles fuer die Tischwahl */

@font-face {
  font-family: "Fraunces";
  src: url("./fonts/fraunces-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("./fonts/fraunces-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #13293f;
  --ink-deep: #0d1d2e;
  --ink-soft: #3c4c5e;
  --cream: #f7f0e0;
  --cream-2: #f2ebdb;
  --cream-3: #e8dcc3;
  --copper: #b9793f;
  --copper-dark: #9a6234;
  --copper-soft: #d8b98a;
  --green: #5d7d54;
  --red: #a2313e;
  --gold: #f4c07a;
  --paper: #fbf7ec;
  --line: #ddd0b2;
  --shadow: 0 18px 40px -18px rgba(19, 41, 63, 0.35);
  --serif: "Fraunces", Georgia, serif;
  --sans:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 0.7, 0.3, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  font: 400 1rem/1.65 var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--copper-dark);
}

.wrap {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Fokus & Utilities ---------- */

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible {
  top: 0;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin: 0 0 0.6rem;
}

.section-head {
  max-width: 46rem;
  margin-bottom: 2.4rem;
}
.section-sub {
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

.noscript-note {
  display: none;
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: 600 0.95rem/1 var(--sans);
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    opacity 0.2s;
}

.btn-primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(185, 121, 63, 0.9);
}
.btn-primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
}
.btn-primary:disabled {
  background: #b9b0a0;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 240, 224, 0.55);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(247, 240, 224, 0.12);
}

.btn-ghost.btn-dark {
  color: var(--ink);
  border-color: rgba(19, 41, 63, 0.35);
}
.btn-ghost.btn-dark:hover {
  border-color: var(--ink);
  background: rgba(19, 41, 63, 0.06);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0.9rem 0;
  transition:
    background-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
}
.site-header.is-solid {
  background: rgba(13, 29, 46, 0.94);
  box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.55);
  padding: 0.55rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
  margin-right: auto;
}
.brand-mark {
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.brand-name em {
  font-style: italic;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s var(--ease);
}
.main-nav a:hover {
  background: rgba(247, 240, 224, 0.14);
}
.main-nav .nav-cta {
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  text-shadow: none;
  margin-left: 0.4rem;
}
.main-nav .nav-cta:hover {
  background: var(--copper-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(13, 29, 46, 0.55);
  border: 1px solid rgba(247, 240, 224, 0.4);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: max(100svh, 620px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--cream);
}

.hero-art {
  position: absolute;
  inset: 0;
}
.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.px {
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 21, 34, 0.74) 0%,
    rgba(10, 21, 34, 0.44) 42%,
    rgba(10, 21, 34, 0.05) 68%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7.5rem 0 6rem;
  max-width: 640px;
  margin-left: max(calc((100% - 1160px) / 2), 1.25rem);
  margin-right: 1.25rem;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.9rem, 8.5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero-title .amp {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(247, 240, 224, 0.88);
  max-width: 34rem;
  margin: 1.1rem 0 1.4rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(13, 29, 46, 0.65);
  border: 1px solid rgba(247, 240, 224, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin: 0 0 1.6rem;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8b96a3;
  flex: 0 0 auto;
}
.status-badge.is-open .status-dot {
  background: #62c48a;
  box-shadow: 0 0 0 4px rgba(98, 196, 138, 0.22);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.status-badge.is-closed .status-dot {
  background: #d98a5a;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(98, 196, 138, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(98, 196, 138, 0.08);
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247, 240, 224, 0.75);
  padding: 0.5rem;
  border-radius: 50%;
  animation: hint-bob 2.6s ease-in-out infinite;
}
.scroll-hint:hover {
  color: var(--cream);
}

@keyframes hint-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* Hero-SVG-Animationen */

.tw {
  animation: twinkle 3.6s ease-in-out infinite;
}
.tw-2 {
  animation-delay: 1.2s;
}
.tw-3 {
  animation-delay: 2.3s;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.25;
  }
}

.cloud-a {
  animation: drift 46s linear infinite alternate;
}
.cloud-b {
  animation: drift 58s linear infinite alternate-reverse;
}
.cloud-c {
  animation: drift 64s linear infinite alternate;
}
@keyframes drift {
  from {
    transform: translateX(-40px);
  }
  to {
    transform: translateX(50px);
  }
}

.wl {
  animation: window-flicker 5s ease-in-out infinite;
}
.wl-2 {
  animation-delay: 1.7s;
}
.wl-3 {
  animation-delay: 3.1s;
}
@keyframes window-flicker {
  0%,
  100% {
    opacity: 0.95;
  }
  50% {
    opacity: 0.55;
  }
}

.shim-a {
  animation: shimmer-x 7s ease-in-out infinite alternate;
}
.shim-b {
  animation: shimmer-x 11s ease-in-out infinite alternate-reverse;
}
.shim-c {
  animation: shimmer-x 9s ease-in-out infinite alternate;
}
@keyframes shimmer-x {
  0% {
    transform: translateX(-26px);
    opacity: 0.28;
  }
  50% {
    opacity: 0.62;
  }
  100% {
    transform: translateX(26px);
    opacity: 0.3;
  }
}

.sun-lane {
  animation: lane-breathe 6s ease-in-out infinite;
  transform-origin: 1042px 500px;
}
@keyframes lane-breathe {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.85;
  }
  50% {
    transform: scaleX(1.18);
    opacity: 1;
  }
}

.boat {
  animation: boat-bob 7s ease-in-out infinite;
}
@keyframes boat-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0.001deg);
  }
  50% {
    transform: translateY(-7px) rotate(-0.4deg);
  }
}
.mast-light {
  animation: twinkle 2.8s ease-in-out infinite;
}

.buoy {
  animation: boat-bob 5.4s ease-in-out infinite;
  animation-delay: 0.9s;
}

.bulb {
  animation: bulb-glow 3.4s ease-in-out infinite;
}
.bulb.b2 {
  animation-delay: 1.1s;
}
.bulb.b3 {
  animation-delay: 2.2s;
}
@keyframes bulb-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.flame {
  transform-origin: center bottom;
  animation: flame-flicker 1.6s ease-in-out infinite;
}
.flame-b {
  animation-delay: 0.5s;
}
@keyframes flame-flicker {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  30% {
    transform: scale(1.12, 0.94) rotate(-2.5deg);
  }
  65% {
    transform: scale(0.92, 1.1) rotate(2deg);
  }
}

.candle-glow {
  animation: bulb-glow 2.2s ease-in-out infinite;
}
.lantern {
  animation: window-flicker 4s ease-in-out infinite;
}

.gull-a {
  animation: gull-fly 13s ease-in-out infinite alternate;
}
.gull-b {
  animation: gull-fly 17s ease-in-out infinite alternate-reverse;
}
@keyframes gull-fly {
  from {
    transform: translate(-50px, 8px);
  }
  to {
    transform: translate(70px, -14px);
  }
}

/* ---------- Intro ---------- */

.intro {
  padding: 5.5rem 0;
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}
.intro-text {
  font-size: 1.06rem;
  color: var(--ink-soft);
}
.intro-text p + p {
  margin-top: 1em;
}

/* ---------- Speisekarte ---------- */

.menu-section {
  padding: 5.5rem 0 4.5rem;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}

.menu-note-hand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--copper-dark);
  max-width: 38rem;
  margin: -1.2rem 0 1.9rem;
}

.menu-stand {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #948b75;
}

.filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.filterbar-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 0.2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font: 600 0.9rem/1 var(--sans);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition:
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.15s var(--ease);
}
.chip:hover {
  border-color: var(--copper);
  transform: translateY(-1px);
}
.chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.chip-reset {
  border-style: dashed;
  color: var(--ink-soft);
}

.filter-count {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-left: 0.3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem 3.4rem;
}

.course-title {
  font-size: 1.55rem;
  color: var(--ink);
  border-bottom: 2px solid var(--copper);
  display: inline-block;
  padding-bottom: 0.35rem;
  margin-bottom: 1.1rem;
}

.dish-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dish {
  padding: 0.95rem 0;
  border-bottom: 1px dashed var(--line);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.dish:last-child {
  border-bottom: 0;
}
.dish.is-hiding {
  opacity: 0;
  transform: translateY(6px) scale(0.985);
}
.dish.is-entering {
  opacity: 0;
  transform: translateY(6px) scale(0.985);
}

.dish-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.dish-name {
  font-size: 1.08rem;
  font-weight: 600;
}
.dish-unit {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.allergens {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--copper-dark);
  letter-spacing: 0.04em;
}
.dish-dots {
  flex: 1;
  border-bottom: 2px dotted var(--copper-soft);
  transform: translateY(-4px);
  min-width: 1.2rem;
}
.dish-price {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.dish-price::after {
  content: " €";
  font-size: 0.85em;
  color: var(--ink-soft);
}

.dish-desc {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0.25rem 0 0;
  max-width: 34rem;
}

.dish-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.55rem 0 0;
  padding: 0;
}
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.tag-veg {
  background: rgba(93, 125, 84, 0.16);
  color: #43603c;
}
.tag-vgn {
  background: rgba(93, 125, 84, 0.3);
  color: #35502f;
}
.tag-gf {
  background: rgba(185, 121, 63, 0.16);
  color: var(--copper-dark);
}

.menu-empty {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--paper);
  border: 1px dashed var(--copper-soft);
  border-radius: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

.allergen-note {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  max-width: 56rem;
}
.allergen-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

/* ---------- Wochenkarte ---------- */

.week-section {
  padding: 5.5rem 0;
  background: var(--ink);
  color: var(--cream);
}
.week-section .kicker {
  color: var(--gold);
}
.week-section .section-sub {
  color: rgba(247, 240, 224, 0.72);
}

.week-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(247, 240, 224, 0.16);
}

.week-day {
  display: grid;
  grid-template-columns: 9rem 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.15rem 0.8rem;
  border-bottom: 1px solid rgba(247, 240, 224, 0.16);
  border-radius: 10px;
  transition: background-color 0.25s var(--ease);
}
.week-day:hover {
  background: rgba(247, 240, 224, 0.05);
}

.week-day.is-today {
  background: rgba(185, 121, 63, 0.2);
  border-bottom-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--copper);
}
.week-day.is-today .week-day-name::after {
  content: "heute";
  display: inline-block;
  margin-left: 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--copper);
  color: #fff;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  transform: translateY(-2px);
}

.week-day-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--gold);
}
.week-dish h3 {
  font-size: 1.08rem;
}
.week-dish p {
  font-size: 0.9rem;
  color: rgba(247, 240, 224, 0.7);
  margin: 0.2rem 0 0;
}
.week-dish .allergens {
  color: var(--copper-soft);
}
.week-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  white-space: nowrap;
}
.week-note {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(247, 240, 224, 0.72);
}

/* ---------- Reservierung ---------- */

.resv-section {
  padding: 5.5rem 0;
  background: var(--paper);
}

.resv-app {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.resv-steps {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.resv-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
}
.resv-step-num {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--cream-3);
  color: var(--ink-soft);
  font-size: 0.85rem;
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.resv-step.is-active {
  color: var(--ink);
}
.resv-step.is-active .resv-step-num {
  background: var(--copper);
  color: #fff;
}
.resv-step.is-done .resv-step-num {
  background: var(--green);
  color: #fff;
  font-size: 0;
}
.resv-step.is-done .resv-step-num::before {
  content: "✓";
  font-size: 0.85rem;
}

.resv-body {
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
}

.resv-panel[hidden] {
  display: none;
}
.resv-panel {
  animation: panel-in 0.35s var(--ease);
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.field-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field-full {
  grid-column: 1 / -1;
}
.field label,
.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.req {
  color: var(--red);
}
.opt {
  font-weight: 400;
  color: #8b8474;
}

.input {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.input:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(185, 121, 63, 0.2);
}
textarea.input {
  resize: vertical;
  min-height: 5.2rem;
}

.stepper {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
}
.stepper-btn {
  flex: 0 0 3rem;
  font: 600 1.25rem/1 var(--sans);
  color: var(--copper-dark);
  background: var(--cream-2);
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s var(--ease);
}
.stepper-btn:hover {
  background: var(--cream-3);
}
.stepper-btn:disabled {
  color: #b9b0a0;
  cursor: not-allowed;
}
.stepper-value {
  flex: 1;
  display: grid;
  place-items: center;
  font: 600 1.1rem/1 var(--sans);
  padding: 0.7rem 0;
}

.field-hint {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0.9rem 0 0;
}
.field-error {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(162, 49, 62, 0.08);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 0.6rem 0.9rem;
  margin: 1rem 0 0;
}

.resv-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.6rem;
}
.resv-group-hint {
  margin-right: auto;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 22rem;
}

.resv-context {
  display: inline-block;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}
.resv-context strong {
  color: var(--ink);
}

/* Grundriss */

.plan-wrap {
  margin-top: 0.4rem;
}
.floorplan {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  display: block;
}

.plan-zone-label {
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: #a09577;
}
.plan-water-label {
  fill: #6b93a5;
}
.plan-fixture-label {
  font: 600 12px/1 var(--sans);
  fill: #fff;
  text-anchor: middle;
  letter-spacing: 0.06em;
}
.plan-fixture-dark {
  fill: #8b7f63;
}

.table-g {
  cursor: pointer;
}
.table-g .table-shape {
  fill: var(--paper);
  stroke: var(--copper);
  stroke-width: 2.5;
  transition:
    fill 0.2s var(--ease),
    stroke 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.table-g .table-chair {
  fill: #cbbb98;
  transition: fill 0.2s var(--ease);
}
.table-g .table-label {
  font: 700 12px/1 var(--sans);
  fill: var(--ink);
  text-anchor: middle;
  pointer-events: none;
}
.table-g .table-seats {
  font: 500 9.5px/1 var(--sans);
  fill: var(--ink-soft);
  text-anchor: middle;
  pointer-events: none;
}
.table-g:hover .table-shape {
  fill: #fdf3df;
}
.table-g:focus-visible {
  outline: none;
}
.table-g:focus-visible .table-shape {
  stroke: var(--ink);
  stroke-width: 3.5;
}

.table-g.is-selected .table-shape {
  fill: var(--copper);
  stroke: var(--copper-dark);
}
.table-g.is-selected .table-label,
.table-g.is-selected .table-seats {
  fill: #fff;
}
.table-g.is-selected .table-chair {
  fill: var(--copper-soft);
}

.table-g.is-occupied,
.table-g.is-small {
  cursor: not-allowed;
}
.table-g.is-occupied .table-shape {
  fill: #d9d2c2;
  stroke: #b3aa95;
  stroke-dasharray: none;
}
.table-g.is-occupied .table-label,
.table-g.is-occupied .table-seats {
  fill: #948b75;
}
.table-g.is-occupied .table-chair {
  fill: #d3cab4;
}

.table-g.is-small .table-shape {
  fill: var(--paper);
  stroke: #c4baa2;
  stroke-dasharray: 5 4;
}
.table-g.is-small .table-label,
.table-g.is-small .table-seats {
  fill: #a89e85;
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.plan-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.leg-swatch {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 2px solid var(--copper);
  background: var(--paper);
  flex: 0 0 auto;
}
.leg-selected {
  background: var(--copper);
  border-color: var(--copper-dark);
}
.leg-occupied {
  background: #d9d2c2;
  border-color: #b3aa95;
}
.leg-small {
  border-style: dashed;
  border-color: #c4baa2;
}

/* Bestätigung */

.resv-confirm {
  text-align: center;
  padding: 1rem 0.5rem;
}
.confirm-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(93, 125, 84, 0.15);
  color: var(--green);
  animation: confirm-pop 0.5s var(--ease);
}
@keyframes confirm-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.resv-confirm h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}
.confirm-code {
  color: var(--ink-soft);
}
.confirm-code strong {
  font-family: var(--serif);
  color: var(--copper-dark);
  letter-spacing: 0.08em;
}

.confirm-summary {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 0.35rem 1.6rem;
  margin: 1.4rem auto;
  padding: 1.2rem 1.6rem;
  max-width: 30rem;
  background: var(--cream-2);
  border-radius: 14px;
  text-align: left;
  font-size: 0.95rem;
}
.confirm-summary dt {
  font-weight: 600;
  color: var(--ink-soft);
}
.confirm-summary dd {
  margin: 0;
}

.confirm-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1.4rem;
}

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

.gallery-section {
  padding: 5.5rem 0;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.gallery-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -18px rgba(19, 41, 63, 0.3);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -20px rgba(19, 41, 63, 0.45);
}
.gallery-card svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover svg {
  transform: scale(1.04);
}
.gallery-card figcaption {
  padding: 0.85rem 1.1rem;
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  position: relative;
  z-index: 1;
}

/* ---------- Anfahrt ---------- */

.visit-section {
  padding: 5.5rem 0;
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.6rem;
  align-items: start;
}

.visit-map svg {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-label {
  font: 600 13px/1 var(--sans);
  fill: #7d7357;
}
.map-water {
  fill: #5c8296;
  font-style: italic;
}
.map-small {
  font-size: 10.5px;
  font-weight: 500;
}
.map-strong {
  font-family: var(--serif);
  font-size: 15px;
  fill: var(--ink);
  font-weight: 700;
}
.map-marker {
  animation: marker-bob 3s ease-in-out infinite;
  transform-origin: 262px 244px;
}
@keyframes marker-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.visit-info {
  display: grid;
  gap: 1.8rem;
}
.visit-address {
  font-style: normal;
}
.visit-address h3 {
  margin-bottom: 0.4rem;
}
.visit-address p {
  color: var(--ink-soft);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.7rem;
  font-size: 0.94rem;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid var(--line);
}
.hours-table th {
  font-weight: 600;
  color: var(--ink-soft);
  width: 8.5rem;
}
.hours-table tr.is-today th,
.hours-table tr.is-today td {
  background: rgba(185, 121, 63, 0.12);
  color: var(--ink);
  font-weight: 600;
}
.hours-table tr.is-today th {
  border-radius: 8px 0 0 8px;
}
.hours-table tr.is-today td {
  border-radius: 0 8px 8px 0;
}
.hours-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

.visit-how ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.visit-how li {
  padding-left: 1.1rem;
  position: relative;
}
.visit-how li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-deep);
  color: rgba(247, 240, 224, 0.8);
  padding: 3.4rem 0 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.4fr;
  gap: 2.4rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.footer-brand em {
  font-style: italic;
  color: var(--gold);
}
.footer-tag {
  font-size: 0.9rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-nav a {
  color: rgba(247, 240, 224, 0.8);
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-meta {
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-meta strong {
  color: var(--cream);
}

/* ---------- Demo-Ribbon (Standard) ---------- */

.demo-ribbon {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 18, 22, 0.85);
  color: #fff;
  font:
    500 12px/1 system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.85;
}
.demo-ribbon:hover,
.demo-ribbon:focus-visible {
  opacity: 1;
}
@media print {
  .demo-ribbon {
    display: none;
  }
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1000px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1.25rem;
    left: 1.25rem;
    background: rgba(13, 29, 46, 0.97);
    border: 1px solid rgba(247, 240, 224, 0.15);
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.25s var(--ease),
      transform 0.25s var(--ease);
  }
  .main-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }
  .main-nav .nav-cta {
    margin: 0.4rem 0 0;
    text-align: center;
  }

  .field-grid,
  .field-grid-2 {
    grid-template-columns: 1fr;
  }
  .resv-step-label {
    display: none;
  }
  .resv-step {
    gap: 0;
    padding: 0.85rem 0.4rem;
  }
  .resv-group-hint {
    max-width: none;
    flex-basis: 100%;
  }
  .resv-actions {
    justify-content: stretch;
  }
  .resv-actions .btn {
    flex: 1;
  }

  .week-day {
    grid-template-columns: 1fr auto;
    grid-template-areas: "day price" "dish dish";
    gap: 0.4rem 1rem;
  }
  .week-day-name {
    grid-area: day;
  }
  .week-dish {
    grid-area: dish;
  }
  .week-price {
    grid-area: price;
  }

  .hero-content {
    padding: 6.5rem 0 5.5rem;
  }
  .confirm-summary {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .confirm-summary dt {
    margin-top: 0.6rem;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .dish-head {
    flex-wrap: wrap;
  }
  .dish-dots {
    min-width: 0.6rem;
  }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tw,
  .cloud-a,
  .cloud-b,
  .cloud-c,
  .wl,
  .shim-a,
  .shim-b,
  .shim-c,
  .sun-lane,
  .boat,
  .buoy,
  .mast-light,
  .bulb,
  .flame,
  .flame-b,
  .candle-glow,
  .lantern,
  .gull-a,
  .gull-b,
  .scroll-hint,
  .map-marker,
  .status-badge.is-open .status-dot,
  .confirm-icon {
    animation: none !important;
  }

  .btn,
  .chip,
  .gallery-card,
  .gallery-card svg,
  .dish,
  [data-reveal],
  .resv-panel,
  .week-day {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .gallery-card:hover {
    transform: none;
  }
  .gallery-card:hover svg {
    transform: none;
  }
}
