/* ============================================================
   Hoagie's Nürtingen — Stylesheet
   Website & Design: deinwebplan.de · Gökhan Albayrak
   ============================================================ */

:root {
  /* Marke aus dem Logo (grün/rot) + Diner-Akzente */
  --red:        #E0122B;
  --red-deep:   #A50D20;
  --red-dark:   #7E0A18;
  --green:      #1E9E4A;
  --green-deep: #157537;
  --yellow:     #F5B301;
  --cream:      #FFF9F0;

  --ink:        #1A1614;
  --ink-soft:   #4A433F;
  --ink-faint:  #857C75;
  --paper:      #FFFFFF;
  --surface:    #F7F4F0;
  --line:       #E9E2DA;
  --line-strong:#D4CBC1;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1160px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(26,22,20,.08);
  --shadow-md: 0 10px 28px rgba(26,22,20,.12);
  --shadow-lg: 0 24px 48px rgba(26,22,20,.18);

  --ease-out: cubic-bezier(.22,1,.36,1);

  /* semantische z-index Skala (keine 9999-Werte) */
  --z-header: 100;
  --z-switch: 90;
  --z-overlay: 200;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { line-height: 1.05; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .13em; color: var(--green-deep);
}
.eyebrow .star { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 0; border-radius: var(--radius);
  padding: .85rem 1.5rem;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-solid { background: #fff; color: var(--red); box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.55); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px #fff; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px rgba(26,22,20,.25); }
.btn-outline-dark:hover { color: #fff; background: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.08rem; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { height: 34px; width: auto; flex: 0 0 auto; transition: transform .4s var(--ease-out); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-name { font-family: var(--font-display); font-size: 1.65rem; color: var(--ink); }
.brand-name b { color: var(--red); font-weight: 400; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--ink-soft); position: relative; padding: .3rem 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-cta { background: var(--red); color: #fff !important; padding: .72rem 1.5rem; border-radius: 11px; font-weight: 700; font-size: .98rem; white-space: nowrap; box-shadow: var(--shadow-sm); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.nav-toggle-lines { display: block; width: 26px; height: 20px; position: relative; }
.nav-toggle-lines span {
  position: absolute; left: 0; height: 2.5px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s ease, top .3s var(--ease-out);
}
.nav-toggle-lines span:nth-child(1) { top: 2px; }
.nav-toggle-lines span:nth-child(2) { top: 9px; }
.nav-toggle-lines span:nth-child(3) { top: 16px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-menu { display: none; }
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    display: block; position: absolute; top: 100%; left: 0; right: 0; z-index: calc(var(--z-header) - 1); max-height: calc(100vh - 70px); overflow-y: auto;
    background: var(--paper); border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .28s var(--ease-out), opacity .22s ease, visibility 0s linear .28s;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; transition: transform .28s var(--ease-out), opacity .22s ease, visibility 0s; }
  .mobile-menu a { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); font-weight: 500; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(900px 600px at 110% 120%, rgba(0,0,0,.22), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; padding: clamp(2.5rem,6vw,5rem) 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; background: rgba(255,255,255,.15); padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1.3rem; }
.hero-kicker b { color: var(--yellow); }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.7rem,7.5vw,5rem); line-height: .94; letter-spacing: -0.005em; text-wrap: balance; margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 1.12rem; max-width: 44ch; margin-bottom: 1.9rem; color: rgba(255,255,255,.93); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 1.4rem; margin-top: 2rem; flex-wrap: wrap; font-size: .9rem; }
.hero-badges .b { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.9); }
.hero-badges svg { flex: 0 0 auto; }

/* Hero-Bild mit sanftem 3D-Tilt */
.hero-media { perspective: 1000px; }
.hero-photo {
  aspect-ratio: 16/11; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-6deg) rotateX(2deg); transition: transform .5s var(--ease-out);
  background: var(--red-deep);
}
.hero-photo:hover { transform: rotateY(0deg) rotateX(0deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; }
  .hero-photo { transform: none; }
}

/* ---------- Info-Streifen ---------- */
.infobar { background: var(--ink); color: #fff; font-size: .9rem; }
.infobar .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding: .9rem clamp(1rem,4vw,2.5rem); align-items: center; justify-content: center; }
.infobar .item { display: flex; align-items: center; gap: .55rem; border: none !important; background: none !important; padding: 0 !important; color: rgba(255,255,255,.9); }
.infobar .item a { color: rgba(255,255,255,.9); text-decoration: none; border: none; }
.infobar .item a:hover { color: #fff; }
.infobar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: 0 0 auto; animation: pulse 2.4s infinite; }
.infobar .hours-item { flex-wrap: wrap; justify-content: center; gap: .35rem .5rem; }
.infobar .hours-item .nb { white-space: nowrap; }
.infobar .hours-item .sep { opacity: .5; }
@media (max-width: 780px) { .infobar .hours-item .sep { display: none; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(30,158,74,.5);} 50% { box-shadow: 0 0 0 6px rgba(30,158,74,0);} }

/* ---------- Section-Kopf ---------- */
.head-center { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.head-center h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem,5vw,3.1rem); margin: .5rem 0; }
.head-center p { color: var(--ink-soft); }

/* ---------- Feature-Reihe (nicht identische Cards!) ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.feature { padding: 1.6rem; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .9rem; color: #fff; }
.feature:nth-child(1) .ic { background: var(--red); }
.feature:nth-child(2) .ic { background: var(--green); }
.feature:nth-child(3) .ic { background: var(--yellow); color: var(--ink); }
.feature:nth-child(4) .ic { background: var(--ink); }
.feature h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.feature p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- Story / About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem,4.5vw,2.8rem); margin: .6rem 0 1rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }
@media (max-width: 800px){ .split { grid-template-columns: 1fr; } }

/* ---------- Video-Block ---------- */
.video-feature { background: var(--ink); color: #fff; border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 380px 1fr; gap: 0; box-shadow: var(--shadow-lg); }
.video-feature video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; aspect-ratio: 9/16; }
.video-feature .vtext { padding: clamp(1.5rem,4vw,2.6rem); align-self: center; }
.video-feature .vtext h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem,4vw,2.4rem); margin-bottom: .8rem; }
.video-feature .vtext p { color: rgba(255,255,255,.82); margin-bottom: 1rem; }
@media (max-width: 720px){ .video-feature { grid-template-columns: 1fr; } .video-feature video { max-height: 70vh; margin: 0 auto; width: auto; } }

