/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Core palette – warm, dark, rustic */
  --deep:       #0c0a06;
  --dark:       #141008;
  --surface:    #1d1710;
  --surface-2:  #251e14;
  --surface-3:  #2f2418;

  --gold:       #c8902a;
  --gold-light: #dba858;
  --gold-dim:   #7a5618;

  --wine:       #7a1f1f;

  --cream:      #f0dfc0;
  --cream-2:    #d4c4a0;
  --muted:      #9a8060;
  --muted-2:    #6a5840;

  --border:     #2a2015;
  --border-2:   #3a2e1c;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:      1200px;
  --pad:        1.25rem;
  --section-y:  5.5rem;

  /* Transitions */
  --ease: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   GLOBAL TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--deep);
  border: 2px solid var(--gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid rgba(240, 223, 192, 0.38);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--cream);
  background-color: rgba(240, 223, 192, 0.06);
}

.btn-full { width: 100%; }

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

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  background-color: var(--gold-dim);
  color: var(--gold-light);
  border-radius: 2px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background-color var(--ease), padding var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
  /* Nav is always solid black (not just after scrolling) */
  background-color: rgba(12, 10, 6, 0.96);
  border-bottom-color: var(--border);
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself
   would make it the containing block for the fixed fullscreen nav overlay */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.scrolled {
  padding: 0.875rem 0;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}
.logo-geo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.logo-en {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--cream-2);
}

/* Desktop nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 0.5rem 0.875rem;
  border-radius: 2px;
  transition: color var(--ease);
}
.nav-link:hover { color: var(--cream); }

.nav-cta {
  background-color: var(--gold);
  color: var(--deep) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background-color: var(--gold-light);
  color: var(--deep) !important;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
}

.bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--cream);
  transition: var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background-color: var(--deep);
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 100;
}
.nav-links.open .nav-link {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}
.nav-links.open .nav-cta {
  font-size: 0.9rem;
  padding: 0.875rem 2.5rem;
  margin-top: 1rem;
  margin-left: 0;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 60%;
  animation: hero-zoom 8s ease forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow {
  animation: fade-up 0.8s ease both;
  animation-delay: 0.4s;
}

.hero-title {
  animation: fade-up 0.9s ease both;
  animation-delay: 0.7s;
}

.hero-ctas {
  animation: fade-up 0.8s ease both;
  animation-delay: 1s;
}

.hero-scroll {
  animation: fade-in 1s ease both;
  animation-delay: 1.5s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 0, 0.25) 0%,
    rgba(8, 6, 0, 0.45) 50%,
    rgba(8, 6, 0, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 6rem var(--pad) 4rem;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  font-weight: 500;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 6px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scroll hint arrow */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  z-index: 1;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll svg {
  width: 28px;
  height: 28px;
}

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

/* ============================================================
   QUICK INFO BAR
   ============================================================ */
