/* ===================================================================
   Luppo Pizzeria & Döner — Kronshagen
   Direction: "Ofen & Feuer" — warm charcoal ground, ember accent,
   cream content. Display: Bricolage Grotesque · Body: Inter.
   =================================================================== */

:root {
  --cream: #faf5ec;
  --cream-2: #f2ead9;
  --ink: #211c18;
  --char: #17130f;
  --char-2: #241d17;
  --ember: #e4622e;
  --ember-deep: #c74a1c;
  --olive: #4b7a3e;
  --gold: #e0a422;
  --muted: #7a7168;
  --hair: #e6dcc9;
  --white: #fffdf9;
  --radius: 16px;
  --shadow: 0 18px 40px -20px rgba(23, 19, 15, 0.35);
  --shadow-sm: 0 6px 18px -10px rgba(23, 19, 15, 0.3);
  --maxw: 1120px;
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ember);
}
.eyebrow.on-dark { color: #f2a877; }

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .brand {
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.02em; color: var(--white);
  text-shadow: 0 1px 14px rgba(0,0,0,.5);
}
.site-header .brand em { font-style: normal; color: #f2a877; }
.site-header.scrolled {
  background: var(--char); box-shadow: 0 2px 20px -6px rgba(0,0,0,.4);
  padding: 12px 24px;
}
.site-header.scrolled .brand { text-shadow: none; }
.header-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ember); color: var(--white);
  font-weight: 600; font-size: 15px; text-decoration: none;
  padding: 10px 18px; border-radius: 100px;
  box-shadow: var(--shadow-sm); transition: background .2s ease, transform .2s ease;
}
.header-call:hover { background: var(--ember-deep); transform: translateY(-1px); }
.header-call svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,19,15,.55) 0%, rgba(23,19,15,.15) 30%, rgba(23,19,15,.55) 62%, rgba(23,19,15,.92) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 24px 68px; }
.hero__wrap { max-width: var(--maxw); margin: 0 auto; }
.hero h1 { font-size: clamp(40px, 8.5vw, 82px); color: var(--white); max-width: 14ch; margin-top: 14px; }
.hero p.lede { max-width: 40ch; margin: 20px 0 0; font-size: clamp(17px, 2.4vw, 20px); color: #f3ece1; }
.hero .rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  font-weight: 600; }
.hero .rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; }
.hero .rating .num { font-family: var(--font-display); font-size: 20px; }
.hero .rating .cnt { color: #d8cfc2; font-weight: 400; font-size: 15px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 16px; text-decoration: none; cursor: pointer;
  padding: 15px 26px; border-radius: 100px; border: 0; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ember); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ember-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }

/* ---------- Section base ---------- */
section { position: relative; }
.pad { padding: clamp(64px, 10vw, 120px) 0; }
.section-head { max-width: 620px; }
.section-head h2 { font-size: clamp(30px, 5vw, 46px); margin-top: 12px; }
.section-head p { color: var(--muted); margin: 16px 0 0; }

/* ---------- Speisekarte ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 48px; }
.menu-card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.menu-card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--ember) 12%, transparent); color: var(--ember-deep); margin-bottom: 16px;
}
.menu-card .ic svg { width: 24px; height: 24px; }
.menu-card h3 { font-size: 21px; }
.menu-card .items { list-style: none; margin: 16px 0 0; padding: 0; }
.menu-card .items li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px dashed var(--hair); font-size: 15.5px;
}
.menu-card .items li:last-child { border-bottom: 0; }
.menu-card .items .price { font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-note { margin-top: 26px; color: var(--muted); font-size: 15px; }

/* ---------- Split (frisch & schnell) ---------- */
.split { background: var(--char); color: #f4ede2; }
.split .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split h2 { font-size: clamp(30px, 5vw, 46px); color: var(--white); margin-top: 12px; }
.split p { color: #d6cdc0; margin: 20px 0 0; }
.split .stats { display: flex; gap: 34px; margin-top: 34px; }
.split .stats .n { font-family: var(--font-display); font-size: 34px; color: var(--white); }
.split .stats .l { font-size: 14px; color: #b6ab9c; }
.split .imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split .imgs img { aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
.split .imgs img:first-child { margin-top: 26px; }

/* ---------- Full-bleed band ---------- */
.band { height: 52vh; min-height: 320px; position: relative; overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(23,19,15,.25); }

/* ---------- Kontakt ---------- */
.contact .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 64px); }
.info-card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); align-self: start;
}
.info-card h3 { font-size: 20px; }
.info-card .status { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px;
  background: color-mix(in srgb, var(--olive) 14%, transparent); color: var(--olive);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; }
.info-card .status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }
.dl { display: grid; gap: 18px; margin: 8px 0 0; }
.dl dt { font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.dl dd { margin: 3px 0 0; font-size: 16px; }
.dl dd a { color: var(--ember-deep); text-decoration: none; font-weight: 600; }
.dl dd a:hover { text-decoration: underline; }
.hours { list-style: none; margin: 14px 0 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--hair); font-size: 15.5px; }
.hours li:last-child { border-bottom: 0; }
.hours .z { font-weight: 600; font-variant-numeric: tabular-nums; }
.contact-actions { display: grid; gap: 12px; margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--char); color: #cfc6b9; padding: 56px 0 40px; }
.site-footer .top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.site-footer .brand { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--white); }
.site-footer .brand em { font-style: normal; color: #f2a877; }
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer a { color: #cfc6b9; text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: var(--white); }
.site-footer .rule { height: 1px; background: rgba(255,255,255,.12); margin: 32px 0 24px; }
.site-footer .fine { font-size: 13px; color: #948b7e; display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; }

/* ---------- Reveal (no-JS safe: only hidden once html.js is set) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 140px 24px 90px; }
.legal h1 { font-size: clamp(32px, 6vw, 48px); }
.legal h2 { font-size: 22px; margin: 40px 0 10px; }
.legal p, .legal address { color: var(--ink); margin: 10px 0; font-style: normal; }
.legal a { color: var(--ember-deep); }
.back-link { display: inline-block; margin-top: 40px; font-weight: 600; color: var(--ember-deep); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .menu-grid { grid-template-columns: 1fr; }
  .split .container { grid-template-columns: 1fr; }
  .split .imgs { max-width: 460px; }
  .contact .container { grid-template-columns: 1fr; }
  .header-call span { display: none; }
  .header-call { padding: 10px 12px; }
}
