:root {
  --bg: #0d0d0d;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .12);
  --gold: #f0bf2f;
  --gold-light: #ffe174;
  --gold-deep: #b57612;
  --gold-soft: rgba(240, 191, 47, .2);
  --olive: #6f7f4f;
  --white: #fff;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 28px 70px rgba(0, 0, 0, .45);
  --font-body: "Poppins", sans-serif;
  --font-display: "Cormorant Garamond", "Playfair Display", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(111, 127, 79, .22), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(240, 191, 47, .12), transparent 34rem),
    var(--bg);
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

section {
  position: relative;
}

section[id] {
  scroll-margin-top: 96px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #080808;
  transition: opacity .6s ease, visibility .6s ease;
}

.preloader span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 6rem);
  color: var(--gold);
  letter-spacing: .08em;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  padding: 14px 0;
  transition: padding .35s ease, background .35s ease, border .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(13, 13, 13, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.brand-lockup img {
  width: clamp(150px, 12vw, 230px);
  max-height: 64px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .42));
}

.brand-name {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-tag {
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav {
  position: relative;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
  isolation: isolate;
  user-select: none;
  touch-action: none;
}

.nav-liquid {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 8px;
  width: 72px;
  height: calc(100% - 16px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .72), transparent 15%),
    radial-gradient(circle at 74% 70%, rgba(255, 255, 255, .28), transparent 18%),
    linear-gradient(135deg, var(--gold-light), rgba(240, 191, 47, .92) 48%, var(--gold-deep));
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, .22),
    inset 0 -14px 24px rgba(67, 55, 28, .28),
    0 12px 30px rgba(240, 191, 47, .22);
  transform-origin: center;
  pointer-events: none;
}

.desktop-nav.dragging .nav-liquid {
  animation: liquidPulse .85s ease-in-out infinite;
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, .32),
    inset 0 -18px 28px rgba(67, 55, 28, .3),
    0 18px 38px rgba(240, 191, 47, .34);
}

@keyframes liquidPulse {

  0%,
  100% {
    border-radius: 999px 64% 999px 72%;
  }

  50% {
    border-radius: 70% 999px 68% 999px;
  }
}

.desktop-nav .nav-link {
  position: relative;
  z-index: 1;
  padding: 10px 18px;
  color: rgba(255, 255, 255, .78);
  border-radius: 999px;
  transition: color .25s ease, text-shadow .25s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: #17120b;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .32);
}

.btn-lux,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn-lux {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 52%, var(--gold-deep));
  color: #16110a;
  box-shadow: 0 16px 34px rgba(240, 191, 47, .28);
}

.btn-ghost {
  border: 1px solid rgba(240, 191, 47, .45);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.btn-lux:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(240, 191, 47, .24);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--white);
  border-radius: 9px;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(88vw, 390px);
  height: 100vh;
  padding: 24px;
  background: rgba(12, 12, 12, .92);
  border-left: 1px solid var(--line);
  backdrop-filter: blur(24px);
  transform: translateX(105%);
  visibility: hidden;
  display: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .62);
  opacity: 0;
  visibility: hidden;
  display: none;
}

.sticky-socials {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 950;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.sticky-socials::before,
.sticky-socials::after {
  content: "";
  width: 1px;
  height: 34px;
  margin: 0 auto;
  background: linear-gradient(transparent, rgba(240, 191, 47, .7), transparent);
}

.sticky-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 191, 47, .34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(8, 8, 8, .68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
  animation: socialFloat 3.4s ease-in-out infinite;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.sticky-socials a:nth-of-type(1) {
  animation-delay: .12s;
}

.sticky-socials a:nth-of-type(2) {
  animation-delay: .24s;
}

.sticky-socials a:nth-of-type(3) {
  animation-delay: .36s;
}

.sticky-socials a:nth-of-type(4) {
  animation-delay: .48s;
}

.sticky-socials a:hover {
  transform: translateX(5px) scale(1.06);
  border-color: rgba(255, 225, 116, .75);
  background: var(--gold);
  color: #17120b;
}

@keyframes socialFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.drawer-close,
.modal-close,
.lightbox button,
.back-to-top {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.drawer-links {
  display: grid;
  gap: 12px;
  margin: 46px 0 26px;
}

.drawer-links a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.drawer-contact {
  margin-top: 28px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.drawer-contact a {
  color: var(--gold);
  font-weight: 700;
}

.hero-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-swiper,
.hero-slide,
.hero-slide::before {
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  content: "";
  background:
    radial-gradient(circle at 20% 46%, rgba(240, 191, 47, .2), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .56), rgba(0, 0, 0, .82)),
    var(--hero-img) center/cover;
  transform: scale(1.06);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.hero-content .eyebrow {
  font-size: .84rem;
  letter-spacing: .24em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: .98;
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 940px;
  font-size: clamp(3.25rem, 7.2vw, 8rem);
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: 0 22px 46px rgba(0, 0, 0, .58);
}

h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.45rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 780px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.06rem, 1.85vw, 1.34rem);
  font-weight: 500;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--gold);
  backdrop-filter: blur(12px);
}

.orbit-one {
  right: 14%;
  top: 28%;
}

.orbit-two {
  right: 28%;
  bottom: 18%;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: rgba(255, 255, 255, .96);
  font-size: .76rem;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .85);
}

