/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0A0805;
  color: #F5EDE0;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
/* Delivery-platform names we have no URL for yet: keep the styling,
   drop the affordance so they don't read as clickable. */
a:not([href]) { cursor: default; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --orange: #FF6B1A;
  --orange-soft: #FF8A3D;
  --orange-deep: #C94B0E;
  --gold: #FFB427;
  --dark: #07060A;
  --dark-2: #100C0F;
  --dark-3: #1A1418;
  --cream: #F5EDE0;
  --cream-dim: #9C9398;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'Space Grotesk', monospace;
  --serif: 'Bricolage Grotesque', system-ui, sans-serif;
}

/* ============ TYPOGRAPHY HELPERS ============ */
.serif { font-family: var(--display); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange); font-weight: 500;
}
.h-display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 96;
}

/* ============ PRELOADER (3D PIZZA ASSEMBLY) ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255,107,26,0.12) 0%, transparent 60%),
    var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  overflow: hidden;
  perspective: 1400px;
}
.pl__top-bar {
  position: absolute; top: 30px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 40px; z-index: 5;
}
.pl__crumb {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 500;
}
.pl__crumb--right {
  color: var(--orange);
  transition: opacity 0.4s;
}
.pl__stage {
  position: relative;
  width: 380px; height: 380px;
  transform-style: preserve-3d;
  transform: rotateX(20deg);
}
.pl__shadow {
  position: absolute; left: 50%; bottom: -10%;
  width: 70%; height: 30px;
  transform: translateX(-50%) rotateX(90deg);
  background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0;
}
.pl__plate, .pl__dough, .pl__sauce, .pl__cheese, .pl__photo {
  position: absolute;
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
.pl__plate {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle, #1F1A14 0%, #0F0C09 70%);
  border: 2px solid #2A2018;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.pl__dough {
  width: 88%; height: 88%;
  background:
    radial-gradient(circle at 35% 30%, #F0D9A8 0%, #D9B575 50%, #B08A4A 90%, #6B4520 100%);
  box-shadow:
    inset 0 0 40px rgba(120,80,30,0.3),
    inset 0 0 6px rgba(255,200,120,0.4);
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-200px) rotateZ(-30deg) scale(0.5);
}
.pl__dough::after {
  content: ''; position: absolute; inset: 6%; border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent 4px,
    rgba(0,0,0,0.04) 4px,
    rgba(0,0,0,0.04) 6px
  );
}
.pl__sauce {
  width: 76%; height: 76%;
  background: radial-gradient(circle at 40% 35%, #D9351A 0%, #B5260E 60%, #7A1A0A 100%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.pl__sauce::before {
  content: ''; position: absolute; left: 20%; top: 25%; width: 40%; height: 30%;
  background: radial-gradient(ellipse, rgba(255,160,100,0.4), transparent 70%);
  border-radius: 50%; filter: blur(6px);
}
.pl__cheese {
  width: 74%; height: 74%;
  background:
    radial-gradient(ellipse at 30% 25%, #FFE9A8 0%, #F0C56A 40%, #D9A347 80%, #B07A2A 100%);
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-150px) scale(0.5);
  box-shadow:
    inset 0 0 30px rgba(180,120,40,0.4),
    inset 0 -6px 16px rgba(120,70,20,0.5);
  mix-blend-mode: normal;
}
.pl__cheese::before, .pl__cheese::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, #FFF5D8, #FFE3A0);
  opacity: 0.65;
}
.pl__cheese::before { width: 24%; height: 16%; top: 20%; left: 18%; transform: rotate(-15deg); filter: blur(4px); }
.pl__cheese::after  { width: 20%; height: 14%; bottom: 22%; right: 22%; transform: rotate(20deg); filter: blur(4px); }

.pl__top {
  position: absolute;
  left: calc(50% + var(--x, 0px));
  top: calc(50% + var(--y, 0px));
  width: 44px; height: 44px;
  transform: translate(-50%, -50%) translateY(-200px) rotate(0deg) scale(0.4);
  opacity: 0;
}
.pl__top--pep {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #E64D2A 0%, #C2351A 50%, #8B1A0A 100%);
  box-shadow:
    inset 0 -3px 8px rgba(0,0,0,0.4),
    0 4px 10px rgba(0,0,0,0.4);
}
.pl__top--pep::after {
  content: ''; position: absolute; inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,180,140,0.4), transparent 60%);
}
.pl__top--bas {
  width: 30px; height: 40px;
}
.pl__top--bas svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4)); }

.pl__photo {
  width: 88%; height: 88%;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.7),
    0 0 80px rgba(255,107,26,0.25);
}
.pl__photo img { width: 100%; height: 100%; object-fit: cover; }

.pl__steam {
  position: absolute; left: 50%; top: -10%;
  width: 30px; height: 80px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%; filter: blur(8px);
  opacity: 0;
}
.pl__steam--1 { left: 30%; }
.pl__steam--2 { left: 50%; }
.pl__steam--3 { left: 70%; }

.pl__brand-final {
  position: absolute;
  bottom: 22%; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 9vw, 130px);
  letter-spacing: -0.04em;
  color: var(--cream);
  display: flex; gap: 0.01em;
  z-index: 5;
  pointer-events: none;
  font-variation-settings: 'opsz' 96;
}
.pl__brand-final span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}

.pl__bottom {
  position: absolute; bottom: 30px; left: 0; right: 0;
  padding: 0 40px;
  display: flex; align-items: center; gap: 18px;
  z-index: 5;
}
.pl__counter {
  font-family: var(--mono); font-weight: 500;
  font-size: 13px; color: var(--cream);
  letter-spacing: 0.1em;
  width: 28px;
}
.pl__bottom-line {
  flex: 1; height: 1px; background: rgba(245,237,224,0.12);
  position: relative; overflow: hidden;
}
.pl__bottom-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); transform-origin: left center; transform: scaleX(0);
}
.pl__bottom-text {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim);
}
.pl__curtain {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0%;
  background: var(--dark);
  z-index: 9;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 40px 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 8, 5, 0.78);
  backdrop-filter: blur(14px);
  padding: 14px 40px 14px 0;
  border-bottom: 1px solid rgba(255,107,26,0.15);
}
/* Brand lockup. The artwork's "Deluxe" is near-black, so this asset carries a
   cream wordmark for the dark bar; the pizza mark keeps its own colours. */