/* ---------- Speisekarte (Menu) ---------- */
.mode-switch { display: inline-flex; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 100px; padding: 4px; gap: 4px; }
.mode-switch button { font-family: var(--font-body); font-weight: 600; font-size: .95rem; border: 0; background: transparent; color: var(--ink-soft); padding: .6rem 1.4rem; border-radius: 100px; cursor: pointer; display: flex; align-items: center; gap: .5rem; transition: background .2s ease, color .2s ease, transform .12s ease; }
.mode-switch button .tag { width: 10px; height: 10px; border-radius: 50%; }
.mode-switch button[data-mode="pickup"] .tag { background: var(--yellow); }
.mode-switch button[data-mode="delivery"] .tag { background: var(--red); }
.mode-switch button.active[data-mode="pickup"] { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-sm); }
.mode-switch button.active[data-mode="delivery"] { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.mode-switch button.active .tag { background: rgba(0,0,0,.25); }
.switch-wrap { text-align: center; }
.mode-note { font-size: .85rem; color: var(--ink-soft); margin-top: .7rem; min-height: 1.2em; }
.menu-sticky { position: sticky; top: 70px; z-index: var(--z-switch); background: var(--paper); padding: 1rem 0; text-align: center; border-bottom: 1px solid var(--line); }

.cat-nav { display: flex; gap: .5rem; overflow-x: auto; padding: 1rem 0 .3rem; scrollbar-width: thin; }
.cat-nav a { flex: 0 0 auto; font-size: .9rem; font-weight: 500; padding: .45rem .95rem; border-radius: 100px; background: var(--surface); color: var(--ink-soft); border: 1px solid var(--line); white-space: nowrap; transition: all .2s ease; }
.cat-nav a:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-1px); }

.category { margin-top: 2.6rem; scroll-margin-top: 150px; }
.category-title { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; display: flex; align-items: center; gap: .7rem; padding-bottom: .6rem; margin-bottom: 1rem; border-bottom: 3px solid var(--green); }
.category-hint { font-size: .85rem; color: var(--ink-soft); background: var(--surface); border-radius: 8px; padding: .7rem .9rem; margin-bottom: 1.2rem; border: 1px solid var(--line); }
.items { display: grid; gap: .2rem; }
.item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .9rem .6rem; border-bottom: 1px solid var(--line); align-items: baseline; border-radius: 8px; transition: background .18s ease; }
.item:hover { background: var(--cream); }
.item:last-child { border-bottom: 0; }
.item-name { font-weight: 600; font-size: 1.02rem; }
.item-name .allergens { font-weight: 400; font-size: .72rem; color: var(--ink-faint); vertical-align: super; margin-left: .15rem; }
.item-desc { font-size: .88rem; color: var(--ink-soft); margin-top: .15rem; }
.item-prices { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-row { display: flex; gap: .8rem; justify-content: flex-end; align-items: flex-start; }
.price { font-weight: 700; font-size: 1.02rem; }
.price .size-label { display: block; font-size: .72rem; color: var(--ink-faint); font-weight: 500; text-align: center; }
.price-single { font-weight: 700; font-size: 1.02rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; cursor: pointer; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem; color: #fff; font-size: .85rem; font-weight: 500; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); opacity: 0; transition: opacity .3s ease; }
.gallery figure:hover figcaption { opacity: 1; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--green); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.5rem); text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem,4.5vw,2.8rem); margin-bottom: .6rem; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.3rem; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out); }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review .stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: .6rem; }
.review p { font-size: .95rem; color: var(--ink-soft); margin-bottom: .8rem; }
.review .who { font-weight: 600; font-size: .88rem; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
@media (max-width: 800px){ .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; }
.info-list .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--surface); display: grid; place-items: center; flex: 0 0 auto; color: var(--red); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 0; width: 100%; aspect-ratio: 4/3; }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: rgba(255,255,255,.82); padding: 3rem 0 1.6rem; margin-top: 3rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 780px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { font-family: var(--font-display); font-weight: 400; color: #fff; font-size: 1.2rem; margin-bottom: .8rem; }
.foot-brand .brand-name { color: #fff; }
.foot-list { list-style: none; font-size: .9rem; display: grid; gap: .4rem; }
.foot-list a:hover { color: var(--yellow); }
.social-row { display: flex; gap: .7rem; margin-top: 1rem; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.social-row a:hover { background: var(--red); transform: translateY(-2px); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.2rem; padding-top: 1.3rem; font-size: .82rem; color: rgba(255,255,255,.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }
.foot-bottom a { color: var(--yellow); font-weight: 500; }
.legend-box { font-size: .78rem; color: rgba(255,255,255,.68); line-height: 1.8; margin-top: .5rem; }

/* ---------- Scroll-Reveal (verbessert sichtbaren Default, gated nur mit JS-Klasse) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Zugänglichkeit ---------- */
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .7rem 1rem; z-index: var(--z-overlay); border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
.price { display: inline-flex; flex-direction: column; align-items: center; gap: .1rem; }
@media (max-width: 860px){ .cart-layout { grid-template-columns: 1fr; } }
.sum-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .95rem; }
.sum-row.total { border-top: 1px solid var(--line-strong); margin-top: .5rem; padding-top: .9rem; font-size: 1.2rem; font-weight: 700; }
.min-warn { background: #FFF4E5; border: 1px solid var(--yellow); border-radius: 10px; padding: .8rem 1rem; font-size: .85rem; color: #7A5A00; margin: 1rem 0; }
.min-ok { background: #EAF7EE; border: 1px solid var(--green); border-radius: 10px; padding: .8rem 1rem; font-size: .85rem; color: var(--green-deep); margin: 1rem 0; display: flex; align-items: center; gap: .5rem; }
.cart-empty { text-align: center; padding: 4rem 1rem; color: var(--ink-soft); }
.cart-empty svg { color: var(--line-strong); margin-bottom: 1rem; }
.chip { padding: .4rem .9rem; border-radius: 100px; font-size: .85rem; font-weight: 600; background: var(--surface); border: 1px solid var(--line); color: var(--ink-faint); }
.chip-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.chip-red { background: var(--red); color: #fff; border-color: var(--red); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideup { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.rev-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; font-size: .92rem; }
.rev-row span { color: var(--ink-soft); flex: 0 0 auto; }
.rev-row strong { text-align: right; }

/* Lade-Spinner für Bestellversand */
.spinner { width: 42px; height: 42px; border: 4px solid var(--line); border-top-color: var(--red); border-radius: 50%; margin: 0 auto; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 1.5s; } }

/* ============================================================
   HERO NEU — geschichtet, dynamisch, mit Wort-Slideshow
   ============================================================ */
.hero-v2 { position: relative; background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); color: #fff; overflow: hidden; min-height: clamp(520px, 85vh, 760px); display: flex; align-items: center; }
.hero-v2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1000px 500px at 12% 0%, rgba(255,255,255,.16), transparent 55%), radial-gradient(800px 600px at 100% 100%, rgba(0,0,0,.28), transparent 50%); pointer-events: none; }
/* dezentes Punkt-Raster als Textur (kein AI-Gradient-Mesh) */
.hero-v2::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px); background-size: 26px 26px; pointer-events: none; opacity: .6; }

.hero-v2-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 3rem clamp(1rem,4vw,2.5rem); display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; }
@media (max-width: 880px){ .hero-v2-inner { grid-template-columns: 1fr; text-align: center; } }

