/* ============================================================
   LA DOLCE SOSTA — Hauptstylesheet
   Farbpalette: Italienische Trikolore · Grün · Weiß · Rot
   Schriftarten werden in includes/header.php geladen (schneller als @import).
   ============================================================ */

/* === CSS Variables === */
:root {
  /* Italienische Flagge — verfeinert */
  --it-green-deep:  #063D1C;   /* tiefstes Grün — dunkle Bereiche */
  --it-green:       #0F6130;   /* Italienisches Grün */
  --it-green-mid:   #1E8045;   /* helles Grün */
  --it-red-deep:    #6E0A14;   /* tiefstes Rot — dunkle Bereiche */
  --it-red:         #A01828;   /* Italienisches Rot */
  --it-red-mid:     #C0253A;   /* lebhaftes Rot */
  --dark-bg:        #0A130C;   /* Fast-Schwarz für Nav / Footer */

  /* Akzente */
  --gold:           #C8A855;
  --gold-light:     #D8BC72;
  --gold-pale:      #EDD9A3;

  /* Neutrale */
  --cream:          #F6F0E8;
  --cream-dark:     #EDE4D4;
  --ivory:          #FDFBF6;
  --white:          #FFFFFF;

  /* Texte */
  --text-dark:      #0F1A10;
  --text-mid:       #3D4A3E;
  --text-light:     #88977A;

  /* Schriften */
  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'Jost', sans-serif;

  /* Übergänge */
  --transition:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Gradients */
  --grad-tricolor:   linear-gradient(135deg, var(--it-green-deep) 0%, #0D0D0D 45%, var(--it-red-deep) 100%);
  --grad-green:      linear-gradient(135deg, var(--it-green-deep) 0%, var(--it-green) 100%);
  --grad-red:        linear-gradient(135deg, var(--it-red-deep) 0%, var(--it-red) 100%);
  --grad-green-dark: linear-gradient(160deg, var(--it-green-deep), #081A0E);
  --grad-red-dark:   linear-gradient(160deg, var(--it-red-deep), #160608);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--it-green-deep);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--it-red);
}

/* === Ornament Divider === */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale));
}
.ornament::after {
  background: linear-gradient(to left, transparent, var(--gold-pale));
}
.ornament-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* === Tricolor Accent Line === */
.tricolor-bar {
  height: 3px;
  background: linear-gradient(90deg,
    var(--it-green) 0%, var(--it-green) 33.3%,
    var(--white)    33.3%, var(--white)   66.6%,
    var(--it-red)   66.6%, var(--it-red)  100%
  );
  width: 100%;
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 19, 12, 0.97);
  backdrop-filter: blur(14px);
  padding: 0.9rem 3rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

/* Tricolore-Streifen unter scrolled Nav */
.nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--it-green) 0%, var(--it-green) 33.3%,
    rgba(255,255,255,0.6) 33.3%, rgba(255,255,255,0.6) 66.6%,
    var(--it-red)   66.6%, var(--it-red) 100%
  );
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 300;
  margin-top: 0.1rem;
}