.quick-info {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.info-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.info-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.info-value {
  font-size: 0.875rem;
  color: var(--cream);
}

.info-note {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

.info-phone {
  color: var(--gold-light);
  transition: color var(--ease);
}
.info-phone:hover { color: var(--cream); }

.info-divider {
  height: 1px;
  background-color: var(--border);
}

@media (min-width: 640px) {
  .info-grid {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .info-item {
    flex: 1;
    justify-content: center;
    padding: 0.25rem 1.5rem;
  }
  .info-divider {
    width: 1px;
    height: 42px;
    flex-shrink: 0;
  }
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: var(--section-y) 0;
  background-color: var(--dark);
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.menu-tab:hover {
  color: var(--cream);
  border-color: var(--border-2);
}
.menu-tab.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}

/* Panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

/* Cards */
.menu-card {
  display: flex;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.menu-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.menu-card.featured {
  border-color: var(--gold-dim);
}

.menu-card-img {
  width: 110px;
  flex-shrink: 0;
  background: #ffffff;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
}

@media (min-width: 768px) {
  .menu-card-img { width: 130px; }
}

/* Food photo thumbnails (fill the frame, unlike contained bottle PNGs) */
.menu-card-img--photo img {
  object-fit: cover;
  padding: 0;
}

.menu-card-body {
  padding: 1rem 1.125rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.menu-card-row {
  display: flex;
  /* wrap so a nowrap price never overflows the card on narrow screens */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.4rem 0.75rem;
}
.menu-card-row .menu-card-price { margin-left: auto; }

.menu-card-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.menu-card-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.125rem;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: var(--section-y) 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

/* Centered intro header */
.about-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 4.5rem;
  }
}

/* Visual block — stacked image pair, sticky alongside the text on desktop */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .about-visual {
    position: sticky;
    top: 96px;
  }
}

.about-img {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.about-img--1 {
  aspect-ratio: 3 / 2;
  background-image: url('images/about.jpg');
}
.about-img--2 {
  aspect-ratio: 16 / 10;
  background-image: url('images/about-2.jpg');
  margin-left: 2rem;
}

@media (max-width: 899px) {
  .about-img--2 { margin-left: 0; }
}

/* Content */
.about-content { max-width: 600px; }

.about-text {
  font-size: 0.98rem;
  color: var(--cream-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Lead / welcome paragraph */
.about-lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-lead::first-letter {
  color: var(--gold);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border: 1px solid var(--border-2);
  color: var(--muted);
  border-radius: 2px;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  background-color: rgba(200, 144, 42, 0.05);
  border-radius: 0 4px 4px 0;
}
.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.about-quote footer {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESERVATIONS
   ============================================================ */
.photo-strip {
  display: flex;
  height: 260px;
  overflow: hidden;
}

.photo-strip-item {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .photo-strip { height: 180px; }
}

.reserve-section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.reserve-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/reserve.jpg');
  background-size: cover;
  background-position: center 40%;
}
.reserve-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 2, 0.68);
}

.reserve-section .container { position: relative; z-index: 1; }

.reserve-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .reserve-cards {
    flex-direction: row;
    align-items: stretch;
  }
}

.reserve-card {
  flex: 1;
  background-color: rgba(29, 23, 16, 0.85);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.reserve-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.reserve-icon svg {
  width: 100%;
  height: 100%;
}

.reserve-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.625rem;
}

.reserve-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
}

/* Divider between cards */
.reserve-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 1rem;
  flex-shrink: 0;
}
.reserve-divider::before,
.reserve-divider::after {
  content: '';
  background-color: var(--border);
  flex: 1;
}

/* On mobile: horizontal rule */
.reserve-divider::before,
.reserve-divider::after { height: 1px; width: auto; }

/* On desktop: vertical rule */
@media (min-width: 600px) {
  .reserve-divider {
    flex-direction: column;
    width: 48px;
  }
  .reserve-divider::before,
  .reserve-divider::after {
    height: auto;
    width: 1px;
    flex: 1;
  }
}

/* ============================================================
   CONTACT & MAP
   ============================================================ */
.contact-section {
  padding: var(--section-y) 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-list {
  margin: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item .info-icon {
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-item strong {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item span,
.contact-item a {
  font-size: 0.925rem;
  color: var(--cream-2);
  line-height: 1.55;
}
.contact-item a:hover { color: var(--cream); }

/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: color var(--ease), border-color var(--ease);
}
.social-link svg {
  width: 15px;
  height: 15px;
}
.social-link:hover {
  color: var(--cream);
  border-color: var(--border-2);
}

/* Map */
.contact-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
}
.contact-map iframe {
  filter: grayscale(25%) contrast(1.05) brightness(0.82);
  transition: filter var(--ease);
}
.contact-map:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(0.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 560px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 2rem;
  }
}

.footer-brand .logo-geo {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--cream); }

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}
.footer-contact a:hover { color: var(--cream); }