.scroll-indicator span {
  position: relative;
  width: 28px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, .96);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 1px rgba(240, 191, 47, .42), 0 0 18px rgba(240, 191, 47, .38);
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(240, 191, 47, .8);
  transform: translateX(-50%);
  animation: scrollDot 1.45s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    opacity: .45;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 13px);
  }
}

.section-padding {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.split-heading p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.lux-card,
.contact-card {
  position: relative;
  height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(240, 191, 47, .34), transparent 38%, rgba(111, 127, 79, .24));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.lux-card:hover::before {
  opacity: 1;
}

.feature-card {
  padding: 34px;
  border-radius: 8px;
  transition: transform .3s ease;
}

.feature-card:hover {
  transform: translateY(-9px);
}

.feature-card i {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 24px;
}

.feature-card p,
.lead-text {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 0;
}

.feature-card-wide {
  min-height: 230px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(34px, 4vw, 48px);
  background:
    linear-gradient(110deg, rgba(240, 191, 47, .18), rgba(255, 255, 255, .075) 42%, rgba(111, 127, 79, .16)),
    url('assets/images/hookah-lounge.png') right center/44% auto no-repeat,
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
}

.feature-card-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, .94), rgba(13, 13, 13, .72) 58%, rgba(13, 13, 13, .42));
  pointer-events: none;
}

.feature-card-wide>* {
  position: relative;
  z-index: 1;
}

.feature-card-wide i {
  width: 72px;
  height: 72px;
  margin: 0;
  border: 1px solid rgba(240, 191, 47, .34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(240, 191, 47, .1);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.feature-card-wide p {
  max-width: 620px;
}

.feature-mini-list {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.feature-mini-list span {
  padding: 12px 15px;
  border: 1px solid rgba(240, 191, 47, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(0, 0, 0, .3);
  text-align: center;
}

.menu-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .035), transparent);
}

.category-filter {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 20px;
  scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .78);
  border-radius: 999px;
  padding: 11px 17px;
  transition: background .25s ease, color .25s ease;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--gold);
  color: #17120b;
}

.menu-card {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #151515;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-card-image {
  height: 260px;
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 26px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  color: #f7e9c3;
  background: rgba(240, 191, 47, .14);
  border: 1px solid rgba(240, 191, 47, .22);
  font-size: .72rem;
  font-weight: 700;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 22px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-row strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.open-category {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.menu-prev,
.menu-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.swiper-pagination {
  position: static;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, .55);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.chef-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.chef-card .menu-card-body {
  min-height: 252px;
}

.rating {
  color: var(--gold);
  margin: 0 0 10px;
}

.hookah-section {
  background:
    radial-gradient(circle at 82% 22%, rgba(240, 191, 47, .12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(111, 127, 79, .055));
}

.hookah-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(240, 191, 47, .22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hookah-image {
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hookah-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hookah-copy {
  padding: clamp(8px, 2vw, 18px);
}

.hookah-copy p {
  margin: 22px 0 28px;
  color: var(--muted);
  line-height: 1.85;
}

.hookah-points {
  display: grid;
  gap: 12px;
}

.hookah-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.hookah-points i {
  color: var(--gold);
}

.about-collage {
  position: relative;
  min-height: 540px;
}

.about-collage img {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-collage img:first-child {
  width: 68%;
  height: 78%;
  left: 0;
  top: 0;
}

.about-collage img:last-child {
  width: 54%;
  height: 54%;
  right: 0;
  bottom: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.choice-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  border-radius: 8px;
}

.choice-grid i {
  color: var(--gold);
}

.stats-row {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  padding: 32px 20px;
  text-align: center;
  background: rgba(255, 255, 255, .045);
}

.stat+.stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.stat span {
  color: var(--muted);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #161616;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.testimonial-card {
  padding: 30px;
  border-radius: 8px;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0;
}

.testimonial-card h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.testimonial-card span,
.stars {
  color: var(--gold);
}

.testimonial-pagination {
  text-align: center;
  margin-top: 24px;
}

.reservation-cta {
  padding: clamp(80px, 11vw, 150px) 0;
  background: linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .78)), url('https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=2200&q=85') center/cover fixed;
}

.cta-panel {
  max-width: 850px;
  margin: auto;
  text-align: center;
  padding: clamp(42px, 8vw, 86px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(16px);
}

.cta-panel p {
  max-width: 620px;
  margin: 20px auto 30px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(240, 191, 47, .045)),
    radial-gradient(circle at 15% 18%, rgba(240, 191, 47, .12), transparent 30rem),
    radial-gradient(circle at 84% 70%, rgba(111, 127, 79, .14), transparent 28rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: stretch;
}

.contact-visit-panel {
  position: relative;
  min-height: 480px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(240, 191, 47, .22);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .76)),
    url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?auto=format&fit=crop&w=1200&q=85') center/cover;
}

.contact-visit-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  pointer-events: none;
}

.contact-visit-panel>* {
  position: relative;
  z-index: 1;
}

.contact-map-mark {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border: 1px solid rgba(240, 191, 47, .48);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(0, 0, 0, .38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
}

.contact-map-mark i {
  font-size: 1.8rem;
}

.contact-visit-panel h3 {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1;
}

.contact-visit-panel p {
  max-width: 470px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .btn-lux,
.contact-actions .btn-ghost {
  gap: 9px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--white);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 191, 47, .38);
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055));
}

