/* ═══════════════════════════════════════════
   DON CARLO – BELLA ITALIA DESIGN SYSTEM
   ═══════════════════════════════════════════ */

:root {
  --rosso: #8B1A1A;
  --rosso-light: #C0392B;
  --oro: #C8973A;
  --oro-gradient: linear-gradient(135deg, #E6C27A 0%, #C8973A 50%, #A67B27 100%);
  --crema: #FAF6EE;
  --terra: #4A2C0A;
  --verde: #2D4A1E;
  --marmo: #F0EBE1;
  --nero: #1A1208;
  --white: #FFFFFF;
}

/* ═══════════════ RESET & BASE ═══════════════ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--terra);
  background-color: var(--crema);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════ NAVIGATION ═══════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.nav.scrolled {
  background-color: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 0 0 var(--oro);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
  color: var(--rosso);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--oro);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav.scrolled .nav-links a {
  color: var(--terra);
}

.nav.scrolled .nav-links a:hover {
  color: var(--rosso);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* ═══════════════ NAV DROPDOWN ═══════════════ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--crema);
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-top: 3px solid var(--oro);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  margin: 0 !important;
}

.nav-dropdown-menu li a {
  padding: 12px 20px;
  display: block;
  color: var(--terra);
  text-transform: none;
  font-weight: 700;
  background: transparent;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.nav-dropdown-menu li a:after {
  display: none !important;
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: rgba(200,151,58,0.08);
  color: var(--rosso);
  padding-left: 24px;
}

.nav.scrolled .hamburger span {
  background-color: var(--terra);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════ HERO ═══════════════ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 5, 0, 0.3) 0%, rgba(10, 5, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(15, 10, 5, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-sub-top {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-line {
  width: 80px;
  height: 2px;
  background-color: var(--oro);
  margin: 0 auto 20px;
}

.hero-subline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.falstaff-badge {
  display: inline-block;
  border: 2px solid var(--oro);
  padding: 18px 36px;
  margin-bottom: 32px;
  text-align: center;
}

.falstaff-badge span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--oro);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.falstaff-badge small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-size: 1.1rem;
  padding: 18px 42px;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-block;
  vertical-align: middle;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--oro-gradient);
  color: var(--nero);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  background: var(--oro);
  color: var(--nero);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 151, 58, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
  z-index: -1;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* ═══════════════ GOOGLE HERO BADGE ═══════════════ */

.google-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 15, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 151, 58, 0.4);
  padding: 8px 20px 8px 8px;
  border-radius: 50px;
  margin-top: 24px;
  transition: all 0.3s ease;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.google-hero-badge:hover {
  background: rgba(200, 151, 58, 0.15);
  transform: translateY(-2px);
  border-color: var(--oro);
  box-shadow: 0 8px 25px rgba(200, 151, 58, 0.3);
}

.google-g {
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  color: #4285F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.google-stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.google-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-top: 2px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--rosso);
  color: var(--rosso);
}

.btn-outline:hover {
  background-color: var(--rosso);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--rosso);
}

.btn-pdf {
  background-color: var(--terra);
  color: var(--white);
  font-size: 0.85rem;
}

.btn-pdf:hover {
  background-color: var(--nero);
}

/* ═══════════════ TRUST BAR ═══════════════ */

.trust-bar {
  background-color: var(--rosso);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.trust-icon {
  font-size: 1.4rem;
}

/* ═══════════════ SECTIONS ═══════════════ */

.section {
  padding: 80px 0;
}

.section-crema {
  background-color: var(--crema);
}

.section-marmo {
  background-color: var(--marmo);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--rosso);
  margin: 16px 0 8px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--terra);
  margin-bottom: 8px;
}

.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--oro-gradient);
  box-shadow: 0 1px 3px rgba(200,151,58,0.4);
}

.ornament-line::before {
  content: '';
}

/* Using a pseudo for the diamond ornament via a wrapper approach */
.section-header .ornament-line::before {
  width: 60px;
}

.section-header .ornament-line::after {
  width: 60px;
}

/* ═══════════════ ÜBER UNS ═══════════════ */

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

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--terra);
  border-left: 3px solid var(--oro);
  padding: 16px 24px;
  margin-top: 24px;
  background: rgba(200,151,58,0.06);
}

.about-quote cite {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
  font-style: normal;
  color: var(--oro);
}

/* ═══════════════ SOCIAL PROOF BUTTONS ═══════════════ */

.social-proof-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 20px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid rgba(200,151,58,0.3);
  border-radius: 4px;
  color: var(--terra);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(200,151,58,0.15);
  border-color: var(--oro);
  color: var(--rosso);
}