.nav__logo {
  display: block; height: 48px; width: auto;
  transition: height 0.4s ease;
}
.nav.scrolled .nav__logo { height: 38px; }
.nav__links {
  display: flex; gap: 36px; list-style: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.nav__links a {
  position: relative; padding: 6px 0;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0%; height: 1px; background: var(--orange);
  transition: width 0.4s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.lang-toggle {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.lang-toggle button {
  color: var(--cream-dim); padding: 4px 2px;
  transition: color 0.3s;
}
.lang-toggle button.active { color: var(--orange); font-weight: 600; }
.lang-toggle button:hover { color: var(--cream); }
.lang-toggle__sep { color: var(--cream-dim); opacity: 0.4; }
.nav__cta {
  padding: 12px 22px; border: 1px solid var(--orange);
  border-radius: 999px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  transition: all 0.4s ease; overflow: hidden; position: relative;
}
.nav__cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1); z-index: -1;
}
.nav__cta:hover { color: var(--dark); }
.nav__cta:hover::before { transform: translateY(0); }
.nav__burger { display: none; width: 28px; height: 18px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--cream);
  transition: all 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__burger span:nth-child(3) { bottom: 0; }

/* ============ HERO (Clean BG, Slice Focus) ============ */
.hero {
  position: relative; min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255,107,26,0.10) 0%, transparent 65%),
    var(--dark);
  perspective: 1600px;
}
.hero__noise, .hero__grid-bg { display: none; }

/* Top minimal bar */
.hero__bar {
  position: absolute; top: 100px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 40px;
  z-index: 5;
  font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0;
}
.hero__bar-l { display: flex; align-items: center; gap: 12px; }
.hero__live {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,26,0); }
}

/* Main scene - pizza centered with text behind */
.hero__scene {
  position: relative;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
}

/* HUGE background headline */
.hero__big {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(90px, 17vw, 280px);
  line-height: 0.85; letter-spacing: -0.05em;
  color: var(--cream);
  text-align: center;
  z-index: 1;
  pointer-events: none;
  display: flex; flex-direction: column;
  font-variation-settings: 'opsz' 96;
}
.hb-line { display: block; overflow: hidden; padding: 0 0 0.04em; }
.hb-word { display: inline-block; transform: translateY(110%); }
.hb-accent { color: transparent; -webkit-text-stroke: 1.5px var(--orange); }

/* Bottom row: tagline + CTAs */
.hero__bottom {
  position: absolute; bottom: 60px; left: 0; right: 0;
  padding: 0 40px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 30px; flex-wrap: wrap;
  z-index: 5;
  opacity: 0;
}
.hero__tag-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); font-weight: 500;
  display: block; margin-bottom: 10px;
}
.hero__tag {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream); max-width: 420px;
  line-height: 1.3;
  font-variation-settings: 'opsz' 18;
}
.hero__bottom-r {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Pizza Slice Pull-Out Stage (centered) */
.hero__stage {
  position: relative;
  width: clamp(380px, 44vw, 560px);
  aspect-ratio: 1;
  z-index: 3;
  opacity: 0;
}
.hero__pie {
  position: absolute; inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.75),
    0 0 100px rgba(255,107,26,0.25);
}
.hero__pie img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__pie-gap {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, #1A0F08 0%, #0A0805 60%);
  clip-path: polygon(50% 50%, 96% 18%, 96% 82%);
  opacity: 0;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
}
.hero__pie-gap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(180,80,30,0.4), transparent 50%);
  clip-path: polygon(50% 50%, 96% 18%, 96% 82%);
}
.hero__cheese {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  transform-origin: 50% 50%;
}
.hero__cheese .cstrand {
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
.hero__slice {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(-12px 18px 22px rgba(0,0,0,0.6));
}
.hero__slice img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  clip-path: polygon(50% 50%, 96% 18%, 96% 82%);
}
.hero__pizza-shadow {
  position: absolute; left: 12%; right: 12%; bottom: -6%;
  height: 36px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.7), transparent 70%);
  filter: blur(14px);
  z-index: 1;
}

