:root {
  --bg: #120d0b;
  --bg2: #1c1410;
  --card: #fff7ec;
  --text: #fff8ef;
  --muted: #d8c3ae;
  --dark: #211713;
  --dark-muted: #6e5b4e;
  --orange: #f59e0b;
  --red: #ef3f2d;
  --yellow: #ffd166;
  --line: rgba(255,255,255,.14);
  --shadow: 0 22px 70px rgba(0,0,0,.35);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); line-height: .94; letter-spacing: -.055em; max-width: 920px; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.04em; margin-bottom: 18px; }
h3 { font-size: 1.1rem; margin-bottom: 6px; }
p { color: var(--muted); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(18,13,11,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: grid; place-items: center;
  color: #24100a; font-weight: 1000;
  box-shadow: 0 12px 26px rgba(239,63,45,.27);
}
.brand strong { display: block; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}
.nav a:hover, .nav-call { background: rgba(255,255,255,.09); color: var(--text) !important; }
.nav-toggle { display: none; }

.hero { min-height: 760px; display: grid; align-items: center; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(245,158,11,.42), transparent 30%),
    radial-gradient(circle at 20% 75%, rgba(239,63,45,.38), transparent 34%),
    linear-gradient(110deg, rgba(18,13,11,.80), rgba(18,13,11,.88)),
    url('../img/menu-kebab.jpg') center / cover;
  transform: scale(1.03);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-content { position: relative; z-index: 1; }
.hero-text { max-width: 700px; font-size: clamp(1.12rem, 2vw, 1.35rem); }
.hero-actions, .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: #25130a; box-shadow: 0 18px 42px rgba(245,158,11,.25); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--text); background: rgba(255,255,255,.07); }
.btn-ghost.dark { border-color: rgba(0,0,0,.18); color: var(--dark); background: rgba(0,0,0,.05); }
.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(920px, 100%);
  margin-top: 34px;
}
.quick-info > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.quick-info span { display: block; font-weight: 950; }
.quick-info small { display: block; color: var(--muted); margin-top: 4px; }

.intro, .drinks-section { background: #18110e; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split.reverse { grid-template-columns: 1fr .72fr; }
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.photo-card img { width: 100%; height: 520px; object-fit: cover; }
.photo-card.tall img { height: 680px; object-position: center; }

.menu-section, .contact-section { background: linear-gradient(180deg, #fff7ec, #f8ead7); color: var(--dark); }
.menu-section p, .contact-section p { color: var(--dark-muted); }
.section-head { margin-bottom: 34px; max-width: 760px; }
.menu-section .eyebrow, .pizza-section .eyebrow, .contact-section .eyebrow, .drinks-section .eyebrow { color: var(--red); }
.pizza-section { background: #130e0b; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.menu-grid.onecol { grid-template-columns: 1fr; }
.menu-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(0,0,0,.08);
  color: var(--dark);
  box-shadow: 0 12px 34px rgba(44,22,9,.08);
}
.pizza-section .menu-card, .drinks-section .menu-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.pizza-section .menu-card p, .drinks-section .menu-card p { color: var(--muted); }
.menu-card p { margin: 0; font-size: .94rem; }
.menu-card strong {
  white-space: nowrap;
  color: var(--red);
  font-size: 1rem;
  align-self: start;
}
.pizza-section .menu-card strong, .drinks-section .menu-card strong { color: var(--yellow); }
.photo-menu {
  width: 100%;
  margin-top: 24px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #241713;
  color: #fff;
  cursor: zoom-in;
  position: relative;
  box-shadow: var(--shadow);
}
.photo-menu img { width: 100%; max-height: 420px; object-fit: cover; }
.photo-menu span {
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(0,0,0,.64);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.photo-menu.small { max-height: 280px; }
.photo-menu.small img { max-height: 280px; object-fit: cover; object-position: center 20%; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.contact-panel, .hours-panel {
  background: #fffdf8;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 48px rgba(44,22,9,.08);
}
.contact-line { font-size: 1.16rem; margin-bottom: 10px; }
.contact-line a { color: var(--red); font-weight: 950; }
.small-note { font-size: .92rem; margin-bottom: 0; }
.hours-panel h3 { color: var(--dark); font-size: 1.6rem; }
.hours-list { display: grid; gap: 8px; }
.hours-list div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,.18);
  color: var(--dark);
}
.hours-list span { font-weight: 900; }
.hours-list strong { text-align: right; }

.footer { padding: 24px 0; background: #0c0908; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.88);
  padding: 54px 16px 16px;
  display: grid;
  place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1300px, 100%);
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: fixed; top: 12px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .section-pad { padding: 62px 0; }
  .topbar { align-items: flex-start; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 24px;
  }
  .nav {
    position: absolute;
    top: 72px; left: 12px; right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(18,13,11,.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; }
  .hero { min-height: 690px; }
  .quick-info { grid-template-columns: 1fr; }
  .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .photo-card img, .photo-card.tall img { height: 420px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { flex-direction: column; gap: 10px; }
  .photo-menu span { left: 10px; right: 10px; text-align: center; }
}

@media (max-width: 460px) {
  .container { width: min(100% - 22px, 1120px); }
  h1 { font-size: 2.45rem; }
  .brand small { display: none; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .photo-card img, .photo-card.tall img { height: 320px; }
}