/* Name in Italien-Flaggenfarben — Wörter inline + Schatten gegen Hintergrund */
.nav-logo .ht-green,
.nav-logo .ht-white,
.nav-logo .ht-red {
  display: inline;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.nav-logo .ht-green { color: #2EA45A; }
.nav-logo .ht-white { color: #ffffff; }
.nav-logo .ht-red   { color: #D6313F; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { width: 100%; }

.btn-reserve-nav {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em;
  transition: background var(--transition), color var(--transition) !important;
}
.btn-reserve-nav::after { display: none !important; }
.btn-reserve-nav:hover {
  background: var(--gold) !important;
  color: var(--it-green-deep) !important;
}

.btn-wolt-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform var(--transition), filter var(--transition) !important;
}
.btn-wolt-nav::after { display: none !important; }
.btn-wolt-nav:hover {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.08);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  transition: var(--transition);
}

.breadcrumb-nav {
  position: fixed;
  top: 5.7rem;
  left: 0;
  right: 0;
  z-index: 90;
  pointer-events: none;
  padding: 0 3rem;
}

.breadcrumb-nav ol {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.62);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb-nav li + li::before {
  content: '/';
  color: rgba(200,168,85,0.7);
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  pointer-events: auto;
  color: inherit;
}

.breadcrumb-nav a {
  transition: color var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--gold-pale);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  /* Tricolore-Gradient + Foto */
  background:
    linear-gradient(
      135deg,
      rgba(6,61,28,0.85)  0%,
      rgba(8,8,8,0.60)    42%,
      rgba(110,10,20,0.85) 100%
    ),
    url('../img/hero-bg.png') center/cover no-repeat;
}

/* Schimmerndes Muster */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(200,168,85,0.07)' stroke-width='0.8'%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='25'/%3E%3Cline x1='60' y1='10' x2='60' y2='110'/%3E%3Cline x1='10' y1='60' x2='110' y2='60'/%3E%3Cpath d='M60,20 Q80,40 60,60 Q40,40 60,20Z'/%3E%3Cpath d='M100,60 Q80,80 60,60 Q80,40 100,60Z'/%3E%3Cpath d='M60,100 Q40,80 60,60 Q80,80 60,100Z'/%3E%3Cpath d='M20,60 Q40,40 60,60 Q40,80 20,60Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Linker Grün-Glow */
.hero::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(30,128,69,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Rechter Rot-Glow */
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: 10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(192,37,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.hero-preheading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero-title {
    white-space: normal;
    font-size: clamp(2.4rem, 10.5vw, 4.2rem);
  }
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

/* Name in Italien-Flaggenfarben — mit Schatten gegen den Verlauf */
.hero-title .ht-green,
.hero-title .ht-white,
.hero-title .ht-red {
  text-shadow: 0 2px 22px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.35);
}
.hero-title .ht-green { color: #2EA45A; }
.hero-title .ht-white { color: #ffffff; }
.hero-title .ht-red   { color: #D6313F; font-style: italic; }

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin: 1.2rem 0 2.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.7s forwards;
}

/* Tricolore-Linie als Hero-Divider */
.hero-divider {
  height: 3px;
  width: 120px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(90deg,
    var(--it-green-mid) 0%,
    var(--it-green-mid) 33%,
    rgba(255,255,255,0.8) 33%,
    rgba(255,255,255,0.8) 66%,
    var(--it-red-mid) 66%,
    var(--it-red-mid) 100%
  );
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--it-green-deep);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold-pale);
  color: var(--gold-pale);
}

.wolt-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 194, 232, 0.24);
}

.wolt-logo-nav {
  width: 2.75rem;
  height: 2.75rem;
}

.btn-dark {
  background: var(--it-green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--it-green);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-dark:hover::before { transform: translateX(0); }
.btn-dark span, .btn-dark:not(:has(span)) { position: relative; z-index: 1; }

.btn-red {
  background: var(--it-red-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--it-red);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-red:hover::before { transform: translateX(0); }

/* ============================================================
   WELCOME / INTRO
   ============================================================ */
.welcome {
  padding: 8rem 3rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* Subtiler Tricolore-Hintergrundton */
.welcome::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to left, rgba(6,61,28,0.025), transparent);
  pointer-events: none;
}

.welcome-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.welcome-visual { position: relative; }

.welcome-img-frame { position: relative; }

.welcome-img-frame::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--gold-pale);
  z-index: 0;
}

.welcome-img-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  background: var(--grad-green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.welcome-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  z-index: 2;
  width: 110px;
  height: 110px;
  background: var(--grad-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(110,10,20,0.35);
}
.welcome-badge .badge-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-pale);
  line-height: 1;
}
.welcome-badge .badge-text {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.3rem;
}

.welcome-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--it-green-deep);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.welcome-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.feature-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 400;
  padding-top: 0.5rem;
}

/* ============================================================
   MENU HIGHLIGHTS
   ============================================================ */