/* Headline / Tagline */
.hero__copy {
  position: absolute; left: 6vw; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: 60vw;
}
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.88; letter-spacing: -0.05em;
  color: var(--cream);
  font-variation-settings: 'opsz' 96;
}
.ht-line { display: block; overflow: hidden; padding: 0 0 0.04em; }
.ht-line--small { font-size: clamp(28px, 4vw, 64px); margin-top: 18px; letter-spacing: -0.03em; opacity: 0.6; font-weight: 500; }
.ht-word { display: inline-block; transform: translateY(110%); }
.ht-accent { color: var(--orange); }

/* CTA block bottom-left */
.hero__cta-block {
  position: absolute; left: 6vw; bottom: 11vh;
  z-index: 4;
  max-width: 440px;
  opacity: 0;
}
.hero__sub {
  font-size: 16px;
  color: var(--cream-dim);
  margin-bottom: 26px;
  line-height: 1.6;
  max-width: 360px;
}
.hero__cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__rating {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(245,237,224,0.1);
}
.hero__stars { color: var(--orange); font-size: 18px; letter-spacing: 0.05em; }
.hero__rating-text {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* Buttons */
.btn {
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.4s cubic-bezier(.7,0,.3,1);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
}
.btn--primary { background: var(--orange); color: var(--dark); }
.btn--primary:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 20px 50px -15px rgba(255,107,26,0.6); }
.btn--ghost { border: 1px solid rgba(245,237,224,0.25); color: var(--cream); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn svg { width: 14px; height: 14px; transition: transform 0.4s; }
.btn:hover svg { transform: translateX(4px); }

/* Bottom marquee */
.hero__marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(60px, 11vw, 180px);
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,107,26,0.22);
  display: flex; gap: 0;
  z-index: 1;
  pointer-events: none;
  font-variation-settings: 'opsz' 96;
}

/* ============ SECTION COMMON ============ */
section { position: relative; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--orange); font-weight: 600;
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 28px;
}
.section-title em { color: var(--orange); font-style: italic; }
.split-text .line { overflow: hidden; }
.split-text .line > span { display: inline-block; transform: translateY(105%); }