.hero-badge-row { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); padding: .45rem 1rem; border-radius: 100px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,.2); }
.hero-badge-row .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #7CFFA0; box-shadow: 0 0 0 0 rgba(124,255,160,.6); animation: livepulse 2s infinite; }
@keyframes livepulse { 0%{box-shadow:0 0 0 0 rgba(124,255,160,.6);} 70%{box-shadow:0 0 0 10px rgba(124,255,160,0);} 100%{box-shadow:0 0 0 0 rgba(124,255,160,0);} }

.hero-v2 h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.9rem, 8vw, 5.8rem); line-height: .95; letter-spacing: -0.01em; margin-bottom: .5rem; text-shadow: 0 4px 20px rgba(0,0,0,.15); }
/* rotierendes Wort — Höhe exakt an Zeilenhöhe gekoppelt */
.hero-rotator { display: inline-block; position: relative; height: 1em; line-height: 1; overflow: hidden; vertical-align: top; color: var(--yellow); }
.hero-rotator .rot-list { display: block; animation: rotateWords 10s infinite; }
.hero-rotator .rot-list span { display: block; height: 1em; line-height: 1; }
@keyframes rotateWords {
  0%, 22%   { transform: translateY(0); }
  25%, 47%  { transform: translateY(-1em); }
  50%, 72%  { transform: translateY(-2em); }
  75%, 97%  { transform: translateY(-3em); }
  100%      { transform: translateY(-4em); }
}
.hero-v2 .hero-sub { font-size: clamp(1rem,2.2vw,1.2rem); max-width: 46ch; margin: 1.2rem 0 2rem; color: rgba(255,255,255,.92); }
@media (max-width: 880px){ .hero-v2 .hero-sub { margin-inline: auto; } }

.hero-cta-row { display: flex; gap: .9rem; flex-wrap: wrap; }
@media (max-width: 880px){ .hero-cta-row { justify-content: center; } }
.btn-glow { position: relative; background: #fff; color: var(--red); box-shadow: 0 8px 30px rgba(0,0,0,.2); font-weight: 700; }
.btn-glow::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: btnglow 2.5s infinite; }
@keyframes btnglow { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.4);} 70%{box-shadow:0 0 0 14px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }
.btn-glow:hover { transform: translateY(-3px) scale(1.02); background: var(--yellow); color: var(--ink); }

/* Hero rechte Seite: rotierende Gericht-Karte + schwebende Elemente */
.hero-showcase { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero-disc { position: relative; width: min(360px, 80vw); aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; box-shadow: inset 0 0 60px rgba(0,0,0,.2), 0 30px 60px rgba(0,0,0,.3); animation: discfloat 6s ease-in-out infinite; }
@keyframes discfloat { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-14px) rotate(3deg);} }
.hero-dish { position: absolute; width: 78%; aspect-ratio: 4/3; border-radius: 18px; opacity: 0; transform: scale(.9) rotate(-4deg); transition: opacity .8s ease, transform .8s ease; filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); }
.hero-dish.active { opacity: 1; transform: scale(1) rotate(0deg); }

.float-chip { position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: .6rem .9rem; font-weight: 700; font-size: .85rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .5rem; animation: chipfloat 5s ease-in-out infinite; }
.float-chip small { display: block; font-weight: 500; color: var(--ink-faint); font-size: .72rem; }
.float-chip .fc-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.float-chip.fc1 { top: 4%; right: 2%; animation-delay: 0s; }
.float-chip.fc2 { bottom: 10%; left: -4%; animation-delay: 1.5s; }
.float-chip.fc3 { bottom: 40%; right: -6%; animation-delay: .8s; }
@keyframes chipfloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
@media (max-width: 880px){ .hero-showcase { margin-top: 2.5rem; } .float-chip.fc2 { left: 2%; } .float-chip.fc3 { right: 2%; } }

.hero-scroll-hint { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); font-size: .78rem; display: flex; flex-direction: column; align-items: center; gap: .3rem; letter-spacing: .1em; }
.hero-scroll-hint svg { animation: scrollbob 1.8s ease-in-out infinite; }
@keyframes scrollbob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }

/* ============================================================
   DIASHOW / KARUSSELL (Spezialitäten)
   ============================================================ */
.carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; align-items: stretch; transition: transform .6s var(--ease-out); }
.carousel-slide { min-width: 100%; }
.spec-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; height: 440px; }
@media (max-width: 720px){ .spec-card { grid-template-columns: 1fr; height: auto; min-height: 0; } }
.spec-visual { display: grid; place-items: center; padding: 1.5rem; position: relative; overflow: hidden; }
.spec-visual img { width: 82%; max-width: 300px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.18)); transition: transform .5s var(--ease-out); }
.spec-visual.cutout { background: radial-gradient(circle at 50% 60%, rgba(245,179,1,.12), transparent 70%); padding: 2rem; box-sizing: border-box; overflow: hidden; }
.spec-visual.cutout img { width: auto; height: auto; max-width: 82%; max-height: 82%; object-fit: contain; filter: drop-shadow(0 20px 28px rgba(0,0,0,.28)); }
.carousel-slide:hover .spec-visual img { transform: scale(1.06) rotate(-2deg); }
.spec-body { padding: clamp(1.5rem,4vw,2.5rem); display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.spec-body .eyebrow { margin-bottom: .6rem; }
.spec-body h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem,4vw,2.4rem); margin-bottom: .6rem; }
.spec-body p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.carousel-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line-strong); cursor: pointer; transition: all .25s ease; padding: 0; }
.carousel-dots button.active { background: var(--red); width: 28px; border-radius: 5px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); cursor: pointer; display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.carousel-arrow.prev { left: 12px; } .carousel-arrow.next { right: 12px; }
@media (max-width: 720px){ .carousel-arrow { width: 38px; height: 38px; } .carousel-arrow.prev { left: 6px; } .carousel-arrow.next { right: 6px; } .carousel-arrow svg { width: 17px; height: 17px; } }

/* ============================================================
   TRUST-BEREICH
   ============================================================ */
.trust-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.5rem; text-align: center; }
.trust-item { padding: 1.5rem 1rem; }
.trust-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem,5vw,3.2rem); color: var(--red); line-height: 1; }
.trust-label { color: var(--ink-soft); font-size: .92rem; margin-top: .4rem; }
.trust-item .ic { width: 48px; height: 48px; margin: 0 auto .8rem; border-radius: 14px; display: grid; place-items: center; background: var(--surface); color: var(--green); }

/* Menü-Vorschau-Kacheln mit Hover-Tilt */
.menu-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.2rem; }
.mp-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); padding: 1.5rem; text-align: center; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); cursor: pointer; }
.mp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mp-card img { width: 70%; margin: 0 auto .8rem; transition: transform .4s var(--ease-out); }
.mp-card:hover img { transform: scale(1.1) rotate(-3deg); }
.mp-card h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.mp-card p { font-size: .85rem; color: var(--ink-faint); }
.mp-card .mp-price { display: inline-block; margin-top: .6rem; font-weight: 700; color: var(--red); font-size: .95rem; }

/* ============================================================
   GOOGLE-BEWERTUNGEN
   ============================================================ */
