:root {
  --bg: #050505;
  --gold: #c99a4b;
  --gold-soft: rgba(201, 154, 75, 0.55);
  --gold-light: #f0cb8b;
  --panel: rgba(10, 10, 10, 0.9);
  --text: #f8f4ee;
  --muted: #c8b089;
  --shadow: 0 20px 80px rgba(0,0,0,.55);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(88, 50, 14, 0.18), transparent 24%),
    radial-gradient(circle at bottom, rgba(10, 66, 49, 0.15), transparent 25%),
    linear-gradient(180deg, #070707 0%, #000 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.site-stage {
  max-width: 1180px;
  margin: 0 auto;
}

.mockup-frame {
  position: relative;
  width: min(100%, 941px);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #000;
}

.mockup-image {
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.overlay-nav,
.hero-actions,
.dish-hotspots,
.reservation-overlay,
.social-links,
.story-anchor,
.gallery-anchor,
.event-anchor,
.contact-anchor {
  position: absolute;
}

.overlay-nav {
  left: 4.1%;
  top: 3.45%;
  width: 92.8%;
  height: 3.9%;
}

.nav-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 22%;
  height: 100%;
}

.nav-links {
  position: absolute;
  left: 28.1%;
  top: 0;
  width: 47%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.nav-links a,
.book-top,
.social-links a,
.menu-toggle,
.hero-btn,
.dish-spot,
.modal-book,
.close-modal,
.close-drawer,
.side-drawer-panel a {
  -webkit-tap-highlight-color: transparent;
}

.nav-links a,
.book-top {
  opacity: 0;
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 10%;
  width: 3.8%;
  height: 75%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 100px;
}

.book-top {
  position: absolute;
  right: 6.6%;
  top: 7%;
  width: 16%;
  height: 76%;
}

.hero-actions {
  left: 11.8%;
  top: 20.5%;
  width: 27.6%;
  height: 3.3%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-btn {
  border-radius: 4px;
  text-indent: -9999px;
}

.hero-btn:hover,
.book-top:hover,
.nav-logo:hover,
.nav-links a:hover,
.social-links a:hover,
.dish-spot:hover,
.modal-book:hover {
  outline: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}

.dish-hotspots {
  left: 8.3%;
  top: 33.8%;
  width: 82.4%;
  height: 10.75%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.dish-spot {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.reservation-overlay {
  left: 31.8%;
  top: 46.85%;
  width: 60.9%;
  height: 8.6%;
}

.reservation-form {
  height: 100%;
  display: grid;
  grid-template-columns: 1.45fr 1.15fr 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px 12px;
  align-content: start;
}

.reservation-form input,
.reservation-form select,
.reservation-submit {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: transparent;
  border-radius: 4px;
  cursor: pointer;
}

.reservation-form > *:hover,
.reservation-form > *:focus {
  outline: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.03);
}

.reservation-form input:nth-child(5) {
  grid-column: 1 / 2;
}

.reservation-form input:nth-child(6) {
  grid-column: 2 / 3;
}

.reservation-form input:nth-child(7) {
  grid-column: 3 / 5;
}

.story-anchor {
  left: 0;
  top: 55.2%;
  width: 100%;
  height: 8%;
}

.gallery-anchor {
  left: 0;
  top: 62.25%;
  width: 100%;
  height: 8.2%;
}

.event-anchor {
  left: 45%;
  top: 72.85%;
  width: 50%;
  height: 8.5%;
}

.contact-anchor {
  left: 0;
  top: 81%;
  width: 100%;
  height: 12.5%;
}

.social-links {
  right: 1.3%;
  top: 13.6%;
  width: 2.5%;
  height: 7.9%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
}

.social-links a {
  display: block;
  border-radius: 999px;
}

.side-drawer,
.dish-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 40;
}

.side-drawer.open,
.dish-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.side-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  padding: 92px 28px 28px;
  background: linear-gradient(180deg, rgba(11,11,11,.98), rgba(3,3,3,.98));
  border-left: 1px solid rgba(255,255,255,.08);
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-drawer.open .side-drawer-panel {
  transform: translateX(0);
}

.side-drawer-panel a {
  color: var(--text);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.close-drawer,
.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dish-modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 540px);
  padding: 34px 28px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(201, 154, 75, .18), transparent 35%),
    linear-gradient(180deg, rgba(18,18,18,.98), rgba(6,6,6,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.dish-modal-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(201,154,75,.35);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dish-modal h3 {
  margin: 18px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
}

.dish-modal p {
  margin: 0;
  color: #c8c3ba;
  line-height: 1.8;
}

.dish-price {
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 28px;
  font-weight: 700;
}

.modal-book {
  display: inline-flex;
  margin-top: 26px;
  text-decoration: none;
  color: #111;
  background: linear-gradient(180deg, #efcf98, #c89a4e);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(17,17,17,.94);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  box-shadow: var(--shadow);
  transition: all .25s ease;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .page-shell {
    padding: 10px;
  }
}
