:root{
  --bg:#060506;
  --fg:#f7f1e6;
  --muted:rgba(247,241,230,.70);
  --gold:#d4af37;
  --gold2:#f3d77a;
  --red:#5a0b17;
  --line:rgba(212,175,55,.22);
  --line2:rgba(247,241,230,.18);
  --max: 980px;
  --ease: cubic-bezier(.2,.9,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1100px 700px at 70% 20%, rgba(90,11,23,.32), transparent 60%),
    radial-gradient(900px 650px at 30% 85%, rgba(212,175,55,.12), transparent 60%),
    linear-gradient(180deg, #060506, #050405 55%, #060506);
  color:var(--fg);
  font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding: 98px 18px 70px;
}

/* TOP BAR */
.top{
  position:fixed; top:0; left:0; right:0;
  z-index:50;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background: linear-gradient(180deg, rgba(6,5,6,.78), rgba(6,5,6,0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.top--logoOnly{ justify-content:space-between; }

.brandLogo{ display:inline-flex; align-items:center; }
.brandLogo img{
  height:28px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

/* BUTTONS (same language as menu) */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,.26);
  background:rgba(212,175,55,.08);
  color:var(--fg);
  font-size:11px;
  letter-spacing:2.4px;
  text-transform:uppercase;
  cursor:pointer;
  transition: transform .12s ease, border-color .16s ease, background .16s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(243,215,122,.55)}
.btn:active{transform:translateY(0px)}

.btn.primary{
  border:1px solid rgba(243,215,122,.55);
  color:#120f10;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0) 40%),
    linear-gradient(135deg, #f7e7a6 0%, #d4af37 28%, #f3d77a 55%, #b8891a 100%);
  box-shadow:
    0 16px 34px rgba(212,175,55,.22),
    inset 0 1px 0 rgba(255,255,255,.35);
  position:relative;
  overflow:hidden;
}
.btn.primary::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: rotate(18deg);
  opacity:.65;
  transition: left .9s ease;
}
.btn.primary:hover::after{ left:130%; }

.btn.outline{
  background:rgba(0,0,0,.22);
  border-color: rgba(212,175,55,.30);
}
.btn.outline:hover{
  background:rgba(212,175,55,.08);
  border-color: rgba(243,215,122,.60);
}

.btn.ghost{
  background:rgba(0,0,0,.20);
  border-color:rgba(247,241,230,.16);
  color:rgba(247,241,230,.90);
}
.tiny{ padding:10px 12px; font-size:11px; letter-spacing:2px; }

.topLinks{ display:flex; gap:10px; align-items:center; }

/* HERO */
.hero{
  border:1px solid rgba(212,175,55,.16);
  background:
    radial-gradient(900px 700px at 70% 10%, rgba(90,11,23,.55), rgba(0,0,0,.22) 60%),
    rgba(0,0,0,.18);
  border-radius:22px;
  padding:26px 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute; inset:-60px;
  background:
    radial-gradient(360px 360px at 15% 30%, rgba(243,215,122,.10), transparent 55%),
    radial-gradient(420px 420px at 80% 55%, rgba(212,175,55,.10), transparent 60%);
  pointer-events:none;
}
.heroInner{position:relative}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(247,241,230,.14);
  background:rgba(0,0,0,.18);
  color:rgba(247,241,230,.78);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background: linear-gradient(180deg, rgba(243,215,122,.98), rgba(212,175,55,.98));
  box-shadow: 0 10px 20px rgba(212,175,55,.20);
}

.title{
  font-family:"Playfair Display",serif;
  text-transform:uppercase;
  letter-spacing:4px;
  margin:14px 0 10px;
  line-height:1.05;
  font-size: clamp(34px, 4.6vw, 62px);
}
.titleLink{
  color: rgba(243,215,122,.98);
  text-decoration: none;
  display:inline-block;
}
.titleLink:hover{ opacity:.92; }

.sub{
  margin:0;
  font-size:12px;
  letter-spacing:2.6px;
  text-transform:uppercase;
  color:rgba(247,241,230,.72);
}
.sub strong{color:rgba(243,215,122,.90); font-weight:600}

.lead{
  margin:14px 0 0;
  color: rgba(247,241,230,.78);
  line-height: 1.85;
  font-size: 14px;
  max-width: 720px;
}

.ctaRow{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.hintBar{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(212,175,55,.14);
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  justify-content:space-between;
}
.hint{display:flex; flex-direction:column; gap:4px;}
.hintLabel{
  font-size:11px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:rgba(243,215,122,.88);
}
.hintValue{
  font-size:13px;
  color:rgba(247,241,230,.80);
}

/* CARDS */
.grid3{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.card{
  border:1px solid rgba(247,241,230,.12);
  background:rgba(0,0,0,.18);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.cardTitle{
  font-family:"Playfair Display",serif;
  text-transform:uppercase;
  letter-spacing:2.8px;
  color:rgba(243,215,122,.92);
  font-size:14px;
}
.cardText{
  margin-top:10px;
  color:rgba(247,241,230,.72);
  line-height:1.75;
  font-size:13px;
}

/* SECTIONS (same as menu language) */
.section{
  margin-top:18px;
  border:1px solid rgba(247,241,230,.12);
  background:rgba(0,0,0,.18);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.sectionHead{
  padding:16px 18px 14px;
  border-bottom:1px solid rgba(212,175,55,.14);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  background: rgba(0,0,0,.16);
}
.sectionTitle{
  margin:0;
  font-family:"Playfair Display",serif;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:18px;
  color:rgba(243,215,122,.95);
}
.sectionMeta{
  margin:0;
  font-size:11px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:rgba(247,241,230,.58);
  white-space:nowrap;
}

/* GALLERY */
.gallery{
  padding:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.shot{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.14);
  background:rgba(0,0,0,.22);
  min-height:180px;
}
.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.85;
  transform: scale(1.02);
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.shot:hover img{ transform: scale(1.06); opacity:.95; }
.shotOverlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.80));
}
.shotTitle{
  font-family:"Playfair Display",serif;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(243,215,122,.95);
}
.shotMeta{
  margin-top:6px;
  color:rgba(247,241,230,.78);
  font-size:12px;
}

/* TONIGHT */
.tonight{
  padding:16px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
.kicker{
  font-size:11px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:rgba(247,241,230,.64);
}
.tonightTitle{
  margin-top:10px;
  font-family:"Playfair Display",serif;
  text-transform:uppercase;
  letter-spacing:3px;
  color:rgba(243,215,122,.95);
  font-size:22px;
}
.tonightText{
  margin-top:10px;
  color:rgba(247,241,230,.74);
  line-height:1.8;
  font-size:13.5px;
  max-width: 560px;
}
.quote{
  border:1px solid rgba(212,175,55,.14);
  background: rgba(0,0,0,.16);
  border-radius:16px;
  padding:16px;
  height:100%;
}
.quoteMark{
  font-family:"Playfair Display",serif;
  font-size:38px;
  line-height:1;
  color:rgba(243,215,122,.75);
}
.quoteText{
  margin-top:6px;
  color:rgba(247,241,230,.80);
  line-height:1.7;
}
.quoteBy{
  margin-top:10px;
  color:rgba(247,241,230,.58);
  font-size:12px;
  letter-spacing:1px;
}

/* SURPRISE */
.surpriseBox{ padding:16px; }
.surpriseItems{
  border:1px solid rgba(247,241,230,.12);
  background:rgba(0,0,0,.18);
  border-radius:16px;
  padding:14px;
  color:rgba(247,241,230,.86);
  line-height:1.8;
}
.surpriseItems .line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid rgba(247,241,230,.10);
}
.surpriseItems .line:last-child{ border-bottom:none; }
.surpriseItems .itemName{ color:rgba(247,241,230,.92); }
.surpriseItems .itemPrice{ color:rgba(243,215,122,.92); white-space:nowrap; }

/* FOOTER */
.footer{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  color:rgba(247,241,230,.55);
  font-size:12px;
}
.footerLinks{display:flex; gap:10px; align-items:center;}
.footerLinks a{ color:rgba(247,241,230,.72); }
.footerLinks a:hover{ color:rgba(243,215,122,.92); }

/* REVEAL ON SCROLL */
.reveal{ opacity:0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.isVisible{ opacity:1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 860px){
  .grid3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .tonight{ grid-template-columns: 1fr; }
}
@media (max-width:560px){
  .wrap{padding-top:92px}
  .brandLogo img{ height:24px; }
}