/* ============================================================
   KAYA DÖNER – style.css
   Warmes, helles Restaurant-Design
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; touch-action: manipulation; border: none; background: none; font: inherit; color: inherit; }
table { border-collapse: collapse; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg:       #faf8f3;
  --bg-alt:   #f2ebe0;
  --bg-card:  #ffffff;
  --bg-dark:  #1c1916;

  --text:        #1c1916;
  --text-muted:  #705a4b;
  --text-subtle: #806f62;
  --text-on-dark: #f0ebe3;

  --red:       #c2362a;
  --red-dark:  #a62e24;
  --red-light: rgba(194, 54, 42, 0.09);
  --green:     #2a7545;
  --green-lt:  rgba(42, 117, 69, 0.11);
  --amber:     #d97706;

  --border:    rgba(0,0,0,0.08);
  --border-md: rgba(0,0,0,0.15);

  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --nav-h: 64px;
  --max-w: 1200px;
  --px: clamp(1rem, 5vw, 2.5rem);
  --r:      10px;
  --r-sm:   6px;
  --r-full: 9999px;
  --t: 180ms ease;
  --shadow:    0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.05), 0 16px 40px rgba(0,0,0,0.09);
}
@media (min-width: 768px) { :root { --nav-h: 70px; } }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.section-head { text-align: center; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.625rem); color: var(--text); }
.section-head p { color: var(--text-muted); margin-top: 0.625rem; }
.text-red { color: var(--red); }

.skip-link { position: absolute; top: -100px; left: 0; background: var(--red); color: #fff; padding: 0.75rem 1.25rem; font-weight: 700; z-index: 9999; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus-visible { top: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.5rem; border-radius: var(--r-full);
  font-weight: 700; font-size: 0.9375rem; min-height: 48px;
  white-space: nowrap; cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform 100ms ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--red); color: #fff; border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 4px 18px rgba(194,54,42,0.3); }

.btn-secondary { background: var(--bg-card); color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red-light); }

.btn-ghost-dark { background: transparent; color: var(--text-muted); border: 2px solid var(--border-md); }
.btn-ghost-dark:hover { border-color: var(--text-muted); color: var(--text); }

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; min-height: 40px; }
.btn-full { width: 100%; }

/* Header CTAs (on dark bg) */
.btn-cta-header { background: var(--red); color: #fff; border: 2px solid var(--red); }
.btn-cta-header:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ── Accessibility Widget ──────────────────────────────────── */
.a11y-widget {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  background: rgba(28,25,22,0.92);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 9999px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.a11y-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  color: rgba(240,235,227,0.72);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
  line-height: 1;
}
.a11y-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
}
.a11y-btn[aria-pressed="true"] {
  background: var(--red);
  color: #fff;
}
.a11y-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 50%; }

@media (max-width: 640px) {
  .a11y-widget { left: 12px; bottom: 12px; }
  .a11y-btn { width: 30px; height: 30px; font-size: 0.7rem; }
}