/* Awards (tip Berlin badges) */
.footer-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}
.footer-award {
  display: block;
  line-height: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.footer-award img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: block;
}
.footer-award:hover { transform: translateY(-2px); opacity: 0.9; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.72rem;
  color: var(--muted-2);
}
.footer-bottom a:hover { color: var(--muted); }

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.footer-cookie-btn:hover { color: var(--muted); }

/* ============================================================
   SCROLL-IN ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for menu cards */
.menu-card:nth-child(2) { transition-delay: 0.08s; }
.menu-card:nth-child(3) { transition-delay: 0.16s; }
.menu-card:nth-child(4) { transition-delay: 0.24s; }
.menu-card:nth-child(5) { transition-delay: 0.32s; }
.menu-card:nth-child(6) { transition-delay: 0.40s; }
.menu-card:nth-child(7) { transition-delay: 0.48s; }
.menu-card:nth-child(8) { transition-delay: 0.56s; }

/* ============================================================
   SIGNATURE TILES (index "Spezialitäten" grid — image + name only;
   price/desc stay in the hidden .sig-meta so the dish popup keeps working)
   ============================================================ */
.sig-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}
@media (min-width: 900px) {
  .sig-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem; }
}

.sig-grid .menu-card {
  flex-direction: column;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
}
/* the card itself no longer lifts (its transition-delay is used by the
   staggered reveal) — hover motion lives on the inner image tile */
.sig-grid .menu-card:hover {
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.sig-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 0.55s var(--ease);
}
.sig-grid .menu-card:hover .sig-img {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-dim);
}
.sig-grid .menu-card:hover .sig-img img { transform: scale(1.07); }

.sig-img--bottle img { padding: 6px; }

.sig-badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #1a1512;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 3px;
}

.sig-grid .menu-card-name {
  display: block;
  text-align: center;
  margin-top: 0.9rem;
  font-size: 1.08rem;
}
.sig-grid .menu-card-name::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  margin: 0.55rem auto 0;
  background: var(--gold-dim);
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}
.sig-grid .menu-card:hover .menu-card-name::after {
  width: 60px;
  background: var(--gold);
}

/* Drink additive marks (asterisks from the printed beverage menu) */
.drink-mark {
  font-size: 0.7em;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.drinks-footnote {
  margin-top: 2rem;
  font-size: 0.8rem;
}
.drinks-footnote--marks { margin-top: 0.5rem; }
.legend-list--drinks { grid-template-columns: 1fr; }
.legend-list--drinks .lg-code { min-width: 3.2em; letter-spacing: 0.08em; }
.allergen-modal-outro { margin-top: 1rem; }

/* awards row relocated to the bottom of the Guest Reviews section (index) */
.reviews-awards {
  border-top: none;
  margin-top: 2.25rem;
  padding: 0;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border-2);
}

.lang-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 0.25rem 0.375rem;
  border-radius: 2px;
  transition: color var(--ease), background-color var(--ease);
  cursor: pointer;
}
.lang-btn:hover  { color: var(--cream); }
.lang-btn.active { color: var(--gold);  }

.lang-sep {
  font-size: 0.6rem;
  color: var(--border-2);
  user-select: none;
}

/* Mobile: lang switcher in open nav */
.nav-links.open .lang-switcher {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  gap: 0.75rem;
}
.nav-links.open .lang-btn { font-size: 0.9rem; padding: 0.4rem 0.75rem; }

/* ============================================================
   DELIVERY SECTION
   ============================================================ */
.delivery-section {
  padding: var(--section-y) 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .delivery-grid { grid-template-columns: repeat(3, 1fr); }
}