.menu-section {
  padding: 8rem 3rem;
  background: var(--it-green-deep);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(30,128,69,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(15,97,48,0.2) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Botanisches Muster */
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(200,168,85,0.06)' stroke-width='0.6'%3E%3Cellipse cx='40' cy='40' rx='20' ry='30'/%3E%3Cellipse cx='40' cy='40' rx='30' ry='20'/%3E%3Cpath d='M40,10 C50,25 50,55 40,70 C30,55 30,25 40,10Z' stroke-width='0.4'/%3E%3Cpath d='M10,40 C25,30 55,30 70,40 C55,50 25,50 10,40Z' stroke-width='0.4'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.menu-header {
  text-align: center;
  margin-bottom: 5rem;
}

.menu-header .section-title {
  color: var(--ivory);
}
.menu-header .section-title em { color: var(--gold-light); }

.menu-header p {
  max-width: 520px;
  margin: 1.5rem auto 0;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(200,168,85,0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  position: relative;
}

.menu-tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-tab.active, .menu-tab:hover {
  color: var(--it-green-deep);
}
.menu-tab.active::after, .menu-tab:hover::after { opacity: 1; }
.menu-tab span { position: relative; z-index: 1; }

.menu-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.menu-grid.active { display: grid; }

.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,85,0.1);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Grüner Gradient-Glow beim Hover */
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,128,69,0.12), rgba(200,168,85,0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--it-green-mid), var(--gold), var(--it-green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-card:hover { background: rgba(255,255,255,0.07); }
.menu-card:hover::before { opacity: 1; }
.menu-card:hover::after  { transform: scaleX(1); }

.card-emoji {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

.card-highlight {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.menu-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================================
   SIGNATURE DISH FEATURE
   ============================================================ */
.signature {
  padding: 0;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.signature-image {
  /* Roter Gradient als Fallback */
  background: var(--grad-red);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.signature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(192,37,58,0.3) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.signature-image:hover img { transform: scale(1.03); }

.signature-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.signature-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--it-green-deep);
  margin-bottom: 1.5rem;
}

.signature-content p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.wine-feature {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--it-red);
  background: linear-gradient(to right, rgba(110,10,20,0.05), transparent);
}

.wine-feature p {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--it-red-deep);
  margin: 0;
}

/* ============================================================
   ATMOSPHERE / ABOUT
   ============================================================ */
.about {
  padding: 8rem 3rem;
  background: var(--ivory);
  position: relative;
}

/* Tricolore-Streifen am Rand */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--it-green)  0px,
    var(--it-green)  33.33%,
    var(--white)     33.33%,
    var(--white)     66.66%,
    var(--it-red)    66.66%,
    var(--it-red)    100%
  );
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--it-green-deep);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.stat-number--heart {
  font-size: 2.75rem;
  color: var(--it-red);
  line-height: 1.15;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  background: var(--ivory);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--it-green-mid);
  background: rgba(6,61,28,0.03);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--it-green), var(--gold), var(--it-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-item:hover::after { transform: scaleX(1); }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--it-green-deep);
  line-height: 1;
  display: block;
}
.stat-number em { font-style: italic; color: var(--it-red); }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.gallery-section {
  padding: 8rem 3rem;
  background: var(--ivory);
}

.gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.gallery-header p {
  margin-top: 1rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 0.8rem;
}

.gallery-item {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-1,
.gallery-item-4 {
  grid-column: span 2;
  grid-row: span 2;
}

.reviews {
  padding: 8rem 3rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Großes dekoratives Anführungszeichen */
.reviews::before {
  content: '❝';
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15rem;
  color: var(--it-green-deep);
  opacity: 0.04;
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Subtiler Tricolore-Gradient-Rand */
.reviews::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--it-green) 0%, var(--it-green) 33.3%,
    rgba(255,255,255,0.5) 33.3%, rgba(255,255,255,0.5) 66.6%,
    var(--it-red) 66.6%, var(--it-red) 100%
  );
}

.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.slider-track {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease;
}
.slide.active { display: block; }

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--it-green-deep);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.review-author::before, .review-author::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-pale);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--cream-dark);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--it-green-deep);
  transition: var(--transition);
  font-size: 1rem;
}
.slider-btn:hover {
  background: var(--it-green-deep);
  border-color: var(--it-green-deep);
  color: var(--ivory);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 24px; }

/* ============================================================
   RESERVATION SECTION
   ============================================================ */
.reservation {
  padding: 8rem 3rem;
  background: var(--it-red-deep);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(192,37,58,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(160,24,40,0.25) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.reservation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(200,168,85,0.06)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='55' fill='none' stroke='rgba(200,168,85,0.06)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='rgba(200,168,85,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 300px;
}

.reservation-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.reservation-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.reservation-info p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,168,85,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.contact-info strong {
  display: block;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 0.1rem;
  letter-spacing: 0.05em;
}

/* Reservation Form */
.reservation-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,85,0.15);
  padding: 3rem;
  backdrop-filter: blur(8px);
}

.resmio-widget-wrap {
  display: flex;
  justify-content: center;
}

.resmio-widget-wrap #resmio-la-dolce-sosta {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.resmio-widget-wrap iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 2rem;
  font-weight: 400;
}

.form-group { margin-bottom: 1.4rem; }

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

label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ivory);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

select option {
  background: var(--it-red-deep);
  color: var(--ivory);
}

textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--it-red-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-submit:hover { background: var(--gold-light); }

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
}
.form-message.success {
  display: block;
  background: rgba(30,128,69,0.2);
  border: 1px solid rgba(30,128,69,0.4);
  color: #90e4a8;
}
.form-message.error {
  display: block;
  background: rgba(220,80,60,0.15);
  border: 1px solid rgba(220,80,60,0.3);
  color: #f49090;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  padding: 4rem 3rem 2rem;
  position: relative;
}