/* ============ STORY ============ */
.story {
  padding: 180px 0 200px;
  background: var(--dark);
  overflow: hidden;
}
.story__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.story__copy h2 { margin-bottom: 36px; }
.story__copy p {
  font-size: 17px; color: var(--cream-dim);
  margin-bottom: 22px; max-width: 480px;
  line-height: 1.7;
}
.story__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 30px; margin-top: 50px;
  padding-top: 40px; border-top: 1px solid rgba(245,237,224,0.1);
}
.story__stat .num {
  font-family: var(--serif); font-weight: 700;
  font-size: 48px; color: var(--orange); line-height: 1;
}
.story__stat .label {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 8px;
}
.story__visual {
  position: relative; aspect-ratio: 4/5;
}
.story__img {
  position: absolute; border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__img--main {
  inset: 0; z-index: 2;
}
.story__img--accent {
  width: 60%; aspect-ratio: 1; bottom: -40px; left: -40px; z-index: 3;
  border: 6px solid var(--dark);
}
.story__badge {
  position: absolute; top: 20px; right: -30px;
  width: 130px; height: 130px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 700;
  color: var(--dark); text-align: center; font-size: 14px; line-height: 1.1;
  z-index: 4;
  animation: spinSlow 18s linear infinite;
  padding: 16px;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ============ PIZZA MENU ============ */
.menu {
  padding: 200px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.menu__head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 40px; margin-bottom: 80px;
}
.menu__head-text { max-width: 560px; }
.menu__head-text p {
  color: var(--cream-dim); font-size: 16px; max-width: 440px;
  margin-top: 18px; line-height: 1.7;
}
.menu__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px;
}
.card {
  position: relative; background: var(--dark-3); border-radius: 8px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(245,237,224,0.06);
  perspective: 1200px;
}
.card__media {
  aspect-ratio: 1.1/1; overflow: hidden; position: relative;
  background: var(--dark);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,5,0.85) 100%);
}
.card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: var(--dark);
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
}
.card__price {
  position: absolute; top: 16px; right: 16px;
  background: rgba(10,8,5,0.7); backdrop-filter: blur(10px);
  color: var(--cream); padding: 8px 14px; border-radius: 999px;
  font-family: var(--serif); font-weight: 700; font-size: 16px;
  border: 1px solid rgba(255,107,26,0.3);
  z-index: 2;
}
.card__body { padding: 26px 26px 30px; }
.card__title {
  font-family: var(--serif); font-weight: 700; font-size: 22px;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.card__desc {
  color: var(--cream-dim); font-size: 14px; line-height: 1.65;
  min-height: 50px;
}
.card__foot {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(245,237,224,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.card__tags { display: flex; gap: 6px; }
.card__tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 8px; border: 1px solid rgba(245,237,224,0.15);
  border-radius: 4px; color: var(--cream-dim);
}

/* ============ BURGER MENU ============ */
.burgers {
  /* Tighter top padding: the pizza section's own 200px now sits directly
     against this one, and 400px of empty dark space read as a dead zone. */
  padding: 120px 0 200px;
  /* Picks up where .menu's gradient ends (dark-2) so the two sections meet
     without a visible band — the removed Stack section used to bridge this. */
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 45%);
}
.burgers__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
}
.bcard {
  display: grid; grid-template-columns: 200px minmax(0, 1fr);
  background: var(--dark-3);
  border: 1px solid rgba(245,237,224,0.06);
  border-radius: 8px; overflow: hidden;
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
}
.bcard:hover {
  background: var(--dark-2);
  border-color: rgba(255,107,26,0.4);
  transform: translateX(-6px);
}
.bcard__media { aspect-ratio: 1; overflow: hidden; }
.bcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s;
}
.bcard:hover .bcard__media img { transform: scale(1.1); }
.bcard__body {
  padding: 26px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bcard__top {}
.bcard__title-row {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: 10px; gap: 16px;
}
.bcard__title {
  font-family: var(--serif); font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em;
}
.bcard__price {
  font-family: var(--serif); font-weight: 700; font-size: 20px;
  color: var(--orange); white-space: nowrap;
}
.bcard__desc {
  color: var(--cream-dim); font-size: 14px;
  line-height: 1.65;
}
.bcard__foot {
  margin-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.bcard__meat {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============ PASTA MARQUEE ============ */
.pasta {
  padding: 160px 0 180px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden;
}
.pasta__head {
  margin-bottom: 60px;
  padding: 0 40px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 30px; flex-wrap: wrap;
}
.pasta__nav { display: flex; gap: 12px; }
.pasta__arrow {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(245,237,224,0.2);
  background: transparent;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(.7,0,.3,1);
}
.pasta__arrow svg { width: 18px; height: 18px; transition: transform 0.3s; }
.pasta__arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
  transform: translateY(-2px);
}
.pasta__arrow:hover svg { transform: scale(1.1); }
.pasta__arrow:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.pasta__arrow:disabled:hover {
  background: transparent; color: var(--cream); border-color: rgba(245,237,224,0.2); transform: none;
}
.pasta__viewport {
  overflow: hidden;
  padding-left: 40px;
}
.pasta__track {
  display: flex; gap: 28px;
  width: max-content;
  padding-right: 80px;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(.7,0,.3,1);
}
.pcard {
  width: 360px; flex-shrink: 0;
  background: var(--dark-3); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(245,237,224,0.06);
  transition: transform 0.5s;
}
.pcard:hover { transform: translateY(-8px); }
.pcard__media { aspect-ratio: 4/3; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.pcard:hover .pcard__media img { transform: scale(1.08); }
.pcard__body { padding: 22px 24px 26px; }
.pcard__title { font-family: var(--serif); font-weight: 700; font-size: 20px; margin-bottom: 6px; }
.pcard__desc { color: var(--cream-dim); font-size: 14px; line-height: 1.65; }
.pcard__row { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.pcard__price { font-family: var(--serif); font-weight: 700; color: var(--orange); font-size: 18px; }
.pcard__type { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-dim); }

/* ============ ORDER ============ */
.order {
  padding: 180px 0;
  background: var(--dark-2);
  position: relative; overflow: hidden;
}
.order__bg {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, var(--orange) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(-45deg, var(--orange) 0 1px, transparent 1px 80px);
}
.order__inner {
  position: relative; text-align: center; z-index: 2;
  max-width: 900px; margin: 0 auto;
}
.order__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(48px, 8vw, 120px); line-height: 0.95;
  letter-spacing: -0.03em; margin-bottom: 30px;
}
.order__title em { color: var(--orange); font-style: italic; }
.order__sub {
  color: var(--cream-dim); font-size: 18px;
  max-width: 520px; margin: 0 auto 50px;
}
.order__buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.order__platforms {
  margin-top: 70px; padding-top: 40px;
  border-top: 1px solid rgba(245,237,224,0.1);
  display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
  align-items: center;
}
.order__plat-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim);
}
.order__plat {
  font-family: var(--serif); font-weight: 700; font-size: 22px;
  color: var(--cream); transition: color 0.3s;
}
.order__plat[href]:hover { color: var(--orange); }

/* ============ VISIT ============ */
.visit {
  padding: 200px 0;
  background: var(--dark);
}
.visit__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.visit__copy h2 { margin-bottom: 36px; }
.visit__address {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; line-height: 1.4;
  margin-bottom: 50px;
}
.visit__detail {
  padding: 20px 0;
  border-top: 1px solid rgba(245,237,224,0.1);
  display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 24px;
  align-items: start;
}
.visit__detail:last-child { border-bottom: 1px solid rgba(245,237,224,0.1); }
.visit__label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); padding-top: 4px;
}
.visit__value { color: var(--cream); font-size: 16px; line-height: 1.6; }
.visit__hours-row {
  display: flex; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px dashed rgba(245,237,224,0.08);
  font-size: 14px;
}
.visit__hours-row:last-child { border-bottom: none; }
.visit__hours-row span:first-child { color: var(--cream-dim); }
.visit__map {
  aspect-ratio: 4/5;
  border-radius: 8px; overflow: hidden;
  position: relative;
  background: var(--dark-3);
  border: 1px solid rgba(245,237,224,0.06);
}
.visit__map iframe {
  width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}