.reviews-header { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.google-badge { display: flex; align-items: center; gap: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.6rem; box-shadow: var(--shadow-sm); }
.google-badge .g-logo { width: 40px; height: 40px; flex: 0 0 auto; }
.google-badge .g-score { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--ink); }
.google-badge .g-meta { display: flex; flex-direction: column; gap: .2rem; }
.stars-row { display: inline-flex; gap: 2px; }
.stars-row svg { width: 18px; height: 18px; }
.star-full { fill: var(--yellow); }
.star-half-wrap { position: relative; width: 18px; height: 18px; }
.star-empty { fill: #E0DAD2; }
.g-count { font-size: .85rem; color: var(--ink-soft); }
.g-count a { color: var(--red); font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }

/* ============================================================
   ERWEITERTE STARTSEITE — neue Sektionen
   ============================================================ */

/* Laufband mit Zutaten/Schlagworten */
.marquee { overflow: hidden; background: var(--ink); color: #fff; padding: .9rem 0; position: relative; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .02em; color: rgba(255,255,255,.92); }
.marquee-item .dot-sep { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; } }

/* Ablauf in 3 Schritten */
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 760px){ .steps-flow { grid-template-columns: 1fr; } }
.step-card { text-align: center; padding: 2rem 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num { width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.6rem; box-shadow: 0 8px 20px rgba(224,18,43,.3); }
.step-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step-card p { color: var(--ink-soft); font-size: .93rem; }
.step-card .step-ic { color: var(--green); margin-bottom: .8rem; }

/* Split-Feature groß (abwechselnd) */
.big-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.big-feature.flip .bf-visual { order: 2; }
@media (max-width: 820px){ .big-feature { grid-template-columns: 1fr; } .big-feature.flip .bf-visual { order: 0; } }
.bf-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; display: grid; place-items: center; }
.bf-visual img { width: 70%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.2)); transition: transform .6s var(--ease-out); }
.big-feature:hover .bf-visual img { transform: scale(1.08) rotate(-3deg); }
/* Auto-Swap-Bilder bleiben ruhig (kein Hover-Wackeln) */
.big-feature:hover .bf-visual.autoswap .swap-img,
.bf-visual.autoswap:hover .swap-img { transform: translate(-50%, -50%) !important; }
.bf-body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1rem; }
.bf-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.bf-list { list-style: none; display: grid; gap: .6rem; margin: 1.2rem 0; }
.bf-list li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.bf-list li svg { flex: 0 0 auto; color: var(--green); }

/* Öffnungszeiten-Widget mit Live-Status */
.hours-widget { background: var(--ink); color: #fff; border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; box-shadow: var(--shadow-lg); }
@media (max-width: 720px){ .hours-widget { grid-template-columns: 1fr; } }
.hours-list { padding: clamp(1.5rem,4vw,2.5rem); }
.hours-list h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; margin-bottom: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.hours-row.today { color: var(--yellow); font-weight: 700; }
.hours-row .day { color: rgba(255,255,255,.8); }
.hours-row.today .day { color: var(--yellow); }
.hours-cta { background: var(--red); padding: clamp(1.5rem,4vw,2.5rem); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1rem; }
.live-status { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15); padding: .4rem .9rem; border-radius: 100px; font-size: .85rem; font-weight: 600; }
.live-status .ls-dot { width: 9px; height: 9px; border-radius: 50%; background: #7CFFA0; animation: livepulse 2s infinite; }
.live-status.closed .ls-dot { background: #FF8A8A; animation: none; }

/* FAQ-Akkordeon */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s ease; }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary { padding: 1.1rem 1.3rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; list-style: none; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .3s ease; flex: 0 0 auto; color: var(--red); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: .94rem; line-height: 1.65; }

/* großes Zitat / Banner */
.quote-band { text-align: center; max-width: 820px; margin: 0 auto; }
.quote-band .q-mark { font-family: var(--font-display); font-size: 5rem; color: var(--red); line-height: .5; opacity: .25; }
.quote-band p { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem,3.5vw,2.4rem); line-height: 1.3; color: var(--ink); margin: 1rem 0; }
.quote-band .q-author { color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   UNTERSEITEN-HEROS (konsistent, mit Textur & Bewegung)
   ============================================================ */
.page-hero { position: relative; color: #fff; overflow: hidden; padding: clamp(2.5rem,6vw,4.5rem) 0; text-align: center; }
.page-hero.red { background: linear-gradient(135deg, var(--red), var(--red-deep)); }
.page-hero.green { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.page-hero.dark { background: linear-gradient(135deg, #2A2320, var(--ink)); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 300px at 20% 0%, rgba(255,255,255,.14), transparent 60%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px); background-size: 24px 24px; opacity: .5; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.3rem,6vw,3.8rem); margin: .5rem 0; text-shadow: 0 4px 20px rgba(0,0,0,.15); }
.page-hero p { max-width: 56ch; margin: 0 auto; color: rgba(255,255,255,.92); font-size: clamp(1rem,2vw,1.15rem); }
.page-hero .eyebrow { color: rgba(255,255,255,.95); }
.page-hero .eyebrow .star { color: var(--yellow); }
/* schwebende Deko-Illustration im Unterseiten-Hero */
.page-hero-deco { position: absolute; opacity: .12; pointer-events: none; z-index: 1; border-radius: 50%; }
.page-hero-deco.d1 { top: -20px; right: 4%; width: 160px; height: 160px; object-fit: cover; animation: discfloat 7s ease-in-out infinite; }
.page-hero-deco.d2 { bottom: -40px; left: 3%; width: 130px; height: 130px; object-fit: cover; animation: discfloat 8s ease-in-out infinite reverse; }

/* Abschnitts-Trenner mit Welle */
.wave-sep { display: block; width: 100%; height: 40px; }

/* Galerie-Verbesserung: Masonry-Feeling + Lightbox-Hover */
.gallery figure { cursor: default; }
.gallery figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(224,18,43,.35), transparent 50%); opacity: 0; transition: opacity .35s ease; }
.gallery figure:hover::after { opacity: 1; }

/* Info-Karten für Kontakt/Liefergebiet mit Hover */
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green); }

/* Familie-Bild Tilt (ersetzt inline onmouseover, CSP-konform) */
[data-hover="tilt"] { transform: rotate(-1.5deg); transition: transform .5s var(--ease-out); }
[data-hover="tilt"]:hover { transform: rotate(0); }

/* ============================================================
   ECHTE FOOD-FOTOS — Hero-Scheibe & Karussell
   ============================================================ */
/* Hero: Fotos füllen die runde Scheibe */
.hero-disc.photo { overflow: hidden; padding: 0; }
.hero-disc.photo .hero-dish { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: none; transform: scale(1.05); transition: opacity .9s ease, transform 6s ease; }
.hero-disc.photo .hero-dish.active { transform: scale(1); }

/* Karussell & Feature: Fotos füllen die Visual-Fläche randlos */
.spec-visual.photo { padding: 0; }
.spec-visual.photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; filter: none; }
.carousel-slide:hover .spec-visual.photo img { transform: scale(1.05); }
.bf-visual.photo { padding: 0; }
.bf-visual.photo img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.bf-visual.cutout { background: radial-gradient(circle at 50% 55%, rgba(245,179,1,.14), transparent 68%); overflow: visible; padding: 1rem; box-sizing: border-box; }
.bf-visual.cutout img { width: auto; height: auto; max-width: 90%; max-height: 90%; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(0,0,0,.26)); }