/* Tricolore-Linie oben */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--it-green) 0%, var(--it-green) 33.3%,
    rgba(255,255,255,0.5) 33.3%, rgba(255,255,255,0.5) 66.6%,
    var(--it-red)   66.6%, var(--it-red) 100%
  );
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nav-logo { margin-bottom: 1.2rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 0.8rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--gold-pale); }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  font-weight: 300;
}
.footer-col address a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-col address a:hover { color: var(--gold-pale); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.footer-bottom-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-credit {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.2);
}

.footer-credit a {
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--gold-pale);
}

.footer-credit-sep {
  color: rgba(255,255,255,0.15);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  padding: 12rem 3rem 6rem;
  background: var(--it-green-deep);
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(30,128,69,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(15,97,48,0.2) 0%, transparent 50%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(200,168,85,0.07)' stroke-width='0.8'%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='25'/%3E%3Cline x1='60' y1='10' x2='60' y2='110'/%3E%3Cline x1='10' y1='60' x2='110' y2='60'/%3E%3C/g%3E%3C/svg%3E");
}

/* Tricolore-Linie unten */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--it-green-mid) 0%, var(--it-green-mid) 33.3%,
    rgba(255,255,255,0.7) 33.3%, rgba(255,255,255,0.7) 66.6%,
    var(--it-red-mid)   66.6%, var(--it-red-mid) 100%
  );
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--ivory);
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.page-hero h1 em { color: var(--gold-light); }

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-display);
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.menu-full {
  padding: 6rem 3rem;
  background: var(--ivory);
  max-width: 900px;
  margin: 0 auto;
}

.menu-section-block { margin-bottom: 5rem; }

.menu-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--it-green-deep);
  font-weight: 400;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-section-title .section-icon { font-size: 1.4rem; }

.menu-section-subtitle {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-light);
  margin: -1.5rem 0 1.8rem;
  font-family: var(--font-display);
  line-height: 1.6;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed var(--cream-dark);
  transition: background var(--transition);
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover {
  background: linear-gradient(to right, rgba(6,61,28,0.04), transparent);
  padding-left: 0.5rem;
}

.item-info {}
.item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--it-green-deep);
  font-weight: 400;
}
.item-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 0.2rem;
  font-style: italic;
}
.item-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.62rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--cream-dark);
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag.chef { border-color: var(--gold-pale); color: var(--gold); }
.tag.veg { border-color: #b0c4a0; color: #6a9a5a; }
.tag.vegan { border-color: #90c480; color: #4a8a3a; }

.footnote-block {
  background: var(--cream);
  border-left: 3px solid var(--gold-pale);
  padding: 0.95rem 1.2rem;
  font-size: 0.86rem;
  color: var(--text-light);
  font-style: italic;
  margin: 1.2rem 0 0;
  line-height: 1.7;
}

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

.seasonal-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 1.4rem;
  border: 1px solid rgba(200,168,85,0.28);
  background:
    linear-gradient(135deg, rgba(6,61,28,0.05), rgba(183,43,55,0.04)),
    var(--cream);
}
.seasonal-teaser-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}
.seasonal-teaser-links a {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--ivory);
  color: var(--it-green-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    color 180ms cubic-bezier(0.23, 1, 0.32, 1);
}
.seasonal-teaser-links a:hover {
  border-color: rgba(200,168,85,0.58);
  color: var(--it-red);
  transform: translateY(-1px);
}
.seasonal-teaser-links a:active {
  transform: scale(0.98);
}
.seasonal-teaser span,
.seasonal-kicker {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.seasonal-teaser h2,
.seasonal-intro h2 {
  margin: 0;
  color: var(--it-green-deep);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}
.seasonal-teaser p,
.seasonal-intro p {
  max-width: 58ch;
  margin-top: 0.7rem;
  color: var(--text-light);
  line-height: 1.7;
}

.seasonal-page {
  background: var(--ivory);
  padding: 5rem 3rem 6rem;
}
.seasonal-intro {
  max-width: 1040px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}
.seasonal-jump {
  max-width: 1040px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.seasonal-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid var(--cream-dark);
  color: var(--it-green-deep);
  background: rgba(255,255,255,0.44);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    background 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.seasonal-jump a:hover {
  border-color: rgba(200,168,85,0.55);
  background: var(--cream);
  transform: translateY(-1px);
}
.seasonal-jump a:active {
  transform: scale(0.98);
}
.seasonal-menu-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid rgba(200,168,85,0.25);
  background: #fffdf8;
}

.answer-section {
  background:
    linear-gradient(135deg, rgba(6,61,28,0.045), transparent 48%),
    linear-gradient(315deg, rgba(160,24,40,0.04), transparent 52%),
    var(--cream);
  padding: 6rem 3rem;
}

.answer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 4rem;
  align-items: center;
}

