/* ═══════════════════════════════════════════
   SKY LOUNGE — style.css
   Luxury dark gold aesthetic
═══════════════════════════════════════════ */

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,10,14,0.97);
  border-top: 1px solid rgba(201,168,76,0.4);
  z-index: 99999;
  padding: 1.2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}
.cookie-icon { font-size: 1.8rem; }
.cookie-text strong { color: var(--gold); font-size: 0.95rem; display: block; margin-bottom: 0.3rem; }
.cookie-text p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.cookie-link { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  transition: all 0.2s;
}
.cookie-accept { background: var(--gold); color: #000; }
.cookie-accept:hover { background: #b8962e; }
.cookie-decline { background: transparent; color: var(--gold); }
.cookie-decline:hover { background: rgba(201,168,76,0.1); }
@media (max-width: 600px) {
  .cookie-content { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .cookie-banner { padding: 1rem; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080608;
  --bg-2:      #0d0a0e;
  --bg-card:   #110e12;
  --gold:      #c9a84c;
  --gold-2:    #e8c96a;
  --gold-dark: #8b6914;
  --text:      #f0ece4;
  --text-muted:#8a7f72;
  --border:    rgba(201,168,76,0.15);
  --border-glow: rgba(201,168,76,0.35);
  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SMOKE CANVAS ── */
#smokeCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { line-height: 1.1; }
h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; }
h2 em { font-style: italic; color: var(--gold); }
h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; }

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1rem; }
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2));
  color: #0d0a0e;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-full-w { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.2rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240,236,228,0.2);
  border-radius: 2px;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,6,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.logo-sky {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
}
.logo-lounge {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(240,236,228,0.7);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-reserve {
  border: 1px solid var(--border-glow) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  color: var(--gold) !important;
}
.nav-reserve:hover { background: rgba(201,168,76,0.08) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,6,8,0.85) 0%,
    rgba(8,6,8,0.6) 50%,
    rgba(8,6,8,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.hero-title-top {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(240,236,228,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  max-width: 480px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

.hero-side-text {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(201,168,76,0.4);
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

/* ══════════════════════════════════
   INTRO STRIP
══════════════════════════════════ */
.intro-strip {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  animation: stripScroll 25s linear infinite;
  flex-shrink: 0;
}
.strip-icon { color: var(--gold); font-size: 0.6rem; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   EXPERIENCE
══════════════════════════════════ */
.experience { padding: 10rem 0; position: relative; z-index: 2; }
.exp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.exp-image-wrap {
  position: relative;
  height: 580px;
}
.exp-image {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}
.exp-image-1 {
  top: 0; left: 0;
  width: 75%; height: 75%;
  background: url('exp1.jpg') center/cover;
  border: 1px solid var(--border);
}
.exp-image-2 {
  bottom: 0; right: 0;
  width: 60%; height: 55%;
  background: url('exp2.jpg') center/cover;
  border: 1px solid var(--border);
}
.exp-badge-float {
  position: absolute;
  bottom: 25%; left: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0a0e;
  padding: 1rem 1.2rem;
  border-radius: 4px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}
.badge-num { display: block; font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); line-height: 1; }
.badge-text { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; margin-top: 0.3rem; display: block; }

.exp-right .section-tag { margin-bottom: 0.75rem; }
.exp-text { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.9; }

.exp-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.exp-stat { text-align: center; }
.exp-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.exp-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.exp-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ══════════════════════════════════
   SHISHA
══════════════════════════════════ */
.shisha-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
.shisha-bg {
  position: absolute;
  inset: 0;
  background: url('shisha-bg.jpg') center 60%/cover;
  z-index: 0;
}
.shisha-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,8,0.93);
  z-index: 1;
}
.shisha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.shisha-card {
  background: rgba(13,10,14,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}
.shisha-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.shisha-card--featured {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}
.shisha-card-badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0a0e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.shisha-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.shisha-card h3 { margin-bottom: 0.75rem; color: var(--text); font-size: 1.2rem; }
.shisha-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.2rem; line-height: 1.7; }
.shisha-flavours { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.shisha-price-tag { display: flex; flex-direction: column; align-items: flex-start; margin: 0.6rem 0 1rem; gap: 0.15rem; }
.price-main { font-size: 2rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; line-height: 1; }
.price-rehead { font-size: 0.78rem; color: rgba(201,168,76,0.7); letter-spacing: 1px; text-transform: uppercase; }
.shisha-flavours span {
  font-size: 0.95rem;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════
   MENU
══════════════════════════════════ */
.menu-section { padding: 10rem 0; position: relative; z-index: 2; background: var(--bg-2); }
.drinks-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  justify-content: center;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 0.75rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.menu-tab:hover { color: var(--gold); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-content { display: none; }
.menu-content.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
}
.menu-item:nth-child(odd) { padding-right: 3rem; border-right: 1px solid rgba(201,168,76,0.07); }
.menu-item:nth-child(even) { padding-left: 3rem; }
.menu-item-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; font-family: var(--font-serif); }
.menu-item-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-section { padding: 10rem 0; position: relative; z-index: 2; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--video { background: #000; }

/* Fine Dining slideshow - 6 images, 3s each = 18s total */
.gallery-item--slideshow { background: #000; }
.gallery-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: galleryFade 18s infinite;
}
.gallery-item--6 .gallery-slide:nth-child(1) { animation-delay: 0s; }
.gallery-item--6 .gallery-slide:nth-child(2) { animation-delay: 3s; }
.gallery-item--6 .gallery-slide:nth-child(3) { animation-delay: 6s; }
.gallery-item--6 .gallery-slide:nth-child(4) { animation-delay: 9s; }
.gallery-item--6 .gallery-slide:nth-child(5) { animation-delay: 12s; }
.gallery-item--6 .gallery-slide:nth-child(6) { animation-delay: 15s; }
@keyframes galleryFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  16%  { opacity: 1; }
  22%  { opacity: 0; }
  100% { opacity: 0; }
}
.gallery-item--slideshow .gallery-overlay { z-index: 1; }

/* Multi-image gold grid */
.gallery-item--multigrid { overflow: hidden; }
.multigrid-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  background: var(--gold);
  padding: 3px;
  z-index: 0;
}
.multigrid-cell {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.gallery-overlay--light {
  background: linear-gradient(to top, rgba(8,6,8,0.7) 0%, transparent 50%) !important;
  z-index: 1;
}
.gallery-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-item--video .gallery-overlay { z-index: 1; }

.gallery-img-1 { background: url('https://images.unsplash.com/photo-1578474846511-04ba529f0b88?w=800&q=80') center/cover; }
.gallery-img-custom { background: url('shisha-poster.jpg') center/cover !important; }
.gallery-img-2 { background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=800&q=80') center/cover; }
.gallery-img-3 { background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&q=80') center/cover; }
.gallery-img-4 { background: url('https://images.unsplash.com/photo-1544148103-0773bf10d330?w=800&q=80') center/cover; }
.gallery-img-5 { background: url('https://images.unsplash.com/photo-1551024709-8f23befc6f87?w=800&q=80') center/cover; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,8,0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════
   RESERVE
══════════════════════════════════ */
.reserve-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
.reserve-bg { display: none; }
/* Reserve Map */
.reserve-map-label {
  display: block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  margin-top: 1.2rem;
  transition: background 0.2s;
}
.reserve-map-label:hover { background: rgba(201,168,76,0.2); }
.reserve-map {
  width: 100%;
  height: 260px;
  border: 1px solid rgba(201,168,76,0.3);
  border-top: none;
  border-radius: 0 0 4px 4px;
  display: block;
  filter: grayscale(20%);
}

.reserve-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,8,0.92);
  z-index: 1;
}
.reserve-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.reserve-left h2 { margin: 0.5rem 0 1.2rem; }
.reserve-left > p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }

.reserve-contact { display: flex; flex-direction: column; gap: 1rem; }
.reserve-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  padding: 1rem 1.2rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--transition);
}
.reserve-contact-item:hover { border-color: var(--border-glow); background: rgba(201,168,76,0.08); }
.rc-icon { font-size: 1.3rem; }
.rc-label { display: block; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.rc-value { display: block; font-size: 0.95rem; font-weight: 600; color: var(--gold); margin-top: 0.1rem; }

/* Reserve Form */
.reserve-form {
  background: rgba(13,10,14,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rf-group { display: flex; flex-direction: column; gap: 0.4rem; }
.rf-group label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.rf-group input,
.rf-group select,
.rf-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.rf-group input:focus,
.rf-group select:focus,
.rf-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.rf-group input::placeholder,
.rf-group textarea::placeholder { color: var(--text-muted); }
.rf-group select option { background: #110e12; }

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-section { padding: 10rem 0; background: var(--bg-2); position: relative; z-index: 2; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--border-glow); }
.review-card--gold {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  transform: scale(1.04);
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card p { color: var(--text-muted); font-size: 0.9rem; font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: #050405;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-top-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  margin-bottom: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-top: 3rem;
}
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.social-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ══════════════════════════════════
   SMOKE BURST
══════════════════════════════════ */
.smoke-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  animation: smokeBurst 1.8s ease-out forwards;
}
@keyframes smokeBurst {
  0%   { transform: translate(-50%, -50%) scale(0) rotate(0deg);   opacity: 1;   filter: blur(0px); }
  20%  { transform: translate(-50%, -60%) scale(0.8) rotate(5deg); opacity: 0.9; filter: blur(4px); }
  60%  { transform: translate(var(--tx), calc(var(--ty) * 0.6)) scale(2) rotate(10deg); opacity: 0.5; filter: blur(10px); }
  100% { transform: translate(var(--tx), var(--ty)) scale(3.5) rotate(20deg); opacity: 0; filter: blur(22px); }
}

@keyframes smokeRise {
  0%   { transform: translate(-50%, -50%) scale(0.3) rotate(0deg);   opacity: 0.8; filter: blur(2px); }
  50%  { transform: translate(-50%, -120%) scale(1.2) rotate(-8deg); opacity: 0.5; filter: blur(8px); }
  100% { transform: translate(-50%, -220%) scale(2.5) rotate(15deg); opacity: 0;   filter: blur(20px); }
}

/* Scroll smoke canvas */
#scrollSmokeCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
#scrollSmokeCanvas.active { opacity: 1; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-container { grid-template-columns: 1fr; gap: 4rem; }
  .exp-image-wrap { height: 400px; }
  .shisha-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,6,8,0.98);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .shisha-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 220px; }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .menu-item:nth-child(even) { padding-left: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--gold { transform: scale(1); }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-side-text { display: none; }
  .hero-title-main { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-badge { font-size: 0.62rem; letter-spacing: 0.1em; }
  .hero-content { padding: 8rem 1.5rem 5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .exp-stats { flex-direction: column; gap: 1rem; }
  .exp-stat-divider { width: 40px; height: 1px; }

  /* Fix hero on mobile */
  .hero-title-main {
    font-size: clamp(3rem, 18vw, 5rem);
  }
  .hero-title-top {
    font-size: 1rem;
  }
  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-align: center;
    display: block;
    max-width: 280px;
  }
  .hero-content {
    padding: 7rem 1.5rem 4rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Fix gallery on mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item {
    height: 220px;
  }

  /* Fix strip on mobile */
  .intro-strip { overflow: hidden; }

  /* Fix experience section */
  .exp-image-wrap { height: 280px; }
  .exp-image-1 { width: 80%; height: 70%; }
  .exp-image-2 { width: 65%; height: 50%; }

  /* Fix reserve form */
  .reserve-form { padding: 1.5rem; }

  /* Fix shisha cards */
  .shisha-section { padding: 5rem 0; }
  .menu-section { padding: 5rem 0; }
  .experience { padding: 5rem 0; }
  .gallery-section { padding: 5rem 0; }
  .reserve-section { padding: 5rem 0; }
  .reviews-section { padding: 5rem 0; }
}