.delivery-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.delivery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.delivery-wolt:hover    { border-color: #009de0; }
.delivery-ubereats:hover { border-color: #06c167; }
.delivery-lieferando:hover { border-color: #ff8800; }

.delivery-logo svg { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; }

.delivery-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.delivery-info strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}
.delivery-info span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.delivery-arrow {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color var(--ease), transform var(--ease);
}
.delivery-card:hover .delivery-arrow {
  color: var(--cream);
  transform: translateX(3px);
}

/* Menu CTA link */
.menu-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-section {
  padding: var(--section-y) 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

/* Half star for the 4.5 rating — gold left half, dimmed right half */
.star-half {
  position: relative;
  display: inline-block;
  color: var(--gold-dim);
  letter-spacing: 0;
}
.star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}

.reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 1rem;
  flex: 1;
  padding-bottom: 0.25rem;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 calc(50% - 0.5rem); }
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.review-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.65;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.review-source {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-date {
  font-size: 0.68rem;
  color: var(--muted-2);
}

.reviews-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease), border-color var(--ease), background-color var(--ease);
}
.reviews-btn svg { width: 18px; height: 18px; }
.reviews-btn:hover {
  color: var(--cream);
  border-color: var(--border-2);
  background-color: var(--surface-3);
}
.reviews-btn:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 479px) {
  .reviews-btn { display: none; }
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--border-2);
  border: none;
  cursor: pointer;
  transition: background-color var(--ease), transform var(--ease);
  padding: 0;
}
.reviews-dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   SOCIAL / QR CODE
   ============================================================ */
.social-section {
  padding: var(--section-y) 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.social-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.social-desc {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.social-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 600px) {
  .social-cards {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.social-platform-card {
  background-color: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: border-color 0.2s var(--ease);
}

.social-platform-card--ig:hover { border-color: #c05a8a; }
.social-platform-card--fb:hover { border-color: #4a7fd4; }
.social-platform-card--tt:hover { border-color: #25f4ee; }

.spc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.social-platform-card--ig .spc-icon {
  background: linear-gradient(135deg, #833ab4, #c05a8a, #fd6a3a);
  color: #fff;
}
.social-platform-card--fb .spc-icon {
  background: #1877f2;
  color: #fff;
}
.social-platform-card--tt .spc-icon {
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(37, 244, 238, 0.5);
}
.spc-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.spc-platform {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.spc-handle {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.spc-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.qr-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

#qr-canvas {
  border-radius: 4px;
  display: block;
  background: #fff;
  padding: 6px;
}

.spc-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  margin: 0.5rem 0;
}
.spc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spc-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  font-size: 0.78rem;
}

/* ============================================================
   FEEDBACK FORM
   ============================================================ */
.feedback-section {
  padding: var(--section-y) 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .feedback-grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; }
}

.feedback-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.feedback-badge {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.feedback-badge .stars-sm {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.feedback-badge span:last-child { font-size: 0.75rem; color: var(--cream-2); }

/* Form elements */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--cream);
  background-color: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* Star rating input */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}
.star-rating input { display: none; }
.star-rating label {
  font-size: 1.75rem;
  color: var(--border-2);
  cursor: pointer;
  transition: color var(--ease);
  letter-spacing: 0;
  text-transform: none;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}

/* Form state messages */
.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  border-radius: 3px;
  font-size: 0.875rem;
}
.form-success:not([hidden]),
.form-error:not([hidden]) {
  display: flex;
}
.form-success {
  background-color: rgba(200, 144, 42, 0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-error {
  background-color: rgba(122,31,31,0.2);
  border: 1px solid var(--wine);
  color: #e08080;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page body,
body.menu-page { background-color: var(--dark); }

.menu-page-main {
  padding-top: 72px;
}

.menu-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/menu-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(6, 4, 2, 0.6) 0%,
    rgba(6, 4, 2, 0.75) 100%
  );
}

.menu-hero-content {
  position: relative;
  z-index: 1;
}

.menu-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.menu-hero-desc {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--cream-2);
  line-height: 1.7;
  max-width: 520px;
}

.menu-inline-banner {
  height: 370px;
  margin: 0 calc(-1 * var(--pad)) 3.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.menu-inline-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 2, 0.3);
}
/* iOS Safari can't render fixed backgrounds — on touch/small screens the
   parallax is done in JS instead (initBannerParallax + .parallax-mobile) */
@media (max-width: 1024px), (hover: none) {
  .menu-inline-banner,
  .menu-photo-banner {
    background-attachment: scroll;
  }
}

/* JS-driven mobile parallax: the image moves on a ::before layer with
   vertical bleed, shifted via --plx (set from scroll position) */
.parallax-mobile {
  overflow: hidden;
}
.parallax-mobile::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -48px;
  bottom: -48px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: translateY(var(--plx, 0px));
  will-change: transform;
}
@media (max-width: 600px) {
  .menu-inline-banner {
    height: 200px;
    margin-bottom: 2.5rem;
  }
}

.menu-photo-banner {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.menu-photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 2, 0.35);
}

@media (max-width: 600px) {
  .menu-photo-banner {
    height: 150px;
    background-attachment: scroll;
  }
}

/* Jump nav (mobile category anchor links) */
.menu-jump-nav {
  position: sticky;
  top: 60px;
  z-index: 50;
  background-color: var(--deep);
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--pad);
}
.menu-jump-nav::-webkit-scrollbar { display: none; }

