/* ===================================================================
   Luppo Pizzeria & Döner — Kronshagen  ·  HOCHGLANZ edition
   Direction: "Ofen & Feuer" — warm charcoal ground, ember accent,
   cream content, soft glow + fine grain for depth.
   Display: Bricolage Grotesque · Body: Inter.
   =================================================================== */

:root {
  --cream: #faf5ec;
  --cream-2: #f2ead9;
  --ink: #211c18;
  --char: #17130f;
  --char-2: #241d17;
  --char-3: #100c09;
  --ember: #e4622e;
  --ember-2: #f0763f;
  --ember-deep: #c74a1c;
  --olive: #4b7a3e;
  --gold: #e0a422;
  --muted: #7a7168;
  --hair: #e6dcc9;
  --white: #fffdf9;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -28px rgba(23, 19, 15, 0.42);
  --shadow-sm: 0 8px 22px -12px rgba(23, 19, 15, 0.34);
  --shadow-ember: 0 20px 46px -20px rgba(228, 98, 46, 0.5);
  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --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;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--ember); color: var(--cream); }

/* Fine grain overlay — adds premium tactility without weight */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ember-deep);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: 0.5;
}
.eyebrow.on-dark { color: #f2a877; }

/* Honest 4.6/5 star fill (92%) via clipped gradient */
.hero .rating .stars, .quote .stars {
  background: linear-gradient(90deg, var(--gold) 0 92%, rgba(224,164,34,.30) 92% 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* 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: 20px 24px;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header .brand {
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.02em; color: var(--white); text-decoration: none;
  text-shadow: 0 1px 18px rgba(0,0,0,.55);
}
.site-header .brand em { font-style: normal; color: #f2a877; }
.head-right { display: flex; align-items: center; gap: 28px; }
.head-nav { display: flex; gap: 26px; }
.head-nav a {
  color: rgba(255,255,255,.86); font-weight: 600; font-size: 15px; text-decoration: none;
  text-shadow: 0 1px 12px rgba(0,0,0,.5); position: relative; transition: color .2s ease;
}
.head-nav a:hover { color: #fff; }
.head-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--ember); border-radius: 2px; transition: right .28s var(--ease);
}
.head-nav a:hover::after { right: 0; }
.site-header.scrolled {
  background: rgba(16, 12, 9, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 10px 30px -12px rgba(0,0,0,.5);
  padding: 13px 24px;
}
.site-header.scrolled .brand, .site-header.scrolled .head-nav a { 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: 11px 19px; border-radius: 100px;
  box-shadow: var(--shadow-sm); transition: background .2s ease, transform .2s var(--ease), box-shadow .3s ease;
}
.header-call:hover { background: var(--ember-deep); transform: translateY(-1px); box-shadow: var(--shadow-ember); }
.header-call:active { transform: translateY(0) scale(.98); }
.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;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__img { animation: none; } }
/* Layered overlays: vertical legibility gradient + warm ember glow + vignette */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(90% 60% at 15% 88%, rgba(228,98,46,.28) 0%, transparent 55%),
    linear-gradient(180deg, rgba(16,12,9,.62) 0%, rgba(16,12,9,.12) 26%, rgba(16,12,9,.55) 60%, rgba(16,12,9,.94) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 220px 40px rgba(16,12,9,.55);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 24px 74px; }
.hero__wrap { max-width: var(--maxw); margin: 0 auto; }
.hero .eyebrow.on-dark { animation: rise .7s var(--ease) both .05s; }
.hero h1 {
  font-size: clamp(42px, 8.6vw, 88px); color: var(--white); max-width: 15ch; margin-top: 16px;
  font-weight: 800; text-shadow: 0 2px 40px rgba(0,0,0,.35);
  animation: rise .8s var(--ease) both .12s;
}
.hero h1 em { font-style: normal; color: var(--ember-2); }
.hero p.lede {
  max-width: 42ch; margin: 22px 0 0; font-size: clamp(17px, 2.4vw, 21px); color: #f3ece1;
  animation: rise .8s var(--ease) both .2s;
}
.hero .rating {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 26px; font-weight: 600;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(16,12,9,.4); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  animation: rise .8s var(--ease) both .28s;
}
.hero .rating .stars { letter-spacing: 2px; font-size: 18px; }
.hero .rating .num { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.hero .rating .cnt { color: #d8cfc2; font-weight: 400; font-size: 14.5px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; animation: rise .8s var(--ease) both .36s; }

@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow.on-dark, .hero h1, .hero p.lede, .hero .rating, .hero .cta-row { animation: none; }
}

/* Scroll cue — thin drawing line */
.hero__cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 2; transform: translateX(-50%);
  width: 1px; height: 50px; overflow: hidden; background: rgba(255,255,255,.16);
}
.hero__cue span { display: block; width: 100%; height: 42%; background: rgba(255,255,255,.8); animation: draw 2s var(--ease) infinite; }
@keyframes draw { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }
@media (prefers-reduced-motion: reduce) { .hero__cue span { animation: none; } }

.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 27px; border-radius: 100px; border: 0;
  transition: transform .22s var(--ease), background .2s ease, border-color .2s ease, box-shadow .3s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ember); color: var(--white); box-shadow: var(--shadow-sm); position: relative; }
.btn--primary:hover { background: var(--ember-deep); transform: translateY(-2px); box-shadow: var(--shadow-ember); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--white); border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--block { width: 100%; }
.btn--start { justify-content: flex-start; }

/* ---------- Section base ---------- */
section { position: relative; }
.pad { padding: clamp(66px, 10vw, 124px) 0; }
.section-head { max-width: 640px; }
.section-head h2 { font-size: clamp(30px, 5vw, 48px); margin-top: 14px; }
.section-head p { color: var(--muted); margin: 16px 0 0; }

/* ---------- Speisekarte (editorial menu) ---------- */
.menu { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.menu-card {
  position: relative; background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 30px 30px 24px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
  overflow: hidden;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--ember) 32%, var(--hair)); }
