:root {
  --bg: #0d0709;
  --bg-2: #150c0f;
  --surface: #1c1115;
  --surface-2: #26171c;
  --line: rgba(255, 226, 192, .12);
  --burgundy: #9f3a42;
  --burgundy-2: #c04a54;
  --cream: #ffe2c0;
  --text: #f4e9dd;
  --muted: #a99a92;
  --radius: 18px;
  --ff-head: "Unbounded", "Manrope", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 var(--ff-body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.muted { color: var(--muted); }
.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }

h1, h2, h3 { font-family: var(--ff-head); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; color: var(--cream); }
h1 { font-size: clamp(2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.05rem; }

.eyebrow {
  font: 600 .75rem/1 var(--ff-body);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy-2);
  margin-bottom: 18px;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 999px; border: 1px solid var(--burgundy);
  background: var(--burgundy); color: var(--cream);
  font: 600 .95rem/1 var(--ff-body); cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { background: var(--burgundy-2); border-color: var(--burgundy-2); transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(192, 74, 84, .7); }
.btn--ghost { background: transparent; border-color: rgba(255, 226, 192, .35); }
.btn--ghost:hover { background: rgba(255, 226, 192, .08); border-color: var(--cream); box-shadow: none; }
.btn--sm { padding: 11px 20px; font-size: .85rem; }
.btn--wide { width: 100%; padding: 18px; }
:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

/* nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px max(20px, calc((100% - 1180px) / 2));
}
.nav::before { content: ""; position: absolute; inset: 0; z-index: -2; background: rgba(13, 7, 9, .82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); opacity: 0; transition: opacity .3s; }
.nav.is-solid::before { opacity: 1; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: auto; font-size: .92rem; font-weight: 500; }
.nav__links a { color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--cream); }
.nav__burger { display: none; margin-left: auto; width: 42px; height: 42px; background: none; border: 0; cursor: pointer; position: relative; }
.nav__burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--cream); transition: transform .25s, top .25s; }
.nav__burger span:first-child { top: 16px; }
.nav__burger span:last-child { top: 25px; }
.nav__burger[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

/* hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 78% 40%, rgba(159, 58, 66, .5), transparent 70%),
    radial-gradient(40% 50% at 10% 100%, rgba(159, 58, 66, .22), transparent 70%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 40px; align-items: center; }
.hero__lead { max-width: 30em; margin: 24px 0 34px; font-size: 1.1rem; color: #d8c8bb; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__facts { display: flex; gap: 34px; list-style: none; margin-top: 52px; }
.hero__facts li { display: flex; align-items: center; gap: 12px; }
.hero__facts b { font: 500 1.7rem/1 var(--ff-head); color: var(--cream); }
.hero__facts span { font-size: .78rem; line-height: 1.35; color: var(--muted); }

.hero__visual { position: relative; height: min(600px, 70vh); }
.hv {
  position: absolute; object-fit: cover; border-radius: 26px;
  border: 1px solid rgba(255, 226, 192, .16);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .8);
  animation: float 9s ease-in-out infinite;
}
.hv--a { width: 52%; aspect-ratio: 3/4; left: 6%; top: 8%; transform: rotate(-5deg); }
.hv--b { width: 46%; aspect-ratio: 3/4; right: 2%; top: 0; transform: rotate(6deg); animation-delay: -3s; }
.hv--c { width: 46%; aspect-ratio: 3/4; right: 14%; bottom: 0; transform: rotate(-2deg); animation-delay: -6s; }
@keyframes float { 50% { translate: 0 -12px; } }
.hero__badge {
  position: absolute; left: 0; bottom: 14%; z-index: 2;
  width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--cream); color: var(--burgundy);
  font: 600 .8rem/1.2 var(--ff-head); letter-spacing: .04em; text-transform: uppercase;
  transform: rotate(-12deg);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; width: 22px; height: 36px; margin-left: -11px;
  border: 1.5px solid rgba(255, 226, 192, .4); border-radius: 12px;
}
.hero__scroll::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--cream); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* sections */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section--alt { background: var(--bg-2); }
.section__head { margin-bottom: clamp(32px, 5vw, 56px); }

/* features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), transparent); transition: border-color .3s, transform .3s; }
.feature:hover { border-color: rgba(192, 74, 84, .6); transform: translateY(-4px); }
.feature__n { font: 500 .8rem var(--ff-head); color: var(--burgundy-2); }
.feature h3 { margin: 28px 0 12px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* menu */
.menu-tools { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.tabs { display: inline-flex; padding: 5px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }
.tab { padding: 11px 26px; border: 0; border-radius: 999px; background: none; color: var(--muted); font-weight: 600; cursor: pointer; transition: background .2s, color .2s; }
.tab:hover { color: var(--cream); }
.tab.is-active { background: var(--burgundy); color: var(--cream); }
.search { position: relative; flex: 1 1 260px; max-width: 360px; }
.search svg { position: absolute; left: 16px; top: 50%; width: 18px; height: 18px; margin-top: -9px; fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; }
.search input { width: 100%; padding: 13px 18px 13px 44px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); outline: none; transition: border-color .2s; }
.search input:focus { border-color: var(--burgundy-2); }
.search input::placeholder { color: var(--muted); }

.chips { position: sticky; top: 62px; z-index: 5; display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; margin-bottom: 14px; background: linear-gradient(var(--bg-2) 75%, transparent); scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .85rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .2s; }
.chip:hover { color: var(--cream); border-color: rgba(255, 226, 192, .4); }
.chip.is-active { background: var(--cream); border-color: var(--cream); color: #2a1216; }

.group { margin-bottom: 44px; scroll-margin-top: 130px; }
.group h3 { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; font-size: 1.25rem; }
.group h3 small { font: 500 .78rem var(--ff-body); color: var(--muted); }
.dishes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 22px; }
.dish { display: flex; gap: 16px; align-items: center; padding: 12px; border-radius: 14px; border: 1px solid transparent; transition: background .2s, border-color .2s; }
.dish:hover { background: var(--surface); border-color: var(--line); }
.dish__img { flex: none; width: 88px; height: 88px; border-radius: 12px; object-fit: cover; background: var(--surface-2); cursor: zoom-in; }
.dish__body { flex: 1; min-width: 0; }
.dish__top { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font-weight: 700; line-height: 1.3; }
.dish__dots { flex: 1; min-width: 12px; border-bottom: 1px dotted rgba(255, 226, 192, .3); transform: translateY(-4px); }
.dish__price { font: 600 .95rem var(--ff-head); color: var(--cream); white-space: nowrap; }
.dish__desc { margin-top: 3px; font-size: .85rem; line-height: 1.45; color: var(--muted); }
.tag { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 6px; vertical-align: 2px; background: var(--burgundy); color: var(--cream); font: 700 .62rem/1.5 var(--ff-body); letter-spacing: .08em; text-transform: uppercase; }
.tag--hit { background: var(--cream); color: var(--burgundy); }
.dish:not(:has(.dish__img)) { padding-block: 10px; }
.empty { padding: 50px 0; text-align: center; color: var(--muted); }
.menu-note { margin-top: 10px; font-size: .85rem; color: var(--muted); }

/* tour */
.tour { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.tour__text p:not(.eyebrow) { margin: 20px 0 30px; color: #d8c8bb; }
.tour__frame { position: relative; aspect-ratio: 16/10; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 50% 40%, #3a1a20, #120a0c); box-shadow: 0 40px 80px -30px rgba(159, 58, 66, .5); }
.tour__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tour__cover { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 18px; align-items: center; justify-content: center; }
.tour__cover img { width: 46%; opacity: .9; }
.tour__cover span { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* gallery */
.gallery { columns: 4 240px; column-gap: 14px; }
.gallery button { display: block; width: 100%; margin-bottom: 14px; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: var(--surface); cursor: zoom-in; position: relative; break-inside: avoid; }
.gallery img { width: 100%; height: auto; transition: transform .6s, filter .3s; }
.gallery button:hover img { transform: scale(1.05); }
.gallery button::after { content: attr(data-cap); position: absolute; inset: auto 0 0 0; padding: 30px 14px 12px; text-align: left; font-size: .85rem; font-weight: 600; background: linear-gradient(transparent, rgba(0, 0, 0, .8)); opacity: 0; transition: opacity .3s; }
.gallery button:hover::after { opacity: 1; }
.gallery__more { margin-top: 26px; color: var(--muted); text-align: center; }
.gallery__more a { color: var(--cream); border-bottom: 1px solid var(--burgundy-2); }

/* booking */
.book { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.book__text p:not(.eyebrow) { margin: 20px 0 30px; color: #d8c8bb; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 34px; border-radius: 26px; background: var(--surface); border: 1px solid var(--line); }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field--full, .form .btn, .form__err, .form__hint { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); outline: none; transition: border-color .2s; color-scheme: dark; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--burgundy-2); }
.field.is-bad input, .field.is-bad select { border-color: #e0525c; }
.stepper { display: inline-flex; align-items: center; align-self: flex-start; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); }
.stepper button { width: 46px; height: 46px; border: 0; background: none; font-size: 1.4rem; color: var(--cream); cursor: pointer; border-radius: 50%; }
.stepper button:hover { background: var(--surface-2); }
.stepper output { min-width: 44px; text-align: center; font: 600 1.05rem var(--ff-head); }
.form__err { min-height: 1.2em; font-size: .85rem; color: #ff8c94; }
.form__hint { text-align: center; font-size: .8rem; color: var(--muted); }

/* contacts */
.contacts { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
.contacts dl { display: grid; gap: 22px; margin-bottom: 34px; }
.contacts dt { margin-bottom: 4px; font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--burgundy-2); }
.contacts dd { font-size: 1.05rem; }
.contacts dd a { border-bottom: 1px solid rgba(255, 226, 192, .3); transition: border-color .2s; }
.contacts dd a:hover { border-color: var(--cream); }
.contacts__map { min-height: 380px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
.contacts__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: invert(.92) hue-rotate(160deg) saturate(.6) brightness(.9) contrast(.95); }

/* footer */
.footer { padding: 44px 0; border-top: 1px solid var(--line); font-size: .85rem; }
.footer__row { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer__logo { height: 34px; width: auto; }
.footer__row p { max-width: 40em; }
.footer__demo { padding: 6px 14px; border: 1px dashed var(--line); border-radius: 999px; }

/* whatsapp fab */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6); transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: rgba(6, 3, 4, .94); backdrop-filter: blur(8px); }
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(92vw, 900px); text-align: center; }
.lightbox img { max-height: 78vh; margin-inline: auto; border-radius: 14px; }
.lightbox figcaption { margin-top: 14px; font-weight: 600; color: var(--cream); }
.lightbox button { position: absolute; border: 0; background: rgba(255, 226, 192, .1); color: var(--cream); cursor: pointer; border-radius: 50%; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; transition: background .2s; }
.lightbox button:hover { background: rgba(255, 226, 192, .22); }
.lightbox__x { top: 20px; right: 20px; }
.lightbox__nav { top: 50%; margin-top: -24px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
.reveal.is-in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 1000px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .tour, .book, .contacts { grid-template-columns: 1fr; gap: 36px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { height: 420px; order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero { padding-top: 96px; }
}
@media (max-width: 860px) {
  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; gap: 6px; margin: 0;
    padding: 90px 28px 28px; background: var(--bg-2); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .3s; z-index: -1;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: 12px 0; font-size: 1.15rem; color: var(--cream); }
  .dishes { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery { columns: 2; column-gap: 10px; }
  .gallery button { margin-bottom: 10px; border-radius: 12px; }
  .wrap { width: calc(100% - 32px); }
  h1 { font-size: 1.75rem; }
  .hero__lead { font-size: 1rem; }
  .features { grid-template-columns: 1fr; }
  .hero__facts { gap: 20px; flex-wrap: wrap; }
  .hero__visual { height: 340px; }
  .tab { padding: 10px 18px; }
  .form { grid-template-columns: 1fr; padding: 24px 20px; }
  .dish__img { width: 76px; height: 76px; }
  .chips { top: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