.jump-link {
  flex-shrink: 0;
  padding: 0.875rem 1.125rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.jump-link:hover,
.jump-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-page-content {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.menu-category {
  margin-bottom: 3.5rem;
  scroll-margin-top: 110px;
}

.menu-category-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 300;
  color: var(--cream);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.menu-category-note {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.menu-list-item {
  display: flex;
  gap: 0;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--ease);
}
.menu-list-item { cursor: pointer; }
.menu-list-item:hover { border-color: var(--border-2); }
.menu-list-item.featured { border-color: var(--gold-dim); }

.mli-img {
  width: 130px;
  height: 130px;              /* fixed square box — portrait bottles must not stretch the row */
  align-self: flex-start;
  flex-shrink: 0;
  background: #ffffff;
}

@media (min-width: 480px) { .mli-img { width: 175px; height: 175px; } }

/* Dish-size tiers: every thumbnail BOX stays the same size (rows stay aligned);
   only the food inside scales, so a palm-size dish reads smaller than a big platter. */
.mli-img--s1 img { transform: scale(0.60); }
.mli-img--s2 img { transform: scale(0.70); }
.mli-img--s3 img { transform: scale(0.80); }
.mli-img--s4 img { transform: scale(0.88); }
.mli-img--s5 img { transform: scale(0.95); }
.mli-img--s6 img { transform: scale(1.00); }

.mli-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}

/* Collapsible wines — show name + price + a "Show details" hint; reveal the rest on click */
.wine-collapsible { cursor: pointer; }

/* menu.html wine-row summary: price + hint stacked, right-aligned */
.wine-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  padding-top: 0.125rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.wine-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
}

/* multi-line visible price block in the wine summary (glass + bottle + takeaway) */
.wine-summary .wine-price-multi {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1.5;
  text-align: right;
}
.wine-summary .wine-price-multi .mli-takeaway { color: var(--muted); }

/* country divider inside a wine list (Georgien / Italien / …) */
.wine-country-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.1rem 0 0.1rem;
  padding-left: 0.25rem;
}
.wine-country-title:first-child { margin-top: 0; }

/* short wine descriptor visible on the card (trocken, Kachetien, …) */
.mli-wine-tags {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
  margin-top: -0.15rem;
}

/* "Show details ⌄" affordance */
.wine-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.wine-collapsible:hover .wine-hint { color: var(--gold); }

.wine-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.wine-collapsible.is-open .wine-chevron { transform: rotate(180deg); }