.visit__map-label {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--orange); color: var(--dark);
  padding: 14px 22px; border-radius: 4px;
  font-family: var(--serif); font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em;
}

/* ============ FOOTER ============ */
footer {
  background: var(--dark-2);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,107,26,0.1);
}
.foot__big {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85; letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, rgba(245,237,224,0.06) 0%, transparent 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,107,26,0.2);
  margin-bottom: 60px;
  user-select: none;
}
.foot__row {
  display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(245,237,224,0.08);
}
.foot__col h4 {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 22px;
}
.foot__col p, .foot__col a {
  display: block; color: var(--cream-dim); font-size: 14px; padding: 4px 0;
  transition: color 0.3s;
}
.foot__col a[href]:hover { color: var(--orange); }
.foot__copy {
  padding-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============ FULL MENU (tabbed, all categories) ============ */
.fullmenu {
  padding: 180px 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.fullmenu__tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-bottom: 34px; margin-bottom: 44px;
  border-bottom: 1px solid rgba(245,237,224,0.08);
}
.fmtab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid rgba(245,237,224,0.15);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--cream-dim); transition: all 0.3s;
}
.fmtab:hover { color: var(--cream); border-color: rgba(245,237,224,0.4); }
.fmtab.active {
  background: var(--orange); color: var(--dark); border-color: var(--orange);
}
.fmtab__count {
  font-family: var(--mono); font-size: 10px;
  padding: 2px 6px; border-radius: 999px;
  background: rgba(245,237,224,0.1);
}
.fmtab.active .fmtab__count { background: rgba(7,6,10,0.22); }

.fmpanel { display: none; }
.fmpanel.active { display: block; }

.mrows {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 30px;
}
.mrow {
  position: relative;
  display: flex; gap: 18px; align-items: flex-start;
  padding: 16px; border-radius: 8px;
  background: var(--dark-3);
  border: 1px solid rgba(245,237,224,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.mrow:hover {
  border-color: rgba(255,107,26,0.35);
  transform: translateY(-3px);
}
.mrow__thumb {
  flex: 0 0 88px; width: 88px; height: 88px;
  border-radius: 6px; overflow: hidden; background: var(--dark);
}
.mrow__thumb img { width: 100%; height: 100%; object-fit: cover; }
/* No honest photo for this item — a quiet crust-toned placeholder, not a stock stand-in */
.mrow__thumb--empty {
  background:
    repeating-linear-gradient(45deg,
      rgba(255,107,26,0.07) 0 1px, transparent 1px 9px),
    var(--dark);
  border: 1px solid rgba(245,237,224,0.06);
}
.mrow__main { flex: 1; min-width: 0; }
/* Phone-only accordion control. Above 640px every field is already on screen,
   so the button is removed from the box model rather than just made invisible
   — no stray hit area over the desktop rows. */
.mrow__toggle { display: none; }
.mrow__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; margin-bottom: 5px;
}
.mrow__title {
  font-family: var(--serif); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; line-height: 1.25;
}
.mrow__price {
  flex: 0 0 auto;
  font-family: var(--serif); font-weight: 700; font-size: 16px;
  color: var(--orange);
}
.mrow__desc {
  color: var(--cream-dim); font-size: 14px; line-height: 1.65;
  margin-bottom: 10px;
}
.mrow__meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.mrow__nr {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,107,26,0.12); color: var(--orange);
}
.mrow__diet {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  border: 1px solid rgba(245,237,224,0.15); color: var(--cream-dim);
}
.mrow .codes { display: flex; flex-wrap: wrap; gap: 5px; }
/* Every chip carries its own name. A bare "A1" is meaningless without the
   legend, and the tooltip that used to hold the name never fired on touch —
   so the name is simply always on screen, at both sizes. */
.code {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: 4px;
  background: rgba(245,237,224,0.06); color: var(--cream-dim);
  border: 0; text-decoration: none;
}
.code__id { color: var(--gold); }
.code__name {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.01em;
}

/* ============ "CONTAINS" — allergens on the showcase cards ============ */
/* Cards have room, so they spell the names out; the terse A1/Z2 chips above
   only work in the full menu, where the decoding legend sits directly below. */
.contains {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(245,237,224,0.07);
  display: flex; flex-direction: column; gap: 5px;
}
.contains__line {
  font-size: 13px; line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
}
.contains__label {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-right: 7px;
}
/* Additives are a labelling obligation rather than a safety warning, so they
   sit a step quieter than the allergen line. */
.contains__line--add { opacity: 0.74; font-size: 12px; }
.contains__line--add .contains__label { color: var(--cream-dim); }

