/* =========== Reset & Base =========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --bg:        #0d0f0c;
  --bg-soft:   #131512;
  --bg-card:   #181a16;
  --line:      #2a2d27;
  --text:      #e9e6df;
  --muted:     #a39e91;
  --gold:      #c9a352;
  --gold-soft: #e6c98a;
  --green:     #1e2a22;
  --max:       1240px;
  --radius:    16px;
  --serif:     'Playfair Display', serif;
  --sans:      'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; color: var(--text); }
.italic-gold { font-style: italic; color: var(--gold); font-weight: 500; }
.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.25em; font-size: 12px; color: var(--gold); font-weight: 500; }

/* =========== Buttons =========== */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: 15px;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #1a1407; box-shadow: 0 8px 24px rgba(201,163,82,.25); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,163,82,.35); }
.btn-ghost { border: 1px solid #4d4a40; color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.04); border-color: var(--gold); color: var(--gold-soft); }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========== Header / Nav =========== */
.nav{
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 18px 0;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid #2a2823;
  background-color: #131512a4;
}
.nav.scrolled { background: rgba(13,15,12,.85); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { display:flex; align-items:center; justify-content: space-between; }
.logo { display:flex; align-items:center; gap:14px; }
.logo-mark{
  width:48px; height:48px; border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--serif); font-size: 22px; color: var(--gold); font-weight: 600;
}
.logo-text { line-height: 1.1; }
.logo-text .name { font-family: var(--serif); font-size: 22px; color: var(--text); }
.logo-text .sub  { font-size: 10px; letter-spacing: .3em; color: var(--muted); text-transform: uppercase; }
.nav-links { display:flex; align-items:center; gap: 36px; }
.nav-links a { font-size: 15px; color: var(--text); position: relative; transition: color .25s ease; }
.nav-links a::after{
  content:''; position: absolute; left:0; bottom:-6px; height:1px; width:0;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display:flex; align-items:center; gap: 10px; color: var(--text); }
.nav-cta:hover { color: var(--gold-soft); }

/* =========== Hero / Slider =========== */
.hero{ position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.slides { position: absolute; inset: 0; }
.slide{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s linear;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide::after{
  content:''; position: absolute; inset:0;
  background: linear-gradient(180deg, rgba(8,9,7,.6) 0%, rgba(8,9,7,.55) 40%, rgba(8,9,7,.85) 100%);
}
.hero-inner{
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center;
}
.hero-content { max-width: 640px; opacity: 0; transform: translateY(28px); animation: rise .9s .3s forwards ease-out; }
.hero-content .eyebrow { display:inline-block; margin-bottom: 28px; }
.hero-content h1{
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05; font-weight: 500;
  margin-bottom: 24px;
}
.hero-content p { color: var(--muted); font-size: 17px; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display:flex; gap: 30px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }

/* Slider dots */
.slide-dots{
  position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.slide-dots button{
  width: 32px; height: 3px; background: rgba(255,255,255,.25);
  border-radius: 2px; transition: background .3s ease, width .3s ease;
}
.slide-dots button.active { background: var(--gold); width: 50px; }

.scroll-cue{
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; color: var(--muted); text-transform: uppercase;
  z-index: 3;
}
.scroll-cue .line { display:block; width:1px; height:36px; background: var(--gold); margin: 8px auto 0; animation: pulse 2s infinite ease-in-out; }

@keyframes rise { to { opacity:1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity:.3; transform: scaleY(.6);} 50% { opacity:1; transform: scaleY(1);} }

/* =========== Section common =========== */
section { padding: 110px 0; position: relative; }
.section-head { display:flex; align-items:flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head .left { max-width: 620px; }
.section-head .eyebrow { display:block; margin-bottom: 14px; }
.link-arrow{ display:inline-flex; align-items:center; gap:8px; color: var(--gold); font-size: 15px; font-weight: 500; transition: gap .3s ease; }
.link-arrow:hover { gap: 14px; color: var(--gold-soft); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* =========== Story =========== */
.story-grid { display:grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.story-text h2 { margin-bottom: 24px; }
.story-text p { color: var(--muted); font-size: 17px; margin-bottom: 36px; max-width: 520px; }
.stats { display:flex; gap: 50px; flex-wrap: wrap; }
.stat .num { font-family: var(--serif); color: var(--gold); font-size: 2.2rem; line-height: 1; margin-bottom: 8px; }
.stat .lbl { font-size: 12px; letter-spacing: .25em; color: var(--muted); text-transform: uppercase; }

.story-visual { position: relative; }
.story-img{
  width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius);
  filter: brightness(.92); transition: transform .8s ease, filter .8s ease;
}
.story-visual:hover .story-img { transform: scale(1.02); filter: brightness(1); }
.story-card{
  position: absolute; left: -30px; bottom: -24px;
  background: rgba(20,22,18,.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 26px; max-width: 260px;
}
.story-card .ic { width: 30px; height: 30px; color: var(--gold); margin-bottom: 10px; }
.story-card .t { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; color: var(--text); }
.story-card .s { font-size: 11px; letter-spacing: .25em; color: var(--muted); text-transform: uppercase; }

/* =========== Menu cards =========== */
.menu-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.dish{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.dish:hover { transform: translateY(-8px); border-color: rgba(201,163,82,.55); box-shadow: 0 30px 50px -30px rgba(0,0,0,.7); }
.dish-img-wrap{ overflow: hidden; aspect-ratio: 4/3; }
.dish-img-wrap img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.dish:hover .dish-img-wrap img { transform: scale(1.08); }
.dish-body { padding: 22px; }
.dish-cat { font-size: 11px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.dish-name { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }
.dish-foot { display:flex; align-items:center; justify-content: space-between; }
.dish-price { font-family: var(--serif); font-size: 22px; color: var(--gold); }
.dish-add{
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); display:flex; align-items:center; justify-content:center;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.dish-add:hover { background: var(--gold); color: #1a1407; border-color: var(--gold); }

/* =========== Gallery =========== */
.gallery-wrap { background: var(--bg-soft); }
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.g-item{
  position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;
  background: #1a1c18;
}
.g-item img{ width:100%; height:100%; object-fit: cover; transition: transform .9s ease, filter .9s ease; filter: brightness(.85); }
.g-item:hover img { transform: scale(1.08); filter: brightness(1); }
.g-item::before{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
  opacity: 0; transition: opacity .4s ease; z-index: 1;
}
.g-item:hover::before { opacity: 1; }
.g-cap{
  position: absolute; left: 22px; bottom: 18px; z-index: 2;
  font-family: var(--serif); font-size: 22px;
  transform: translateY(10px); opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.g-item:hover .g-cap { transform: translateY(0); opacity: 1; }

.g-item.tall  { grid-row: span 2; }
.g-item.wide  { grid-column: span 2; }
.g-item.big   { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; background: rgba(5,6,5,.95);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 40px;
}
.lightbox.open { display: flex; animation: fadeIn .3s ease; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display:flex; align-items:center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .3s ease, transform .3s ease;
}
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev  { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: #1a1407; }
@keyframes fadeIn { from { opacity:0;} to { opacity:1;} }

/* =========== Reserve =========== */
.reserve-wrap { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.reserve-info p { color: var(--muted); font-size: 17px; margin: 24px 0 30px; max-width: 380px; }
.reserve-info ul { list-style: none; display: grid; gap: 16px; }
.reserve-info li { display:flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.reserve-info li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.form{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label { font-size: 12px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.form input, .form select, .form textarea{
  background: transparent; border: 1px solid var(--line);
  color: var(--text); padding: 14px 16px; border-radius: 10px;
  font-family: var(--sans); font-size: 15px;
  transition: border-color .3s ease, background .3s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); background: rgba(201,163,82,.04); }
.form textarea { resize: vertical; min-height: 88px; }
.form .full { grid-column: span 2; }
.form .note { font-size: 13px; color: var(--muted); margin: 8px 0 18px; }

/* =========== Contact =========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.contact-info h2 { margin-bottom: 24px; }
.contact-info > p { color: var(--muted); font-size: 17px; margin-bottom: 36px; max-width: 460px; }
.info-list { display:grid; gap: 26px; margin-bottom: 36px; }
.info-list .it { display: flex; gap: 18px; }
.info-list .it .ic{ width: 44px; height: 44px; flex-shrink:0; border-radius: 50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color: var(--gold); }
.info-list .it .lbl{ font-size: 11px; letter-spacing: .25em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.info-list .it .val{ font-size: 15px; color: var(--text); }
.cta-row { display:flex; gap: 12px; flex-wrap: wrap; }
.map-wrap{
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  height: 460px; background: #1a1c18; position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.7) brightness(.9); }

/* =========== Footer =========== */
footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
  font-size: 14px; color: var(--muted);
}
.foot-inner { display:flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-links { display:flex; gap: 24px; }
.foot-links a:hover { color: var(--gold); }

/* WhatsApp float */
.whatsapp-fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: #25D366; color: #052e10; font-weight: 600; font-size: 14px;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .3s ease;
}
.whatsapp-fab:hover { transform: scale(1.06); }

/* =========== Responsive =========== */
@media (max-width: 980px){
  .nav-links { display: none; }
  .story-grid, .reserve-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-card { position: static; margin-top: 18px; max-width: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item.big, .g-item.wide { grid-column: span 2; }
  section { padding: 80px 0; }
  .form { padding: 26px; }
  .form .row { grid-template-columns: 1fr; }
  .form .full { grid-column: span 1; }
}
@media (max-width: 560px){
  .menu-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .g-item.big, .g-item.wide, .g-item.tall { grid-column: span 1; grid-row: span 1; }
  .hero-content h1 { font-size: 2.6rem; }
}

/* ========== FLOATING BUTTONS ========== */
.floating{position:fixed;right:22px;bottom:22px;z-index:60;display:flex;flex-direction:column;gap:12px}
.fab{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;color:#fff;box-shadow:0 14px 28px -10px rgba(0,0,0,.35);transition:transform .25s ease, box-shadow .25s ease;position:relative}
.fab:hover{transform:translateY(-3px) scale(1.05)}
.fab.wa{background:#25d366}
.fab.call{background:var(--primary)}
.fab svg{width:26px;height:26px}
.fab::before{content:"";position:absolute;inset:-6px;border-radius:50%;border:2px solid currentColor;opacity:.35;animation:ring 2s ease-out infinite}
.fab.wa::before{color:#25d366}
.fab.call::before{color:var(--primary)}
@keyframes ring{0%{transform:scale(.9);opacity:.5}100%{transform:scale(1.35);opacity:0}}
.fab .tooltip{position:absolute;right:72px;top:50%;transform:translateY(-50%) translateX(6px);background:var(--primary-ink);color:#f5ecd2;font-size:12px;font-weight:500;padding:8px 12px;border-radius:8px;white-space:nowrap;opacity:0;pointer-events:none;transition:.25s}
.fab:hover .tooltip{opacity:1;transform:translateY(-50%) translateX(0)}
.fab .tooltip::after{content:"";position:absolute;right:-5px;top:50%;transform:translateY(-50%);width:0;height:0;border-left:5px solid var(--primary-ink);border-top:5px solid transparent;border-bottom:5px solid transparent}
@media(max-width:520px){.floating{right:16px;bottom:16px}.fab{width:52px;height:52px}.fab svg{width:22px;height:22px}}