.wine-details {
  display: none;
  margin-top: 0.5rem;
}
.wine-collapsible.is-open .wine-details { display: block; }
.wine-details .mli-price-multi { margin-bottom: 0.5rem; }

/* index.html signature wine cards */
.menu-card--wine .wine-hint { margin-top: 0.1rem; }
.menu-card--wine .wine-details { margin-top: 0.4rem; }

.menu-subsection-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold-dim);
}
.menu-subsection-title:first-child { margin-top: 0; }

.mli-price-multi {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1.5;
  text-align: right;
}

.mli-body {
  flex: 1;
  min-width: 0; /* let long names wrap instead of pushing the price past the card edge */
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mli-row {
  display: flex;
  /* wrap lets a wide nowrap price block drop below a long name instead of
     being clipped by the card's overflow: hidden */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.4rem 0.75rem;
}
/* keep price blocks right-aligned even when they wrap to their own line */
.mli-row .mli-price,
.mli-row .mli-price-multi,
.mli-row .wine-summary {
  margin-left: auto;
}

.mli-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

.mli-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.mli-grundpreis {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.6;
}

.mli-takeaway {
  display: block;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.mli-takeaway [data-i18n] {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-right: 0.35rem;
}
.mli-takeaway .mli-grundpreis {
  color: var(--gold);
}

.mli-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.mli-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.mli-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--border);
}
.mli-tag--gold {
  background-color: var(--gold-dim);
  color: var(--gold-light);
  border-color: transparent;
}
.mli-tag--vegan {
  background-color: rgba(45, 130, 70, 0.18);
  color: #5dba7d;
  border-color: rgba(93, 186, 125, 0.35);
}
.mli-tag--vegan::before {
  content: "🌿\00a0";
}
.mli-tag--vegetarian {
  background-color: rgba(100, 175, 100, 0.15);
  color: #8ecb8e;
  border-color: rgba(142, 203, 142, 0.3);
}
.mli-tag--vegetarian::before {
  content: "🌿\00a0";
}

.allergen-note {
  font-size: 0.8rem;
  color: var(--muted-2);
  line-height: 1.6;
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* Sticky bottom CTA on menu page */
.menu-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background-color: rgba(12, 10, 6, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.875rem var(--pad);
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.menu-sticky-cta .btn { flex: 1; max-width: 220px; min-width: 0; }
@media (max-width: 420px) {
  .menu-sticky-cta { gap: 0.5rem; }
  .menu-sticky-cta .btn {
    padding: 0.875rem 0.5rem;
    letter-spacing: 0.06em;
    font-size: 0.76rem;
  }
}

/* ============================================================
   FORM FIELD VALIDATION STATES
   ============================================================ */
.form-group input.field-error,
.form-group textarea.field-error {
  border-color: #c0393b;
  background-color: rgba(192, 57, 59, 0.06);
}
.form-group input.field-error:focus,
.form-group textarea.field-error:focus {
  border-color: #c0393b;
  outline-color: #c0393b;
}

.field-error-msg {
  display: block;
  font-size: 0.72rem;
  color: #e07070;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ── DISH MODAL ────────────────────────────────────── */
.dish-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modal-fade-in 0.18s ease;
}
.dish-modal-overlay[hidden] { display: none; }

@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.dish-modal-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  max-width: 700px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  animation: modal-slide-up 0.22s ease;
}

@keyframes modal-slide-up {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.dish-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50%;
  color: #ffffff !important;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.dish-modal-close:hover {
  color: #ffffff !important;
  border-color: var(--gold) !important;
  background: rgba(20, 14, 4, 0.9);
}

.dish-modal-img {
  width: 100%;
  height: min(58vh, 540px);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dish-modal-img.no-image { height: 0; }

.dish-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

/* Supra is a full-bleed marble-background PHOTO (not a white-bg cutout).
   Force its modal frame to a true SQUARE (equal width & height via one min())
   so the square image fills it edge-to-edge — no white bars AND no cropping. */
.dish-modal-img:has(img[src*="dish-supra"]) {
  width: min(90vw, 78vh, 620px);
  height: min(90vw, 78vh, 620px);
  max-width: 100%;
  margin: 0 auto;
}
.dish-modal-img img[src*="dish-supra"] {
  object-fit: contain;
  padding: 0;
}

.dish-modal-body {
  padding: 1.5rem 3.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dish-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dish-modal-name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

.dish-modal-price {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
  line-height: 1.7;
  flex-shrink: 0;
}

.dish-modal-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.dish-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface-2);
  border-top: 1px solid var(--gold-dim);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--cream-2);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--deep);
  border: 1px solid var(--gold);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-2);
}

