:root{
  --bg:#05050a;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --text:#f5f5f7;
  --muted:#b7b7c2;
  --gold:#d9b56b;
  --gold2:#c99b45;
  --violet:#8a6bff;
  --line: rgba(255,255,255,.10);
  --line2: rgba(217,181,107,.25);
  --shadow: 0 24px 90px rgba(0,0,0,.60);
  --radius: 22px;
  --radius2: 30px;
  --max: 1140px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background: var(--bg); color:var(--text); }
body{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width:min(var(--max), calc(100% - 48px)); margin:0 auto; }

.bg-glow{
  position:fixed; inset:-20vh -20vw;
  z-index:-2;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(138,107,255,.16), transparent 55%),
    radial-gradient(900px 600px at 70% 0%, rgba(217,181,107,.16), transparent 55%),
    radial-gradient(700px 520px at 60% 95%, rgba(217,181,107,.10), transparent 58%);
  pointer-events:none;
}

.grain{
  position:fixed; inset:0;
  z-index:-1;
  background-image: url("../img/grain.png");
  opacity:.12;
  mix-blend-mode: overlay;
  pointer-events:none;
}

/* Top info strip */
.infobar{
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.70);
  font-size: 12px;
}
.infobar .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.infobar .left, .infobar .right{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.infobar a{ color: rgba(255,255,255,.78); }
.infobar a:hover{ color: var(--text); }
.infobar .info-item{ display:inline-flex; align-items:center; gap:8px; }
.infobar .info-ic{ width:14px; height:14px; fill: rgba(255,255,255,.72); }
.sep{ opacity:.45; }

/* Top info strip */
.top-info{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:10px 0 0;
}
.top-left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.top-right{ display:flex; align-items:center; gap:10px; }
.top-item{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; color:rgba(255,255,255,.78);
}
.top-item svg{ opacity:.9; }
.social{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.85);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.social:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(217,181,107,.28); }
.brand-logo{ height:44px; width:auto; display:block; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.inline-icon{ display:inline-flex; vertical-align:middle; margin-right:6px; }
.footer-social{ display:flex; align-items:center; gap:10px; justify-content:flex-end; }
@media (max-width: 900px){
  .top-info{ display:none; }
  .brand-logo{ height:40px; }
}


.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(5,5,10,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  letter-spacing:.4px;
}

.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-weight:800; font-size:16px; color:var(--gold); letter-spacing:.6px; text-transform:uppercase; }
.brand-sub{ font-size:12px; color:rgba(255,255,255,.75); letter-spacing:.22em; text-transform:uppercase; margin-top:2px; }
@media (max-width: 640px){
  .brand-name{ font-size:14px; }
  .brand-sub{ font-size:11px; }
}

.brand-mark{
  width:36px; height:36px; border-radius:12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,181,107,.65), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(138,107,255,.45), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  border: 1px solid rgba(217,181,107,.26);
  box-shadow: 0 14px 34px rgba(0,0,0,.52);
}
.brand-name{
  font-weight:700;
  text-transform:uppercase;
  font-size:12px;
  color:var(--muted);
  letter-spacing:1px;
}
.brand-title{
  font-weight:800;
  font-size:14px;
  margin-top:2px;
  letter-spacing:.9px;
}

