:root{
  --bg:#0b1220;
  --navy:#0f1b33;
  --gold:#d6b25e;
  --text:#0f172a;
  --muted:#64748b;
  --card:#ffffff;
  --line:rgba(15,23,42,.12);
  --shadow:0 16px 40px rgba(2,6,23,.14);
  --radius:18px;
  --container:1150px;
  --headerH:76px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Topbar */
.topbar{ background:#0a1430; color:#e2e8f0; font-size:14px; }
.topbar__inner{ display:flex; justify-content:space-between; align-items:center; padding:10px 0; }
.chip{
  display:inline-flex; gap:10px; align-items:center;
  padding:6px 12px; border-radius:999px;
  background:rgba(255,255,255,.08);
}
.chip__dot{
  width:9px; height:9px; border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.15);
}
.topbar__phone{
  color:#fff; text-decoration:none; font-weight:700;
  display:inline-flex; gap:8px; align-items:center;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.header__inner{
  height:var(--headerH);
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
.brand img{ width:170px; height:auto; }

/* Nav */
.nav{ display:flex; align-items:center; gap:16px; }
.nav__link{
  text-decoration:none; color:#0f172a; font-weight:700;
  padding:10px 10px; border-radius:12px; opacity:.92;
}
.nav__link:hover{ background:rgba(15,23,42,.06); }
.nav__link.is-active{ background:rgba(214,178,94,.18); color:#0b1220; }
.nav__cta{
  text-decoration:none; font-weight:800; color:#0b1220;
  background:var(--gold);
  padding:12px 14px; border-radius:14px;
  box-shadow:0 10px 20px rgba(214,178,94,.25);
  display:inline-flex; align-items:center; gap:8px;
}

/* Mobile toggle */
.navToggle{
  display:none;
  width:44px; height:44px;
  border:0; background:transparent; border-radius:12px;
  cursor:pointer;
}
.navToggle span{
  display:block; height:2px; background:#0f172a;
  margin:7px 10px; transition:.2s ease;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  text-decoration:none; font-weight:800;
  padding:12px 16px; border-radius:14px;
  border:1px solid transparent;
  cursor:pointer;
}
.btn--gold{ background:var(--gold); color:#0b1220; }
.btn--ghost{ background:rgba(255,255,255,.10); color:#fff; border-color:rgba(255,255,255,.22); }
.btn--navy{ background:var(--navy); color:#fff; }
.btn--ghostDark{ background:transparent; color:#0f172a; border-color:rgba(15,23,42,.18); }

.pill{
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  display:inline-flex; gap:8px; align-items:center;
}
.pill--ghost{ background:rgba(255,255,255,.06); }

/* HERO slider */
.hero{ background:#050a14; }
.slider{
  position:relative;
  overflow:hidden;
  height:clamp(520px, 75vh, 740px);
}
.slides{ height:100%; position:relative; }

/* true slider behavior */
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transform:scale(1.02);
  transition: opacity .6s ease, transform .9s ease;
  cursor:zoom-in;
}
.slide.is-active{
  opacity:1;
  pointer-events:auto;
  transform:scale(1);
}

.slide__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.06);
  transition: transform 1.1s ease;
  z-index:1;
  pointer-events:none; /* key for click */
}
.slide.is-active .slide__bg{ transform:scale(1); }

.hero__overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(90deg, rgba(3,7,18,.72) 15%, rgba(3,7,18,.18) 70%);
}

.hero__content{
  position:relative;
  z-index:3;
  height:100%;
  padding:90px 0 70px;
  color:#fff;
  display:grid;
  align-content:center;
  max-width:760px;
}
.hero__kicker{
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.92;
  font-weight:800;
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.hero__title{
  font-family:"Playfair Display", serif;
  font-size:clamp(42px, 6vw, 64px);
  line-height:1.02;
  margin:10px 0 10px;
}
.hero__title span{ color:var(--gold); }
.hero__text{ font-size:18px; opacity:.96; margin:10px 0 18px; }
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }
.hero__quick{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.hero__hint{
  margin:10px 0 0;
  text-align:center;
  color:#e2e8f0;
  opacity:.85;
  font-weight:700;
  padding:0 14px 18px;
}

/* Slider controls */
.slider__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px; height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.28);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:8;
}
.slider__btn--prev{ left:16px; }
.slider__btn--next{ right:16px; }

.slider__dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:9;
}
.dot{
  width:11px; height:11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.12);
  cursor:pointer;
}
.dot.is-active{
  background:var(--gold);
  border-color:rgba(214,178,94,.9);
}

/* Sections */
.section{ padding:70px 0; }
.section--light{
  background:#f8fafc;
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.h2{
  font-family:"Playfair Display", serif;
  font-size:clamp(30px, 3.8vw, 44px);
  margin:0 0 10px;
}
.muted{ color:var(--muted); margin:0; line-height:1.7; }
.sectionHead{ margin-bottom:22px; }
.sectionHead--left{ text-align:left; }

/* About */
.aboutSplit{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.aboutCard{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.aboutImage img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  aspect-ratio:4/3;
  object-fit:cover;
}
.btnRow{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.aboutPoints{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.aboutPoint{
  background:rgba(15,23,42,.05);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

/* Icon highlights */
.iconGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.iconCard{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.iconCard h3{ margin:10px 0 6px; font-size:18px; }
.icon{ width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(214,178,94,.18);
  font-size:20px;
}

/* Menus */
.menuGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.menuCard{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
  background:#fff;
}
.menuCard img{
  width:100%;
  height:320px;
  object-fit:cover;
  cursor:zoom-in;
  transition:transform .25s ease;
}
.menuCard img:hover{ transform:scale(1.03); }
.menuHint{ margin-top:14px; color:var(--muted); font-weight:700; }

/* Reviews auto slider */
.reviewSlider{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
  background:#fff;
}
.reviewTrack{
  display:flex;
  gap:14px;
  padding:16px;
  will-change: transform;
}
.reviewCard{
  min-width:320px;
  max-width:320px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px;
  background:#fff;
}
.reviewCard p{ margin:10px 0 12px; color:#0f172a; line-height:1.6; }
.stars{ color:#f59e0b; display:flex; gap:4px; }
.reviewBy{ color:var(--muted); font-weight:800; display:flex; gap:8px; align-items:center; }

.reviewActions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }

/* Reserve box */
.reserveBox{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.reserveBtns{ display:flex; gap:12px; flex-wrap:wrap; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contactCard, .mapCard{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow);
  padding:22px;
}
.contactList{ margin-top:12px; display:grid; gap:12px; }
.contactItem{ display:grid; grid-template-columns:34px 1fr; gap:12px; }
.contactItem__title{ font-weight:900; }
.contactItem__text{ color:var(--muted); text-decoration:none; }
.contactItem__icon{ display:grid; place-items:center; font-size:18px; }
.mapWrap iframe{ width:100%; height:320px; border:0; border-radius:14px; }

/* Footer */
/* FOOTER UPGRADE */
.footer{
  background:#0a1430;
  color:#cbd5e1;
  padding:42px 0 20px;
}

.footerGrid{
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr;
  gap:22px;
  align-items:start;
}

.footerBrand img{ display:block; }
.footerText{
  margin:10px 0 14px;
  color:#cbd5e1;
  opacity:.9;
  line-height:1.7;
  max-width:520px;
}

.footerBadges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footerBadge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  font-weight:800;
  color:#e2e8f0;
  font-size:13px;
}

.footerCol{ display:flex; flex-direction:column; gap:10px; }
.footerTitle{
  margin:0 0 6px;
  font-size:16px;
  color:#fff;
  letter-spacing:.02em;
}

.footerLink{
  color:#cbd5e1;
  text-decoration:none;
  font-weight:800;
  opacity:.95;
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.footerLink:hover{ color:#fff; }

.footerBottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.footerBottomLinks{ display:flex; gap:14px; flex-wrap:wrap; }

.footerMiniLink{
  color:#cbd5e1;
  text-decoration:none;
  font-weight:800;
  opacity:.9;
}
.footerMiniLink:hover{ color:#fff; }

@media (max-width:980px){
  .footerGrid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .footerGrid{ grid-template-columns:1fr; }
}

/* Back to top */
.toTop{
  position:fixed;
  right:16px;
  bottom:16px;
  text-decoration:none;
  width:44px;
  height:44px;
  border-radius:999px;
  background:rgba(15,23,42,.85);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:var(--shadow);
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:20px;
}
.lightbox.is-open{ display:flex; }
.lightbox__img{
  max-width:min(1100px, 100%);
  max-height:82vh;
  border-radius:18px;
  box-shadow:var(--shadow);
  background:#fff;
}
.lightbox__close{
  position:absolute;
  top:18px; right:18px;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px; height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}
.lightbox__nav--prev{ left:18px; }
.lightbox__nav--next{ right:18px; }

/* Responsive */
@media (max-width:980px){
  .iconGrid{ grid-template-columns:repeat(2, 1fr); }
  .menuGrid{ grid-template-columns:repeat(2, 1fr); }
  .aboutSplit{ grid-template-columns:1fr; }
  .contact{ grid-template-columns:1fr; }
  .brand img{ width:150px; }
}
@media (max-width:760px){
  .navToggle{ display:inline-block; }
  .nav{
    position:fixed;
    top:calc(var(--headerH) + 44px);
    left:16px;
    right:16px;
    background:#fff;
    border-radius:18px;
    border:1px solid rgba(15,23,42,.12);
    box-shadow:var(--shadow);
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    z-index:100;
  }
  .nav.is-open{ display:flex; }
  .nav__cta{ text-align:center; justify-content:center; }
  .slider__btn{ display:none; } /* swipe + dots on mobile */
  .hero__content{ padding:70px 0 70px; }

  .menuGrid{
    grid-auto-flow:column;
    grid-auto-columns:86%;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:14px;
    padding-bottom:8px;
    display:grid;
  }
  .menuCard{ scroll-snap-align:start; }
  .menuCard img{ height:360px; }
}
@media (max-width:420px){
  .menuGrid{ grid-auto-columns:92%; }
  .menuCard img{ height:340px; }
  .reviewCard{ min-width:290px; max-width:290px; }
}

/* OUR SPECIAL */
.specialGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.specialCard{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
  background:#fff;
  position:relative;
}

.specialCard img{
  width:100%;
  height:320px;
  object-fit:cover;
  cursor:zoom-in;
  transition:transform .25s ease;
}

.specialCard:hover img{
  transform:scale(1.03);
}

.specialCaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:14px 14px 12px;
  background:linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,.72) 65%, rgba(2,6,23,.86) 100%);
  color:#fff;
}

.specialTitle{
  font-weight:900;
  letter-spacing:.02em;
}

.specialSub{
  opacity:.9;
  font-weight:700;
  font-size:14px;
  margin-top:4px;
}

.specialActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Responsive */
@media (max-width:980px){
  .specialGrid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:760px){
  .specialGrid{
    grid-auto-flow:column;
    grid-auto-columns:86%;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:14px;
    padding-bottom:8px;
    display:grid;
  }
  .specialCard{ scroll-snap-align:start; }
  .specialCard img{ height:360px; }
}

@media (max-width:420px){
  .specialGrid{ grid-auto-columns:92%; }
  .specialCard img{ height:340px; }
}
