/* ============================================================
   NOIR CAFÉ — PREMIUM CSS
   Dark luxury aesthetic with gold accents
   ============================================================ */

/* === RESET & ROOT === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #080808;
  --charcoal: #111111;
  --dark: #181818;
  --card-bg: #141414;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201,168,76,0.15);
  --cream: #f0e6d0;
  --cream-dim: rgba(240,230,208,0.07);
  --white: #ffffff;
  --text-primary: #e8e0d0;
  --text-secondary: rgba(232,224,208,0.55);
  --text-muted: rgba(232,224,208,0.3);
  --border: rgba(201,168,76,0.12);
  --border-bright: rgba(201,168,76,0.35);
  --glass: rgba(20,20,20,0.7);
  --glass-bright: rgba(30,30,30,0.85);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* === CUSTOM CURSOR === */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-smooth), width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; border-color: var(--gold); }

/* === PRELOADER === */
#preloader {
  position: fixed; inset: 0;
  background: #050505;
  z-index: 99998;
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  animation: fadeInLogo 0.8s ease 0.3s forwards;
}
@keyframes fadeInLogo { to { opacity: 1; } }
.preloader-bar-wrap {
  width: 240px; height: 1px;
  background: rgba(201,168,76,0.2);
  margin: 24px auto 16px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.05s linear;
}
.preloader-percent {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

/* === CINEMATIC INTRO === */
#cinematicIntro {
  position: fixed; inset: 0;
  background: #030303;
  z-index: 99990;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  /* transform-based exit (yPercent) is used instead of clipPath for
     reliable cross-browser behaviour and so GSAP can sequence it correctly */
  will-change: transform, opacity;
}
.intro-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #1a0f05 0%, #050505 60%);
}