.btn-social-google .social-icon {
  color: #fbbc05;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.btn-social-fb .social-icon {
  color: #1877f2;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* ═══════════════ KÜCHENCHEF EMPFIEHLT ═══════════════ */

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.chef-category h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--rosso);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--oro);
}

/* ═══════════════ MENU ITEMS ═══════════════ */

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,151,58,0.15);
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--nero);
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--oro);
  margin-bottom: 4px;
  min-width: 20px;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--rosso);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-item-desc {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--terra);
  margin-top: 2px;
  opacity: 0.85;
}

.signature-item {
  position: relative;
  background: rgba(200,151,58,0.08);
  padding: 12px;
  border: 1px solid var(--oro);
  border-bottom: 1px solid var(--oro);
}

.signature-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oro);
  border: 1px solid var(--oro);
  padding: 2px 8px;
}

/* ═══════════════ NEU BADGE BOX ═══════════════ */

.neu-badge-box {
  background-color: var(--crema);
  border: 2px solid var(--oro);
  padding: 20px 28px;
  margin: 32px 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--terra);
}

.neu-badge-box strong {
  color: var(--rosso);
}

/* ═══════════════ SPEISEKARTE TABS ═══════════════ */

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.menu-tab {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--oro);
  background: transparent;
  color: var(--terra);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background-color: var(--rosso);
  border-color: var(--rosso);
  color: var(--white);
}

.menu-tab-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.menu-tab-content.active {
  display: block;
}

.menu-tab-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--rosso);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--oro);
}

.menu-tab-content h3:first-child {
  margin-top: 0;
}

.menu-badge {
  background-color: var(--verde);
  color: var(--white);
  padding: 12px 20px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.menu-warning {
  background-color: rgba(200,151,58,0.15);
  border-left: 3px solid var(--oro);
  padding: 12px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--terra);
  margin-bottom: 24px;
}

.menu-extras {
  background: rgba(200,151,58,0.08);
  padding: 16px 20px;
  margin-top: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--terra);
}

.menu-hint {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--terra);
  opacity: 0.8;
  margin-top: 16px;
  text-align: center;
}

.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* ═══════════════ WEINKARTE ═══════════════ */

.section-wine {
  position: relative;
}

.section-wine::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 30%, var(--oro) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, var(--oro) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--oro) 0.5px, transparent 0.5px);
  background-size: 120px 120px, 180px 180px, 60px 60px;
  pointer-events: none;
}

.wine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.wine-category h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--rosso);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--oro);
}

.wine-highlight-box {
  border: 2px solid var(--oro);
  padding: 20px 28px;
  margin: 36px auto;
  max-width: 600px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--terra);
  background: rgba(200,151,58,0.06);
}

/* ═══════════════ GALERIE TEASER (POLAROID) ═══════════════ */
.gallery-teaser-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding: 20px 0;
}

.gallery-teaser-item {
  position: relative;
  width: 260px;
  background-color: var(--white);
  padding: 12px 12px 48px 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
  z-index: 1;
}

/* Alternate Rotations for that scattered look */
.gallery-teaser-item:nth-child(1) { transform: rotate(-4deg); }
.gallery-teaser-item:nth-child(2) { transform: rotate(3deg); margin-top: 20px; }
.gallery-teaser-item:nth-child(3) { transform: rotate(-2deg); }
.gallery-teaser-item:nth-child(4) { transform: rotate(5deg); margin-top: -10px; }

.gallery-teaser-item:hover {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 10;
}

.gallery-teaser-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: sepia(0.2) contrast(1.1);
  transition: filter 0.3s ease;
}

.gallery-teaser-item:hover img {
  filter: sepia(0) contrast(1);
}

/* ═══════════════ GALERIE ═══════════════ */

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-tab {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border: 1px solid var(--oro);
  background: transparent;
  color: var(--terra);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
  background-color: var(--rosso);
  border-color: var(--rosso);
  color: var(--white);
}

.gallery-content {
  display: none;
}

.gallery-content.active {
  display: block;
}

.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0px solid var(--oro);
  transition: border-width 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover::after {
  border-width: 3px;
}