.nav-links{
  display:flex; gap:10px; align-items:center;
  font-size:13px; color:var(--muted);
}
.nav-links a{
  padding:10px 12px; border-radius:14px;
  transition: .18s ease;
}
.nav-links a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.nav-links a.active{
  color: var(--text);
  background: linear-gradient(180deg, rgba(217,181,107,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(217,181,107,.22);
}

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

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius: 999px;
  font-weight:750;
  font-size:13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  transition:.18s ease;
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.btn.gold{
  background: linear-gradient(180deg, rgba(217,181,107,.98), rgba(201,155,69,.92));
  color:#151318;
  border: 1px solid rgba(217,181,107,.55);
  box-shadow: 0 16px 60px rgba(217,181,107,.18);
}
.btn.gold:hover{ filter: brightness(1.03); }

.btn.ghost{
  background: rgba(255,255,255,.02);
}

.menu-toggle{
  display:none;
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.drawer{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0 14px;
}
.drawer.open{ display:block; }
.drawer a{
  display:block;
  padding: 12px 12px;
  border-radius: 16px;
  color: var(--muted);
}
.drawer a:hover{ background: rgba(255,255,255,.06); color: var(--text); }
.drawer a.active{
  color: var(--text);
  background: rgba(217,181,107,.10);
  border: 1px solid rgba(217,181,107,.22);
}

/* Full-bleed hero with motion (Ken Burns) */
.hero{
  padding: 0;
}
.hero-bleed{
  width: 100%;
  min-height: 72vh;
  position:relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-bleed .media{
  position:absolute; inset:0;
}
.hero-bleed .media img{
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: brightness(1.18) saturate(1.08) contrast(1.06);
  animation: kenburns 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns{
  from{ transform: scale(1.08) translate3d(0,0,0); }
  to{ transform: scale(1.18) translate3d(-2%, -1%, 0); }
}
.hero-bleed .shade{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 70% 20%, rgba(217,181,107,.22), transparent 55%),
    radial-gradient(900px 520px at 15% 15%, rgba(138,107,255,.18), transparent 55%),
    linear-gradient(180deg, rgba(5,5,10,.12), rgba(5,5,10,.68));
}
.hero-bleed .content{
  position:relative;
  min-height: 72vh;
  display:grid;
  align-content:end;
  padding: 40px 0;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color: rgba(255,255,255,.80);
  font-size:12px; letter-spacing:1.35px;
  text-transform:uppercase;
  margin-bottom: 10px;
}
.kicker-dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(217,181,107,.55);
}
.h1{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 12px;
  letter-spacing:.3px;
  max-width: 860px;
}
.h1 span{ color: var(--gold); }
.lead{
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.75;
  margin:0 0 18px;
  max-width: 720px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }


.home .hero-bleed .content{
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 64px 0;
}
.home .kicker{
  width: 100%;
  justify-content: center;
}
.home .lead{ margin-left: auto; margin-right: auto; }
.home .hero-actions{ justify-content: center; }
@media (max-width: 720px){
  .home .hero-bleed .content{ padding: 52px 0; }
}

.hero-strip{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 18px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.80);
  font-size: 13px;
}

/* Sections */
.section{ padding: 30px 0 62px; }
.section-header{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom: 16px;
}
.h2{
  font-size: 22px;
  margin:0;
  letter-spacing:.2px;
}
.subtext{
  color: var(--muted);
  font-size: 13px;
  line-height:1.55;
  max-width: 560px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0,0,0,.40);
  overflow:hidden;
}

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.feature{ padding: 20px; }
.feature h3{
  margin:0 0 10px;
  font-size: 15px;
  letter-spacing:.2px;
}
.feature p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.icon{
  width:38px; height:38px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(217,181,107,.10);
  border:1px solid rgba(217,181,107,.22);
  margin-bottom: 12px;
}

.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split.tight{ gap: 18px; align-items: center; }
.panel{ padding: 20px; }
.hr{ height:1px; background: rgba(255,255,255,.10); margin: 16px 0; }

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
}
.table th, .table td{
  padding: 14px 12px;
  text-align:left;
  font-size:13px;
}
.table th{
  color: rgba(255,255,255,.72);
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:11px;
  background: rgba(255,255,255,.05);
}
.table tr{ border-top:1px solid rgba(255,255,255,.08); }
.table td{ color: var(--text); }
.table td.muted{ color: var(--muted); }

.small{ font-size:12px; color: var(--muted); }

/* Gallery: filters + masonry */
.filters{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-bottom: 14px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  cursor:pointer;
  user-select:none;
  transition: .16s ease;
}
.chip:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.chip.active{
  background: rgba(217,181,107,.12);
  border-color: rgba(217,181,107,.28);
  color: var(--text);
}

.gallery-masonry{
  columns: 3 280px;
  column-gap: 12px;
}
.gallery-item{
  break-inside: avoid;
  margin: 0 0 12px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
  cursor: zoom-in;
}
.gallery-item img{
  width:100%;
  height:auto;
  transition: transform .25s ease;
}
.gallery-item:hover img{ transform: scale(1.03); }

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center; justify-content:center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 90px rgba(0,0,0,.65);
  background: rgba(10,10,14,.55);
}
.lightbox-inner img{
  width:100%;
  height:100%;
  object-fit: contain;
  background: rgba(0,0,0,.25);
}
.lightbox-close{
  position:fixed;
  top: 16px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor:pointer;
}

/* Forms */
.form{ display:grid; gap:12px; }
.field{ display:grid; gap:8px; }
label{ font-size:12px; color: var(--muted); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline: none;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(217,181,107,.45);
  box-shadow: 0 0 0 4px rgba(217,181,107,.12);
}

