*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #100e0b;
  --dark-2: #1a1714;
  --bg: #f7f3ee;
  --bg-2: #edeae4;
  --text: #1a1510;
  --text-2: #7a6e60;
  --accent: #c8391a;
  --line: rgba(255,255,255,.08);
  --font-display: 'Antonio', Impact, sans-serif;
  --font-body: 'Mulish', system-ui, sans-serif;
}

body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Nav ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  padding: 0 48px; height: 72px;
  max-width: 1400px; margin: 0 auto;
}
.brand {
  font-family: var(--font-display); font-size: 28px;
  text-decoration: none; color: #fff; text-transform: uppercase;
  letter-spacing: .08em; justify-self: center;
}
.nav-side { display: flex; align-items: center; gap: 28px; }
.nav-right { justify-content: flex-end; }
.nav-side a { text-decoration: none; color: rgba(255,255,255,.5); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: .2s; }
.nav-side a:hover { color: #fff; }
.nav-btn { background: var(--accent) !important; color: #fff !important; padding: 9px 20px !important; }
.nav-btn:hover { background: #a82e14 !important; }

/* ── Hero ── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 560px;
  overflow: hidden;
}
.hero-panels { display: grid; grid-template-columns: 38% 62%; height: 100%; }
.panel-left {
  background: var(--dark);
  display: flex; flex-direction: column;
  gap: 36px;
  padding: 56px 48px;
  position: relative; z-index: 1;
}
.eyebrow { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; line-height: 1.9; }
.hero-badge span { display: block; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; letter-spacing: .04em; }
.panel-right { position: relative; overflow: hidden; }
.panel-right img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8); }
.panel-right::after {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 280px;
  background: linear-gradient(transparent, rgba(10,8,5,.85));
}

/* Oversized name spanning both panels */
.hero-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 48px 24px;
  pointer-events: none; z-index: 2;
}
.hero-name h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(80px, 13vw, 185px);
  line-height: .92; color: #fff; text-transform: uppercase;
  letter-spacing: -.01em;
}
.hero-name h1 em {
  font-style: normal; display: block;
  font-size: .34em; letter-spacing: .35em;
  color: rgba(255,255,255,.45);
}

/* ── Common label ── */
.label { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; display: block; }

/* ── Menu section ── */
.menu-section { background: var(--dark-2); padding: 96px 0; }
.menu-inner { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.menu-head { margin-bottom: 56px; }
.menu-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(52px, 7vw, 88px); color: #fff; text-transform: uppercase; letter-spacing: .02em; line-height: 1; margin-top: 8px; }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.04); }
.dish { background: var(--dark-2); overflow: hidden; }
.dish-img { overflow: hidden; }
.dish-img img { width: 100%; height: 300px; object-fit: cover; display: block; transition: .6s ease; filter: brightness(.78) saturate(1.1); }
.dish-featured .dish-img img { height: 380px; }
.dish:hover .dish-img img { transform: scale(1.05); filter: brightness(.95) saturate(1.2); }
.dish-info { padding: 24px 28px 32px; }
.dish-cat { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dish-info h3 { font-family: var(--font-display); font-size: 26px; color: #fff; margin: 8px 0 10px; text-transform: uppercase; letter-spacing: .04em; }
.dish-info p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 18px; }
.dish-price { font-family: var(--font-display); font-size: 24px; color: #fff; }

/* ── Story ── */
.story { display: grid; grid-template-columns: 1fr 1fr; }
.story-img { overflow: hidden; min-height: 580px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text {
  padding: 88px 72px; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center;
}
.story-text h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 68px); text-transform: uppercase; letter-spacing: .02em; line-height: 1; margin: 12px 0 28px; }
.story-text p { color: var(--text-2); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

/* ── Info row ── */
.info-row { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--dark); }
.info-item { padding: 44px 40px; border-right: 1px solid var(--line); }
.info-item:last-child { border-right: none; }
.info-item span { display: block; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.info-item strong { display: block; font-size: 15px; color: #fff; font-weight: 400; line-height: 1.8; }

/* ── Reservation CTA ── */
.reservation { background: var(--accent); padding: 96px 56px; text-align: center; }
.reservation-inner { max-width: 700px; margin: 0 auto; }
.reservation h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 6vw, 80px); color: #fff; text-transform: uppercase; line-height: 1.02; margin-bottom: 28px; letter-spacing: .02em; }
.reservation p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 40px; line-height: 1.75; }
.btn { display: inline-flex; align-items: center; padding: 14px 32px; font-size: 13px; font-weight: 700; text-decoration: none; transition: .2s; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-body); }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: var(--dark); color: #fff; }

/* ── Footer ── */
.footer { background: var(--dark); padding: 28px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.35); border-top: 1px solid var(--line); }
.footer a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer a:hover { color: rgba(255,255,255,.8); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-side.nav-left { display: none; }
  .hero-panels { grid-template-columns: 1fr; }
  .panel-left { display: none; }
  .panel-right, .panel-right img { height: calc(100vh - 72px); }
  .hero-name { padding: 0 24px 20px; }
  .menu-inner { padding: 0 24px; }
  .dish-grid { grid-template-columns: 1fr; gap: 0; background: none; }
  .dish-img img, .dish-featured .dish-img img { height: 260px; }
  .story { grid-template-columns: 1fr; }
  .story-img { min-height: 300px; }
  .story-text { padding: 52px 28px; }
  .info-row { grid-template-columns: repeat(2, 1fr); }
  .info-item { border-right: none; border-bottom: 1px solid var(--line); }
  .info-item:nth-child(3), .info-item:last-child { border-bottom: none; }
  .reservation { padding: 64px 24px; }
  .footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
}
