/* ==========================================================================
   HUKAA BAZZ — Premium Shisha Lounge
   Theme: Onyx + Champagne Gold
   ========================================================================== */

:root {
  --bg: #0a0908;
  --bg-2: #111110;
  --bg-3: #181715;
  --ink: #f5f1e8;
  --ink-soft: #b9b1a0;
  --ink-mute: #6b6557;
  --gold: #c9a96e;
  --gold-bright: #e4c97f;
  --gold-deep: #8d7340;
  --line: rgba(201, 169, 110, 0.18);
  --line-soft: rgba(245, 241, 232, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Logo sizes — adjust these to taste */
  --logo-nav: 120px;    /* navbar logo height */
  --logo-loader: 200px; /* intro loader logo width */
  --logo-footer: 160px; /* footer logo width */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) {
  body { cursor: auto; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--bg); }

/* ==========================================================================
   LOADER
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  width: var(--logo-loader);
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.loader-line {
  width: 240px;
  height: 1px;
  background: var(--line-soft);
  margin: 0 auto 20px;
  overflow: hidden;
}
.loader-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform-origin: left;
  animation: loadFill 1.6s var(--ease-out) forwards;
}
@keyframes loadFill {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cursor.hover { width: 64px; height: 64px; border-color: var(--gold-bright); }
.cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
}
@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ==========================================================================
   AMBIENT SMOKE
   ========================================================================== */
.smoke-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: drift 30s ease-in-out infinite;
}
.smoke-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 10%; left: -10%;
}
.smoke-2 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, #4a3a1f 0%, transparent 70%);
  bottom: -20%; right: -15%;
  animation-delay: -10s;
}
.smoke-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -20s;
  opacity: 0.08;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-60px, 80px) scale(0.95); }
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 60px; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: var(--logo-nav);
  width: auto;
  display: block;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.nav-cta:hover { color: var(--bg); }
.nav-cta:hover::before { transform: translateX(0); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 400;
}
.mobile-links a:hover { color: var(--gold); font-style: italic; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 70px;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.95) contrast(1.05) brightness(0.95);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,9,8,0.22) 62%, rgba(10,9,8,0.55) 100%),
    linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.55) 100%);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.4s ease-out;
}
.hero-vignette {
  z-index: 1;
}
.hero > *:not(.hero-video):not(.hero-bg):not(.hero-vignette) {
  position: relative;
  z-index: 2;
}

/* Pause video on small screens to save bandwidth — fall back to poster */
@media (max-width: 700px) {
  .hero-video { display: none; }
  .hero-bg {
    background:
      radial-gradient(ellipse at 30% 40%, rgba(201, 169, 110, 0.22), transparent 55%),
      radial-gradient(ellipse at 70% 60%, rgba(141, 115, 64, 0.22), transparent 60%),
      linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.85) 100%),
      url('../images/hero.jpg') center/cover no-repeat;
  }
}

/* Tighter spacing on shorter laptops & landscape tablets */
@media (max-height: 800px) {
  .hero { padding: 90px 24px 50px; }
  .hero-title { font-size: clamp(36px, 5.5vw, 72px); margin-bottom: 22px; }
  .hero-eyebrow { margin-bottom: 22px; }
  .hero-sub { margin-bottom: 26px; font-size: 15px; }
}
@media (max-height: 640px) {
  .hero { padding: 80px 24px 40px; }
  .hero-title { font-size: clamp(32px, 5vw, 56px); }
  .hero-sub { display: none; }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-hookah {
  display: none;
}
@keyframes hookahFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 8px)) translateX(2px); }
}
@media (max-width: 1100px) {
  .hero-hookah { right: -10%; opacity: 0.1; }
}
@media (max-width: 700px) {
  .hero-hookah { display: none; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-eyebrow .line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero-title i {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.word {
  display: block;
  overflow: hidden;
}
.word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-out);
}
.word.revealed > span { transform: translateY(0); }
.word.reveal:nth-child(1) > span { transition-delay: 0.2s; }
.word.reveal:nth-child(2) > span { transition-delay: 0.35s; }
.word.reveal:nth-child(3) > span { transition-delay: 0.5s; }

.hero-sub {
  max-width: 580px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: 0.7s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.hero-actions.fade-up { transition-delay: 0.85s; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.3);
}
.btn-gold svg { transition: transform 0.4s var(--ease); }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -60px; left: 0;
  width: 100%; height: 30px;
  background: var(--gold);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -30px; }
  100% { top: 60px; }
}

