:root {
  --bg: #0c0a09;
  --bg-2: #161210;
  --panel: #1c1714;
  --cream: #f3ebe1;
  --muted: #a89888;
  --line: rgba(243, 235, 225, 0.12);
  --tomato: #e23d2a;
  --tomato-deep: #b82c1c;
  --gold: #e8b84a;
  --olive: #7a9e6a;
  --max: 1120px;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffd978; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; justify-content: center; padding: 0.85rem 1rem 0;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  width: min(100%, var(--max));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(12, 10, 9, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav__links {
  display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}
.nav__links a { color: inherit; }
.nav__links a:hover { color: var(--cream); }
.lang {
  display: inline-flex; border: 1px solid var(--line); overflow: hidden;
}
.lang button {
  font: inherit; border: 0; background: transparent; color: var(--muted);
  padding: 0.4rem 0.65rem; cursor: pointer; font-weight: 700; font-size: 0.75rem;
}
.lang button.is-active { background: var(--tomato); color: #fff; }

/* Hero */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  isolation: isolate; overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 75% 40%, rgba(226, 61, 42, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(232, 184, 74, 0.12), transparent 50%),
    linear-gradient(180deg, #080706, #120e0c 60%, #0c0a09);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center;
}
.hero__kicker {
  margin: 0 0 0.75rem; color: var(--tomato); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95; margin: 0 0 1rem; letter-spacing: 0.04em;
  color: var(--cream);
}
.hero__lede { margin: 0 0 1.6rem; color: var(--muted); max-width: 34ch; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.25rem; font-weight: 700; border: 0; cursor: pointer; font: inherit;
}
.btn-primary { background: var(--tomato); color: #fff; }
.btn-primary:hover { background: var(--tomato-deep); }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid rgba(232,184,74,0.45); }
.btn-ghost:hover { background: rgba(232,184,74,0.1); }

/* Stage animations */
.stage { position: relative; min-height: 360px; }
.pizza-spin {
  width: min(100%, 420px); margin-left: auto; overflow: visible;
  animation: float-y 4.5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.pizza-disc { transform-origin: 200px 200px; animation: spin-slow 28s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.steam path {
  fill: none; stroke: rgba(255,255,255,0.45); stroke-width: 3; stroke-linecap: round;
  animation: steam 2.6s ease-in-out infinite;
}
.steam path:nth-child(2) { animation-delay: 0.4s; }
.steam path:nth-child(3) { animation-delay: 0.9s; }
@keyframes steam {
  0% { opacity: 0; transform: translateY(10px); }
  35% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-34px); }
}
.drink {
  position: absolute; right: 4%; bottom: 6%; width: 90px;
  animation: bob 3.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.bubble {
  animation: rise 2.4s ease-in-out infinite;
}
.bubble:nth-child(2) { animation-delay: 0.5s; }
.bubble:nth-child(3) { animation-delay: 1s; }
@keyframes rise {
  0% { opacity: 0; transform: translateY(8px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-40px); }
}

/* Sections */
section { padding: 4.5rem 0; position: relative; }
.section-kicker {
  margin: 0 0 0.45rem; color: var(--tomato); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 0 0 0.55rem; letter-spacing: 0.03em;
}
.section-sub { margin: 0 0 2rem; color: var(--muted); max-width: 48ch; }

.about {
  background:
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(226,61,42,0.1), transparent 50%),
    var(--bg-2);
}
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; }
.about__card {
  border: 1px solid var(--line); padding: 1.4rem; background: rgba(255,255,255,0.02);
}
.about__card p { margin: 0.4rem 0; color: var(--muted); }
.about__card strong { color: var(--cream); }

/* Menu */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.menu-tab {
  font: inherit; cursor: pointer; border: 1px solid var(--line);
  background: transparent; color: var(--muted); padding: 0.55rem 0.9rem;
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;
}
.menu-tab.is-active, .menu-tab:hover {
  color: #fff; border-color: var(--tomato); background: rgba(226,61,42,0.15);
}
.menu-panel[hidden] { display: none; }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem;
}
.dish {
  display: flex; flex-direction: column; gap: 0.75rem;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  padding: 0; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.dish:hover { border-color: rgba(226,61,42,0.45); transform: translateY(-2px); }
.dish__media {
  aspect-ratio: 16 / 10; overflow: hidden; background: #1a1210;
}
.dish__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.dish:hover .dish__media img { transform: scale(1.04); }
.dish__media--empty {
  background:
    radial-gradient(circle at 30% 30%, rgba(232,184,74,0.18), transparent 45%),
    linear-gradient(135deg, #2a1a14, #1a1210);
}
.dish__body { padding: 0 0.9rem 1rem; }
.dish__top { display: flex; justify-content: space-between; gap: 0.75rem; align-items: baseline; }
.dish__name {
  margin: 0; font-family: var(--font-display); font-size: 1rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.dish__price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.dish__desc { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.45; }
.menu-note { margin-top: 1.25rem; color: var(--muted); font-size: 0.9rem; }

.contact {
  background:
    radial-gradient(ellipse 45% 50% at 0% 100%, rgba(232,184,74,0.08), transparent 50%),
    var(--bg);
}
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.map-frame {
  border: 1px solid var(--line); min-height: 280px; overflow: hidden; background: var(--panel);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 280px; border: 0; filter: grayscale(0.3) contrast(1.05); }
.footer {
  border-top: 1px solid var(--line); padding: 1.75rem 0 2.25rem; color: var(--muted); font-size: 0.85rem;
}
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer strong { color: var(--gold); font-family: var(--font-display); letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .hero__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; }
  .stage { order: -1; min-height: 280px; }
  .pizza-spin { margin: 0 auto; }
  .nav__links { display: none; }
}
