:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --accent: #66D9FF;
  --accent2: #A78BFA;
  --gold: #F5C56A;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(102,217,255,.14), transparent 55%),
              radial-gradient(900px 700px at 80% 10%, rgba(167,139,250,.12), transparent 60%),
              radial-gradient(900px 700px at 60% 90%, rgba(245,197,106,.10), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius: 16px; }

.wrap{
  width:min(1150px, 92vw);
  margin: 0 auto;
}

.muted{ color: var(--muted); }

.top{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-inner{
  width:min(1150px, 92vw);
  margin: 0 auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content: space-between;
}
.pill{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  font-weight: 800;
  letter-spacing: .2px;
}
.mini-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
}
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(102,217,255,.35);
  background: rgba(102,217,255,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(135deg, rgba(102,217,255,.95), rgba(167,139,250,.92));
  color: rgba(7,10,18,.92);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(102,217,255,.18);
}
.btn-dark{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.btn-sm{ padding: 10px 14px; font-size: 14px; }
.btn-block{ width:100%; border-radius: 14px; }

.hero{
  position: relative;
  min-height: 92vh;
  padding: 72px 0 40px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:-40px;
  background-image:
    linear-gradient(120deg, rgba(7,10,18,.75), rgba(7,10,18,.2)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(102,217,255,.22), transparent 60%),
    radial-gradient(900px 650px at 70% 20%, rgba(167,139,250,.18), transparent 60%),
    linear-gradient(180deg, rgba(7,10,18,.35), rgba(7,10,18,.88));
}
.hero-grid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}
.badge-row{ display:flex; gap:10px; flex-wrap: wrap; margin-bottom: 14px; }
.badge{
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 10px 0 14px;
}
.glow{
  background: linear-gradient(135deg, rgba(102,217,255,1), rgba(167,139,250,1), rgba(245,197,106,.9));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 18px 60px rgba(102,217,255,.18);
}
.lead{
  color: rgba(255,255,255,.85);
  font-size: 16px;
  max-width: 58ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust-item{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}
.trust-num{
  font-weight: 900;
  font-size: 18px;
}
.trust-text{
  color: rgba(255,255,255,.78);
  font-size: 12px;
  margin-top: 4px;
}
.trust-text span{ color: rgba(255,255,255,.55); }

.hero-cards{ display:flex; flex-direction: column; gap: 14px; }
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  backdrop-filter: blur(14px);
  padding: 16px;
}
.card-kicker{
  font-weight: 900;
  letter-spacing: .25px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.88);
}
.special{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.special:last-child{ margin-bottom:0; }
.special-name{ font-weight: 900; }
.special-desc{ color: rgba(255,255,255,.70); font-size: 13px; grid-column: 1 / 2; }
.special-price{
  font-weight: 900;
  color: rgba(245,197,106,.95);
  align-self: start;
}

.stack{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tile{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(102,217,255,.30);
  background: rgba(102,217,255,.07);
}
.tile-title{ font-weight: 800; color: rgba(255,255,255,.78); font-size: 12px; }
.tile-big{ font-weight: 900; margin-top: 6px; }
.tile-sub{ color: rgba(255,255,255,.55); font-size: 12px; margin-top: 6px; }

.scroll-hint{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display:flex;
  gap: 8px;
  opacity: .9;
}
.scroll-hint span{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  animation: pulse 1.2s infinite ease-in-out;
}
.scroll-hint span:nth-child(2){ animation-delay: .15s; }
.scroll-hint span:nth-child(3){ animation-delay: .3s; }
@keyframes pulse{
  0%,100%{ transform: translateY(0); opacity: .35; }
  50%{ transform: translateY(-6px); opacity: .95; }
}

/* STRIP */
.strip{
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.strip-grid{
  padding: 22px 0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.strip-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.strip-ic{ font-size: 18px; }
.strip-title{ font-weight: 900; }
.strip-text{ color: rgba(255,255,255,.65); font-size: 13px; margin-top: 4px; }

.section{ padding: 74px 0; }
.section-head{
  margin-bottom: 22px;
}
.section-head h2{
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.1vw, 40px);
  margin: 0 0 10px;
}
.section-head p{
  margin:0;
  color: rgba(255,255,255,.72);
  max-width: 80ch;
}
.section-head.tight{ margin-bottom: 14px; }

.menu-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.menu-card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.menu-card h3{
  margin:0 0 12px;
  font-weight: 900;
  letter-spacing: .2px;
}
.menu-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.menu-row{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
}
.menu-note{ color: rgba(255,255,255,.62); font-size: 13px; margin-top: 3px; }
.menu-price{ color: rgba(245,197,106,.95); }

.menu-highlight{
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(102,217,255,.16), transparent 60%),
    radial-gradient(700px 300px at 80% 0%, rgba(167,139,250,.14), transparent 60%),
    rgba(255,255,255,.05);
  border-color: rgba(102,217,255,.18);
}
.hl-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
}
.hl-badge{
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245,197,106,.12);
  border: 1px solid rgba(245,197,106,.30);
  color: rgba(255,255,255,.88);
}
.hl-items{ display:flex; flex-direction:column; gap: 10px; margin-top: 10px; }
.hl-item{
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.hl-name{ font-weight: 900; }
.hl-sub{ color: rgba(255,255,255,.62); font-size: 13px; margin-top: 4px; }
.hl-actions{ display:flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.btn-sm{ padding: 10px 12px; }

.menu-cta{
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.menu-cta h3{ margin:0 0 6px; font-weight: 900; }
.menu-cta p{ margin:0; color: rgba(255,255,255,.65); }

.photo-break{
  position: relative;
  height: 340px;
  background-image:
    linear-gradient(180deg, rgba(7,10,18,.25), rgba(7,10,18,.86)),
    url("https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.photo-break-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(102,217,255,.20), transparent 60%),
    radial-gradient(900px 400px at 80% 10%, rgba(167,139,250,.16), transparent 60%);
}
.photo-break-copy{
  position: relative;
  z-index: 2;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.photo-break-kicker{
  font-weight: 900;
  letter-spacing: .25px;
  color: rgba(255,255,255,.84);
}
.photo-break-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 42px);
  margin-top: 8px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.g{ overflow:hidden; border-radius: 18px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.g img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.g:hover img{ transform: scale(1.06); }
.g:nth-child(1){ grid-column: span 7; height: 320px; }
.g:nth-child(2){ grid-column: span 5; height: 320px; }
.g:nth-child(3){ grid-column: span 4; height: 260px; }
.g:nth-child(4){ grid-column: span 4; height: 260px; }
.g:nth-child(5){ grid-column: span 4; height: 260px; }
.g:nth-child(6){ grid-column: span 12; height: 300px; }

.social-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.social-card{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.social-title{ font-weight: 900; margin-bottom: 6px; }

.split{ padding-top: 58px; }
.split-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}
.form-card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(102,217,255,.12), transparent 60%),
    radial-gradient(700px 300px at 80% 0%, rgba(167,139,250,.10), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.form-title{ font-weight: 900; font-size: 16px; margin-bottom: 8px; }
.form{ display:flex; flex-direction:column; gap: 12px; }
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label span{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.78);
  margin-bottom: 6px;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(102,217,255,.35);
  box-shadow: 0 0 0 4px rgba(102,217,255,.10);
}
textarea{ resize: vertical; }
.full{ grid-column: 1 / -1; }
.fineprint{ font-size: 12px; color: rgba(255,255,255,.55); margin-top: -4px; }

.order-card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
}
.order-top h3{ margin:0 0 6px; font-weight: 900; }
.order-actions{ display:flex; flex-direction:column; gap: 10px; margin-top: 12px; }
.order-bullets{ margin-top: 12px; display:flex; flex-direction:column; gap: 8px; }
.ob{ color: rgba(255,255,255,.75); font-weight: 700; font-size: 13px; }
.order-photo{ margin-top: 14px; }

.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.review{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.stars{ color: rgba(245,197,106,.95); letter-spacing: 1px; font-weight: 900; }
.review p{ margin: 10px 0 10px; color: rgba(255,255,255,.78); }
.byline{ font-weight: 900; color: rgba(255,255,255,.72); }

.review-cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hd-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: 18px;
}
.hd-card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.hd-card h3{ margin:0 0 8px; font-weight: 900; }
.hours{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 10px;
}
.hr{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
}
.hd-actions{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
.map{
  margin-top: 10px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
  height: 300px;
}
.map iframe{ width:100%; height:100%; border:0; }

.rev-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.rev{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.rev-ic{ font-size: 20px; }
.rev h3{ margin: 10px 0 8px; font-weight: 900; }
.rev p{ margin:0 0 10px; color: rgba(255,255,255,.70); font-size: 13px; }
.link{
  font-weight: 900;
  color: rgba(102,217,255,.92);
}
.link:hover{ text-decoration: underline; }

.cta{
  padding: 82px 0;
  background:
    radial-gradient(900px 400px at 20% 30%, rgba(102,217,255,.16), transparent 60%),
    radial-gradient(900px 400px at 80% 30%, rgba(167,139,250,.14), transparent 60%),
    rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cta-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
.cta-copy p{ color: rgba(255,255,255,.74); }
.cta-points{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cp{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  font-weight: 800;
  color: rgba(255,255,255,.80);
}

.footer{
  padding: 34px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .6fr;
  gap: 14px;
  align-items: start;
}
.brand{ display:flex; align-items:center; gap: 10px; }
.brand-mark{
  width: 12px; height: 12px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(102,217,255,1), rgba(167,139,250,1));
  box-shadow: 0 10px 30px rgba(102,217,255,.15);
}
.brand-name{ font-weight: 900; }
.foot-links{ display:flex; flex-direction:column; gap: 8px; }
.foot-links a{ color: rgba(255,255,255,.72); font-weight: 800; }
.foot-links a:hover{ color: rgba(255,255,255,.92); }

.foot-cta{ display:flex; gap: 10px; justify-content:flex-end; flex-wrap: wrap; }

.foot-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: 13px;
}

/* reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .stack{ grid-template-columns: 1fr 1fr; }
  .strip-grid{ grid-template-columns: repeat(2, 1fr); }
  .menu-grid{ grid-template-columns: 1fr; }
  .gallery .g:nth-child(1),
  .gallery .g:nth-child(2),
  .gallery .g:nth-child(3),
  .gallery .g:nth-child(4),
  .gallery .g:nth-child(5),
  .gallery .g:nth-child(6){
    grid-column: span 12;
    height: 260px;
  }
  .split-grid{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .hd-grid{ grid-template-columns: 1fr; }
  .rev-grid{ grid-template-columns: repeat(2, 1fr); }
  .cta-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .foot-cta{ justify-content:flex-start; }
}

@media (max-width: 520px){
  .mini-nav{ display:none; }
  .trust{ grid-template-columns: 1fr; }
  .stack{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .cta-points{ grid-template-columns: 1fr; }
  .rev-grid{ grid-template-columns: 1fr; }
}