/* ═══════════════ LIGHTBOX ═══════════════ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--oro);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--oro);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* ═══════════════ NEWS ═══════════════ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--crema);
  padding: 28px;
  border: 1px solid rgba(200,151,58,0.3);
  position: relative;
}

.news-badge {
  display: inline-block;
  background-color: var(--rosso);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.news-badge-green {
  background-color: var(--verde);
}

.news-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--nero);
  margin-bottom: 10px;
}

.news-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.news-card-pdf {
  background: var(--crema);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ═══════════════ KONTAKT ═══════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--rosso);
  margin-bottom: 8px;
}

.contact-address {
  margin-bottom: 24px;
}

.contact-hours {
  margin-bottom: 28px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(200,151,58,0.15);
}

.hours-table td:first-child {
  font-weight: 700;
  width: 50%;
}

.hours-table .ruhetag td {
  color: var(--rosso);
  text-decoration: line-through;
}

.hours-table .ruhetag td:last-child {
  text-decoration: none;
  font-weight: 700;
}

/* ═══════════════ RESERVATION FORM ═══════════════ */

.reservation-form h3 {
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1px solid rgba(200,151,58,0.4);
  background: var(--white);
  color: var(--terra);
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rosso);
}

.reservation-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background-color: #1A0A00;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 0;
}

.footer-line {
  height: 2px;
  background-color: var(--oro);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding: 48px 0 36px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--oro);
  margin-bottom: 8px;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--oro);
}

.footer-falstaff {
  margin-top: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--oro);
  letter-spacing: 0.05em;
}

.footer-address {
  margin-top: 12px;
}

.footer-social {
  margin-top: 24px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--oro);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 1px solid var(--oro);
  padding: 10px 16px;
  border-radius: 4px;
}

.footer-social-link:hover {
  background: var(--oro);
  color: var(--nero);
}

.footer-social-icon {
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(200,151,58,0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}


/* ═══════════════ PIZZA FINDER ═══════════════ */
.filter-container {
  max-width: 900px;
  margin: 0 auto;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--oro);
  color: var(--terra);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rosso);
  border-color: var(--rosso);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(184,33,38,0.2);
}

.filter-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  min-height: 200px;
}

.filter-item {
  background: var(--white);
  border: 1px solid rgba(200,151,58,0.2);
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  animation: fadeIn 0.4s ease forwards;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.filter-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--oro);
}

.filter-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--oro), var(--rosso));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-item:hover::before {
  opacity: 1;
}

.filter-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--rosso);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1.2;
}

.filter-item-icon {
  font-size: 1.4rem;
  opacity: 0.8;
  margin-left: 10px;
}

.filter-item-desc {
  font-size: 1.05rem;
  color: var(--terra);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.filter-item-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--rosso);
  border-top: 1px dashed rgba(200,151,58,0.4);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-item-price::after {
  content: '→';
  color: var(--oro);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.filter-item:hover .filter-item-price::after {
  transform: translateX(6px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ BEFORE / AFTER SLIDER ═══════════════ */
.ba-slider-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  margin-bottom: 24px;
  cursor: ew-resize;
  border: 4px solid var(--white);
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-image-before {
  width: 50%;
  z-index: 2;
  border-right: 3px solid var(--white);
}

.ba-label {
  position: absolute;
  top: 20px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 8px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}

.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 4px;
  background: transparent;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--oro);
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -2px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.ba-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--terra);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ba-slider { height: 300px; }
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ BEKANNT AUS (PRESSE) ═══════════════ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  background: var(--white);
  border: 1px solid rgba(200,151,58,0.2);
  padding: 32px 24px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--oro);
}

.press-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--rosso);
  margin-bottom: 12px;
}

.press-card p {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terra);
  line-height: 1.6;
}

/* ═══════════════ PREMIUM HIGHLIGHTS ═══════════════ */

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-bg, .page-hero-bg {
  animation: kenBurns 20s ease-out infinite alternate;
}

/* FLOATING WIDGET */
.floating-reservation-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--oro-gradient);
  color: var(--nero);
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(200, 151, 58, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse-gold 2.5s infinite;
}

.floating-reservation-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(200, 151, 58, 0.6);
  animation: none;
  color: var(--nero);
}

.floating-icon {
  font-size: 1.3rem;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(200, 151, 58, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(200, 151, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 151, 58, 0); }
}

@media (max-width: 768px) {
  .floating-reservation-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
  }
  .floating-text {
    display: none;
  }
  .floating-icon {
    font-size: 1.5rem;
    margin: 0;
  }
}