.cookie-btn--decline:hover {
  border-color: var(--muted);
  color: var(--cream-2);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================================
   GOOGLE MAPS CONSENT PLACEHOLDER
   ============================================================ */
.map-placeholder {
  min-height: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-align: center;
}

.map-placeholder .map-note {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
}

.map-load-btn {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  background: var(--gold);
  color: var(--deep);
  border: 1px solid var(--gold);
  transition: background var(--ease), border-color var(--ease);
}

.map-load-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
}

.legal-main h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.legal-main h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin: 2.5rem 0 0.75rem;
}

.legal-main h3 {
  font-size: 1rem;
  color: var(--cream-2);
  margin: 1.5rem 0 0.5rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.legal-main ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-main a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-main .legal-note {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
}

/* ---------- Allergen codes (per-dish red pill) + legend modal ---------- */
.mli-allergens {
  order: 99;                 /* always render after tags = bottom of the card body */
  align-self: flex-end;      /* bottom-RIGHT, under the price */
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background-color: rgba(200, 60, 60, 0.14);
  border: 1px solid rgba(200, 60, 60, 0.32);
  color: #e29393;
  font-size: 0.58rem;
  line-height: 1.2;
}
.mli-allergens-label {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.mli-allergens-codes {
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* allergen entry in the sticky jump-nav — pinned right, always reachable,
   deliberately distinct from the grey food/wine section tabs */
.jump-allergen {
  margin-left: auto;          /* push to the far right of the nav row */
  position: sticky;
  right: 0;                   /* stay pinned while section tabs scroll under it */
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-left: 1px solid var(--border-2);
  border-bottom: 2px solid rgba(200, 60, 60, 0.6);
  background-color: var(--deep);   /* opaque so scrolling tabs pass behind it */
  color: #e29393;
  cursor: pointer;
  box-shadow: -14px 0 14px -8px var(--deep);
}
.jump-allergen svg { width: 0.95rem; height: 0.95rem; flex-shrink: 0; }
.jump-allergen:hover,
.jump-allergen:focus-visible {
  color: #f2a9a9;
  border-bottom-color: #d05456;
}

/* legend modal */
.allergen-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modal-fade-in 0.18s ease;
}
.allergen-modal-overlay[hidden] { display: none; }
.allergen-modal-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  animation: modal-slide-up 0.22s ease;
}
.allergen-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.allergen-modal-close:hover,
.allergen-modal-close:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold);
}
.allergen-modal-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin: 0 1.5rem 0.4rem 0;
  line-height: 1.15;
}
.allergen-modal-intro {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.allergen-modal-sub {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.25rem 0 0.6rem;
}
.allergen-modal-sub:first-of-type { margin-top: 0; }
.legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.1rem;
}
.legend-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--cream-2);
  line-height: 1.4;
}
.lg-code {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0.05rem 0.3rem;
  background: rgba(200, 60, 60, 0.16);
  border: 1px solid rgba(200, 60, 60, 0.32);
  border-radius: 2px;
  color: #e29393;
  font-size: 0.68rem;
  font-weight: 700;
}
@media (max-width: 520px) {
  .legend-list { grid-template-columns: 1fr; }
}