.intro-scene {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

.scene-label {
  font-family: var(--font-display);
  font-size: clamp(10px, 1.5vw, 14px);
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0;
  margin-top: 60px;
  text-transform: uppercase;
}

/* Coffee Cup */
.coffee-cup {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  transform: translateY(40px) scale(0.9);
  opacity: 0;
}
.cup-body {
  width: 90px; height: 70px;
  background: linear-gradient(160deg, #2a1a10, #1a0d08);
  border-radius: 8px 8px 20px 20px;
  position: relative;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), inset 0 2px 4px rgba(255,255,255,0.05);
}
.cup-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(0deg, #3d1a08, #6b3010);
  transition: height 1s ease;
  border-radius: 0 0 14px 14px;
}
.cup-foam {
  position: absolute;
  top: 0; left: 4px; right: 4px;
  height: 18px;
  background: rgba(240,220,180,0.9);
  border-radius: 50%;
  transform: scaleY(0);
  transform-origin: top;
}
.cup-handle {
  position: absolute;
  right: -18px; top: 15px;
  width: 20px; height: 30px;
  border: 3px solid rgba(201,168,76,0.3);
  border-left: none;
  border-radius: 0 12px 12px 0;
}
.cup-saucer {
  width: 120px; height: 12px;
  background: linear-gradient(160deg, #2a1a10, #1a0d08);
  border-radius: 50%;
  margin-top: 6px;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.coffee-pour {
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  display: flex; gap: 3px;
}
.pour-stream {
  width: 3px;
  height: 0px;
  background: linear-gradient(180deg, #8b5523, #3d1a08);
  border-radius: 2px;
  transform-origin: top;
  opacity: 0;
}
.pour-stream.s2 { width: 2px; margin-top: 4px; }
.pour-stream.s3 { width: 2px; margin-top: 2px; }
.steam-container {
  position: absolute;
  top: 28%;
  display: flex; gap: 8px;
  align-items: flex-end;
  height: 80px;
  opacity: 0;
}
.steam {
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(220,200,160,0.6), transparent);
  border-radius: 2px;
  animation: steamRise 2s ease-in-out infinite;
}
.steam.s1 { height: 30px; animation-delay: 0s; }
.steam.s2 { height: 45px; animation-delay: 0.3s; }
.steam.s3 { height: 35px; animation-delay: 0.6s; }
.steam.s4 { height: 50px; animation-delay: 0.9s; }
.steam.s5 { height: 25px; animation-delay: 1.2s; }
@keyframes steamRise {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0; }
  30% { opacity: 1; }
  70% { transform: translateY(-30px) scaleX(2); opacity: 0.4; }
}

/* Burger Stack */
.burger-stack {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9));
}
.layer {
  transform: translateY(-30px) scaleX(0.5);
  opacity: 0;
  width: 120px;
}
.bun-top {
  height: 36px;
  background: radial-gradient(ellipse, #c8892a, #8b5523);
  border-radius: 50% 50% 20% 20%;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.sesame {
  position: absolute;
  width: 6px; height: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
}
.sesame.s1 { top: 8px; left: 30px; }
.sesame.s2 { top: 5px; left: 55px; }
.sesame.s3 { top: 10px; left: 75px; }
.lettuce {
  height: 12px;
  background: linear-gradient(90deg, #2d6a1f, #4a9c30, #2d6a1f);
  border-radius: 4px;
  margin: 0 -8px;
  width: 136px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tomato {
  height: 10px;
  background: #c0392b;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cheese {
  height: 8px;
  background: #f39c12;
  border-radius: 2px;
  margin: 0 -4px; width: 128px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}
.patty {
  height: 22px;
  background: radial-gradient(ellipse, #5a2e10, #3d1a08);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.sauce-drip {
  height: 8px;
  background: #c0392b;
  border-radius: 2px;
  width: 128px; margin: 0 -4px;
  clip-path: polygon(5% 0, 95% 0, 92% 100%, 8% 100%);
}
.bun-bottom {
  height: 22px;
  background: radial-gradient(ellipse, #c8892a, #8b5523);
  border-radius: 20% 20% 40% 40%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* Pizza */
.pizza-container {
  display: flex; align-items: center; justify-content: center;
}
.pizza-whole {
  width: 200px; height: 200px;
  border-radius: 50%;
  position: relative;
  transform: scale(0) rotate(-180deg);
  opacity: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}
.pizza-base {
  position: absolute; inset: 0;
  background: radial-gradient(circle, #d4a855, #8b6020);
  border-radius: 50%;
}
.pizza-sauce {
  position: absolute;
  inset: 16px;
  background: radial-gradient(circle, #c0392b, #922b21);
  border-radius: 50%;
}
.pizza-cheese {
  position: absolute;
  inset: 20px;
  background: radial-gradient(circle, #f5cba7, #e59866);
  border-radius: 50%;
  opacity: 0.95;
}
.pizza-crust {
  position: absolute; inset: 0;
  border: 16px solid #c8892a;
  border-radius: 50%;
  opacity: 0.6;
}
.pizza-topping {
  position: absolute;
  width: 20px; height: 20px;
  background: #2d6a1f;
  border-radius: 50%;
  opacity: 0.9;
}
.pizza-topping.t1 { top: 40px; left: 55px; background: #c0392b; }
.pizza-topping.t2 { top: 55px; left: 110px; background: #8b4513; }
.pizza-topping.t3 { top: 100px; left: 45px; background: #2d6a1f; }
.pizza-topping.t4 { top: 110px; left: 125px; background: #c0392b; }
.pizza-topping.t5 { top: 75px; left: 80px; background: #f5cba7; width: 30px; height: 30px; border-radius: 50%; }
.pizza-slice-cut {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 1px;
  background: rgba(0,0,0,0.4);
  transform-origin: left center;
}
.pizza-slice-cut.sc1 { transform: rotate(0deg); }
.pizza-slice-cut.sc2 { transform: rotate(120deg); }
.pizza-slice-cut.sc3 { transform: rotate(240deg); }

/* Intro brand */
.intro-brand {
  position: absolute;
  bottom: 15%;
  text-align: center;
  opacity: 0;
}
.intro-brand-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  letter-spacing: 0.25em;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 120px rgba(201,168,76,0.3);
}
.intro-brand-tagline {
  font-family: var(--font-serif);
  font-size: clamp(12px, 2vw, 18px);
  letter-spacing: 0.4em;
  color: var(--cream);
  opacity: 0.6;
  margin-top: 8px;
  text-transform: uppercase;
}
.intro-skip {
  position: absolute;
  bottom: 30px; right: 40px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}
.intro-skip:hover { color: var(--gold); border-color: var(--gold); }

/* === NAVIGATION === */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex; align-items: center; gap: 48px;
  background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  padding: 16px 48px;
  border-color: var(--border);
  background: rgba(8,8,8,0.95);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-right: auto;
  cursor: pointer;
}
.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-expo);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-reserve {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-reserve:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-expo);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mob-link {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mob-link:hover { color: var(--gold); }

/* Page Transition */
.page-transition {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9000;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* === SECTION BASE === */
.page-section {
  min-height: 100vh;
  padding-top: 80px;
}

/* === HOME HERO === */
.hero {
  position: relative;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 12s ease;
}
.hero:hover .hero-img { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
  text-align: left;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.92;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1em;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 18px);
  font-style: italic;
  color: rgba(240,230,208,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-wrap {
  display: flex; gap: 20px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}

/* Buttons */
.btn-primary {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-expo);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.25); }

.btn-ghost {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(240,230,208,0.3);
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
  opacity: 0;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}
.hero-scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex; align-items: center; gap: 32px;
  z-index: 2;
  opacity: 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

/* Featured strip */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
}
.featured-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.feat-img-wrap {
  width: 100%; height: 100%;
  overflow: hidden;
}
.feat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}
.featured-item:hover .feat-img-wrap img { transform: scale(1.08); }
.feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.feat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.featured-item:hover .feat-info { transform: translateY(0); }
.feat-category {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.feat-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cream);
  margin-bottom: 6px;
  font-weight: 500;
}
.feat-info p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}
.featured-item:hover .feat-info p { opacity: 1; transform: translateY(0); }
.feat-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-top: 10px;
}

/* === MENU === */
.section-hero {
  position: relative;
  height: 50vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.sh-bg {
  position: absolute; inset: 0;
}
.sh-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sh-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.5) 60%, transparent 100%);
}
.sh-content {
  position: relative; z-index: 2;
  padding: 60px 80px;
}
.sh-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
}
.sh-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 100px);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.05em;
}
.sh-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 12px;
}

.menu-container { padding: 60px 80px 100px; }
.menu-tabs {
  display: flex; gap: 4px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: none;
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-expo);
}
.menu-tab:hover, .menu-tab.active { color: var(--gold); }
.menu-tab.active::after { transform: scaleX(1); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.menu-card {
  background: var(--card-bg);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
  border: 1px solid transparent;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.mc-img {
  height: 200px;
  overflow: hidden;
}
.mc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.menu-card:hover .mc-img img { transform: scale(1.06); filter: brightness(1); }
.mc-info { padding: 24px; }
.mc-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--gold-dim);
  padding: 4px 10px;
  margin-bottom: 12px;
  background: var(--gold-dim);
}
.mc-info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 6px;
  font-weight: 500;
}
.mc-info p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.mc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mc-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}
.mc-add {
  width: 32px; height: 32px;
  border: 1px solid var(--border-bright);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.mc-add:hover { background: var(--gold); color: var(--black); }

/* === ABOUT === */
.about-hero {
  position: relative;
  height: 65vh;
  overflow: hidden;
}
.about-hero-img {
  position: absolute; inset: 0;
}
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.4) 100%);
}
.about-hero-text {
  position: absolute;
  bottom: 80px; left: 80px;
  z-index: 2;
}
.about-eyebrow {
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--gold); margin-bottom: 16px;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 100px);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.05em;
}
.about-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.about-pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}
.about-pull-quote em { color: var(--gold); }
.about-signature {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 20px;
}
.about-para {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.value-card {
  padding: 60px 48px;
  border-right: 1px solid var(--border);
  transition: background 0.4s ease;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--cream-dim); }