.contact-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border: 1px solid rgba(240, 191, 47, .32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.25rem;
  background: rgba(240, 191, 47, .08);
}

.contact-card span {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  overflow-wrap: anywhere;
}

.contact-card small {
  margin-top: auto;
  color: var(--muted);
  line-height: 1.7;
}

.contact-route {
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px 16px;
}

.contact-route span {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-route span i {
  color: var(--gold);
  margin-right: 7px;
}

.contact-route strong {
  color: var(--white);
}

.site-footer {
  position: relative;
  padding: 70px 0 26px;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, .96), #070707),
    radial-gradient(circle at top left, rgba(240, 191, 47, .11), transparent 28rem);
  border-top: 1px solid rgba(240, 191, 47, .18);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.site-footer .container-xxl {
  position: relative;
  z-index: 1;
}

.footer-top {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand-lockup {
  display: inline-flex;
  align-items: flex-start;
}

.footer-brand .brand-lockup img {
  width: clamp(150px, 16vw, 220px);
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: clamp(22px, 4vw, 46px);
}

.footer-grid h3 {
  font-size: .92rem;
  color: var(--gold);
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.75;
}

.footer-grid a:hover {
  color: var(--gold);
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  background: rgba(255, 255, 255, .04);
}

.socials a:hover {
  border-color: rgba(240, 191, 47, .52);
  background: rgba(240, 191, 47, .1);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom span a {
  color: var(--gold);
  display: inline;
  margin: 0;
  line-height: inherit;
}

.menu-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .72);
  opacity: 0;
  visibility: hidden;
}

.modal-shell {
  width: min(980px, 100%);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 13, .96);
  box-shadow: var(--shadow);
  padding: 18px;
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 2;
}

.modal-banner {
  min-height: 230px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 28px;
  margin-top: -44px;
}

.modal-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}

.modal-banner div {
  position: relative;
  z-index: 1;
}

.modal-tools {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.modal-tools i {
  color: var(--gold);
}

.modal-tools input {
  width: 100%;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.modal-list {
  display: grid;
  gap: 12px;
}

.dish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.dish-row p {
  color: var(--muted);
  margin: 5px 0 0;
}

.dish-row strong {
  color: var(--gold);
  white-space: nowrap;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

@media (max-width: 1199.98px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-visit-panel {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding: 10px 0;
  }

  .split-heading {
    display: block;
  }

  .split-heading p {
    margin-top: 18px;
  }

  .hero-orbit {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .hookah-panel {
    grid-template-columns: 1fr;
  }

  .hookah-image {
    min-height: 360px;
  }

  .feature-card-wide {
    grid-template-columns: auto minmax(0, 1fr);
    background:
      linear-gradient(110deg, rgba(240, 191, 47, .18), rgba(255, 255, 255, .075) 42%, rgba(111, 127, 79, .16)),
      linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  }

  .feature-mini-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .reservation-cta {
    background-attachment: scroll;
  }

  .sticky-socials {
    left: auto;
    right: 14px;
  }

  .sticky-socials a:hover {
    transform: translateX(-5px) scale(1.06);
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 767.98px) {
  .brand-tag {
    max-width: 180px;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: .96;
  }

  .sticky-socials {
    gap: 8px;
  }

  .sticky-socials::before,
  .sticky-socials::after {
    height: 22px;
  }

  .sticky-socials a {
    width: 40px;
    height: 40px;
  }

  .hero-content {
    padding-inline: 10px;
  }

  .hero-actions .btn-lux,
  .hero-actions .btn-ghost {
    flex: 1 1 150px;
  }

  .menu-card {
    min-height: auto;
  }

  .about-collage {
    min-height: 430px;
  }

  .choice-grid,
  .contact-info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-visit-panel {
    min-height: 390px;
  }

  .hookah-panel {
    padding: 14px;
  }

  .hookah-image {
    min-height: 280px;
  }

  .contact-route {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .masonry-gallery {
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 424.98px) {
  .container-xxl {
    padding-inline: 18px;
  }

  .mobile-drawer {
    width: 100vw;
  }

  .brand-lockup img {
    width: 132px;
    max-height: 48px;
  }

  .btn-lux,
  .btn-ghost {
    min-height: 46px;
    padding: 12px 17px;
    font-size: .9rem;
  }

  .section-padding {
    padding: 68px 0;
  }

  .feature-card,
  .testimonial-card,
  .contact-card {
    padding: 24px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card-wide i {
    width: 58px;
    height: 58px;
  }

  .feature-mini-list {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat+.stat,
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .dish-row {
    grid-template-columns: 1fr;
  }
}
