/* ═══════════════════════════════════════════════════════════
   MARCO POLO – Pizzeria Klagenfurt-Viktring
   Design: Moderne Trattoria — Papier, Espresso, Tomate, Gold
   Typo: Fraunces (Display-Serif) + Work Sans
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Farben */
  --ink:        #1E1712;   /* Espresso – Haupttext */
  --ink-soft:   #4C4038;
  --ink-mute:   #8A7B6E;
  --paper:      #FAF5EC;   /* warmes Papier */
  --paper-2:    #F1E9D9;
  --white:      #FFFFFF;
  --tomato:     #BC3623;   /* Akzent */
  --tomato-dk:  #99281A;
  --basil:      #22402F;   /* Lieferservice-Band */
  --gold:       #C9A84C;   /* passt zum SVG-Icon */
  --gold-light: #DEBB72;
  --line:       #E5DAC7;
  --leader:     #CDBD9E;   /* Punktlinien in der Karte */
  --dark:       #171008;   /* Hero & Galerie */
  --dark-2:     #131009;   /* Footer */

  /* Schrift */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radien & Schatten */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 20px;
  --sh-md: 0 10px 32px rgba(30, 23, 18, .10);
  --sh-lg: 0 24px 64px rgba(30, 23, 18, .16);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur:  .3s;

  /* Körnung (Mini-SVG, kein extra Asset) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

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

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

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

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

::selection { background: var(--tomato); color: var(--paper); }

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

/* Skip-Link – nur bei Tastatur-Fokus sichtbar */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 2000;
  background: var(--tomato);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0; }

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow--gold { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.section-header h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}
.section-header p {
  margin-top: 16px;
  color: var(--ink-mute);
  font-size: 1.02rem;
  font-style: italic;
  font-family: var(--serif);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-primary { background: var(--tomato); color: #fff; }
.btn-primary:hover {
  background: var(--tomato-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(188, 54, 35, .3);
}

.btn-hero { background: var(--paper); color: var(--ink); }
.btn-hero:hover {
  background: var(--tomato);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(188, 54, 35, .4);
}

/* ── LOGO ─────────────────────────────────────────────────── */
.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.logo em { color: var(--tomato); font-style: italic; font-weight: 600; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 26px 0;
  transition: padding var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(250, 245, 236, .94);
  padding: 13px 0;
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(30, 23, 18, .07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.navbar .logo             { color: #fff; transition: color var(--dur); }
.navbar .logo em          { color: var(--gold-light); }
.navbar.scrolled .logo    { color: var(--ink); }
.navbar.scrolled .logo em { color: var(--tomato); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  position: relative;
  transition: color var(--dur);
}
.navbar.scrolled .nav-links a { color: var(--ink-soft); }

.nav-links a:not(.nav-reserve)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width var(--dur) var(--ease);
}
.navbar.scrolled .nav-links a:not(.nav-reserve)::after { background: var(--tomato); }
.nav-links a:not(.nav-reserve):hover::after,
.nav-links a.active-link:not(.nav-reserve)::after { width: 100%; }

.nav-reserve {
  background: var(--tomato);
  color: #fff !important;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
}
.nav-reserve:hover {
  background: var(--tomato-dk) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(188, 54, 35, .35);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled .burger span { background: var(--ink); }
.burger.open span              { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 108%, rgba(188, 54, 35, .34) 0%, transparent 62%),
    radial-gradient(ellipse 60% 55% at 85% -8%, rgba(201, 168, 76, .13) 0%, transparent 58%),
    radial-gradient(ellipse 55% 60% at 8% 20%, rgba(34, 64, 47, .5) 0%, transparent 60%),
    var(--dark);
}
/* Teller-Silhouetten als feine Linien */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg::before {
  width: min(62vw, 780px);
  height: min(62vw, 780px);
  right: -14%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 168, 76, .22);
}
.hero-bg::after {
  width: min(30vw, 360px);
  height: min(30vw, 360px);
  left: -8%;
  bottom: -12%;
  border: 1px dashed rgba(250, 245, 236, .14);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .07;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--paper);
  padding: 24px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 46px;
  height: 1px;
  background: rgba(222, 187, 114, .55);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.6vw, 6.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.015em;
  margin-bottom: 30px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .45);
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  font-weight: 400;
  color: rgba(250, 245, 236, .82);
  letter-spacing: .04em;
  margin-bottom: 44px;
}

/* Scroll-Hinweis */
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint::before {
  content: '';
  display: block;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(250, 245, 236, .38);
  border-radius: 14px;
}
.scroll-dot {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: dotDrop 2.2s ease-in-out infinite;
}
@keyframes dotDrop {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  55%      { transform: translateX(-50%) translateY(14px); opacity: .15; }
}

/* ── ÜBER UNS ─────────────────────────────────────────────── */
.about {
  padding: 130px 0;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 28px;
}
.about-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}
.about-badges svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: var(--gold);
}