.vc-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.value-card:hover .vc-number { color: rgba(201,168,76,0.4); }
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 500;
}
.value-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-image-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  height: 400px;
  gap: 2px;
}
.air-img {
  overflow: hidden;
}
.air-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.8);
}
.air-img:hover img { transform: scale(1.06); filter: brightness(1); }

/* === GALLERY === */
.gallery-wrap { padding: 100px 80px; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gh-eyebrow {
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--gold); margin-bottom: 16px;
}
.gh-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 90px);
  color: var(--cream);
  letter-spacing: 0.05em;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 4px;
}
.mg-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark);
}
.mg-item.tall { grid-row: span 2; }
.mg-item.wide { grid-column: span 2; }
.mg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth), filter 0.5s ease;
  filter: brightness(0.75) saturate(0.9);
}
.mg-item:hover img { transform: scale(1.08); filter: brightness(0.9) saturate(1.1); }
.mg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 24px;
}
.mg-item:hover .mg-overlay { opacity: 1; }
.mg-overlay span {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* === CONTACT === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: calc(100vh - 80px);
}
.contact-left {
  padding: 100px 80px;
  background: var(--charcoal);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.cl-eyebrow {
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--gold); margin-bottom: 16px;
}
.cl-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 80px);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
.cl-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.contact-details { margin-bottom: 48px; }
.cd-item { margin-bottom: 32px; }
.cd-label {
  font-size: 9px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.cd-value {
  font-size: 14px; line-height: 1.7;
  color: var(--text-secondary);
}
.contact-socials { display: flex; gap: 24px; }
.cs-link {
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.cs-link:hover { color: var(--gold); }

.contact-right { padding: 100px 80px; display: flex; align-items: center; }
.contact-form-wrap { width: 100%; }
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 400;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 20px; }
.form-group label {
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
}
.glass-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
  resize: vertical;
}
.glass-input::placeholder { color: var(--text-muted); }
.glass-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 1px var(--gold-dim);
}
.glass-input option { background: var(--charcoal); color: var(--cream); }
.submit-btn { width: 100%; margin-top: 8px; font-size: 11px; padding: 20px; }