.pcard .contains, .bcard .contains { margin-top: 13px; padding-top: 11px; }
@media (max-width: 640px) {
  .contains { margin-top: 13px; padding-top: 11px; }
  .contains__line { font-size: 12.5px; }
}

.legend {
  margin-top: 46px; padding-top: 30px;
  border-top: 1px solid rgba(245,237,224,0.08);
}
.legend__toggle {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange); cursor: pointer; list-style: none;
}
.legend__toggle::marker, .legend__toggle::-webkit-details-marker { display: none; }
.legend__toggle::before { content: '+ '; }
.legend[open] .legend__toggle::before { content: '– '; }
.legend__list {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px 30px;
}
.legend__item { display: flex; gap: 10px; font-size: 13px; }
.legend__item dt {
  flex: 0 0 44px;
  font-family: var(--mono); color: var(--orange);
}
.legend__item dd { color: var(--cream-dim); }

/* ============ SIZE / PRICE LADDER (pizzas, pizza bread) ============ */
.card__price .from,
.mrow__price .from {
  font-family: var(--mono); font-style: normal;
  font-size: 0.6em; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7; margin-right: 2px;
}
/* Flex (not auto-fit grid) so 2 chips and 5 chips both fill one row at any
   width — auto-fit left a phantom track on wide screens and orphaned the
   fifth chip on narrow ones. */
.sizes { display: flex; gap: 6px; margin: 16px 0 4px; }
.size {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 4px; border-radius: 5px;
  background: rgba(245,237,224,0.04);
  border: 1px solid rgba(245,237,224,0.08);
}
.size__code {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--gold);
}
.size__cm {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: 0.06em; color: var(--cream-dim);
}
.size__price {
  font-family: var(--serif); font-weight: 700; font-size: 13px;
  color: var(--cream); white-space: nowrap;
}
/* Denser variant for the compact full-menu rows */
.sizes--compact { gap: 4px; margin: 8px 0 9px; }
.sizes--compact .size { padding: 5px 3px; }
.sizes--compact .size__price { font-size: 11.5px; }
.sizes--compact .size__cm { display: none; }