/* Menü-Vorschau-Kacheln mit echten Fotos */
.mp-card.photo { padding: 0; overflow: hidden; }
.mp-card.photo .mp-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.mp-card.photo .mp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.mp-card.photo:hover .mp-img img { transform: scale(1.08); }
.mp-card.photo .mp-body { padding: 1rem 1rem 1.3rem; text-align: center; }
.mp-card.photo h3 { margin-bottom: .2rem; }

/* Speisekarten-Gerichte: kleines Vorschaubild */
.dish-thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: 0 0 auto; box-shadow: var(--shadow-sm); }
@media (max-width: 560px){ .dish-thumb { width: 52px; height: 52px; } }

/* Foto-Galerie-Grid (Startseite) */
.food-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .8rem; }
.food-gallery .fg-item { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.food-gallery .fg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.food-gallery .fg-item:hover img { transform: scale(1.08); }
.food-gallery .fg-item::after { content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .7rem; background: linear-gradient(to top, rgba(0,0,0,.75), transparent); color: #fff; font-size: .82rem; font-weight: 600; opacity: 0; transition: opacity .3s ease; }
.food-gallery .fg-item:hover::after { opacity: 1; }

/* ============================================================
   VORHER/HEUTE — Tankstellen-Geschichte
   ============================================================ */
.then-now { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: stretch; }
@media (max-width: 640px){ .then-now { grid-template-columns: 1fr; } }
.tn-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/2; }
.tn-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.tn-card:hover img { transform: scale(1.05); }
.tn-card .tn-tag { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: rgba(0,0,0,.75); color: #fff; padding: .4rem .9rem; border-radius: 100px; font-size: .8rem; font-weight: 700; letter-spacing: .03em; }
.tn-card.then .tn-tag { background: rgba(60,50,45,.85); }
.tn-card.now .tn-tag { background: var(--red); }
.tn-card .tn-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem .9rem .8rem; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); color: #fff; font-size: .85rem; z-index: 2; }
.tn-arrow { display: grid; place-items: center; }
@media (max-width: 640px){ .tn-arrow { transform: rotate(90deg); padding: .3rem 0; } }

/* ============================================================
   TIKTOK / REELS-GALERIE (Hochformat-Videos)
   ============================================================ */
.reels-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 820px; margin: 0 auto; }
@media (max-width: 680px){ .reels-row { grid-template-columns: 1fr 1fr; } .reels-row .reel:nth-child(3){ display: none; } }
@media (max-width: 420px){ .reels-row { grid-template-columns: 1fr; max-width: 280px; } .reels-row .reel:nth-child(3){ display: block; } }
.reel { position: relative; aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #000; cursor: pointer; }
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel .reel-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.reel:hover .reel-poster { transform: scale(1.05); }
.reel .reel-play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; pointer-events: none; }
.reel .reel-play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .3s ease; }
.reel:hover .reel-play span { transform: scale(1.1); }
.reel .reel-play svg { margin-left: 3px; }
.reel.playing .reel-poster, .reel.playing .reel-play { opacity: 0; pointer-events: none; }
.reel .reel-badge { position: absolute; top: .7rem; right: .7rem; z-index: 3; background: rgba(0,0,0,.6); color: #fff; border-radius: 100px; padding: .25rem .6rem; font-size: .7rem; font-weight: 700; display: flex; align-items: center; gap: .3rem; }

/* ===== Kontaktformular ===== */

.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: .35rem; }
.form-field input, .form-field textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line-strong); border-radius: 10px; font-family: inherit; font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,158,74,.15); }

/* ============================================================
   Checkout (Baustein 2)
   ============================================================ */
.field-error { display: none; color: var(--red-deep); font-size: .82rem; margin-top: .35rem; font-weight: 500; }
.form-field input.invalid, .form-field textarea.invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,18,43,.12); }
.form-field textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line-strong); border-radius: 10px; font-family: inherit; font-size: 1rem; resize: vertical; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,158,74,.15); }

/* ===== Bewertungs-Karten & Hero-Copy ===== */

.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); display: flex; flex-direction: column; gap: .8rem; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card .rc-top { display: flex; align-items: center; gap: .8rem; }
.review-card .rc-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.1rem; flex: 0 0 auto; font-family: var(--font-body); }
.review-card .rc-name { font-weight: 600; font-size: .95rem; }
.review-card .rc-date { font-size: .8rem; color: var(--ink-faint); }
.review-card .rc-text { color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }
.review-card .rc-source { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--ink-faint); margin-top: auto; padding-top: .4rem; }
.review-card .rc-source svg { width: 14px; height: 14px; }
/* ============================================================
   SEKTIONS-BILDER — begrenzte Größe, edle Präsentation
   ============================================================ */
.story-photo {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 14px 14px 52px;
  border-radius: 3px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.15);
  transform: rotate(-2.2deg) translateZ(0);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  will-change: transform;
}
.story-photo img { width: 100%; height: auto; display: block; border-radius: 1px; }
.story-photo-inner { display: none; }
.story-photo::after {
  content: 'Familie Sak · Hoagie\2019s';
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  color: #666;
  letter-spacing: .02em;
}
.story-photo:hover { transform: rotate(0) scale(1.02); box-shadow: 0 32px 80px -16px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.2); }

.section-photo {
  display: block;
  max-width: 440px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.section-photo:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 28px 60px -14px rgba(0,0,0,.28); }

@media (max-width: 900px){
  .story-photo, .section-photo { max-width: 340px; }
}

/* ============================================================
   PREMIUM VIDEO-SEKTION — Feature + Reels-Galerie
   ============================================================ */
.video-showcase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px){ .video-showcase { grid-template-columns: 1fr; gap: 1.6rem; } }

/* Feature-Video (Influencer) — größer, mit Glow */
.video-feature-card {
  position: relative;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 30px 70px -18px rgba(224,18,43,.4), 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  transform: translateZ(0);
}
.video-feature-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 40px 90px -20px rgba(224,18,43,.55), 0 0 0 1px rgba(255,255,255,.14); }
.video-feature-card video, .video-feature-card .reel-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-feature-card .vf-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: #fff; font-weight: 700; font-size: .95rem;
}
.video-feature-card.playing .reel-poster,
.video-feature-card.playing .reel-play,
.video-feature-card.playing .vf-label { opacity: 0; pointer-events: none; }

/* Reels-Raster (5 TikToks) */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: .7rem;
  justify-content: center;
}
.reels-grid .reel { aspect-ratio: 9/16; border-radius: 12px; }
.reels-grid .reel .reel-play span { width: 36px; height: 36px; }
.reels-grid .reel .reel-play svg { width: 16px; height: 16px; }
.reels-grid .reel-badge { font-size: .62rem; padding: .18rem .45rem; }
@media (max-width: 560px){
  .reels-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; }
}