/* === FOOTER === */
#mainFooter {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--gold);
  letter-spacing: 0.3em;
  opacity: 0.7;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.footer-links { display: flex; gap: 32px; justify-content: center; margin-bottom: 40px; }
.footer-links a {
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--text-muted); text-decoration: none;
  text-transform: uppercase; transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
  .about-body { gap: 48px; padding: 80px 48px; }
}

@media (max-width: 900px) {
  #mainNav { padding: 20px 24px; }
  .nav-links, .nav-reserve { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-stats { display: none; }
  .featured-strip { grid-template-columns: 1fr; }
  .sh-content { padding: 40px 32px; }
  .menu-container { padding: 40px 24px 80px; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-body { grid-template-columns: 1fr; gap: 40px; padding: 60px 32px; }
  .about-values { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--border); }
  .about-image-row { grid-template-columns: 1fr; height: auto; }
  .air-img { height: 250px; }
  .gallery-wrap { padding: 60px 24px; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .mg-item.wide { grid-column: span 2; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 32px; }
  .contact-right { padding: 60px 32px; }
  .form-row { grid-template-columns: 1fr; }
  #mainFooter { padding: 40px 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-hero-text { left: 32px; bottom: 40px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(48px, 14vw, 80px); }
  .masonry-grid { grid-template-columns: 1fr; }
  .mg-item.wide, .mg-item.tall { grid-column: span 1; grid-row: span 1; height: 220px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .menu-tabs { flex-wrap: wrap; }
  .hero-cta-wrap { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.visible { animation: revealUp 0.8s var(--ease-expo) forwards; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-left.visible { animation: revealLeft 0.8s var(--ease-expo) forwards; }
@keyframes revealLeft { to { opacity: 1; transform: translateX(0); } }