/* Hochkontrast-Modus */
html.hc {
  --bg:        #ffffff;
  --bg-alt:    #efefef;
  --bg-card:   #ffffff;
  --text:      #000000;
  --text-muted:  #111111;
  --text-subtle: #2a2a2a;
  --border:    rgba(0,0,0,0.28);
  --border-md: rgba(0,0,0,0.5);
  --red:       #a81e13;
  --red-dark:  #861810;
  --red-light: rgba(168,30,19,0.12);
  --green:     #004d00;
  --green-lt:  rgba(0,77,0,0.13);
}
html.hc .s-hero {
  background-image: linear-gradient(105deg, #ffffff 0%, rgba(255,255,255,0.98) 40%, rgba(255,248,235,0.85) 100%);
}
html.hc .tab:not(.active) { background: #e4e4e4; color: #000; border-color: rgba(0,0,0,0.22); }
html.hc .review-card,
html.hc .deal-card,
html.hc .info-card { border-color: rgba(0,0,0,0.22); }

/* Schriftgrössen-Stufen (skaliert alle rem-Angaben) */
html.fs-lg { font-size: 18px; }
html.fs-xl { font-size: 20px; }

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem var(--px); }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.cookie-inner p { font-size: 0.875rem; color: var(--text-on-dark); line-height: 1.55; }
.cookie-inner a { color: #f0c89a; text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; }
.cookie-actions .btn { flex: 1; }
.btn-ghost-dark-inv { background: transparent; color: var(--text-on-dark); border: 1.5px solid rgba(255,255,255,0.25); padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 40px; border-radius: var(--r-full); font-weight: 600; cursor: pointer; }
/* Reject-Button auf dunklem Cookie-Banner-Hintergrund lesbar machen */
.cookie-banner .btn-ghost-dark { color: rgba(240,235,227,0.85); border-color: rgba(255,255,255,0.3); }
.cookie-banner .btn-ghost-dark:hover { color: var(--text-on-dark); border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }

@media (min-width: 640px) {
  .cookie-inner { flex-direction: row; align-items: center; gap: 1.5rem; }
  .cookie-inner p { flex: 1; }
  .cookie-actions { flex-shrink: 0; }
  .cookie-actions .btn { flex: 0 0 auto; }
}

/* ── Header ────────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--nav-h);
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--t);
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.4); }

.nav-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); height: 100%; display: flex; align-items: center; gap: 1rem; }
.nav-logo { flex-shrink: 0; }
/* CSS-Wortmarke (kein Bilddatei-Abhängigkeit) */
.logo-wm { display: inline-flex; align-items: center; gap: 5px; line-height: 1; user-select: none; }
.lw-a { font-size: 1.25rem; font-weight: 900; color: #ffffff; letter-spacing: 0.04em; }
.lw-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-bottom: 1px; }
.lw-b { font-size: 1.25rem; font-weight: 900; color: var(--red); letter-spacing: 0.04em; }
.footer-brand .logo-wm { margin-bottom: 1rem; }
.footer-brand .lw-a { color: rgba(240,235,227,0.85); }

.nav-desktop { display: none; margin-left: auto; }
.nav-links { display: flex; gap: 0; }
.nav-links a { padding: 0.4rem 0.75rem; font-size: 0.9rem; font-weight: 500; color: rgba(240,235,227,0.72); border-radius: var(--r-sm); transition: color var(--t), background var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--text-on-dark); }
.nav-links a.active { background: rgba(255,255,255,0.07); }

.nav-cta { display: none; flex-shrink: 0; margin-left: 0.75rem; font-size: 0.875rem; min-height: 38px; padding: 0.4rem 1rem; }
@media (min-width: 960px) { .nav-desktop { display: block; } .nav-cta { display: inline-flex; } }

.hamburger { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; margin-left: auto; }
.hamburger span { width: 22px; height: 2px; background: var(--text-on-dark); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .hamburger { display: none; } }

.mobile-nav { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--bg-dark); padding: 1.5rem var(--px) 2rem; z-index: 999; overflow-y: auto; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: 1rem 0; font-size: 1.2rem; font-weight: 600; color: rgba(240,235,227,0.85); border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav a:hover { color: var(--text-on-dark); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

/* ── Hero ──────────────────────────────────────────────────── */
.s-hero {
  background-color: #f5ead6;
  background-image:
    linear-gradient(105deg, #faf8f3 0%, rgba(250,248,243,0.96) 35%, rgba(250,245,235,0.6) 65%, rgba(245,234,214,0.2) 100%);
  background-size: cover;
  background-position: center right;
  min-height: 85vh;
  min-height: 85svh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-content { width: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.hero-text { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(203, 49, 39, 0.10);
}

.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; margin-bottom: 1.25rem; font-size: 0.875rem; color: var(--text-muted); }
.stars-row { color: var(--amber); font-size: 1.05rem; letter-spacing: 0.03em; }
.hero-open { background: rgba(42,117,69,0.12); color: var(--green); border: 1px solid rgba(42,117,69,0.25); border-radius: var(--r-full); padding: 0.2rem 0.75rem; font-size: 0.8rem; font-weight: 600; }

.s-hero h1 { font-size: clamp(2.375rem, 7.5vw, 4.75rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.125rem; color: var(--text); }

.hero-sub { font-size: clamp(1rem, 2.5vw, 1.125rem); color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; line-height: 1.6; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 1.875rem; }
.hero-actions .btn { min-height: 52px; font-size: 0.96rem; padding-inline: 1.1rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; font-size: 0.875rem; color: var(--text-muted); }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; min-width: 0; }
.hero-trust li > span:last-child { line-height: 1.35; }
.tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  color: var(--green);
  background: rgba(42,117,69,0.10);
}
.tick svg { width: 13px; height: 13px; display: block; }
.tick polyline { fill: none; stroke: currentColor; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }

/* Freigestelltes Döner-Bild – kein Box, kein Rahmen */
.hero-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  min-height: auto !important;
  padding: 0 !important;
}

.hero-img-wrap::before,
.hero-img-wrap::after {
  content: none;
  display: none;
}

.hero-doener-cutout {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.18));
  transform: translateY(4px);
}

.hero-img-label { display: none; }