/* ============================================================
   PREMIUM-EFFEKTE — 3D, Glow, Magnetic, Glassmorphism
   ============================================================ */

/* --- 3D-Tilt für Karten (Maus-gesteuert via JS) --- */
.tilt-3d {
  transform-style: preserve-3d;
  transition: transform .15s ease-out, box-shadow .4s var(--ease-out);
  will-change: transform;
}
.tilt-3d > * { transform: translateZ(30px); }

/* --- Glow-Effekt für Karten beim Hover --- */
.glow-card { position: relative; overflow: hidden; }
.glow-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(224,18,43,.18), transparent 65%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: var(--mx, 50%); top: var(--my, 50%);
  z-index: 0;
}
.glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* --- Karten heben sich edler --- */
.spec-card, .trust-item, .step-card, .review-card, .fg-item {
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.trust-item:hover, .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -12px rgba(0,0,0,.16);
}

/* --- Buttons: magnetischer Glanz-Effekt --- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-22deg);
  transition: left .7s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 140%; }

/* --- Hero-Scheibe: sanftes 3D-Schweben --- */
.hero-disc.photo {
  transition: transform .8s var(--ease-out);
  will-change: transform;
}

/* --- Food-Galerie: edler Zoom + Overlay --- */
.food-gallery .fg-item {
  box-shadow: 0 4px 16px -4px rgba(0,0,0,.12);
}
.food-gallery .fg-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px -12px rgba(0,0,0,.28);
  z-index: 2;
}

/* --- Scroll-Fortschrittsbalken oben --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  width: 0%;
  z-index: 200;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(224,18,43,.6);
}

/* --- Zahlen-Counter: edles Aufleuchten --- */
.trust-num { transition: text-shadow .4s ease; }
.trust-item:hover .trust-num { text-shadow: 0 0 24px rgba(224,18,43,.35); }

/* --- Bildunterschriften in der Galerie eleganter --- */
.gallery figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.gallery figure:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -14px rgba(0,0,0,.3); }
.gallery figure img { transition: transform .7s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.07); }

/* --- Reduzierte Bewegung respektieren (Barrierefreiheit) --- */
@media (prefers-reduced-motion: reduce) {
  .tilt-3d, .glow-card::before, .btn::after, .hero-disc.photo { transition: none !important; transform: none !important; }
  .scroll-progress { display: none; }
}

/* ============================================================
   MOBILE-FEINSCHLIFF — Überlauf & Tap-Ziele (Barrierefreiheit)
   ============================================================ */

/* Kategorie-Navigation darf den Container nicht sprengen */
.cat-nav {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a { scroll-snap-align: start; }

/* Globaler Überlauf-Schutz */
html, body { overflow-x: hidden; max-width: 100%; }

/* Tap-Ziele: mindestens 44px (Apple/Google-Richtlinie) */
@media (max-width: 768px) {
  .nav a, .mobile-menu a,
  .cat-nav a, .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Footer-Links (footer.site / .foot-grid) */
  footer.site a,
  .foot-grid a,
  .foot-links a,
  .foot-brand a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: .3rem 0;
  }
  /* Social-Icons quadratisch & groß genug */
  .social-row a, footer.site .social-row a {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .cat-nav a { padding: .6rem 1rem; }
  .legend-box span { min-height: 32px; display: inline-flex; align-items: center; }
}

/* Sehr kleine Geräte (320px) */
@media (max-width: 360px) {
  .wrap { padding-left: 1rem; padding-right: 1rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .reels-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .story-photo, .section-photo { max-width: 100%; }
}

/* Inline-Links in Texten (Telefon, Social) — antippbarer machen */
@media (max-width: 768px) {
  a[href^="tel:"],
  .contact-list a,
  .foot-brand p a {
    display: inline-block;
    padding: .45rem .2rem;
    margin: -.45rem -.2rem;  /* Layout bleibt gleich, Trefferfläche wächst */
  }
}

/* Galerie-Seite: 6 Videos in kompaktem Raster */
.reels-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 155px));
  gap: .7rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.reels-gallery .reel { aspect-ratio: 9/16; border-radius: 12px; }
.reels-gallery .reel .reel-play span { width: 36px; height: 36px; }
.reels-gallery .reel .reel-play svg { width: 16px; height: 16px; }
.reels-gallery .reel-badge { font-size: .62rem; padding: .18rem .45rem; }
@media (max-width: 480px){
  .reels-gallery { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
}

/* Fehlermeldung, falls ein Video nicht lädt */
.video-err {
  position: absolute; inset: 0; z-index: 5;
  display: grid; place-items: center;
  background: rgba(0,0,0,.8); color: #fff;
  font-size: .78rem; text-align: center; padding: 1rem;
}

/* ============================================================
   KATEGORIE-WEGWEISER — bildlos, interaktiv, mit echten Daten
   ============================================================ */
.menu-explorer {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .85rem;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1000px){ .menu-explorer { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .menu-explorer { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }

.mx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem .85rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s ease;
  text-decoration: none;
  color: inherit;
}
.mx-card .mx-count { flex: 1 1 auto; }
.mx-card .mx-price { margin-top: auto; }
.mx-card::after { display: none; }

/* Farbiger Balken oben, wächst beim Hover */
.mx-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.mx-card:hover::before { transform: scaleX(1); }

.mx-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px -14px rgba(0,0,0,.2);
  border-color: var(--accent, var(--red));
}

.mx-icon {
  width: 54px; height: 54px;
  margin: 0 auto .9rem;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent-soft, rgba(224,18,43,.08));
  color: var(--accent, var(--red));
  transition: transform .5s var(--ease-out), background .3s ease;
}
.mx-card:hover .mx-icon { transform: scale(1.12) rotate(-6deg); }

.mx-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: .01em;
  margin-bottom: .3rem;
  color: var(--ink);
}
.mx-count {
  font-size: .78rem;
  color: var(--ink-faint);
  margin-bottom: .5rem;
}
.mx-price {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent, var(--red));
  background: var(--accent-soft, rgba(224,18,43,.08));
  padding: .25rem .7rem;
  border-radius: 100px;
}
.mx-arrow {
  position: absolute;
  right: .9rem; bottom: .9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s var(--ease-out);
  color: var(--accent, var(--red));
}
.mx-card:hover .mx-arrow { opacity: 1; transform: translateX(0); }