/* ═══════════════ 5-ITEM GALLERY GRID ═══════════════ */
.gallery-teaser-grid.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-teaser-grid.grid-5 .gallery-teaser-item:nth-child(5) {
  transform: rotate(-3deg);
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .gallery-teaser-grid.grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-teaser-grid.grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-teaser-grid.grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .chef-grid {
    grid-template-columns: 1fr;
  }

  .wine-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-teaser-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-teaser-item {
    transform: rotate(0) !important;
    margin-top: 0 !important;
    margin-bottom: 24px;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    margin-top: 10px;
  }

  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--crema);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--terra);
    padding: 16px 0;
    border-bottom: 1px solid rgba(200,151,58,0.15);
    font-size: 1.25rem;
    font-weight: 600;
  }

  .nav.menu-open .nav-logo {
    color: var(--rosso) !important;
  }

  .nav.menu-open .hamburger span {
    background-color: var(--rosso) !important;
  }

  body.no-scroll {
    overflow: hidden !important;
  }

  .nav-links a:hover {
    color: var(--rosso);
  }

  .section {
    padding: 56px 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-content {
    margin-top: 70px;
    padding: 30px 20px;
  }
  
  .page-hero-content {
    padding-top: 100px;
  }

  .menu-tabs {
    gap: 4px;
  }

  .menu-tab {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .menu-item-name {
    font-size: 0.95rem;
    white-space: normal;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .trust-bar {
    gap: 16px;
    padding: 16px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .teaser-cards,
  .gallery-teaser-grid,
  .info-cards,
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    columns: 1;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .falstaff-badge {
    padding: 10px 16px;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .menu-tab {
    flex-shrink: 0;
  }

  .falstaff-section {
    grid-template-columns: 1fr;
  }

  .restaurant-feature,
  .restaurant-feature.restaurant-feature-reverse {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .visit-info {
    grid-template-columns: 1fr;
  }

  .pdf-download-bar .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ═══════════════ PAGE HERO (Unterseiten) ═══════════════ */

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px 40px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

/* ═══════════════ FALSTAFF SECTION ═══════════════ */

.section-falstaff {
  background-color: var(--nero);
  color: var(--white);
  padding: 80px 0;
}

.falstaff-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.falstaff-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--oro);
}

.falstaff-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--oro);
  margin-bottom: 8px;
}

.falstaff-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.falstaff-highlights {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.falstaff-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.falstaff-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--oro);
  line-height: 1;
}

.falstaff-highlight-item span:last-child {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ═══════════════ TEASER CARDS (Index) ═══════════════ */

.teaser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.teaser-card {
  display: block;
  background: var(--marmo);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(200,151,58,0.2);
  transition: all 0.3s ease;
}

.teaser-card:hover {
  border-color: var(--oro);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74,44,10,0.1);
}

.teaser-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.teaser-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--rosso);
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.teaser-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--terra);
  margin-bottom: 16px;
}

.teaser-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rosso);
}

/* ═══════════════ GALLERY TEASER (Index) ═══════════════ */

.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-teaser-item {
  overflow: hidden;
}

.gallery-teaser-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-teaser-item:hover img {
  transform: scale(1.05);
}

/* ═══════════════ PDF DOWNLOAD BAR ═══════════════ */

.pdf-download-bar {
  background-color: var(--terra);
  padding: 16px 0;
}

.pdf-download-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pdf-download-bar span {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
}

/* ═══════════════ RESTAURANT PAGE ═══════════════ */

.restaurant-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.restaurant-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--terra);
}

.restaurant-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.restaurant-feature-reverse {
  direction: rtl;
}

.restaurant-feature-reverse > * {
  direction: ltr;
}

.restaurant-feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.restaurant-feature-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.restaurant-feature-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--rosso);
  margin-bottom: 12px;
}

.restaurant-feature-text p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ═══════════════ FEATURES GRID ═══════════════ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--marmo);
  border: 1px solid rgba(200,151,58,0.2);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--rosso);
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ═══════════════ VALUES GRID (Über uns) ═══════════════ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item {
  text-align: center;
  padding: 24px;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--rosso);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════ ABOUT GRID REVERSE ═══════════════ */

.about-grid-reverse {
  direction: rtl;
}

.about-grid-reverse > * {
  direction: ltr;
}

/* ═══════════════ INFO CARDS (Tagesempfehlung) ═══════════════ */

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--crema);
  border: 1px solid rgba(200,151,58,0.25);
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--rosso);
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.info-card p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ═══════════════ VISIT INFO ═══════════════ */

.visit-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.visit-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--rosso);
  margin-bottom: 12px;
}

/* ═══════════════ NAV ACTIVE LINK ═══════════════ */

.nav-links a.active {
  color: var(--rosso);
}

.nav:not(.scrolled) .nav-links a.active {
  color: var(--oro);
}

/* ═══════════════ RESPONSIVE SUBPAGES ═══════════════ */

@media (max-width: 992px) {
  .falstaff-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .falstaff-highlights {
    justify-content: center;
  }

  .restaurant-feature,
  .restaurant-feature.restaurant-feature-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .teaser-cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .visit-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
}