.answer-copy h2,
.local-intro h2,
.local-content h2,
.faq-section h2,
.local-panel h2 {
  color: var(--it-green-deep);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

.answer-copy h2,
.local-intro h2,
.local-content h2,
.faq-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.answer-copy p,
.local-intro p,
.local-content p,
.faq-item p,
.local-panel p {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
}

.answer-copy p {
  max-width: 68ch;
  margin-top: 1.1rem;
}

.answer-actions,
.local-link-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.answer-text-link {
  color: var(--it-green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-pale);
  padding-bottom: 0.2rem;
  transition: color var(--transition), border-color var(--transition);
}

.answer-text-link:hover {
  color: var(--it-red);
  border-color: var(--it-red);
}

.answer-facts {
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.52);
  padding: 2rem;
}

.answer-facts dl {
  display: grid;
  gap: 1.2rem;
}

.answer-facts dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.answer-facts dd {
  color: var(--it-green-deep);
  font-size: 0.96rem;
  line-height: 1.6;
}

.answer-facts a {
  color: var(--it-red);
  text-decoration: underline;
  text-decoration-color: var(--gold-pale);
  text-underline-offset: 3px;
}

.local-page {
  background: var(--ivory);
  padding: 5rem 3rem 6rem;
}

.local-intro,
.local-content,
.faq-section {
  max-width: 1040px;
  margin: 0 auto 3rem;
}

.local-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--cream-dark);
}

.local-grid {
  max-width: 1040px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.local-panel {
  background: #fffdf8;
  border: 1px solid rgba(200,168,85,0.25);
  padding: 1.6rem;
}

.local-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.local-panel p + p {
  margin-top: 1rem;
}

.local-panel a,
.local-content a {
  color: var(--it-green);
  text-decoration: underline;
  text-decoration-color: var(--gold-pale);
  text-underline-offset: 3px;
}

.local-content {
  padding: 3rem;
  background: var(--cream);
  border-left: 3px solid var(--it-green);
}

.local-content p {
  max-width: 76ch;
  margin-top: 1rem;
}

.local-proof {
  max-width: 1040px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--cream-dark);
}

.local-proof h2 {
  color: var(--it-green-deep);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.local-proof p {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-top: 1rem;
}

.local-proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--cream-dark);
}