/* Kategorie-Farben */
.mx-card.c-pizza      { --accent:#E0122B; --accent-soft:rgba(224,18,43,.08); }
.mx-card.c-subs       { --accent:#1E9E4A; --accent-soft:rgba(30,158,74,.09); }
.mx-card.c-burger     { --accent:#C2410C; --accent-soft:rgba(194,65,12,.09); }
.mx-card.c-flamm      { --accent:#B45309; --accent-soft:rgba(180,83,9,.09); }
.mx-card.c-salat      { --accent:#15803D; --accent-soft:rgba(21,128,61,.09); }
.mx-card.c-dessert    { --accent:#9333EA; --accent-soft:rgba(147,51,234,.09); }

/* Fakten-Leiste darunter */
.mx-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.8rem;
}
.mx-fact {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform .3s var(--ease-out), border-color .3s ease;
}
.mx-fact:hover { transform: translateY(-2px); border-color: var(--green); }
.mx-fact svg { color: var(--green); flex: 0 0 auto; }
.mx-fact strong { color: var(--ink); }

/* ============================================================
   ZEITLEISTE — Geschichte von Hoagie's
   ============================================================ */
.timeline { position: relative; max-width: 760px; margin: 2.5rem auto 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 26px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--yellow), var(--green));
  border-radius: 2px;
}
@media (max-width: 620px){ .timeline::before { left: 20px; } }

.tl-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 2.2rem;
}
@media (max-width: 620px){ .tl-item { padding-left: 56px; padding-bottom: 1.8rem; } }
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: 0; top: 2px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper);
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-size: .92rem;
  color: var(--ink);
  z-index: 1;
  transition: transform .45s var(--ease-out), border-color .35s ease, box-shadow .45s var(--ease-out);
}
@media (max-width: 620px){ .tl-dot { width: 42px; height: 42px; font-size: .74rem; } }

.tl-item:hover .tl-dot {
  transform: scale(1.08);
  border-color: var(--accent, var(--red));
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.25);
}
.tl-item.a-red    { --accent: var(--red); }
.tl-item.a-yellow { --accent: var(--yellow); }
.tl-item.a-green  { --accent: var(--green); }

.tl-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .35s ease;
}
.tl-item:hover .tl-body {
  transform: translateX(5px);
  border-color: var(--accent, var(--red));
  box-shadow: 0 16px 36px -14px rgba(0,0,0,.18);
}
.tl-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
.tl-body p { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.tl-body p + p { margin-top: .5rem; }

/* ============================================================
   WHATSAPP-KONTAKT
   ============================================================ */
.wa-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background .25s ease, transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.5);
}
.btn-whatsapp:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-whatsapp svg { flex: 0 0 auto; }

.wa-alt {
  display: flex;
  align-items: stretch;
  gap: .8rem;
  margin: 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.wa-alt .btn { flex: 1 1 auto; min-width: 160px; justify-content: center; gap: .5rem; }
@media (max-width: 560px) {
  .wa-alt { flex-direction: column; }
  .wa-alt .btn { width: 100%; min-width: 0; }
}
.wa-hint { color: var(--ink-faint); font-size: .82rem; margin-top: .9rem; text-align: center; }

/* ============================================================
   SCHWEBENDER WHATSAPP-BUTTON (alle Seiten)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,.6);
  z-index: 90;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px -6px rgba(37,211,102,.75);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 24px -6px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 768px){
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 27px; height: 27px; }
}
@media (prefers-reduced-motion: reduce){ .wa-float { animation: none; } }

/* ============================================================
   JOBS / KARRIERE
   ============================================================ */
.job-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, #2a1518 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  overflow: hidden;
  text-align: center;
}
.job-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(224,18,43,.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(245,179,1,.18), transparent 45%);
  pointer-events: none;
}
.job-hero > * { position: relative; z-index: 1; }
.job-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.job-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: job-pulse 2s infinite; }
@keyframes job-pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(37,211,102,.6);} 50%{ box-shadow: 0 0 0 8px rgba(37,211,102,0);} }

.job-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
@media (max-width: 640px){ .job-perks { grid-template-columns: 1fr; gap: .7rem; } }
.job-perk {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s ease;
}
.job-perk:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -14px rgba(0,0,0,.18); border-color: var(--red); }
.job-perk .jp-icon {
  width: 48px; height: 48px; margin: 0 auto .8rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(224,18,43,.08);
  color: var(--red);
}
.job-perk h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; margin-bottom: .3rem; }
.job-perk p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

.job-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #fff;
  text-decoration: none;
  margin-top: .5rem;
  transition: transform .3s var(--ease-out);
}
.job-cta-phone:hover { transform: scale(1.04); }
.job-cta-phone svg { color: #25D366; }

/* Startseiten-Job-Streifen (clean, professionell) */
.job-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.job-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(circle at 80% 50%, rgba(224,18,43,.25), transparent 70%);
  pointer-events: none;
}
.job-strip .js-left { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }
.job-strip .js-icon {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: var(--yellow);
}
.job-strip .js-text { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.4; }
.job-strip .js-text strong { color: #fff; display: block; font-size: 1.05rem; margin-bottom: .1rem; }
.job-strip .btn { position: relative; z-index: 1; flex: 0 0 auto; }

/* Heller Ghost-Button (für dunkle/rote Hintergründe, z.B. PDF-Download) */
.btn-ghost-light {
  background: rgba(255,255,255,.14);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ============================================================
   AMERICAN DINER — Premium-Details & Retro-Elemente
   ============================================================ */

/* Retro-Stempel "Est. 1991" */
.retro-stamp {
  position: absolute;
  bottom: 4%;
  right: 8%;
  top: auto;
  left: auto;
  display: inline-grid;
  place-items: center;
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  color: #fff;
  text-align: center;
  transform: rotate(-12deg) scale(0);
  background: var(--ink);
  box-shadow: 0 12px 32px -6px rgba(0,0,0,.55);
  animation: stampIn .6s cubic-bezier(.34,1.56,.64,1) 1.8s forwards;
  z-index: 5;
  z-index: 4;
}
.retro-stamp::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(245,179,1,.7);
}
.retro-stamp .rs-top { font-size: .5rem; letter-spacing: .16em; font-weight: 700; text-transform: uppercase; }
.retro-stamp .rs-year { font-family: var(--font-display); font-size: 1.35rem; line-height: 1; color: var(--yellow); }
.retro-stamp .rs-bot { font-size: .46rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
@keyframes stampIn {
  0%   { transform: rotate(-40deg) scale(2.4); opacity: 0; }
  60%  { transform: rotate(-8deg) scale(.9); opacity: 1; }
  100% { transform: rotate(-12deg) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .retro-stamp { animation: none !important; transform: rotate(-12deg) !important; }
}

/* Sternen-Trennband (US-Style) */
.star-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 0;
  color: var(--red);
}
.star-band::before, .star-band::after {
  content: '';
  height: 2px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--red));
}
.star-band::after { background: linear-gradient(90deg, var(--red), transparent); }
.star-band .sb-stars { display: flex; gap: .4rem; }
.star-band svg { color: var(--yellow); }
.star-band svg:nth-child(2) { color: var(--red); transform: scale(1.2); }

/* Diner-Chip mit Glanz */
.diner-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--red), #b30e22);
  color: #fff;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -6px rgba(224,18,43,.5), inset 0 1px 0 rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}

/* Section-Divider im Zickzack (Diner-Tischdecke) */
.zigzag {
  height: 12px;
  background: linear-gradient(135deg, var(--red) 25%, transparent 25%) -8px 0,
             linear-gradient(225deg, var(--red) 25%, transparent 25%) -8px 0;
  background-size: 16px 16px;
  opacity: .12;
}