/* ── Infobar ───────────────────────────────────────────────── */
.s-infobar { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 0.875rem 0; }
.infobar-inner { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; }
.ib-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(240,235,227,0.75); transition: color var(--t); }
.ib-item:hover { color: var(--text-on-dark); }
.ib-item svg { color: #f0c89a; flex-shrink: 0; }
.ib-rating .stars-sm { color: var(--amber); font-size: 0.875rem; letter-spacing: 0.03em; }

/* ── Menu ──────────────────────────────────────────────────── */
.s-menu { background: var(--bg); padding: 4.5rem 0; }
@media (min-width: 768px) { .s-menu { padding: 5.5rem 0; } }

.tab-nav { display: flex; gap: 0.375rem; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.tab-nav::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; padding: 0.5rem 1rem; border-radius: var(--r-full); background: var(--bg-alt); color: var(--text-muted); font-size: 0.875rem; font-weight: 600; border: 1.5px solid transparent; min-height: 42px; transition: all var(--t); }
.tab:hover { color: var(--text); border-color: var(--border-md); }
.tab.active { background: var(--red); color: #fff; border-color: var(--red); }

.tab-panel { padding-top: 1.75rem; }

.menu-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: var(--r); background: var(--bg-card); overflow: hidden; }
.mi { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); transition: background var(--t); }
.mi:last-child { border-bottom: none; }
.mi:hover { background: #fdf9f5; }
.mi-l { flex: 1; min-width: 0; }
.mi-l strong, .mi-l .mi-name { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; }
.mi-l small { display: block; font-size: 0.8125rem; color: var(--text-muted); line-height: 1.4; }
.mi-p { font-weight: 700; font-size: 0.9375rem; color: var(--red); text-align: right; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 0.1rem; }
.mi-p small { font-weight: 400; font-size: 0.75rem; color: var(--text-subtle); }
.mi-single { flex-direction: row; align-items: center; gap: 0; }

.badge-veg { display: inline-block; font-size: 0.7rem; font-weight: 600; background: var(--green-lt); color: var(--green); border: 1px solid rgba(42,117,69,0.22); border-radius: var(--r-full); padding: 0.15rem 0.5rem; margin-left: 0.375rem; vertical-align: middle; }

.sosse-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sosse-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 0.625rem; }
.sosse-item { display: flex; align-items: center; gap: 0.625rem; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 0.875rem 1rem; font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.sosse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── Deals ─────────────────────────────────────────────────── */
.s-deals { background: var(--bg-alt); padding: 4.5rem 0; }
@media (min-width: 768px) { .s-deals { padding: 5.5rem 0; } }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.125rem; }
.deal-card { background: var(--bg-card); border: 1.5px solid var(--border); border-top: 4px solid var(--border-md); border-radius: var(--r); padding: 1.875rem 1.5rem; box-shadow: var(--shadow); transition: border-color var(--t), transform var(--t), box-shadow var(--t); }
.deal-card:hover { border-top-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.deal-card.deal-featured { border-top-color: var(--red); }
.dc-day { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.dc-name { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 0.375rem; letter-spacing: -0.015em; }
.dc-price { font-size: 2.25rem; font-weight: 900; color: var(--red); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0; }
.dc-combo { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 0.5rem; }
.dc-combo-row { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.dc-combo-row .dc-name { font-size: 1rem; margin-bottom: 0; }
.dc-price-sm { font-size: 1.375rem; font-weight: 800; color: var(--red); white-space: nowrap; }
.dc-combo-or { font-size: 0.75rem; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; padding: 0.125rem 0; }
.dc-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; background: var(--red-light); color: var(--red); border: 1px solid rgba(194,54,42,0.2); border-radius: var(--r-full); padding: 0.2rem 0.625rem; margin-top: 0.875rem; }

/* ── About ─────────────────────────────────────────────────── */
.s-about { background: var(--bg); padding: 4.5rem 0; }
@media (min-width: 768px) { .s-about { padding: 5.5rem 0; } }
.about-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

.about-imgs { display: flex; flex-direction: column; gap: 0.75rem; min-width: 0; width: 100%; }
.about-img-main { aspect-ratio: 16/10; border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); background: #f2ebe0; position: relative; width: 100%; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.about-img-sm { aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); background: #eee5d5; position: relative; width: 100%; }
.about-img-main img,
.about-img-sm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; max-width: none; }

.about-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.125rem; }
.about-text > p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2rem; }
.about-points { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.about-points li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 0.8rem; align-items: start; }
.ap-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  margin-top: 1px;
}
.ap-icon svg { width: 16px; height: 16px; display: block; }
.ap-icon polyline { fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.about-points strong, .about-points .ap-title { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.about-points span { display: block; font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
.about-actions { display: flex; flex-wrap: wrap; gap: 0.625rem; }

/* ── Reviews ───────────────────────────────────────────────── */
.s-reviews { background: var(--bg-alt); padding: 4.5rem 0; }
@media (min-width: 768px) { .s-reviews { padding: 5.5rem 0; } }
.reviews-rating { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 0.75rem; margin-top: 0.625rem; font-size: 0.9375rem; color: var(--text-muted); }
.stars-lg { color: var(--amber); font-size: 1.375rem; letter-spacing: 0.04em; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px,1fr)); gap: 1.125rem; }
.review-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.625rem; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t); }
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rc-stars { color: var(--amber); font-size: 1rem; letter-spacing: 0.04em; margin-bottom: 0.875rem; }
.review-card blockquote p { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.rc-source { font-size: 0.8rem; color: var(--text-subtle); font-weight: 500; }
.reviews-cta { text-align: center; margin-top: 2rem; }

/* ── Location ──────────────────────────────────────────────── */
.s-location { background: var(--bg); padding: 4.5rem 0; }
@media (min-width: 768px) { .s-location { padding: 5.5rem 0; } }
.location-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.location-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.375rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow); }
.info-card.info-extras { flex-direction: column; padding: 1.375rem 1.5rem; }
.ic-icon { width: 36px; height: 36px; background: var(--red-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.info-card h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 0.5rem; }
.info-card > div:last-child { flex: 1; min-width: 0; }
.info-card address { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.info-card address strong, .info-card address .address-name { color: var(--text); }
.phone-link { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -0.015em; transition: color var(--t); }
.phone-link:hover { color: var(--red); }
.email-link { display: inline-block; margin-top: 0.25rem; font-size: 0.9375rem; color: var(--text-muted); overflow-wrap: anywhere; transition: color var(--t); }
.email-link:hover { color: var(--red); }
.map-actions { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1rem; }
.map-actions .btn { display: inline-flex; }
.btn-apple-maps { background: #1c1916; border-color: #1c1916; color: #fff; }
.btn-apple-maps:hover { background: #302b26; border-color: #302b26; color: #fff; transform: translateY(-1px); }

.footer-email { font-size: 0.875rem; color: rgba(240,235,227,0.68); overflow-wrap: anywhere; transition: color var(--t); }
.footer-email:hover { color: #f0c89a; }
.legal-updated { margin-top: 2rem; font-size: 0.8125rem !important; color: var(--text-subtle) !important; }


.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td { padding: 0.5rem 0; font-size: 0.875rem; text-align: left; }
.hours-table th { color: var(--text-muted); font-weight: 500; width: 48%; }
.hours-table td { font-weight: 600; color: var(--text); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--green); font-weight: 700; }
.hours-note { margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-subtle); }

.extras-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.extra-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: var(--text-muted); }
.extra-item > span { flex-shrink: 0; min-width: 1.625em; text-align: center; line-height: 1; }

.map-wrapper { border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); aspect-ratio: 4/3; background: var(--bg-alt); position: relative; box-shadow: var(--shadow); }
.map-gate, .map-frame { position: absolute; inset: 0; }
.map-gate { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.map-gate-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; max-width: 300px; }
.map-gate-inner svg { color: var(--text-subtle); }
.map-gate-inner p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.text-link-sm { font-size: 0.8125rem; color: var(--text-subtle); text-decoration: underline; }
.text-link-sm:hover { color: var(--red); }
.map-frame { width: 100%; height: 100%; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Footer ────────────────────────────────────────────────── */
footer[role="contentinfo"] { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.07); padding: 3.5rem 0 0; }
/* Review-Karten: <footer>-Element darf keinen dunklen Hintergrund erben */
.review-card footer { background: none !important; border: none !important; padding: 0 !important; }
.rc-foot { display: flex; flex-direction: column; gap: 0.25rem; }
.rc-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.rc-badge { font-size: 0.75rem; color: var(--text-subtle); }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; } }
.footer-brand img { height: 36px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); margin-bottom: 1rem; }
footer[role="contentinfo"] nav h3, .footer-info-col h3 { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,235,227,0.4); margin-bottom: 0.875rem; margin-top: 1.25rem; }
footer[role="contentinfo"] nav h3:first-child, .footer-info-col h3:first-child { margin-top: 0; }
.footer-brand p, .footer-brand address { font-size: 0.875rem; color: rgba(240,235,227,0.6); margin-bottom: 0.625rem; line-height: 1.65; }
.footer-phone { font-size: 0.9375rem; font-weight: 600; color: rgba(240,235,227,0.75); transition: color var(--t); }
.footer-phone:hover { color: #f0c89a; }

footer nav ul, .footer-info-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
footer nav a, .footer-info-col a, .footer-text-btn { font-size: 0.9rem; color: rgba(240,235,227,0.65); transition: color var(--t); text-align: left; }
footer nav a:hover, .footer-info-col a:hover, .footer-text-btn:hover { color: var(--text-on-dark); }
.footer-info-col p { font-size: 0.875rem; color: rgba(240,235,227,0.65); margin-bottom: 0.2rem; }
footer[role="contentinfo"] .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.375rem var(--px); }
footer[role="contentinfo"] .footer-bottom p { font-size: 0.8125rem; color: rgba(240,235,227,0.35); text-align: center; }

