/* =========================================================
   Dettens Pizzeria — style.css
   Ausgelagerte Styles (entlastet die HTML-Dateien)
   Geteilt von: index.html, impressum.html, datenschutz.html, 404.html
   ========================================================= */

/* ====================== FONTS (selbst gehostet, DSGVO) ====================== */
/* Alfa Slab One — lokal eingebunden, keine Verbindung zu Google Fonts */
@font-face {
  font-family: 'Alfa Slab One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/alfa-slab-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Alfa Slab One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/alfa-slab-one-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #f3ede1;
  --ink: #14110e;
  --paper: #fbf7ec;
  --accent: #d63619;
  --muted: #6c6258;
  --rule: rgba(20,17,14,.14);
  --wa: #1fa54f;       /* WhatsApp-Grün, an Palette angepasst (kontraststark) */
  --wa-dark: #17813d;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  scrollbar-gutter: stable;
  scrollbar-color: var(--accent) rgba(20,17,14,0.06);
}
/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track {
  background: rgba(20,17,14,0.06);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
  border: 3px solid var(--bg);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: #b82d14; background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; padding: 0; color: inherit; }
::selection { background: var(--accent); color: #fff; }

.display {
  font-family: "Alfa Slab One", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* ====================== PRELOADER ====================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(214,54,25,0.06), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(20,17,14,0.05), transparent 70%);
  transition: opacity .55s ease, visibility .55s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* HTML lock while preloader is visible */
html.preloading, html.preloading body { overflow: hidden; }

.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transform: translateY(-2vh);
}
.pre-mark {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(28px, 5.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  opacity: 0;
  animation: pre-rise .7s cubic-bezier(.22,.61,.36,1) .05s forwards;
}
.pre-mark .dot {
  display: inline-block;
  color: var(--accent);
  transform-origin: center 88%;
  animation: pre-dot 1.3s cubic-bezier(.45,.05,.55,.95) .55s infinite;
}
.pre-mark .ring {
  position: absolute;
  right: -6px;
  bottom: 0.08em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(0.6);
  animation: pre-ring 1.3s cubic-bezier(.22,.61,.36,1) .55s infinite;
}

.pre-bar {
  width: clamp(140px, 22vw, 220px);
  height: 2px;
  background: rgba(20,17,14,0.10);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: pre-rise .7s cubic-bezier(.22,.61,.36,1) .18s forwards;
}
.pre-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  transform: translateX(-100%);
  animation: pre-slide 1.4s cubic-bezier(.45,.05,.55,.95) infinite;
}
.pre-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: pre-rise .7s cubic-bezier(.22,.61,.36,1) .3s forwards;
}

@keyframes pre-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pre-dot {
  0%, 100% { transform: scale(1); }
  45%      { transform: scale(1.35); }
}
@keyframes pre-ring {
  0%   { opacity: 0; transform: scale(0.6); }
  40%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(2.1); }
}
@keyframes pre-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(360%); }
}

@media (prefers-reduced-motion: reduce) {
  .pre-mark, .pre-bar, .pre-meta { animation: none; opacity: 1; transform: none; }
  .pre-mark .dot, .pre-mark .ring { animation: none; }
  .pre-bar::after { animation: none; transform: translateX(0); width: 100%; opacity: 0.5; }
}

/* ====================== NAV ====================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background .3s ease, color .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(222, 211, 191, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border-bottom-color: rgba(20,17,14,0.18);
  padding-top: 12px; padding-bottom: 12px;
}
.nav-brand {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: inherit;
}
.nav-brand .accent { color: var(--accent); }
.nav-links {
  display: flex; gap: clamp(20px, 2.6vw, 36px);
  list-style: none; margin: 0; padding: 0;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: inherit;
  opacity: 0.85;
  transition: opacity .25s ease, color .25s ease;
}
.nav-links a::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-6px, -50%) scale(0.4);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .25s ease;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}
.nav-links a:hover::before {
  transform: translate(0, -50%) scale(1);
  opacity: 1;
}
.nav-links a:focus-visible,
.nav-phone:focus-visible,
.nav-brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid currentColor;
  color: inherit;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-phone .num { font-variant-numeric: tabular-nums; }
.nav.scrolled .nav-phone {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav.scrolled .nav-phone:hover { background: #b92a11; border-color: #b92a11; }
.nav:not(.scrolled) .nav-phone:hover { background: #fff; color: var(--ink); border-color: #fff; }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}
.nav-burger span {
  width: 16px; height: 2px;
  background: currentColor;
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top:  6px; }
.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  z-index: 60;
  background: var(--paper);
  color: var(--ink);
  flex-direction: column;
  padding: 24px clamp(20px, 5vw, 64px);
}
.nav-mobile.open { display: flex; }
.nav-mobile-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px;
}
.nav-mobile-close {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.nav-mobile ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-mobile a.nav-mobile-link {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-family: "Alfa Slab One", serif;
  font-size: clamp(28px, 6vw, 40px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-mobile a.nav-mobile-link:hover { color: var(--accent); }
.nav-mobile-phone {
  margin-top: auto;
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.nav-mobile-phone .lbl {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.nav-mobile-phone a {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(28px, 6vw, 36px);
  color: var(--accent);
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #1a1612;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
/* dark overlay for legibility — soft top, darker bottom */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,12,10,0.45) 0%, rgba(15,12,10,0.25) 35%, rgba(15,12,10,0.85) 100%),
    radial-gradient(60% 50% at 30% 80%, rgba(0,0,0,0.45), transparent 70%);
  pointer-events: none;
}
.hero-wrap {
  position: relative; z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 5vw, 64px);
  pointer-events: none;
}
.hero-wrap a, .hero-wrap button, .hero-wrap .pill { pointer-events: auto; }