/* Verbesserter Glow für dunkle Sektionen */
.section[style*="var(--ink)"] { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .retro-stamp { transform: rotate(-12deg); }
}

/* Retro-Stempel auf kleinen Screens kleiner (sitzt jetzt außerhalb der Pizza) */
@media (max-width: 600px){
  .retro-stamp { width: 76px; height: 76px; right: 4%; bottom: 4%; }
  .retro-stamp .rs-year { font-size: 1.05rem; }
  .retro-stamp .rs-top { font-size: .42rem; }
  .retro-stamp .rs-bot { font-size: .4rem; }
}
@media (max-width: 380px){
  .retro-stamp { width: 66px; height: 66px; }
  .retro-stamp .rs-year { font-size: .9rem; }
}

/* ============================================================
   VIDEO-SHOWCASE — einheitliches Raster
   ============================================================ */
.reels-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
  gap: 1rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 640px){
  .reels-showcase { grid-template-columns: repeat(3, 1fr); gap: .6rem; max-width: 100%; }
}
@media (max-width: 400px){
  .reels-showcase { grid-template-columns: repeat(2, 1fr); }
}

/* "Mehr auf TikTok" nach Videoende */
.reel-more {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background: rgba(20,10,12,.82);
  backdrop-filter: blur(3px);
  text-decoration: none;
  animation: reelMoreIn .4s var(--ease-out);
}
@keyframes reelMoreIn { from { opacity: 0; } to { opacity: 1; } }
.reel-more .rm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  text-align: center;
  padding: 1rem;
}
.reel-more svg { color: #fff; transition: transform .3s var(--ease-out); }
.reel-more:hover svg { transform: scale(1.15); }

/* ============================================================
   LADEANIMATION — drehende Pizza
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--red);
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-pizza {
  width: 76px; height: 76px;
  margin: 0 auto;
  animation: pizzaSpin 1.4s linear infinite;
  transform-origin: center;
}
@keyframes pizzaSpin { to { transform: rotate(360deg); } }
.loader-text {
  margin-top: 1.3rem;
  color: rgba(255,255,255,.92);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.loader-dots span {
  display: inline-block;
  width: 6px; height: 6px;
  margin: 0 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  animation: loaderDot 1.2s infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes loaderDot {
  0%,100% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce){
  .loader-pizza { animation: none; }
  .loader-dots span { animation: none; }
}

/* Legende-Gruppen (Allergene + Zusatzstoffe) */
.legend-label { font-weight: 700; color: var(--ink); margin-right: .3rem; }
.legend-group { line-height: 1.7; }

/* ============================================================
   AKTIONS-BANNER (oben, schließbar)
   ============================================================ */
.aktion-bar {
  width: 100%;
  color: #fff;
  overflow: hidden;
  max-height: 200px;
  transition: max-height .35s ease, opacity .35s ease;
}
.aktion-bar.aktion-hidden { max-height: 0; opacity: 0; }
.aktion-rot   { background: linear-gradient(135deg, var(--red), #b30e22); }
.aktion-gruen { background: linear-gradient(135deg, var(--green), #157a38); }
.aktion-gelb  { background: linear-gradient(135deg, var(--yellow), #d99a00); color: var(--ink); }

.aktion-inner {
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
  padding: .6rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.aktion-text { font-weight: 600; font-size: .92rem; text-align: center; }

.aktion-btn {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.5);
  color: inherit;
  padding: .3rem .9rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease, transform .25s ease;
}
.aktion-btn:hover { background: rgba(255,255,255,.32); transform: translateY(-1px); }
.aktion-gelb .aktion-btn { border-color: rgba(0,0,0,.25); background: rgba(0,0,0,.08); }
.aktion-gelb .aktion-btn:hover { background: rgba(0,0,0,.15); }

.aktion-close {
  position: absolute;
  right: .6rem; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: .3rem .6rem;
  min-height: 32px;
  opacity: .8;
  transition: opacity .2s ease;
}
.aktion-close:hover { opacity: 1; }

@media (max-width: 600px) {
  .aktion-inner { padding-right: 2.2rem; gap: .6rem; }
  .aktion-text { font-size: .84rem; }
  .aktion-close { right: .3rem; }
}

/* ============================================================
   WOW: "Frisch aus dem Ofen" — Dampf über der Hero-Pizza
   ============================================================ */
.hero-disc.photo { position: relative; }
.steam {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: steamFadeIn 1s ease 1.5s forwards;
}
.steam span {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  animation: steamRise 3.5s ease-in infinite;
}
.steam span:nth-child(1) { left: 20%; animation-delay: 0s; }
.steam span:nth-child(2) { left: 45%; animation-delay: 1.2s; }
.steam span:nth-child(3) { left: 70%; animation-delay: 2.4s; }
@keyframes steamFadeIn { to { opacity: 1; } }
@keyframes steamRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  15%  { opacity: .7; }
  50%  { opacity: .5; }
  100% { transform: translateY(-120px) scale(2.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .steam { display: none; } }
@media (max-width: 600px) { .steam { display: none; } }

/* ============================================================
   SERVICES & ZAHLUNG
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 760px){ .info-cards { grid-template-columns: 1fr; gap: 1.2rem; } }

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.info-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.info-card h3 svg { color: var(--red); flex: 0 0 auto; }

/* Service-Liste */
.service-list { display: flex; flex-direction: column; gap: .8rem; }
.service-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.service-item svg { color: var(--green); flex: 0 0 auto; }

/* Zahlungs-Logos */
.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .5rem .7rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.pay-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 16px -6px rgba(0,0,0,.15); }
.pay-badge svg { flex: 0 0 auto; }

/* ®-Zeichen im Logo-Schriftzug */
.brand-r { font-size: .5em; vertical-align: super; font-weight: 400; margin-left: 1px; }

/* ============================================================
   AUTO-BILDWECHSEL (Cross-Fade, ohne Pfeile)
   ============================================================ */
.bf-visual.autoswap { position: relative; }
.bf-visual.autoswap .swap-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .8s ease;
  width: auto; height: auto;
  max-width: 90%; max-height: 90%;
  object-fit: contain;
}
.bf-visual.autoswap .swap-img.active { opacity: 1; }

/* ============================================================
   LIEFERGEBIET-TABELLE
   ============================================================ */
.liefer-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.liefer-table { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
.liefer-table th, .liefer-table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.liefer-table thead th { background: var(--ink); color: #fff; font-weight: 600; font-size: .9rem; position: sticky; top: 0; }
.liefer-table .ta-r { text-align: right; font-weight: 600; }
.liefer-table tbody tr:nth-child(even) { background: var(--surface); }
.liefer-table tbody tr:hover { background: rgba(224,18,43,.05); }
.liefer-table tbody td:last-child { color: var(--red); }
@media (max-width: 600px){
  .liefer-table th, .liefer-table td { padding: .6rem .7rem; font-size: .86rem; }
}