/* Bild mit versetztem Linienrahmen */
.about-visual { position: relative; }
.about-visual::before {
  content: '';
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  opacity: .55;
  pointer-events: none;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }

/* ── SPEISEKARTE ──────────────────────────────────────────── */
.menu-section {
  padding: 130px 0;
  background: var(--paper-2);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .035;
  pointer-events: none;
}
.menu-section .container { position: relative; }

/* Tabs – wie Registerzeilen einer gedruckten Karte */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 30px;
  justify-content: center;
  margin-bottom: 56px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 6px;
  border: none;
  background: none;
  color: var(--ink-mute);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}
.tab:hover        { color: var(--ink); }
.tab.active       { color: var(--tomato); }
.tab.active::after { transform: scaleX(1); }

/* "Neue Gerichte" Badge */
.tab--new::before {
  content: 'NEU';
  position: absolute;
  top: -7px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 20px;
  pointer-events: none;
}

/* Panels */
.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: panelIn .35s var(--ease);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pizza-Aktion – wie ein Gutschein-Abriss */
.menu-aktion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--white);
  border: 1.5px dashed rgba(188, 54, 35, .5);
  border-radius: var(--r-md);
  color: var(--ink);
  padding: 18px 44px;
  max-width: 460px;
  margin: 0 auto 52px;
}
.aktion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.aktion-item span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.aktion-item strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tomato);
}
.aktion-divider {
  font-size: 1.6rem;
  color: var(--leader);
  line-height: 1;
}

/* Gerichte – gedruckte Karte mit Punktlinien */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  column-gap: 64px;
  row-gap: 4px;
}

.dish {
  padding: 13px 2px;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease);
}
.dish.featured {
  background: rgba(201, 168, 76, .13);
  padding: 13px 14px;
}

.dish-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.dish-row h3 {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  transition: color var(--dur);
}
/* Punktlinie zwischen Gericht und Preis */
.dish-row h3::after {
  content: '';
  flex: 1 1 28px;
  min-width: 28px;
  border-bottom: 2px dotted var(--leader);
  transform: translateY(-4px);
}
.dish:hover .dish-row h3 { color: var(--tomato); }

.price {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--tomato);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.chef-tag {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--gold);
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  transform: translateY(-2px);
}

/* Allergen-Buchstaben hinter Gerichten */
.allergene {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #7a5d12;
  white-space: nowrap;
  align-self: center;
}

/* Allergene-Legende (eigener Reiter) */
.allergene-legend {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.allergene-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink);
}
.allergene-key {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
@media (max-width: 560px) {
  .allergene-legend { grid-template-columns: 1fr; gap: 12px; }
}

/* ── LIEFERSERVICE ────────────────────────────────────────── */
.delivery {
  background: var(--basil);
  padding: 96px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.delivery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 100% 50%, rgba(23, 16, 8, .38) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 0% 0%, rgba(201, 168, 76, .1) 0%, transparent 55%);
  pointer-events: none;
}
.delivery::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.delivery-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
}

.delivery-icon-wrap svg {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
}

.delivery-body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.delivery-body p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.03rem;
  line-height: 1.75;
  max-width: 520px;
}
.delivery-body p strong { color: var(--gold-light); font-weight: 600; }

.delivery-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 26px;
}
.delivery-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}
.delivery-perks svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: var(--gold);
}

.delivery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.delivery-cta p {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}

.btn-delivery {
  background: var(--gold);
  color: var(--dark);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
  padding: 17px 32px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.btn-delivery:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
}