/* ============ IMPRESSUM (§5 TMG disclosure) ============ */
.impressum {
  margin-top: 64px; padding-top: 34px;
  border-top: 1px solid rgba(245,237,224,0.1);
}
.impressum__title {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 500;
  margin-bottom: 18px;
}
.impressum__body {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px 40px;
}
.impressum__block {
  font-size: 12.5px; line-height: 1.75;
  color: var(--cream-dim); margin: 0;
}
.impressum__block a {
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(255,107,26,0.35);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.impressum__block a:hover { color: var(--orange); border-color: var(--orange); }

/* Contact links in the Visit panel */
.visit__link {
  color: var(--cream);
  border-bottom: 1px solid rgba(255,107,26,0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.visit__link:hover { color: var(--orange); border-color: var(--orange); }
@media (max-width: 1024px) {
  /* The phone number is meant to be tapped to call — give it a finger-sized
     hit area without changing how it looks. */
  .visit__link, .impressum__block a {
    display: inline-block; padding: 11px 0;
  }
  .impressum__block { line-height: 1.4; }
}

/* ============ "SEE ALL" — showcase to full menu ============ */
/* The showcases are a curated teaser; this is the hand-off to the complete
   list, and it opens the matching category tab on the way. */
.seeall {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 54px auto 0;
  padding: 15px 30px;
  border: 1px solid rgba(255,107,26,0.4);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
/* the sections are block-level, so centre the pill on its own line */
.menu .seeall, .burgers .seeall, .pasta .seeall { display: flex; width: fit-content; }
.seeall:hover {
  background: var(--orange); border-color: var(--orange); color: var(--dark);
}
.seeall__n {
  font-variant-numeric: tabular-nums;
  padding: 2px 9px; border-radius: 999px;
  background: rgba(255,107,26,0.16);
  transition: background 0.4s ease;
}
.seeall:hover .seeall__n { background: rgba(10,8,5,0.18); }
.seeall svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.seeall:hover svg { transform: translateX(4px); }
@media (max-width: 640px) {
  .seeall { margin-top: 38px; padding: 14px 24px; font-size: 11px; }
}

/* ============ HALAL MARK ============ */
.halal { display: inline-flex; align-items: center; gap: 9px; }
.halal__mark { width: 30px; height: 30px; flex: 0 0 auto; display: block; }
.halal__text {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; white-space: nowrap;
}

/* Corner badge — the real signage artwork, pinned to the viewport corner.
   One variable drives both the badge width and the clearance the wordmark
   needs, so the two can never drift apart at a breakpoint. */
:root { --halal-w: 104px; }
.halal-corner {
  position: absolute; top: 0; left: 0;
  width: var(--halal-w); height: auto;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.55));
}
.nav__brand {
  display: flex; align-items: center; min-width: 0;
  padding-left: calc(var(--halal-w) + 14px);
}

/* Hero info bar — text only; the corner artwork is the mark here */
.halal--bar .halal__text { font-size: 10px; }

/* Fourth tile in the story stats row */
.story__stat--halal { display: flex; flex-direction: column; gap: 10px; }
.story__stat--halal .halal__mark { width: 46px; height: 46px; }
.story__stat--halal .label { color: var(--gold); }

/* Reassurance line above the allergen legend */
.halal--note {
  gap: 14px; margin-top: 40px; padding: 16px 20px;
  border: 1px solid rgba(255,180,39,0.28);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255,180,39,0.06);
}
.halal--note .halal__mark { width: 38px; height: 38px; }
.halal__note-text {
  font-size: 14px; line-height: 1.6; color: var(--cream); margin: 0;
}

/* Order section — reassurance at the conversion moment */
.halal--order { margin: 22px 0 4px; }
.halal--order .halal__mark { width: 34px; height: 34px; }
.halal--order .halal__text {
  letter-spacing: 0.12em; text-transform: none; font-size: 12.5px;
}

/* Footer */
.halal--foot { margin-top: 18px; }
.halal--foot .halal__mark { width: 32px; height: 32px; }
.halal--foot .halal__text {
  letter-spacing: 0.1em; text-transform: none; font-size: 12px;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-weight: 700;
  font-size: 36px; color: var(--cream);
}
.mobile-menu a:hover { color: var(--orange); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .container { padding: 0 24px; }
  .story__grid, .visit__grid {
    grid-template-columns: 1fr; gap: 50px;
  }
  .menu__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .burgers__grid { grid-template-columns: minmax(0, 1fr); }
  .bcard { grid-template-columns: 140px minmax(0, 1fr); }
  .foot__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
  .mrows { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 1024px) {
  .hero__bar { padding: 0 20px; font-size: 9px; letter-spacing: 0.22em; top: 80px; }
  /* This slot used to hold decorative text and was dropped on small screens;
     it now carries the halal mark, which should stay visible everywhere. */
  .hero__bar-r { display: block; }
  .halal--bar .halal__text { font-size: 9px; letter-spacing: 0.16em; }
  .hero__big { font-size: clamp(60px, 16vw, 140px); }
  .hero__stage { width: 70vw; max-width: 460px; }
  .hero__bottom { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; bottom: 30px; }
  .hero__bottom-r { width: 100%; }
}
@media (max-width: 640px) {
  .menu__grid { grid-template-columns: minmax(0, 1fr); }
  .story__stats { grid-template-columns: 1fr 1fr; }
  .visit__detail { grid-template-columns: 1fr; gap: 6px; }
  .bcard { grid-template-columns: minmax(0, 1fr); }
  .bcard__media { aspect-ratio: 16/9; }
  .foot__row { grid-template-columns: minmax(0, 1fr); }
  .story__badge { width: 90px; height: 90px; font-size: 11px; right: 10px; top: -20px; }
  .story__img--accent { left: -10px; bottom: -20px; }
  .pl__top-bar { padding: 0 20px; }
  .pl__bottom { padding: 0 20px; }
  .pl__bottom-text { display: none; }
  .hero__scene { padding: 130px 0 220px; }
  .hero__stage { width: 80vw; }
  .hero__big { font-size: clamp(48px, 18vw, 90px); }
  .fullmenu { padding: 120px 0; }
  .fmtab { padding: 9px 15px; font-size: 11px; letter-spacing: 0.1em; }
  .mrow__thumb { flex-basis: 64px; width: 64px; height: 64px; }
  .legend__list { grid-template-columns: minmax(0, 1fr); }
}

/* ============ LONG-WORD / GRID BLOWOUT GUARDS ============ */
/* `1fr` means `minmax(auto, 1fr)`, so an unbreakable token forces its track
   wider than the container — "Cheese-Bacon(Halal)burger" and the longer drink
   names did exactly that on narrow screens. Cap the minimum at 0 and let long
   compounds wrap instead of pushing layout out. */
.menu__grid, .burgers__grid, .mrows, .bcard, .card, .pcard, .mrow {
  min-width: 0;
}
.menu__grid > *, .burgers__grid > *, .mrows > *, .bcard > * {
  min-width: 0;
}
.card__title, .bcard__title, .pcard__title, .mrow__title,
.card__desc, .bcard__desc, .pcard__desc, .mrow__desc {
  overflow-wrap: break-word;
}
/* Title/price rows are flex: without min-width:0 the title's min-content floor
   refuses to shrink and shoves the nowrap price past the card edge. */
.bcard__title-row, .mrow__head, .pcard__row { min-width: 0; }
.bcard__title, .mrow__title, .pcard__title { min-width: 0; }
.bcard__price, .mrow__price, .pcard__price { flex: 0 0 auto; }

/* ============ TOUCH & SMALL-SCREEN REFINEMENTS ============ */
@media (max-width: 1024px) {
  /* Fifteen category tabs wrap into a ~480px-tall wall on a phone, pushing the
     menu itself below the fold. One swipeable strip keeps content reachable. */
  .fullmenu__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,107,26,0.5) transparent;
    padding-bottom: 16px;
    margin-bottom: 32px;
  }
  .fullmenu__tabs::-webkit-scrollbar { height: 3px; }
  .fullmenu__tabs::-webkit-scrollbar-track { background: rgba(245,237,224,0.06); }
  .fullmenu__tabs::-webkit-scrollbar-thumb {
    background: rgba(255,107,26,0.55); border-radius: 3px;
  }
  .fmtab { flex: 0 0 auto; scroll-snap-align: start; }

  /* Touch targets: bring the smaller axis up to ~44px. */
  .nav__burger { width: 44px; height: 44px; margin-right: -10px; }
  .nav__burger span { left: 8px; right: 8px; }
  .nav__burger span:nth-child(1) { top: 14px; }
  .nav__burger span:nth-child(3) { bottom: 14px; }
  /* Badge shrinks with the nav; the wordmark's clearance follows it. */
  :root { --halal-w: 88px; }
  .nav__logo { height: 40px; }
  .nav.scrolled .nav__logo { height: 34px; }
  .lang-toggle button { padding: 12px 12px; }
  /* Inline text CTAs are the primary action on these cards — give them a
     finger-sized hit area without changing how they look. */
  .order__plat { padding: 12px 4px; }
  .foot__col a { padding: 9px 0; }
}