.menu-card h3 {
  font-size: 25px; font-weight: 800; display: flex; align-items: center; gap: 11px;
  position: relative; padding-bottom: 16px;
}
.menu-card h3 .mi { width: 22px; height: 22px; color: var(--ember-deep); flex: none; }
.menu-card h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 46px; height: 2px;
  background: var(--ember); border-radius: 2px;
}
.menu-card .items { list-style: none; margin: 18px 0 0; padding: 0; }
.menu-card .items li {
  display: flex; align-items: baseline; gap: 10px; padding: 10px 0; font-size: 16px;
}
.menu-card .items .name { white-space: nowrap; color: var(--ink); font-weight: 500; transition: transform .2s var(--ease), color .2s ease; }
.menu-card .items .leader { flex: 1; border-bottom: 1px dotted color-mix(in srgb, var(--muted) 55%, transparent); transform: translateY(-4px); }
.menu-card .items .price { white-space: nowrap; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); transition: color .2s ease; }
.menu-card .items li:hover .name { transform: translateX(3px); color: var(--ember-deep); }
.menu-card .items li:hover .price { color: var(--ember-deep); }
.menu-card .items li.feat {
  margin: 4px -30px 0; padding: 10px 30px 10px 27px;
  border-left: 3px solid var(--ember);
  background: linear-gradient(90deg, color-mix(in srgb, var(--ember) 8%, transparent), transparent 62%);
}
.menu-card .items li.feat .name { font-weight: 700; }
.menu-card .items li.feat .name::after {
  content: "Empfehlung"; margin-left: 9px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ember-deep); vertical-align: 1px;
}
.menu-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 36px; }
.menu-cta p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Split (frisch & schnell) ---------- */
.split { background: var(--char); color: #f4ede2; position: relative; z-index: 2; }
.split.pad { padding-bottom: 40px; }
.split::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 50% at 85% 0%, rgba(228,98,46,.16) 0%, transparent 60%);
}
.split .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: end; }
.split h2 { font-size: clamp(30px, 5vw, 48px); color: var(--white); margin-top: 14px; }
.split p { color: #d6cdc0; margin: 20px 0 0; }
.split .stats { display: flex; margin-top: 38px; }
.split .stats > div { padding-right: 30px; }
.split .stats > div + div { border-left: 1px solid rgba(255,255,255,.15); padding-left: 30px; }
.split .stats .n { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.split .stats .l { font-size: 13.5px; color: #b6ab9c; margin-top: 3px; }
.split .imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; z-index: 3; transform: translateY(clamp(64px, 9vw, 104px)); }
.split .imgs img { aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); box-shadow: 0 28px 54px -16px rgba(10,7,4,.62); }
.split .imgs img:first-child { margin-top: 40px; }

/* ---------- Testimonial ---------- */
.quote { background: var(--cream-2); position: relative; z-index: 1; }
.quote .container { max-width: 900px; text-align: center; }
.quote.has-overlap { padding-top: calc(clamp(66px, 10vw, 124px) + 104px); }
.quote .stars { color: var(--gold); letter-spacing: 4px; font-size: 22px; }
.quote blockquote {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(28px, 4.6vw, 46px); line-height: 1.2; color: var(--ink);
  margin: 22px auto 0; max-width: 20ch; text-wrap: balance;
}
.quote blockquote::before { content: "\201E"; color: var(--ember); }
.quote blockquote::after { content: "\201C"; color: var(--ember); }
.quote .cite { margin-top: 24px; color: var(--muted); font-size: 15px; font-weight: 600; }
.quote .cite b { color: var(--ink); }

/* ---------- Full-bleed band ---------- */
.band { height: 46vh; min-height: 300px; max-height: 520px; position: relative; overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.02); }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,19,15,.35), rgba(23,19,15,.15)); }