/* ── GALERIE ──────────────────────────────────────────────── */
.gallery {
  padding: 130px 0;
  background: var(--dark);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.gallery .container { position: relative; }

.gallery .section-header .eyebrow::before,
.gallery .section-header .eyebrow::after { background: var(--gold); }

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

.gallery-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0E0A05;
  border: 1px solid rgba(250, 245, 236, .08);
  position: relative;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery-card:hover {
  border-color: rgba(201, 168, 76, .45);
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.gallery-card:hover img { transform: scale(1.03); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 18px 15px;
  background: linear-gradient(transparent, rgba(14, 10, 5, .85));
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  pointer-events: none;
}

/* Video-Karten */
.gallery-card--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.gallery-card--video:hover video { transform: scale(1.03); }

.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 10, 5, .3);
  color: rgba(250, 245, 236, .9);
  transition: opacity var(--dur), background var(--dur);
  pointer-events: none;
}
.video-play-icon svg {
  width: 42px; height: 42px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .5));
}
.gallery-card--video.playing .video-play-icon { opacity: 0; }
.gallery-card--video:hover .video-play-icon   { background: rgba(14, 10, 5, .1); }

/* ── KONTAKT ──────────────────────────────────────────────── */
.contact {
  padding: 130px 0;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--tomato);
  border-radius: var(--r-md);
  padding: 24px 26px;
}
.info-card h3 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.info-card h3 svg { width: 15px; height: 15px; flex-shrink: 0; }
.info-card address,
.info-card p,
.info-card a {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.phone-link {
  font-family: var(--serif);
  font-size: 1.7rem !important;
  font-weight: 600;
  color: var(--ink) !important;
  display: block;
  margin-bottom: 4px;
  transition: color var(--dur);
}
.phone-link:hover { color: var(--tomato) !important; }
.phone-hint {
  font-size: .78rem !important;
  letter-spacing: .04em;
  color: var(--ink-mute) !important;
}

/* Öffnungszeiten */
.hours { display: flex; flex-direction: column; gap: 9px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .9rem;
  padding-bottom: 9px;
  border-bottom: 1px dotted var(--leader);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row dt { font-weight: 600; color: var(--ink); white-space: nowrap; }
.hours-row dd { color: var(--ink-soft); text-align: right; line-height: 1.5; }
.hours-row.closed dt,
.hours-row.closed dd { color: var(--ink-mute); }

.contact-details .btn-primary { align-self: flex-start; margin-top: 8px; }

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 16px 16px 0 rgba(188, 54, 35, .07), var(--sh-md);
  background: var(--paper-2);
}
.contact-map iframe { display: block; filter: saturate(.85) contrast(1.02); }
/* hidden-Attribut muss das display der Elemente überstimmen */
.contact-map iframe[hidden] { display: none; }
.map-consent[hidden] { display: none; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  color: rgba(250, 245, 236, .55);
  padding: 72px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--basil) 0 33.3%, var(--paper) 33.3% 66.6%, var(--tomato) 66.6% 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand .logo { color: var(--paper); display: block; margin-bottom: 16px; }
.footer-brand .logo em { color: var(--gold-light); }
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(250, 245, 236, .5);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col li a,
.footer-col p,
.footer-col a {
  font-size: .88rem;
  color: rgba(250, 245, 236, .48);
  transition: color var(--dur);
}
.footer-col li a:hover,
.footer-col a:hover { color: var(--gold-light); }

.social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(250, 245, 236, .48) !important;
  transition: color var(--dur);
}
.social-btn:hover { color: var(--gold-light) !important; }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(250, 245, 236, .09);
  padding-top: 26px;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .03em;
  color: rgba(250, 245, 236, .28);
}

/* ── SCROLL-ANIMATIONEN ───────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-up.in,
.reveal-right.in { opacity: 1; transform: none; }

/* Hero-Stagger */
.hero-content .hero-eyebrow { transition-delay: .15s; }
.hero-content .hero-title   { transition-delay: .3s; }
.hero-content .hero-sub     { transition-delay: .45s; }
.hero-content .btn          { transition-delay: .6s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { gap: 56px; }
  .menu-grid   { column-gap: 44px; }
}

@media (max-width: 900px) {
  .delivery-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .delivery-icon-wrap { display: none; }
  .delivery-perks { justify-content: center; }
  .delivery-body p { max-width: 100%; margin: 0 auto; }
  .delivery-body .eyebrow::before { display: none; }
}

