*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', system-ui, sans-serif; background: #1c120c; color: #f5e6dc; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:root {
  --fire: #ff6b2b; --fire-light: #ff8a4d; --ember: #ff4d22;
  --bg: #1c120c; --card: #261912; --muted: #a89080;
  --max: 1200px; --nav-h: 72px;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes flicker { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes glow { 0%,100% { box-shadow: 0 0 40px rgba(255,107,43,.2); } 50% { box-shadow: 0 0 70px rgba(255,107,43,.4); } }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
  background: rgba(28,18,12,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,138,77,.1);
}
.nav.is-scrolled { background: rgba(28,18,12,.96); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--fire-light), var(--ember));
  display: grid; place-items: center; color: #fff; animation: glow 3s ease-in-out infinite;
}
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav__links a { position: relative; padding: 4px 0; transition: color .25s; }
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
  background: var(--fire-light); border-radius: 2px;
}
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199;
  background: rgba(28,18,12,.98); padding: 24px 32px; flex-direction: column; gap: 16px;
  border-bottom: 1px solid rgba(255,138,77,.15);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { font-size: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: transform .25s, box-shadow .25s; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn--fire { background: linear-gradient(135deg, var(--fire-light), var(--ember)); color: #fff; box-shadow: 0 8px 28px rgba(255,77,34,.35); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,138,77,.35); color: #fff; }
.btn--ghost:hover { border-color: var(--fire-light); }
.btn--sm { padding: 10px 18px; font-size: 13px; }

/* PAGE HERO (inner) */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,107,43,.12), transparent);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; margin-bottom: 12px; position: relative; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 52ch; margin: 0 auto; position: relative; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; position: relative; }
.breadcrumb a:hover { color: var(--fire-light); }

/* HOME HERO */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: 48px; padding: calc(var(--nav-h) + 40px) 32px 80px; max-width: var(--max); margin: 0 auto;
}
.hero__glow {
  position: fixed; top: 0; right: 0; width: 50vw; height: 70vh; pointer-events: none;
  background: radial-gradient(circle, rgba(255,107,43,.1), transparent 65%);
  animation: flicker 5s ease-in-out infinite;
}
.hero__eyebrow { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--fire-light); margin-bottom: 16px; }
.hero__title { font-size: clamp(42px, 5.5vw, 68px); font-weight: 700; line-height: 1.02; margin-bottom: 20px; }
.hero__title span { background: linear-gradient(90deg, var(--fire-light), var(--ember)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: var(--muted); font-size: 18px; max-width: 42ch; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__rating { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.stars { color: #ffb347; }
.hero__visual { position: relative; }
.hero__img { border-radius: 24px; aspect-ratio: 4/5; object-fit: cover; border: 1px solid rgba(255,138,77,.2); box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.hero__badge {
  position: absolute; bottom: 24px; left: -24px; background: var(--card); border: 1px solid rgba(255,138,77,.3);
  border-radius: 16px; padding: 18px 22px;
}
.hero__badge b { display: block; font-size: 24px; color: var(--fire-light); }

section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.section-head p { color: var(--muted); max-width: 50ch; margin: 0 auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--card); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,138,77,.1); transition: transform .35s, border-color .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,138,77,.3); box-shadow: 0 20px 48px rgba(0,0,0,.35); }
.card__img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 24px; }
.card__body h3 { font-size: 20px; margin-bottom: 8px; }
.card__body p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.card__price { font-size: 20px; font-weight: 700; color: var(--fire-light); }
.card__tag { font-size: 11px; letter-spacing: .1em; text-transform: translateY(0); text-transform: uppercase; color: var(--fire-light); margin-bottom: 8px; }

.strip {
  background: linear-gradient(90deg, var(--card), #2a1a10, var(--card));
  border-block: 1px solid rgba(255,138,77,.1); padding: 48px 0;
}
.strip__inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; text-align: center; }
.strip__item b { display: block; font-size: 36px; color: var(--fire-light); }
.strip__item span { font-size: 14px; color: var(--muted); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--card); border-radius: 16px; padding: 28px; border: 1px solid rgba(255,138,77,.08); }
.review p { font-size: 15px; margin-bottom: 16px; font-style: italic; color: #e8d5c8; }
.review cite { font-size: 13px; color: var(--muted); font-style: normal; }

/* MENU PAGE */
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.menu-tab {
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: var(--card); border: 1px solid rgba(255,138,77,.15); color: var(--muted); cursor: pointer; transition: .25s;
}
.menu-tab.is-active, .menu-tab:hover { background: rgba(255,107,43,.15); border-color: var(--fire-light); color: #fff; }
.menu-section { margin-bottom: 56px; }
.menu-section h2 { font-size: 24px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,138,77,.15); }
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 20px 24px; background: var(--card); border-radius: 14px; border: 1px solid rgba(255,138,77,.06);
  transition: border-color .25s;
}
.menu-row:hover { border-color: rgba(255,138,77,.25); }
.menu-row h3 { font-size: 17px; margin-bottom: 4px; }
.menu-row p { font-size: 13px; color: var(--muted); max-width: 50ch; }
.menu-row__price { font-size: 18px; font-weight: 700; color: var(--fire-light); white-space: nowrap; }

/* ABOUT */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-split img { border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.about-split h2 { font-size: 32px; margin-bottom: 16px; }
.about-split p { color: var(--muted); margin-bottom: 16px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { border-radius: 12px; height: 180px; object-fit: cover; width: 100%; transition: transform .4s; }
.gallery img:hover { transform: scale(1.03); }

/* FORM */
.form-panel {
  max-width: 560px; margin: 0 auto; background: var(--card); border-radius: 24px;
  padding: 40px; border: 1px solid rgba(255,138,77,.15);
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form label { font-size: 13px; color: var(--muted); margin-bottom: -8px; }
.form input, .form select, .form textarea {
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,138,77,.2); border-radius: 12px;
  padding: 14px 16px; color: #fff; font-family: inherit; font-size: 15px; width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--fire-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { text-align: center; padding: 48px 24px; display: none; }
.form-success.is-show { display: block; }
.form-success__icon { font-size: 48px; margin-bottom: 16px; }

/* CONTACTS */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; padding: 20px; background: var(--card); border-radius: 14px;
  border: 1px solid rgba(255,138,77,.08);
}
.contact-item__icon { font-size: 24px; }
.contact-item h3 { font-size: 15px; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--muted); }
.map-placeholder {
  background: var(--card); border-radius: 20px; min-height: 360px; display: grid; place-items: center;
  border: 1px solid rgba(255,138,77,.1); color: var(--muted); font-size: 15px;
  background-image: linear-gradient(rgba(255,107,43,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,107,43,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255,138,77,.12); padding: 56px 0 32px; margin-top: 40px;
  background: rgba(0,0,0,.2);
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 28ch; }
.footer h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--fire-light); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); font-size: 13px; color: var(--muted); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav__links, .nav .btn--fire { display: none; }
  .nav__burger { display: flex; }
  .hero, .about-split, .contact-grid, .grid-3, .grid-2, .reviews, .footer__grid, .gallery { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .gallery img { height: 140px; }
}