.local-proof-list li {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.local-proof-list strong {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.local-proof-list span {
  color: var(--it-green-deep);
  line-height: 1.55;
}

.local-proof-list a {
  color: var(--it-green);
  text-decoration: underline;
  text-decoration-color: var(--gold-pale);
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-faq-section {
  max-width: none;
  margin: 0;
  padding: 6rem 3rem;
  background: var(--ivory);
}

.home-faq-section > .section-label,
.home-faq-section > h2,
.home-faq-section > .faq-list {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-dark);
}

.faq-item h3 {
  color: var(--it-green-deep);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.not-found-page {
  background: var(--ivory);
  padding: 5rem 3rem 6rem;
}

.not-found-links {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.7); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .welcome-inner, .about-inner { gap: 4rem; }
  .reservation-inner { gap: 4rem; }
  .signature { grid-template-columns: 1fr; }
  .signature-image { min-height: 400px; }
  .signature-content { padding: 4rem 3rem; }
}

@media (max-width: 768px) {
  .nav {
    padding: 1.2rem max(1rem, env(safe-area-inset-right, 0px)) 1.2rem max(1rem, env(safe-area-inset-left, 0px));
  }
  .nav.scrolled {
    padding: 0.9rem max(1rem, env(safe-area-inset-right, 0px)) 0.9rem max(1rem, env(safe-area-inset-left, 0px));
  }
  .breadcrumb-nav {
    top: 4.6rem;
    padding: 0 max(1rem, env(safe-area-inset-right, 0px)) 0 max(1rem, env(safe-area-inset-left, 0px));
  }
  .breadcrumb-nav ol {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    gap: 0.32rem;
  }
  .breadcrumb-nav li {
    gap: 0.32rem;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,19,12,0.98);
    padding: max(7rem, calc(5rem + env(safe-area-inset-top, 0px))) max(1.5rem, env(safe-area-inset-right, 0px)) max(2rem, env(safe-area-inset-bottom, 0px)) max(1.5rem, env(safe-area-inset-left, 0px));
    gap: 2rem;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open a {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: none;
  }
  .nav-toggle { display: flex; z-index: 101; }

  .seasonal-page {
    padding: 3rem max(1rem, env(safe-area-inset-right, 0px)) 4rem max(1rem, env(safe-area-inset-left, 0px));
  }
  .seasonal-intro,
  .seasonal-teaser {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .seasonal-teaser-links {
    justify-content: flex-start;
  }
  .seasonal-menu-shell {
    padding: 2rem max(1rem, env(safe-area-inset-right, 0px)) 2rem max(1rem, env(safe-area-inset-left, 0px));
  }
  .answer-section,
  .home-faq-section,
  .local-page {
    padding: 4rem max(1rem, env(safe-area-inset-right, 0px)) 4rem max(1rem, env(safe-area-inset-left, 0px));
  }
  .answer-inner,
  .local-intro,
  .local-grid,
  .local-proof {
    grid-template-columns: 1fr;
  }
  .answer-inner {
    gap: 2.5rem;
  }
  .answer-facts,
  .local-content,
  .local-panel {
    padding: 1.35rem;
  }
  .local-proof-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: max(4.5rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
  .hero-content {
    padding: 1rem max(1rem, env(safe-area-inset-left, 0px)) 1.5rem max(1rem, env(safe-area-inset-right, 0px));
    max-width: 100%;
  }
  .hero-preheading {
    letter-spacing: 0.22em;
    font-size: 0.62rem;
    padding: 0 0.25rem;
  }
  .hero-subtitle {
    padding: 0 0.5rem;
  }

  .welcome-inner, .about-inner, .reservation-inner { grid-template-columns: 1fr; gap: 3rem; }
  .maps-placeholder { height: 360px; }
  .welcome-badge { right: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 2rem 1.35rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { gap: 0.75rem; }
  .footer-bottom-main { flex-direction: column; text-align: center; justify-content: center; }
  .welcome { padding: 5rem max(1rem, env(safe-area-inset-left, 0px)) 5rem max(1rem, env(safe-area-inset-right, 0px)); }
  .menu-section, .about, .gallery-section, .reviews, .reservation { padding: 5rem max(1rem, env(safe-area-inset-left, 0px)) 5rem max(1rem, env(safe-area-inset-right, 0px)); }
  .reservation-form-wrap { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .menu-categories { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .menu-tab { padding: 0.65em 1em; font-size: 0.72rem; }
  .welcome-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item-1,
  .gallery-item-4 { grid-column: span 2; grid-row: span 1; }
  .signature-content { padding: 3rem max(1.25rem, env(safe-area-inset-left, 0px)) 3rem max(1.25rem, env(safe-area-inset-right, 0px)); }
  .signature-image { min-height: 280px; }

  .page-hero {
    padding: max(9rem, calc(7rem + env(safe-area-inset-top, 0px))) max(1rem, env(safe-area-inset-left, 0px)) 4rem max(1rem, env(safe-area-inset-right, 0px));
  }

  .kitchen-badge {
    font-size: 0.72rem;
    max-width: calc(100vw - 2rem);
    word-wrap: break-word;
    text-align: center;
  }

  .btn-spin {
    padding: 0.9em 2em;
    width: 100%;
    max-width: 20rem;
  }

  .slider-controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; max-width: 18rem; margin-left: auto; margin-right: auto; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item,
  .gallery-item-1,
  .gallery-item-4 { grid-column: auto; grid-row: auto; }
  .about-stats { grid-template-columns: 1fr; }
  .stat-item { padding: 1.35rem 1rem; }
  .stat-number { font-size: 2.35rem; }
  .stat-number--heart { font-size: 2.1rem; }
  .nav-logo { font-size: 1.35rem; max-width: calc(100vw - 5rem); }
  .nav-logo span { font-size: 0.55rem; letter-spacing: 0.22em; }
  .section-title { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .cookie-banner {
    padding: 1rem max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-right, 0px));
  }
}


/* ══════════════════════════════════════════════════════════════════
   KITCHEN STATUS BADGE — Feature 2: La Cucina Live
   ══════════════════════════════════════════════════════════════════ */
.kitchen-badge {
  display: inline-block;
  padding: 0.35em 1em;
  border-radius: 2em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--badge-color, var(--it-green-mid));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: background 0.8s ease, opacity 0.8s ease;
  margin-bottom: 1.2rem;
  min-width: 4rem;
  min-height: 1.6em;
}
.kitchen-badge:empty { display: none; }


/* ══════════════════════════════════════════════════════════════════
   ROULETTE SECTION — Feature 1: Piatto del Destino
   ══════════════════════════════════════════════════════════════════ */
.roulette-section {
  background: var(--dark-bg);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.roulette-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(15,97,48,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(160,24,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.roulette-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--it-green), var(--gold), var(--it-red));
}

.roulette-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.roulette-header {
  text-align: center;
}
.roulette-header .section-title {
  color: var(--ivory);
}
.roulette-header p {
  color: rgba(246,240,228,0.65);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.roulette-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.roulette-wheel-wrap {
  position: relative;
  filter: drop-shadow(0 8px 40px rgba(200,168,85,0.25));
}

#roulette-canvas {
  display: block;
  border-radius: 50%;
}

.btn-spin {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
  border-radius: 3em;
  padding: 1em 3em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,168,85,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,85,0.55); }
.btn-spin:active { transform: translateY(0); }
.btn-spin:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Result Overlay */
.roulette-result-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,7,6,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.roulette-result-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.roulette-result-card {
  background: linear-gradient(160deg, #0D1F12 0%, #0A0A0A 100%);
  border: 1px solid rgba(200,168,85,0.3);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(200,168,85,0.2);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.roulette-result-overlay.visible .roulette-result-card {
  transform: scale(1);
}

.result-close-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.5);
  width: 2rem; height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.result-close-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }

.result-icon { font-size: 3.5rem; margin-bottom: 0.5rem; line-height: 1; }
.result-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.roulette-result-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.result-desc {
  font-size: 0.9rem;
  color: rgba(246,240,228,0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.result-price-wrap { margin-bottom: 1.5rem; }
.result-price {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.result-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.result-reserve-btn { background: var(--it-green-mid); }
.result-share-btn {
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.15);
}
.result-share-btn:hover { background: rgba(255,255,255,0.14); }


/* ══════════════════════════════════════════════════════════════════
   QUIZ SECTION — Feature 3: Welches Gericht bist du?
   ══════════════════════════════════════════════════════════════════ */
.quiz-section {
  background: linear-gradient(160deg, var(--it-red-deep) 0%, #0D0B0A 55%, #0A0D0B 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.quiz-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 50%, rgba(110,10,20,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(15,97,48,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--it-green), var(--gold), var(--it-red));
}

.quiz-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.quiz-header {
  text-align: center;
}
.quiz-header .section-title {
  color: var(--ivory);
}
.quiz-header p {
  color: rgba(246,240,228,0.6);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.quiz-progress {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.quiz-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.quiz-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.quiz-dot.done {
  background: var(--it-green-mid);
  transform: scale(1);
}

.quiz-stage {
  width: 100%;
}

/* Question Card */
.quiz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.quiz-card.exit {
  opacity: 0;
  transform: translateX(-24px);
}

.quiz-it {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-style: italic;
}
.quiz-q {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  animation: quizOptIn 0.35s ease both;
}
@keyframes quizOptIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-option:hover {
  background: rgba(200,168,85,0.12);
  border-color: rgba(200,168,85,0.4);
  transform: translateY(-2px);
}
.quiz-option.selected {
  background: rgba(200,168,85,0.18);
  border-color: var(--gold);
}
.quiz-opt-emoji { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.quiz-opt-label { line-height: 1.3; }

/* Result Card */
.quiz-result-card {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, #0D1F12 0%, #100808 100%);
  border: 1px solid rgba(200,168,85,0.3);
  border-radius: 1.5rem;
  padding: 3rem 2rem 2.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(200,168,85,0.15);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.quiz-result-card.visible {
  display: flex;
  transform: scale(1);
  opacity: 1;
}

.qr-emoji { font-size: 4rem; margin-bottom: 0.5rem; line-height: 1; }
.qr-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.qr-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.qr-desc {
  font-size: 0.9rem;
  color: rgba(246,240,228,0.6);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.qr-reason {
  font-size: 0.88rem;
  color: var(--gold-pale);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.qr-price-wrap { margin-bottom: 1.5rem; }
.qr-price {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}
.qr-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.qr-share {
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.15);
}
.qr-share:hover { background: rgba(255,255,255,0.14); }

.quiz-restart {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.quiz-restart:hover { color: rgba(255,255,255,0.7); }

/* Responsive */
@media (max-width: 600px) {
  .quiz-options { grid-template-columns: 1fr; }
  .roulette-section, .quiz-section { padding: 5rem 1.5rem; }
  .result-actions, .qr-actions { flex-direction: column; align-items: stretch; }
  .roulette-result-card { padding: 2.5rem 1.5rem 2rem; }
}


/* ══════════════════════════════════════════════════════════════════
   PAGE LOADER
   ══════════════════════════════════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  user-select: none;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(14px);
  animation: loaderRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.loader-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,240,228,0.4);
  margin-top: 0.5rem;
  opacity: 0;
  animation: loaderRise 0.7s ease 0.35s forwards;
}
.loader-bar {
  width: 100px;
  height: 2px;
  margin: 1.6rem auto 0;
  background: linear-gradient(90deg, var(--it-green), var(--gold), var(--it-red));
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  animation: loaderBar 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes loaderRise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  to { opacity: 1; transform: scaleX(1); }
}


/* ══════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: rgba(8, 14, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,168,85,0.2);
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
}
.cookie-text strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ivory);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.cookie-text p {
  font-size: 0.82rem;
  color: rgba(246,240,228,0.5);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--gold-pale);
  text-decoration: underline;
  text-decoration-color: rgba(200,168,85,0.4);
}
.cookie-text a:hover { color: var(--gold); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 2em;
  padding: 0.6em 1.5em;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.cookie-btn:hover { transform: translateY(-1px); opacity: 0.9; }
.cookie-btn.accept {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark-bg);
}
.cookie-btn.decline {
  background: rgba(255,255,255,0.08);
  color: rgba(246,240,228,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 600px) {
  .cookie-inner { gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}


/* ══════════════════════════════════════════════════════════════════
   GOOGLE MAPS — In Reservation Section
   ══════════════════════════════════════════════════════════════════ */
.reservation-inner {
  grid-template-columns: 1fr 1fr;
}
.reservation-map-wrap {
  margin-top: 0.5rem;
}
/* Buchungs-Widget volle Breite, zentriert unter Info + Karte */
.reservation-form-wrap {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 880px;
  margin: 1rem auto 0;
  text-align: center;
}

.maps-placeholder {
  width: 100%;
  height: 520px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.maps-placeholder.loaded {
  border-color: rgba(200,168,85,0.25);
  background: transparent;
}
.maps-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.maps-consent-prompt {
  text-align: center;
  padding: 2rem;
}
.maps-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.maps-consent-prompt p {
  color: rgba(246,240,228,0.7);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.maps-hint {
  font-size: 0.75rem;
  color: rgba(246,240,228,0.3);
  display: block;
  margin-bottom: 1rem;
}
.maps-load-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200,168,85,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(200,168,85,0.3);
  border-radius: 2em;
  padding: 0.55em 1.4em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.maps-load-btn:hover {
  background: rgba(200,168,85,0.25);
  border-color: rgba(200,168,85,0.5);
}


/* ══════════════════════════════════════════════════════════════════
   TAGES-EMPFEHLUNG (Daily Recommendation Banner)
   ══════════════════════════════════════════════════════════════════ */
.daily-rec-banner {
  background: var(--ivory);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--it-green), var(--gold), var(--it-red)) 1;
  padding: 1.5rem 3rem;
}
.daily-rec-inner {
  max-width: 960px;
  margin: 0 auto;
}
.daily-rec-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.daily-rec-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(6,61,28,0.05) 0%, rgba(200,168,85,0.06) 100%);
  border: 1px solid rgba(200,168,85,0.2);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.daily-rec-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.daily-rec-info {
  flex: 1;
}
.daily-rec-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--it-green-deep);
  margin-bottom: 0.2rem;
}
.daily-rec-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}
.daily-rec-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.daily-rec-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 0.2em 0.7em;
  border-radius: 1em;
}
.daily-rec-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--it-red);
  font-weight: 500;
}

@media (max-width: 600px) {
  .daily-rec-banner { padding: 1.25rem 1.5rem; }
  .daily-rec-content { flex-wrap: wrap; }
  .daily-rec-meta { align-items: flex-start; }
}


/* ══════════════════════════════════════════════════════════════════
   PRINT BUTTON
   ══════════════════════════════════════════════════════════════════ */
.print-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}
.print-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2em;
  padding: 0.5em 1.2em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.print-btn:hover {
  color: var(--it-green-deep);
  border-color: var(--it-green);
  background: #fff;
}


/* ══════════════════════════════════════════════════════════════════
   PRINT STYLESHEET
   ══════════════════════════════════════════════════════════════════ */
@media print {
  /* Scroll-Reveal: sonst bleiben ungesehene Blöcke unsichtbar (opacity: 0) */
  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav, .page-hero, .pasta-banner, .daily-rec-banner,
  .print-bar, .print-btn, footer, .footer,
  #page-loader, .cookie-banner,
  .btn, .btn-primary, .btn-outline { display: none !important; }

  body { background: #fff !important; color: #111 !important; }

  .menu-full {
    padding: 1.5rem !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .menu-section-title {
    color: #111 !important;
    border-image: none !important;
    border-bottom-color: #ccc !important;
  }

  .item-name  { color: #111 !important; }
  .item-price { color: #333 !important; }
  .item-desc  { color: #555 !important; }
  .tag        { border-color: #ccc !important; color: #666 !important; }

  .menu-item { page-break-inside: avoid; }
  .menu-section-block { page-break-inside: avoid; }

  .drinks-grid { grid-template-columns: 1fr 1fr !important; }

  /* Print header */
  .menu-full::before {
    content: 'Ristorante La Dolce Sosta · Besselstraße 1, 38114 Braunschweig · +49 (0)531 609 497 97';
    display: block;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    font-family: sans-serif;
  }
}