/* Scroll reveal */
.reveal{ opacity:0; transform: translateY(10px); transition: .6s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* Footer */
.footer{
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
}
.footer-grid{
  display:flex; justify-content:space-between; align-items:center;
  gap:14px; flex-wrap:wrap;
}
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-bleed .media img{ animation: none; }
  .reveal{ transition:none; }
}

/* Responsive */
@media (max-width: 960px){
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .h1{ font-size: 44px; }
  .hero-bleed{ min-height: 64vh; }
  .hero-bleed .content{ min-height: 64vh; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .menu-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .h1{ font-size: 38px; }
  .hero-bleed .content{ padding: 30px 0; }
  .gallery-masonry{ columns: 1 280px; }
}

/* Menu image thumb */
.menu-thumb{ display:flex; justify-content:flex-end; }
.menu-thumb-btn{ position:relative; border:0; padding:0; background:transparent; cursor:pointer; width:min(420px, 100%); border-radius:18px; overflow:hidden; box-shadow: 0 18px 50px rgba(0,0,0,.55); }
.menu-thumb-btn img{ width:100%; height:auto; display:block; transform: scale(1.02); transition: transform .5s ease; }
.menu-thumb-btn:hover img{ transform: scale(1.06); }
.menu-thumb-overlay{ position:absolute; inset:auto 12px 12px 12px; padding:10px 12px; border-radius:14px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12); color:#fff; font-size:13px; display:flex; align-items:center; justify-content:center; backdrop-filter: blur(10px); }

/* Menu (text layout, Cavalli-style) */
.menu-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
/* Menu page: stacked layout (one section under another) */
.menu-grid.stacked{ grid-template-columns: 1fr; }
@media (max-width: 860px){
  .menu-grid{ grid-template-columns: 1fr; }
}

/* Menu page: stack Mocktails + Drinks instead of a left/right split */
.menu-stack{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.menu-col .h3{ margin: 0 0 10px; }
.menu-lines{ display:flex; flex-direction:column; }
.menu-line{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  
}
.menu-line:last-child{ border-bottom: none; }

/* Menu combos: keep price aligned, but visually lighter than the main item */
.menu-line.combo{
  padding: 4px 0;
  border-bottom: none;
  opacity: .9;
  font-size: 13px;
}


/* Combo label: clarifies that the lines below are optional add-ons */
.menu-line.combo-label{
  padding: 6px 0 2px;
  border-bottom: none;
  opacity: .75;
  font-size: 12px;
  font-style: italic;
}
.menu-line.combo-label span:last-child{ display:none; }
/* Flavor list (Menu page) */
.flavor-list{
  list-style:none;
  margin: 0 0 10px;
  padding: 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 960px){
  .flavor-list{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .flavor-list{ grid-template-columns: 1fr; }
}
.flavor-pill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.flavor-pill .emoji{ font-size: 16px; }


.top-social{ display:flex; gap:8px; align-items:center; }



/* Home hero: center the copy between the two hookahs */
.hero-home .hero-bleed .content{
  align-content: center;
  text-align: center;
}

.hero-home .hero-bleed .copy{
  margin: 0 auto;
  max-width: 900px;
}

.hero-home .kicker{
  display: flex;
  justify-content: center;
}

.hero-home .hero-actions{
  justify-content: center;
}


/* =====================================================
   HERO IMAGE OVERLAY FIX (FOR <img> HERO, NOT BACKGROUND)
   ===================================================== */

.hero-bleed{
  position: relative;
  overflow: hidden;
}

.hero-bleed img{
  display: block;
  width: 100%;
  height: auto;
}

/* Dark gradient overlay ABOVE image, BELOW text */
.hero-bleed::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

/* Ensure hero text stays above overlay */
.hero-bleed .content{
  position: relative;
  z-index: 2;
}


/* =========================
   Menu image gallery (menu.html)
   ========================= */
.menu-image-gallery{
  display:grid;
  gap:18px;
}

.menu-image-card{
  display:block;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.menu-image-card img{
  width:100%;
  height:auto;
  display:block;
}

.menu-image-card:focus-visible{
  outline: 2px solid rgba(255,255,255,.35);
  outline-offset: 4px;
}

@media (min-width: 900px){
  .menu-image-gallery{
    max-width: 860px;
    margin: 0 auto;
    gap:22px;
  }
}


/* Divider only after Velvet Feast combo */
.menu-line.combo.feast {
  border-bottom: 1px dashed rgba(255,255,255,.18);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