/* ── Scroll animations ─────────────────────────────────────── */
.fade-up { opacity: 1; transform: none; }
.js .fade-up { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
.js .fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────── */

/* Hero: unter 900px → kompakte, hochwertige Mobile-Komposition */
@media (max-width: 899px) {
  .s-hero {
    overflow: hidden;
    background:
      radial-gradient(circle at 92% 9%, rgba(203,49,39,0.13), transparent 32%),
      radial-gradient(circle at 4% 86%, rgba(214,139,38,0.10), transparent 34%),
      linear-gradient(180deg, #fbf8f2 0%, #f8f0e2 100%);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-text { max-width: 680px; }
  .hero-img-wrap {
    width: 100%;
    min-height: 320px !important;
    justify-content: center;
    margin-top: 2px;
    padding: 28px 14px 12px !important;
    isolation: isolate;
  }
  .hero-img-wrap::before {
    content: "";
    display: block;
    position: absolute;
    width: min(78vw, 390px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(circle at 38% 34%, rgba(255,255,255,0.96) 0 18%, rgba(255,247,235,0.92) 42%, rgba(230,171,112,0.20) 72%, transparent 73%),
      linear-gradient(145deg, rgba(203,49,39,0.12), rgba(214,139,38,0.10));
    box-shadow: inset 0 0 0 1px rgba(117,79,51,0.08), 0 28px 60px rgba(88,54,27,0.10);
    z-index: -1;
  }
  .hero-img-label {
    display: inline-flex;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0.45rem 0.8rem;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(117,79,51,0.12);
    box-shadow: 0 10px 30px rgba(69,44,27,0.10);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    backdrop-filter: blur(8px);
  }
  .hero-doener-cutout {
    max-width: min(390px, 96vw);
    transform: translateY(10px) rotate(-1deg);
    filter: drop-shadow(0 22px 32px rgba(48,31,20,0.22));
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 520px) {
  .hero-img-wrap { min-height: 285px !important; padding-top: 26px !important; }
  .hero-doener-cutout { max-width: min(350px, 97vw); }
}

@media (max-width: 640px) {
  .s-hero { min-height: unset; padding: 2.65rem 0 1.1rem; }
  .hero-kicker { margin-bottom: 0.75rem; font-size: 0.7rem; }
  .hero-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem 0.8rem;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 1.1rem;
    padding: 0.7rem 0.8rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(117,79,51,0.10);
    box-shadow: 0 12px 35px rgba(80,50,29,0.06);
    backdrop-filter: blur(8px);
  }
  .hero-meta .hero-open { grid-column: 1 / -1; justify-self: start; }
  .stars-row { font-size: 1rem; }
  .s-hero h1 { font-size: clamp(2.3rem, 10.3vw, 2.65rem); line-height: 1.03; margin-bottom: 0.9rem; }
  .hero-title-line { white-space: nowrap; }
  .s-hero h1 .text-red { position: relative; z-index: 0; }
  .s-hero h1 .text-red::after {
    content: "";
    position: absolute;
    left: -0.03em;
    right: -0.03em;
    bottom: 0.03em;
    height: 0.18em;
    border-radius: 999px;
    background: rgba(203,49,39,0.13);
    z-index: -1;
  }
  .hero-sub { margin-bottom: 1.25rem; font-size: 0.98rem; line-height: 1.55; max-width: 35ch; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
  }
  .hero-actions .btn { width: 100%; max-width: none; min-height: 50px; padding-inline: 0.85rem; font-size: 0.9rem; }
  .hero-actions .btn:first-child { grid-column: 1 / -1; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.7rem;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(117,79,51,0.10);
    box-shadow: 0 14px 35px rgba(80,50,29,0.05);
    font-size: 0.82rem;
  }
  .hero-trust li { align-items: flex-start; }
  .tick { margin-top: 0.02rem; }
  .hero-actions + .hero-trust { margin-bottom: 0; }
  .deals-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 2rem; }
  .mi { flex-direction: column; align-items: flex-start; gap: 0.375rem; }
  .mi-p { text-align: left; align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 0.25rem 0.5rem; }

  /* Tab-Buttons auf Mobile etwas kompakter */
  .tab { font-size: 0.8125rem; padding: 0.45rem 0.875rem; min-height: 38px; }

  /* Map-Karte auf Mobile weniger hoch */
  .map-wrapper { aspect-ratio: 4/3; }

  /* Info-Cards auf Mobile: Icon und Text nebeneinander optimal */
  .info-card { padding: 1.125rem 1.125rem; }
  .ic-icon { width: 32px; height: 32px; }
  .map-actions { align-items: stretch; }
  .map-actions .btn { width: 100%; justify-content: center; }

  /* Deal-Cards auf Mobile: Abstände reduzieren */
  .deal-card { padding: 1.5rem 1.25rem; }

  /* Review-Cards */
  .review-card { padding: 1.375rem 1.25rem; }

  /* About-Grid: Bilder auf Mobile etwas flacher */
  .about-img-main { aspect-ratio: 16/9; }

  /* Footer auf Mobile */
  .footer-grid { gap: 1.5rem; }

  .about-points li { grid-template-columns: 28px minmax(0, 1fr); gap: 0.75rem; }
  .ap-icon { margin-top: 0; }

  /* Cookie-Banner: Buttons auf sehr kleinen Screens stapeln */
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

@media (min-width: 400px) and (max-width: 640px) {
  /* Nur zwischen 400–640px: Cookie-Buttons wieder nebeneinander */
  .cookie-actions { flex-direction: row; }
  .cookie-actions .btn { width: auto; flex: 1; }
}

@media (max-width: 350px) {
  :root { --px: 1rem; }
  .s-hero h1 { font-size: 2.05rem; }
  .hero-title-line { white-space: normal; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .btn:first-child { grid-column: auto; }
  .hero-actions .btn { max-width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  /* Nav-Logo auf sehr kleinen Screens */
  .lw-a, .lw-b { font-size: 1.1rem; }
}

/* ============================================================
   V5 HERO REDESIGN – MOBILE-FIRST, CACHE VERSION 5
   ============================================================ */

/* Browserstabile CSS-Haken: keine SVG-Polylines, keine Schriftzeichen */
.tick,
.ap-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.tick svg,
.ap-icon svg { display: none !important; }
.tick::before,
.ap-icon::before {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transform-origin: center;
}

/* Desktop: Hero als hochwertige Restaurant-Komposition */
.s-hero {
  min-height: calc(100svh - var(--nav-h) - 58px);
  padding: clamp(3rem, 6vh, 5.25rem) 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(194,54,42,0.10), transparent 28%),
    radial-gradient(circle at 8% 85%, rgba(217,119,6,0.08), transparent 26%),
    linear-gradient(112deg, #fbf9f5 0%, #f8f1e5 58%, #f3e3c9 100%);
}
.hero-inner {
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  gap: clamp(2.25rem, 5vw, 5rem);
}
.hero-kicker {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
}
.hero-meta {
  margin-bottom: 1.2rem;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.65rem 0.85rem;
}
.hero-trust li {
  padding: 0.58rem 0.78rem;
  border-radius: 13px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(75,52,37,0.09);
  box-shadow: 0 8px 24px rgba(74,47,27,0.045);
}
.tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  flex-basis: 22px;
}

.hero-img-wrap {
  min-height: clamp(460px, 55vh, 570px) !important;
  padding: 0 !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 20%, rgba(203,49,39,0.62), transparent 29%),
    radial-gradient(circle at 24% 78%, rgba(217,119,6,0.20), transparent 28%),
    linear-gradient(145deg, #171310 0%, #2d211a 48%, #4b2d1f 100%) !important;
  box-shadow: 0 26px 70px rgba(62,39,24,0.22) !important;
}
.hero-img-wrap::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  right: -17%;
  top: -17%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow:
    0 0 0 36px rgba(255,255,255,0.035),
    0 0 0 72px rgba(255,255,255,0.018);
  z-index: 0;
}
.hero-img-wrap::after {
  content: "KAYA" !important;
  display: block !important;
  position: absolute;
  left: 28px;
  bottom: 12px;
  color: rgba(255,255,255,0.045);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  z-index: 0;
  pointer-events: none;
}
.hero-doener-cutout {
  position: absolute;
  z-index: 2;
  width: 118%;
  max-width: none;
  right: -18%;
  bottom: -4%;
  transform: rotate(-2deg);
  filter: drop-shadow(0 30px 34px rgba(0,0,0,0.38));
}
.hero-visual-badges {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: #241b15;
  background: rgba(255,251,244,0.92);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.hero-visual-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(194,54,42,0.12);
}
.hero-visual-badge-top { top: 26px; left: 24px; }
.hero-visual-badge-bottom { bottom: 28px; left: 24px; }

/* About-Haken ebenfalls stabil und mittig */
.ap-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

@media (max-width: 899px) {
  .s-hero {
    min-height: auto;
    padding: 1.55rem 0 1rem;
    overflow: hidden;
    background:
      radial-gradient(circle at 96% 6%, rgba(194,54,42,0.10), transparent 25%),
      radial-gradient(circle at 4% 94%, rgba(217,119,6,0.09), transparent 28%),
      linear-gradient(180deg, #fbf9f5 0%, #f8efe0 100%);
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "kicker"
      "meta"
      "title"
      "visual"
      "sub"
      "actions"
      "trust";
    gap: 0;
  }
  .hero-text {
    display: contents;
  }
  .hero-text.fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-kicker {
    grid-area: kicker;
    justify-self: start;
    margin: 0 0 0.7rem;
    padding: 0.42rem 0.68rem;
    border-radius: 999px;
    color: var(--red);
    background: rgba(194,54,42,0.08);
    border: 1px solid rgba(194,54,42,0.13);
    font-size: 0.68rem;
    letter-spacing: 0.075em;
  }
  .hero-kicker::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(203,49,39,0.09);
  }
  .hero-meta {
    grid-area: meta;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
    width: auto;
    margin: 0 0 0.85rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-meta .stars-row {
    font-size: 1.02rem;
  }
  .hero-meta > span:nth-child(2) {
    font-size: 0.88rem;
  }
  .hero-open {
    padding: 0.28rem 0.68rem;
    font-size: 0.76rem;
  }
  .s-hero h1 {
    grid-area: title;
    margin: 0 0 1rem;
    max-width: 12ch;
    font-size: clamp(2.25rem, 10.4vw, 2.85rem);
    line-height: 0.99;
    letter-spacing: -0.045em;
  }
  .hero-title-line {
    white-space: normal;
  }
  .hero-img-wrap {
    grid-area: visual;
    width: 100%;
    min-height: 300px !important;
    margin: 0 0 1rem;
    padding: 0 !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 78% 18%, rgba(203,49,39,0.67), transparent 30%),
      radial-gradient(circle at 18% 82%, rgba(217,119,6,0.20), transparent 26%),
      linear-gradient(145deg, #171310 0%, #2b2019 52%, #4a2d20 100%) !important;
    box-shadow: 0 22px 52px rgba(61,39,25,0.20) !important;
  }
  .hero-img-wrap::before {
    width: 70%;
    right: -20%;
    top: -22%;
    box-shadow:
      0 0 0 28px rgba(255,255,255,0.035),
      0 0 0 56px rgba(255,255,255,0.017);
  }
  .hero-img-wrap::after {
    left: 16px;
    bottom: 7px;
    font-size: 4.6rem;
  }
  .hero-doener-cutout {
    width: min(123%, 465px);
    max-width: none;
    right: -15%;
    bottom: -3%;
    transform: rotate(-2deg);
    filter: drop-shadow(0 24px 25px rgba(0,0,0,0.40));
  }
  .hero-visual-badge {
    padding: 0.46rem 0.66rem;
    font-size: 0.7rem;
  }
  .hero-visual-badge-top { top: 17px; left: 15px; }
  .hero-visual-badge-bottom { bottom: 17px; left: 15px; }
  .hero-sub {
    grid-area: sub;
    max-width: 34ch;
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .hero-actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.62rem;
    margin: 0 0 1rem;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 0.78rem;
    font-size: 0.88rem;
  }
  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
    min-height: 54px;
    font-size: 0.95rem;
  }
  .hero-trust {
    grid-area: trust;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.58rem;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.79rem;
  }
  .hero-trust li {
    min-height: 58px;
    padding: 0.68rem 0.7rem;
    align-items: center;
    border-radius: 15px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(75,52,37,0.09);
    box-shadow: 0 10px 26px rgba(74,47,27,0.05);
  }
  .hero-trust li > span:last-child {
    line-height: 1.25;
  }
  .tick {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

@media (max-width: 420px) {
  .hero-img-wrap { min-height: 286px !important; }
  .hero-doener-cutout {
    width: 126%;
    right: -18%;
  }
}

@media (max-width: 350px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .btn:first-child { grid-column: auto; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-img-wrap { min-height: 255px !important; }
  .hero-visual-badge-bottom { display: none; }
}

@media (min-width: 351px) and (max-width: 899px) {
  .s-hero h1 { max-width: none; }
  .hero-title-line { display: inline-block; white-space: nowrap; }
}

/* Hero bleibt auch ohne JavaScript vollständig sichtbar */
.js .hero-text.fade-up,
.hero-text.fade-up {
  opacity: 1;
  transform: none;
  transition: none;
}


/* ============================================================
   KAYA HERO V8 – clean, mobile-first, no badges or card overlays
   ============================================================ */
.kd8-hero {
  --kd8-ink: #1d1916;
  --kd8-muted: #655b54;
  --kd8-red: #bd352a;
  position: relative;
  overflow: hidden;
  background: #faf7f1;
  padding: clamp(2.9rem, 6vw, 5.6rem) 0 clamp(2.3rem, 5vw, 4.7rem);
}

.kd8-shell {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(390px, 1.07fr);
  align-items: center;
  gap: clamp(2.4rem, 5vw, 5.8rem);
}

.kd8-copy { min-width: 0; position: relative; z-index: 2; }

.kd8-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .58rem;
  margin: 0 0 1.25rem;
  color: var(--kd8-muted);
  font-size: .91rem;
  line-height: 1.3;
}
.kd8-stars {
  color: #cc7600;
  font-size: 1.06rem;
  letter-spacing: .025em;
  line-height: 1;
}

.kd8-copy h1 {
  max-width: 10.5ch;
  margin: 0;
  color: var(--kd8-ink);
  font-size: clamp(3.3rem, 5.15vw, 5.15rem);
  font-weight: 880;
  line-height: .98;
  letter-spacing: -.052em;
}

.kd8-lead {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: var(--kd8-muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}

.kd8-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.kd8-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  min-height: 50px;
  padding: .78rem 1.2rem;
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: .93rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.kd8-btn:hover { transform: translateY(-1px); }
.kd8-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kd8-btn-primary {
  color: #fff;
  background: var(--kd8-red);
  border-color: var(--kd8-red);
}
.kd8-btn-primary:hover { background: #a92e24; border-color: #a92e24; }
.kd8-btn-secondary {
  color: #3f3833;
  background: transparent;
  border-color: rgba(63,56,51,.28);
}
.kd8-btn-secondary:hover { border-color: rgba(63,56,51,.55); background: rgba(255,255,255,.55); }

.kd8-media {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.kd8-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 86%;
  height: 72%;
  left: 9%;
  top: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,53,42,.13) 0%, rgba(218,154,88,.10) 48%, rgba(250,247,241,0) 74%);
  filter: blur(2px);
}
.kd8-media picture { display: block; width: 100%; }
.kd8-media img {
  display: block;
  width: min(100%, 660px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(62,42,27,.20));
}

@media (max-width: 899px) {
  .kd8-hero { padding: 2.1rem 0 1.9rem; }
  .kd8-shell {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .kd8-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 12vw, 3.65rem);
    line-height: 1;
  }
  .kd8-rating { margin-bottom: 1rem; font-size: .86rem; }
  .kd8-stars { font-size: 1rem; }
  .kd8-lead {
    max-width: 32rem;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.55;
  }
  .kd8-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: .65rem;
    margin-top: 1.35rem;
  }
  .kd8-btn {
    min-height: 50px;
    padding: .72rem .75rem;
    font-size: .86rem;
  }
  .kd8-media {
    margin: -.15rem calc(var(--px) * -0.7) 0;
    min-height: 0;
  }
  .kd8-media::before {
    width: 96%;
    height: 76%;
    left: 2%;
    top: 14%;
  }
  .kd8-media img {
    width: min(112%, 690px);
    max-width: none;
  }
}

@media (max-width: 370px) {
  .kd8-copy h1 { font-size: 2.55rem; }
  .kd8-actions { grid-template-columns: 1fr; }
  .kd8-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .kd8-btn { transition: none; }
}

/* V6.2: About-Haken als echte SVG-Pfade, nicht als CSS-Zeichen */
.ap-icon::before { content: none !important; }
.ap-icon svg { display: block !important; width: 16px; height: 16px; overflow: visible; }
.ap-icon svg path { fill: none; stroke: #fff; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }


/* ============================================================
   SEO CONTENT SECTION – visible, useful local information
   ============================================================ */
.text-strong,
.rating-value,
.address-name,
.ap-title,
.mi-name { font-weight: 700; }

.s-local-info {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #fff;
  border-top: 1px solid rgba(37, 30, 25, .08);
}
.local-info-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.local-info-head h2 {
  margin: .45rem 0 .9rem;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.local-info-head p,
.local-info-item p {
  color: var(--text-muted);
  line-height: 1.72;
}
.local-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3.2rem) clamp(2rem, 5vw, 4.5rem);
}
.local-info-item {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(37, 30, 25, .16);
}
.local-info-item h3 {
  margin: 0 0 .65rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
}
.local-info-item p { margin: 0; }
@media (max-width: 700px) {
  .s-local-info { padding: 3.5rem 0; }
  .local-info-grid { grid-template-columns: 1fr; gap: 1.7rem; }
}


/* Social links: compact, recognizable and deliberately separate from legal content. */
.footer-social-top { align-self: start; }
.footer-social-top h3 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,235,227,0.4);
  margin: 0 0 0.875rem;
}
.social-links,
.footer-bottom-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.social-icon,
.footer-bottom-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,235,227,0.78);
  border: 1px solid rgba(240,235,227,0.2);
  background: rgba(255,255,255,0.035);
  transition: color var(--t), border-color var(--t), background var(--t), transform var(--t);
}
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.social-icon svg { width: 21px; height: 21px; }
.footer-bottom-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.footer-bottom-social svg { width: 18px; height: 18px; }
.social-icon:hover,
.social-icon:focus-visible,
.footer-bottom-social a:hover,
.footer-bottom-social a:focus-visible {
  color: #fff;
  border-color: rgba(240,200,154,0.72);
  background: rgba(240,200,154,0.12);
  transform: translateY(-2px);
}
footer[role="contentinfo"] .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
footer[role="contentinfo"] .footer-bottom p { text-align: left; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr auto; }
  .footer-social-top { justify-self: end; }
}

@media (max-width: 767px) {
  .footer-social-top { margin-top: 0.25rem; }
  footer[role="contentinfo"] .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