@media (max-width: 1000px) {
  .burger { display: flex; z-index: 950; position: relative; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 85vw);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 40px;
    gap: 0;
    box-shadow: -8px 0 48px rgba(30, 23, 18, .18);
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: 940;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:has(.nav-reserve) { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 17px 0;
    color: var(--ink) !important;
    font-size: .92rem;
    letter-spacing: .14em;
  }
  .nav-links a:not(.nav-reserve)::after { display: none; }
  .nav-reserve {
    margin-top: 24px;
    padding: 14px 28px !important;
    background: var(--tomato) !important;
    color: #fff !important;
    border-radius: var(--r-sm);
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Seitliche Einblendung -> vertikal, damit nichts über den Rand ragt */
  .reveal-right { transform: translateY(36px); }

  .about { padding: 88px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap img { height: 400px; }
  .about-visual::before { inset: 16px -14px -14px 16px; }

  .menu-section { padding: 88px 0; }
  .section-header { margin-bottom: 44px; }
  .menu-tabs { gap: 2px 24px; margin-bottom: 40px; }

  .delivery { padding: 72px 0; }

  .gallery { padding: 88px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .contact { padding: 88px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-map { box-shadow: 10px 10px 0 rgba(188, 54, 35, .07), var(--sh-md); }

  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .hero-eyebrow::before,
  .hero-eyebrow::after { width: 26px; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 3.4rem); }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-aktion { gap: 22px; padding: 16px 24px; }

  .about-badges { grid-template-columns: 1fr; }

  .hours-row { flex-direction: column; gap: 2px; }
  .hours-row dd { text-align: left; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

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

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal-up, .reveal-right { opacity: 1; transform: none; }
  .scroll-dot { animation: none; }
}

/* ── COOKIE-BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: var(--dark);
  border-radius: var(--r-md);
  box-shadow: 0 14px 48px rgba(0, 0, 0, .38);
  padding: 20px 24px;
}
.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(245, 243, 255, .82);
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { background: var(--tomato); color: #fff; }
.cookie-accept:hover { background: var(--tomato-dk); transform: translateY(-1px); }
.cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(245, 243, 255, .32);
}
.cookie-decline:hover { background: rgba(245, 243, 255, .1); }

@media (max-width: 560px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px 18px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ── GOOGLE-MAPS-EINWILLIGUNG ─────────────────────────────── */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  min-height: 480px;
  padding: 36px 28px;
  background: var(--paper-2);
}
.map-consent svg { width: 40px; height: 40px; color: var(--gold); }
.map-consent p {
  max-width: 400px;
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: .82;
}
.map-consent p a { color: var(--tomato); text-decoration: underline; }
.map-external { font-size: .84rem; color: var(--tomato); text-decoration: underline; }
.map-external:hover { color: var(--tomato-dk); }

@media (max-width: 560px) {
  .map-consent { min-height: 340px; }
}

/* ── FOOTER: RECHTS-LINKS ─────────────────────────────────── */
.footer-legal {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: center;
}
.footer-legal a,
.footer-legal-btn {
  color: rgba(250, 245, 236, .5);
  font-size: .78rem;
  letter-spacing: .03em;
  transition: color var(--dur);
}
.footer-legal a:hover,
.footer-legal-btn:hover { color: var(--gold-light); }
.footer-legal-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ── RECHTSTEXTE (Datenschutz / Impressum) ────────────────── */
.legal-header {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-back-top { color: var(--tomato); font-weight: 600; font-size: .9rem; }
.legal-back-top:hover { color: var(--tomato-dk); }

.legal-main { padding: 60px 0 90px; }
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--ink);
  opacity: .55;
  font-size: .9rem;
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 40px 0 12px;
}
.legal p, .legal li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
}
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; list-style: disc; }
.legal li { margin-bottom: 4px; }
.legal a { color: var(--tomato); text-decoration: underline; }
.legal a:hover { color: var(--tomato-dk); }
.placeholder {
  background: #FBE6BF;
  color: #6b4a12;
  padding: 1px 7px;
  border-radius: 4px;
  font-weight: 600;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 44px;
  color: var(--tomato);
  font-weight: 600;
}
.legal-back:hover { color: var(--tomato-dk); }
