:root {
  --bg:     #0F0805;
  --bg2:    #18100A;
  --bg3:    #221508;
  --gold:   #C9974A;
  --gold2:  #E0B265;
  --cream:  #F0E6D0;
  --muted:  #8A7A65;
  --border: rgba(201,151,74,0.15);
  --r:      10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.7; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0; transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(15,8,5,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 22px; color: var(--gold); text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.lang-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  padding: 5px 14px; border-radius: 100px;
  background: transparent; border: 1px solid rgba(201,151,74,0.4);
  color: var(--gold); cursor: pointer; transition: all 0.2s;
  flex-shrink: 0;
}
.lang-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,8,5,0.45) 0%, rgba(15,8,5,0.65) 50%, rgba(15,8,5,1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 0 24px; }
.hero-eye {
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; opacity: 0.8;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 13vw, 118px); line-height: 0.92; margin-bottom: 28px;
}
.hero h1 .l1 { display: block; font-weight: 700; }
.hero h1 .l2 { display: block; font-weight: 400; font-style: italic; color: var(--gold); }
.hero-tag {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 18px; color: var(--cream); opacity: 0.55; margin-bottom: 44px;
}
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-p {
  padding: 14px 32px; border-radius: 6px; background: var(--gold); color: var(--bg);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-p:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-o {
  padding: 14px 32px; border-radius: 6px; background: transparent; color: var(--cream);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(240,230,208,0.22); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-o:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  opacity: 0.3; animation: bob 2.5s ease-in-out infinite; font-size: 18px;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── SHARED ── */
.eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 50px); font-weight: 600; line-height: 1.1; margin-bottom: 40px;
}

/* ── MENU ── */
.menu-wrap { background: var(--bg2); }
.menu-wrap .wrap { padding-top: 80px; padding-bottom: 80px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab {
  padding: 8px 20px; border-radius: 100px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.mgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(222px, 1fr)); gap: 16px;
}
.mc {
  background: var(--bg3); border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.mc:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.55); }
.mc.gone { display: none; }
.mc-img { width: 100%; height: 184px; object-fit: cover; display: block; }
.mc-body { padding: 16px; }
.mc-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.mc-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.mc-foot { display: flex; align-items: center; justify-content: space-between; }
.mc-price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--gold); }
.mc-add {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(201,151,74,0.1); border: 1px solid rgba(201,151,74,0.4);
  color: var(--gold); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mc-add:hover, .mc-add.done { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ── BOOKING ── */
.booking-wrap .wrap { padding-top: 80px; padding-bottom: 80px; }
.bgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.b-desc { color: var(--muted); font-size: 14px; max-width: 320px; margin-bottom: 28px; }
.hours { list-style: none; display: flex; flex-direction: column; }
.hours li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.hours .day { color: var(--muted); }
.hours .time { font-weight: 500; }
.b-note {
  margin-top: 24px; padding: 14px 16px; font-size: 13px; color: var(--muted); line-height: 1.5;
  background: rgba(201,151,74,0.06); border-left: 3px solid rgba(201,151,74,0.35); border-radius: 4px;
}
.bform { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.bform-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.flabel { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.flabel-sub { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }
.finput, .fselect {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; color: var(--cream); font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; width: 100%; transition: border-color 0.2s;
}
.finput:focus, .fselect:focus { border-color: var(--gold); }
.fselect option { background: var(--bg3); }
.po-wrap {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  min-height: 48px; padding: 8px;
}
.po-empty { font-size: 12px; color: var(--muted); text-align: center; padding: 8px; }
.po-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px; border-radius: 6px; font-size: 13px; transition: background 0.2s;
}
.po-item:hover { background: rgba(255,255,255,0.04); }
.po-rm {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 17px; line-height: 1; padding: 0 2px; transition: color 0.2s;
}
.po-rm:hover { color: #FF6B6B; }
.fsub {
  width: 100%; padding: 14px; background: var(--gold); color: var(--bg);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.fsub:hover { background: var(--gold2); transform: translateY(-1px); }
.fsuccess {
  display: none; margin-top: 16px; padding: 16px;
  background: rgba(201,151,74,0.1); border: 1px solid rgba(201,151,74,0.3);
  border-radius: 8px; font-size: 14px; color: var(--gold); text-align: center;
}

/* ── ADDRESS ── */
.addr-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.addr-wrap .wrap { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 36px; padding-bottom: 36px; }
.aitem { display: flex; align-items: flex-start; gap: 12px; }
.aicon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.albl { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.aval { font-size: 14px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); }
footer .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 28px; padding-bottom: 28px;
}
.fbrand { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--gold); }
.fcopy { font-size: 12px; color: var(--muted); }

/* ── CHATBOT ── */
.chat-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  font-size: 26px; box-shadow: 0 4px 24px rgba(201,151,74,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(201,151,74,0.65); }
.chat-win {
  position: fixed; bottom: 96px; right: 24px; z-index: 499;
  width: 360px; height: 520px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 18px; box-shadow: 0 24px 64px rgba(0,0,0,0.65);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(0.96);
  pointer-events: none; transition: opacity 0.22s, transform 0.22s;
}
.chat-win.open { opacity: 1; transform: none; pointer-events: all; }
.chat-head {
  padding: 14px 18px; background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.chat-av {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.chat-hn { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; }
.chat-st { font-size: 11px; color: #5CCB6B; display: flex; align-items: center; gap: 5px; }
.chat-st::before { content: ''; width: 6px; height: 6px; background: #5CCB6B; border-radius: 50%; display: block; }
.chat-body {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-body::-webkit-scrollbar { width: 3px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.cm {
  max-width: 84%; padding: 10px 14px; border-radius: 12px;
  font-size: 13px; line-height: 1.55; white-space: pre-line;
}
.cm.bot { background: var(--bg3); border-bottom-left-radius: 4px; align-self: flex-start; }
.cm.usr { background: var(--gold); color: var(--bg); border-bottom-right-radius: 4px; align-self: flex-end; font-weight: 500; }
.cm.typ { background: var(--bg3); align-self: flex-start; }
.dots { display: flex; gap: 4px; align-items: center; height: 18px; }
.dots span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: dot 1.2s ease-in-out infinite; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.chat-lim { text-align: center; font-size: 11px; color: var(--muted); padding: 2px 0; min-height: 18px; }
.chat-foot {
  padding: 12px 14px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: flex-end;
}
.chat-inp {
  flex: 1; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 13px; color: var(--cream);
  font-size: 13px; font-family: 'Inter', sans-serif;
  outline: none; resize: none; line-height: 1.4; max-height: 80px;
  transition: border-color 0.2s;
}
.chat-inp:focus { border-color: var(--gold); }
.chat-inp::placeholder { color: var(--muted); }
.chat-go {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--gold); border: none; cursor: pointer;
  color: var(--bg); font-size: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.chat-go:hover { background: var(--gold2); }
.chat-go:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── MOBILE ── */
@media (max-width: 768px) { .bgrid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .menu-wrap .wrap, .booking-wrap .wrap { padding-top: 56px; padding-bottom: 56px; }
  .addr-wrap .wrap { flex-direction: column; gap: 20px; }
  .chat-win { width: calc(100vw - 32px); right: 16px; bottom: 88px; }
}
@media (max-width: 500px) { .frow { grid-template-columns: 1fr; } }