/* ---------- Kontakt ---------- */
.contact .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 64px); }
.contact .lead { color: var(--muted); margin-top: 16px; max-width: 44ch; }
.info-card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 34px; 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: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.info-card .status.closed { background: color-mix(in srgb, var(--ember-deep) 12%, transparent); color: var(--ember-deep); }
.info-card .status .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 55%, transparent); } 70% { box-shadow: 0 0 0 7px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
@media (prefers-reduced-motion: reduce) { .info-card .status .dot { animation: none; } }
.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: 9px 0; border-bottom: 1px solid var(--hair); font-size: 15.5px; }
.hours li:last-child { border-bottom: 0; }
.hours li.today { font-weight: 700; }
.hours li.today span:first-child::after { content: "· heute"; margin-left: 7px; color: var(--ember-deep); font-size: 12.5px; font-weight: 700; }
.hours .z { font-weight: 600; font-variant-numeric: tabular-nums; }
.contact-actions { display: grid; gap: 12px; margin-top: 26px; }
.info-card .btn { margin-top: 26px; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: none; align-items: center; gap: 12px;
  background: rgba(16,12,9,.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 100px;
  padding: 9px 9px 9px 20px; box-shadow: 0 16px 40px -14px rgba(0,0,0,.6);
  transform: translateY(140%); transition: transform .4s var(--ease);
}
.callbar.show { transform: none; }
.callbar__txt { color: #f4ede2; font-size: 14px; line-height: 1.25; }
.callbar__txt b { color: #fff; font-family: var(--font-display); }
.callbar__txt small { display: block; color: #b6ab9c; font-size: 12px; }
.callbar a {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  background: var(--ember); color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 12px 20px; border-radius: 100px; white-space: nowrap;
}
.callbar a:active { transform: scale(.97); }
.callbar a svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--char-3); color: #cfc6b9; padding: 60px 0 44px; }
.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 .foot-desc { margin: 12px 0 0; max-width: 34ch; color: #b6ab9c; font-size: 15px; }
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer a { color: #cfc6b9; text-decoration: none; font-size: 15px; transition: color .2s ease; }
.site-footer a:hover { color: var(--white); }
.site-footer .rule { height: 1px; background: rgba(255,255,255,.12); margin: 34px 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) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal[data-d="1"] { transition-delay: .08s; }
html.js .reveal[data-d="2"] { transition-delay: .16s; }
html.js .reveal[data-d="3"] { transition-delay: .24s; }
@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; position: relative; z-index: 2; }
.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.pad { padding-bottom: clamp(60px, 11vw, 100px); }
  .split .container { grid-template-columns: 1fr; align-items: stretch; }
  .split .imgs { max-width: 460px; transform: none; }
  .split .imgs img:first-child { margin-top: 24px; }
  .quote.has-overlap { padding-top: clamp(66px, 10vw, 124px); }
  .contact .container { grid-template-columns: 1fr; }
  .head-nav { display: none; }
  .header-call span { display: none; }
  .header-call { padding: 11px 13px; }
  .callbar { display: flex; }
  body { padding-bottom: 84px; }
  .hero__cue { display: none; }
}
@media (max-width: 480px) {
  .split .stats { display: grid; grid-template-columns: repeat(3, 1fr); }
  .split .stats > div { padding-right: 14px; }
  .split .stats > div + div { padding-left: 14px; }
  .split .stats .n { font-size: 26px; }
}