/* Hamburger becomes an X while the overlay is open (main.js toggles .open) */
.nav__burger.open span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) {
  bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 640px) {
  :root { --halal-w: 72px; }
  .nav__brand { padding-left: calc(var(--halal-w) + 10px); }
  .nav__logo { height: 32px; }
  .nav.scrolled .nav__logo { height: 28px; }
  .sizes { gap: 4px; }
  .sizes .size { padding: 6px 2px; }
  .size__cm { font-size: 8px; letter-spacing: 0; }
  .sizes--compact { gap: 3px; }
  .sizes--compact .size__price { font-size: 10.5px; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .sizes .size { padding: 5px 1px; }
  .size__price { font-size: 12px; }
  .sizes--compact .size__price { font-size: 10px; }
  /* ---- full menu rows collapse on a phone ----------------------------
     Collapsed a row shows only photo, name, price and the size ladder;
     description, item number, diet tags and allergen codes appear on tap.

     The row becomes a grid and .mrow__main is display:contents, so the size
     ladder can span the full width instead of being squeezed into the narrow
     text column beside the photo — four sizes at ~10,90 € never fit in the
     ~150px a side-by-side layout leaves. Desktop markup is untouched. */
  .mrow {
    padding: 13px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 28px;
    grid-template-areas:
      "thumb head  toggle"
      "sizes sizes sizes"
      "desc  desc  desc"
      "meta  meta  meta";
    column-gap: 12px; row-gap: 0;
    align-items: start;
  }
  .mrow__main { display: contents; }
  .mrow__thumb {
    grid-area: thumb; flex-basis: auto;
    width: 92px; height: 70px;
  }
  /* Name over price, not beside it: the column is ~169px here and a single
     long word ("Margherita", "Prosciutto") has nowhere to wrap, so sharing the
     line with the price forced a mid-word break. */
  .mrow__head {
    grid-area: head; margin-bottom: 0;
    flex-direction: column; align-items: flex-start; gap: 3px;
  }
  .mrow .sizes--compact { grid-area: sizes; margin-top: 11px; }
  .mrow__desc { grid-area: desc; margin-bottom: 0; }
  .mrow__meta { grid-area: meta; }
  .mrow__toggle { grid-area: toggle; }

  .mrow:not(.is-open) .mrow__desc,
  .mrow:not(.is-open) .mrow__meta { display: none; }
  .mrow.is-open .mrow__desc { margin-top: 12px; }
  .mrow.is-open .mrow__meta { margin-top: 11px; }

  .mrow__toggle {
    display: grid; place-items: center; justify-self: end;
    width: 28px; height: 28px; margin: -3px -3px 0 0;
    background: none; border: 0; padding: 0;
    color: var(--cream-dim); cursor: pointer;
  }
  .mrow__toggle svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
  .mrow.is-open .mrow__toggle { color: var(--orange); }
  .mrow.is-open .mrow__toggle svg { transform: rotate(180deg); }
  /* The whole row is the tap target, not just the 28px chevron. */
  .mrow__toggle::before { content: ''; position: absolute; inset: 0; }

  /* Tighten horizontally only — vertical padding is the tap target. */
  .fmtab { padding: 12px 13px; }
}

/* ============ REDUCED MOTION ============ */
/* Honour the OS "reduce motion" setting. The JS drops the scroll-driven
   effects; this covers CSS transitions/animations and makes sure nothing is
   left stuck in a hidden pre-animation state if a script never runs. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .preloader { display: none !important; }
  /* Everything the entrance animations would normally reveal. Kept as a
     belt-and-braces fallback so no content is stranded invisible if a script
     fails to run. */
  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero__bar, .hero__bottom, .hero__stage, .hero__pie-gap,
  .hero__cta-block { opacity: 1 !important; }
  .hb-word, .split-text .line > span { transform: none !important; }
  body { overflow: visible; }
}

/* ============ UTIL ============ */
.fade-up { opacity: 0; transform: translateY(40px); }
.no-scroll { overflow: hidden; }