.hero-stats {
  display: flex;
  gap: 64px;
  margin-top: 48px;
  justify-content: center;
}
.stat { text-align: center; }
.stat .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat .lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
@media (max-width: 600px) {
  .hero-stats { gap: 32px; margin-top: 36px; }
  .stat .num { font-size: 22px; }
  .stat .lbl { font-size: 9px; letter-spacing: 0.2em; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  align-items: center;
}
.marquee-track span { letter-spacing: 0.05em; }
.marquee-track i {
  font-style: normal;
  color: var(--gold);
  font-size: 16px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */
section {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  section { padding: 90px 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.section-eyebrow.center { display: flex; justify-content: center; }
.section-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.section-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.section-title.center { text-align: center; }
.section-title i {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.section-head { margin-bottom: 80px; text-align: center; }
.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ==========================================================================
   STORY
   ========================================================================== */
.story { background: var(--bg); }

.story-visual {
  position: relative;
  height: 640px;
}
.story-image {
  position: absolute;
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
}
.story-image-2 {
  width: 50%;
  height: 50%;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  z-index: 2;
  pointer-events: none;
}
.img-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.img-frame:hover .img-fill { transform: scale(1.05); }
.img-1 {
  background-image:
    linear-gradient(135deg, rgba(10,9,8,0.55), rgba(40,28,12,0.45)),
    url('../images/story-1.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.1) brightness(0.78);
}
.img-2 {
  background-image:
    linear-gradient(135deg, rgba(10,9,8,0.2), rgba(60,40,18,0.3)),
    url('../images/story-2.jpg');
  filter: saturate(0.95) contrast(1.05) brightness(0.98);
}
.img-caption {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: var(--bg-2);
  padding: 14px 20px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.cap-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  font-style: italic;
}
.cap-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story-text p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 520px;
}
.story-meta {
  display: flex;
  gap: 60px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.meta-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
}
.meta-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .story-visual { height: 500px; }
}

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.experience {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.exp-card {
  background: var(--bg-2);
  padding: 56px 36px;
  position: relative;
  transition: background 0.5s var(--ease);
  cursor: pointer;
}
.exp-card:hover { background: var(--bg-3); }
.exp-card.featured { background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%); }
.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}
.exp-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  color: var(--gold);
  opacity: 0.85;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.exp-card:hover .exp-icon { transform: translateY(-4px); opacity: 1; }
.exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.exp-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { padding: 40px 28px; }
}

/* ==========================================================================
   CLIENTS
   ========================================================================== */
.client-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.client-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.client-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}
.client-meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.client-info p:not(.client-meta) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  max-width: 460px;
}
.client-stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}
.cstat { display: flex; flex-direction: column; gap: 6px; }
.cstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}
.cstat-lbl {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.client-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 14px;
}
.cimg {
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  filter: saturate(0.95);
  transition: transform 0.6s var(--ease);
}
.cimg:hover { transform: scale(1.03); }
.cimg-a { grid-row: span 2; background-image: url('../images/venue-2.jpg'); }
.cimg-b { background-image: url('../images/gallery-3.jpg'); }
.cimg-c { background-image: url('../images/gallery-7.jpg'); }
@media (max-width: 900px) {
  .client-feature { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .client-gallery { grid-template-rows: repeat(2, 140px); }
  .client-stats { gap: 32px; }
}

/* ==========================================================================
   BLENDS / MENU
   ========================================================================== */
.blends { background: var(--bg); }
.blend-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.blend-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px 12px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.blend-row:hover {
  background: rgba(201, 169, 110, 0.04);
  padding-left: 24px;
}
.blend-no {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.blend-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}
.blend-name span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  margin-left: 8px;
}
.blend-dots {
  height: 1px;
  background: var(--line-soft);
  min-width: 40px;
}
.blend-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.blends-note {
  text-align: center;
  margin-top: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 16px;
}

@media (max-width: 768px) {
  .blend-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .blend-name { font-size: 20px; }
  .blend-name span { display: block; margin-left: 0; margin-top: 2px; }
  .blend-dots, .blend-tag { display: none; }
}

/* ==========================================================================
   VENUES
   ========================================================================== */