.hero-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.wordmark {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.wordmark .wordmark-bar {
  display: inline-block; width: 18px; height: 1px;
  background: rgba(255,255,255,0.6); vertical-align: middle;
  margin: 0 10px 3px 0;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.18);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9a9a9a;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.pill.open .dot {
  background: #4adc7a;
  box-shadow: 0 0 0 4px rgba(74,220,122,.18);
  animation: ping 2.4s ease-in-out infinite;
}
.pill.pickup .dot { background: #f0b03a; }
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,220,122,0); }
  50%     { box-shadow: 0 0 0 6px rgba(74,220,122,.18); }
}

.hero-mid {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 8vh, 96px);
}
.hero-inner { max-width: 1100px; width: 100%; }

.hero-title {
  margin: 0;
  font-size: clamp(56px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
@media (min-width: 1500px) and (max-width: 2300px) {
  .hero-title { font-size: 148px; }
}
.hero-title .line { display: block; }
.hero-title .dot-accent { color: var(--accent); }

.hero-sub {
  margin: clamp(20px, 3vw, 32px) 0 clamp(28px, 4vw, 44px);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  max-width: 36ch;
  color: rgba(255,255,255,0.85);
}
.hero-sub em {
  color: #fff;
  font-style: normal;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn .num { font-variant-numeric: tabular-nums; font-weight: 700; }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px -6px rgba(214,54,25,.55);
}
.btn-primary:hover { background: #b92a11; transform: translateY(-1px); }
.btn-primary:focus-visible { outline-color: var(--accent); outline-offset: 4px; }
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.18);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hero-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.hero-bottom .sep { color: rgba(255,255,255,0.3); margin: 0 12px; }

/* ====================== INFO ====================== */
.info {
  background: var(--paper);
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.info-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.info h2 {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.info h2::before {
  content: "";
  width: 36px; height: 1px; background: var(--accent);
}

/* hours table */
.hours { display: grid; gap: 4px; }
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.hours-row:last-child { border-bottom: 0; }
.hours-days {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hours-days small {
  display: block;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}
.hours-time {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(18px, 1.9vw, 24px);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.hours-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.hours-note strong { color: var(--ink); font-weight: 600; }

/* delivery list */
.delivery { display: grid; gap: 0; }
.delivery-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.delivery-row:last-child { border-bottom: 0; }
.delivery-name {
  font-size: 17px;
  font-weight: 500;
}
.delivery-name small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.delivery-min {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.delivery-min em { color: var(--accent); font-style: normal; }
.delivery-fee {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--muted);
}
.delivery-fee strong { color: var(--ink); font-weight: 600; }

/* ====================== WHATSAPP ====================== */
.whatsapp {
  background: var(--bg);
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.whatsapp-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.whatsapp-eye {
  margin: 0 0 22px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--wa-dark);
  display: flex; align-items: center; gap: 12px;
}
.whatsapp-eye::before { content: ""; width: 36px; height: 1px; background: var(--wa-dark); }
.whatsapp-title {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.whatsapp-title .accent { color: var(--wa); }
.whatsapp-sub {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.whatsapp-cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 30px;
  background: var(--wa);
  color: #fff;
  border-radius: 999px;
  font-size: 18px; font-weight: 600;
  transition: transform .15s ease, background .2s ease;
  box-shadow: 0 8px 32px -8px rgba(31,165,79,.6);
}
.wa-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }
.wa-btn:focus-visible { outline: 2px solid var(--wa-dark); outline-offset: 4px; }
.wa-btn svg { width: 26px; height: 26px; flex: none; }
.wa-note {
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--muted);
}
.wa-card {
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 85% 0%, rgba(31,165,79,0.10), transparent 55%),
    var(--paper);
}
.wa-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.wa-step { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.wa-step-num {
  width: 32px; height: 32px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  font-family: "Alfa Slab One", serif;
  font-size: 15px; line-height: 1;
}
.wa-step-txt { font-size: 15px; line-height: 1.5; color: var(--ink); }
.wa-step-txt strong { font-weight: 600; }

/* ====================== SPEISEKARTE BAND ====================== */
.speisekarte {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.speisekarte::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(214,54,25,0.18), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(214,54,25,0.10), transparent 45%);
  pointer-events: none;
}
.speisekarte-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.speisekarte-eye {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.speisekarte-eye::before {
  content: ""; width: 36px; height: 1px; background: var(--accent);
}
.speisekarte-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.speisekarte-title .accent { color: var(--accent); }
.speisekarte-sub {
  margin-top: 22px;
  color: rgba(251,247,236,0.65);
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.5;
}
.speisekarte-cta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.pdf-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 18px; font-weight: 600;
  transition: transform .15s, background .2s;
  box-shadow: 0 8px 32px -8px rgba(214,54,25,.6);
}
.pdf-btn:hover { background: #b92a11; transform: translateY(-1px); }
.pdf-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.pdf-btn .pdf-tag {
  font-family: "Alfa Slab One", serif;
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.pdf-note {
  font-size: 12px;
  color: rgba(251,247,236,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ====================== FOOTER ====================== */
.footer {
  padding: 36px clamp(20px, 5vw, 64px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
}
.footer-left { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; flex: 1 1 0; }
.footer-left strong { color: var(--ink); font-weight: 600; }
.footer-center {
  flex: 0 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-center a {
  border-bottom: 1px solid var(--rule); padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.footer-center a:hover { color: var(--accent); border-color: var(--accent); }
.footer-center a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.footer-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; flex: 1 1 0; justify-content: flex-end; }
.footer-right a, .footer-right button.linklike {
  border-bottom: 1px solid var(--rule); padding-bottom: 1px;
  transition: color .15s, border-color .15s;
  font-size: 13px; color: var(--muted);
}
.footer-right a:hover, .footer-right button.linklike:hover { color: var(--accent); border-color: var(--accent); }
.footer-right a:focus-visible, .footer-right button.linklike:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px;
}

/* ====================== STIMMEN / BEWERTUNGEN ====================== */
.stimmen {
  background: var(--bg);
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.stimmen-head {
  max-width: 1200px; margin: 0 auto clamp(40px, 6vw, 72px);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.stimmen-eye {
  margin: 0;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.stimmen-eye::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
.stimmen-title {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.stimmen-rating {
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.rating-num {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
}
.rating-stars {
  color: #e8a634;
  font-size: 18px;
  letter-spacing: 2px;
}
.rating-stars .empty { color: rgba(20,17,14,0.2); }
.rating-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.stimmen-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.quote {
  margin: 0;
  padding: 0 clamp(18px, 2.6vw, 36px);
  display: flex; flex-direction: column;
}
.quote + .quote { border-left: 1px solid var(--rule); }
.quote-stars-top {
  color: #e8a634;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.quote p {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink);
}
.quote p::before { content: "„"; color: var(--accent); }
.quote p::after { content: "“"; color: var(--accent); }
.quote footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: flex; justify-content: space-between; gap: 12px;
}
.quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.stimmen-foot {
  max-width: 1200px; margin: clamp(32px, 4vw, 48px) auto 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.stimmen-foot a { border-bottom: 1px solid var(--rule); padding-bottom: 1px; }
.stimmen-foot a:hover { color: var(--accent); border-color: var(--accent); }

/* ====================== STANDORT / MAPS ====================== */
.standort {
  background: var(--paper);
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.standort-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.standort-eye {
  margin: 0 0 22px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.standort-eye::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
.standort-title {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.standort-info {
  display: flex; flex-direction: column; gap: 0;
}
.standort-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
}
.standort-row:first-of-type { border-top: 1px solid var(--rule); }
.standort-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.standort-val {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.standort-val a:hover { color: var(--accent); }
.standort-actions {
  margin-top: 28px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.standort-actions .btn {
  padding: 14px 22px;
  font-size: 14px;
}
.standort-actions .btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.standort-actions .btn-ink:hover { background: var(--accent); }
.standort-actions .btn-line {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.standort-actions .btn-line:hover { background: var(--ink); color: var(--paper); }

.map-frame {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 4%, var(--paper));
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 420px; }
.map-consent {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  background:
    repeating-linear-gradient(
      45deg,
      color-mix(in srgb, var(--ink) 4%, transparent) 0 14px,
      transparent 14px 28px
    );
}
.map-consent-inner {
  max-width: 380px; text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.map-pin {
  font-family: "Alfa Slab One", serif;
  font-size: 52px; color: var(--accent); line-height: 1;
  letter-spacing: -0.02em;
}
.map-consent p {
  font-size: 15px; line-height: 1.5; color: var(--ink); margin: 0;
}
.map-consent .btn { padding: 14px 22px; font-size: 14px; }
.map-privacy {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.map-privacy:hover { color: var(--accent); }

/* ====================== SUBPAGES (Impressum / Datenschutz / 404) ====================== */
.subhead {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(222, 211, 191, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,17,14,0.18);
  color: var(--ink);
}
.subhead .nav-brand { color: var(--ink); }
.subhead-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink);
  padding: 8px 0;
  transition: color .2s;
}
.subhead-back:hover { color: var(--accent); }
.subhead-back:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

.legal {
  background: var(--bg);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(60px, 9vw, 120px);
}
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-eye {
  margin: 0 0 14px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.legal-eye::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
.legal h1 {
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.legal h2 {
  margin: clamp(32px, 4vw, 48px) 0 14px;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.7;
  color: #312b24;
}
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
.legal a:not(.btn) {
  color: var(--accent);
  border-bottom: 1px solid rgba(214,54,25,0.3);
  transition: border-color .15s;
}
.legal a:not(.btn):hover { border-bottom-color: var(--accent); }
.legal a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.legal strong { color: var(--ink); font-weight: 700; }
.legal .placeholder {
  background: rgba(214,54,25,0.12);
  color: #8a1d0c;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px dashed rgba(214,54,25,0.5);
}
.legal-meta {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}

/* ====================== 404 ====================== */
.notfound {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.notfound::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(214,54,25,0.20), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(214,54,25,0.12), transparent 46%);
  pointer-events: none;
}
.notfound-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 800px; width: 100%;
  margin: 0 auto;
  padding: clamp(80px, 14vh, 160px) clamp(20px, 5vw, 64px) clamp(40px, 8vh, 96px);
}
.notfound-code {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(96px, 28vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0;
  text-shadow: 0 2px 60px rgba(0,0,0,0.4);
}
.notfound-code .accent { color: var(--accent); }
.notfound-eye {
  margin: 0 0 18px;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.notfound-eye::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
.notfound-title {
  margin: clamp(20px, 3vw, 32px) 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.notfound-sub {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  max-width: 46ch;
  color: rgba(251,247,236,0.7);
}
.notfound-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.notfound-actions .btn-line {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.notfound-actions .btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }
.notfound-foot {
  position: relative; z-index: 1;
  padding: 24px clamp(20px, 5vw, 64px);
  font-size: 13px;
  color: rgba(251,247,236,0.5);
  border-top: 1px solid rgba(251,247,236,0.12);
}
.notfound-foot a { color: rgba(251,247,236,0.7); border-bottom: 1px solid rgba(251,247,236,0.25); }
.notfound-foot a:hover { color: #fff; border-color: #fff; }

/* ====================== COOKIECONSENT v3 — Theme-Anpassung ====================== */
#cc-main {
  --cc-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --cc-bg: var(--paper);
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--muted);
  --cc-btn-primary-bg: var(--accent);
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-hover-bg: #b92a11;
  --cc-btn-secondary-bg: rgba(20,17,14,0.06);
  --cc-btn-secondary-color: var(--ink);
  --cc-btn-secondary-hover-bg: rgba(20,17,14,0.12);
  --cc-toggle-on-bg: var(--accent);
  --cc-cookie-category-block-bg: rgba(20,17,14,0.04);
  --cc-cookie-category-block-bg-hover: rgba(20,17,14,0.07);
  --cc-separator-border-color: var(--rule);
  --cc-modal-border-radius: 16px;
  --cc-btn-border-radius: 999px;
  --cc-link-color: var(--accent);
}
#cc-main .cm__title,
#cc-main .pm__title { font-family: "Alfa Slab One", serif; font-weight: 400; letter-spacing: -0.01em; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-phone { padding: 10px 14px; gap: 6px; font-size: 12px; }
  .nav-phone .lbl { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-bottom .sep { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .whatsapp-inner { grid-template-columns: 1fr; }
  .speisekarte-inner { grid-template-columns: 1fr; }
  .speisekarte-cta { align-items: flex-start; }
  .stimmen-grid { grid-template-columns: 1fr; }
  .quote + .quote { border-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; margin-top: 32px; }
  .stimmen-head { align-items: flex-start; }
  .standort-inner { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
}
@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-left, .footer-center, .footer-right { flex: 0 0 auto; }
  .footer-center { text-align: left; }
  .footer-right { justify-content: flex-start; }
  .hours-row, .delivery-row { grid-template-columns: 1fr; gap: 4px; }
  .wa-btn { width: 100%; justify-content: center; }
  .notfound-actions { flex-direction: column; align-items: stretch; }
  .notfound-actions .btn { justify-content: center; }
}