.venues {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: 16px;
}
.venue-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}
.venue-card.tall { grid-row: span 2; }
.venue-card:hover { transform: translateY(-4px); }
.venue-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.venue-card:hover .venue-img { transform: scale(1.06); }
.venue-img-1 {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.95) 100%),
    url('../images/venue-1.jpg');
}
.venue-img-2 {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.95) 100%),
    url('../images/venue-2.jpg');
}
.venue-img-3 {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.95) 100%),
    url('../images/venue-3.jpg');
}
.venue-img-4 {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.95) 100%),
    url('../images/venue-4.jpg');
}
.venue-img {
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
}
.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,0.85) 100%);
  z-index: 1;
}
.venue-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}
.venue-loc {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.venue-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.venue-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.4s var(--ease), margin 0.6s var(--ease);
}
.venue-card:hover p {
  max-height: 100px;
  opacity: 1;
}
.venue-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.venue-link span { transition: transform 0.4s var(--ease); }
.venue-card:hover .venue-link span { transform: translateX(6px); }

@media (max-width: 1000px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
  }
  .venue-card.tall { grid-row: auto; }
}
@media (max-width: 600px) {
  .venue-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  cursor: pointer;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.g-item:hover { transform: scale(1.02); }
.g-item:hover::after { opacity: 1; }
.g-item {
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.g-item:hover { filter: saturate(1.05) contrast(1.05) brightness(1); }
.g-1 {
  grid-column: span 2; grid-row: span 2;
  background-image: url('../images/gallery-1.jpg');
}
.g-2 { background-image: url('../images/gallery-2.jpg'); }
.g-3 { background-image: url('../images/gallery-3.jpg'); }
.g-4 { background-image: url('../images/gallery-4.jpg'); }
.g-5 { background-image: url('../images/gallery-5.jpg'); }
.g-6 {
  grid-column: span 2;
  background-image: url('../images/gallery-6.jpg');
}
.g-7 { background-image: url('../images/gallery-7.jpg'); }
.g-8 { background-image: url('../images/gallery-8.jpg'); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-1, .g-6 { grid-column: span 2; }
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.testimonial {
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.5;
  font-style: italic;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--ink);
}
.quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-attr .line { width: 40px; height: 1px; background: var(--gold); opacity: 0.4; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--bg); }
.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
}
.ci-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item a, .contact-item span:not(.ci-label) {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.contact-item a:hover { color: var(--gold); }

.socials {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink-mute);
}
.socials a { color: var(--ink-soft); transition: color 0.3s var(--ease); }
.socials a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 48px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.form-row { margin-bottom: 24px; position: relative; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row label {
  display: block;
}
.form-row label > span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.form-row textarea {
  resize: vertical;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-bottom-color: var(--gold);
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--ink-mute);
  font-style: italic;
}
.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) center, calc(100% - 11px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.form-row select option { background: var(--bg-2); color: var(--ink); }
.form-submit { width: 100%; justify-content: center; margin-top: 12px; }
.form-success {
  margin-top: 20px;
  padding: 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  display: none;
}
.form-success.show { display: block; }

@media (max-width: 600px) {
  .contact-form { padding: 32px 24px; }
  .form-row.two { grid-template-columns: 1fr; }
  .contact-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 32px;
}
.footer-logo {
  width: var(--logo-footer);
  height: auto;
  display: block;
  margin-left: -8px;
}
.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-warning { color: var(--gold-deep); }

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   FLOATING ACTION BUTTONS (WhatsApp + Back-to-top)
   ========================================================================== */
.fab-stack {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
}
.fab svg {
  width: 26px;
  height: 26px;
  transition: transform 0.4s var(--ease);
}
.fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
}

/* WhatsApp — official green with subtle gold ring */
.fab-wa {
  background: #25d366;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.fab-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: pulseWa 2.4s ease-out infinite;
}
.fab-wa:hover { background: #1ebd5b; }
@keyframes pulseWa {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Back-to-top — onyx + gold to match brand */
.fab-top {
  background: var(--bg-2);
  color: var(--gold);
  border-color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease),
              transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease);
}
.fab-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab-top:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-3px) scale(1.04);
}
.fab-top:hover svg { transform: translateY(-2px); }

/* Tooltip */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  border-radius: 4px;
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--bg-2);
}
.fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .fab-stack { right: 16px; bottom: 16px; gap: 10px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }
  .fab-tooltip { display: none; }
}
