:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --white: #FAFAF5;
  --cream: #F5EDD6;
  --warm: #2A1F0E;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(201,168,76,0.25);
  --red: #C0392B;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,168,76,0.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(201,168,76,0.08), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(201,168,76,0.06), transparent 32%);
  animation: ambientShift 14s ease-in-out infinite alternate;
}

/* ═══════════════════════ CANVAS BG ═══════════════════════ */
#canvas-bg {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index:0;
  pointer-events:none;
}

#fx-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.8) 0.6px, transparent 1px),
    radial-gradient(circle at 80% 75%, rgba(255,255,255,0.7) 0.5px, transparent 1px),
    radial-gradient(circle at 45% 55%, rgba(255,255,255,0.6) 0.7px, transparent 1px);
  background-size: 120px 120px, 170px 170px, 90px 90px;
  animation: noiseDrift 18s linear infinite;
}

.cinematic-vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.48) 100%);
}

#fx-spotlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
  background: radial-gradient(circle 220px at 50% 50%, rgba(201,168,76,0.22), rgba(201,168,76,0.07) 35%, transparent 72%);
  transition: opacity 0.2s ease;
}

#page-transition {
  position: fixed;
  inset: 0;
  z-index: 3500;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.25), rgba(10,10,10,0.8) 55%, rgba(10,10,10,0.98) 100%);
  clip-path: circle(0% at 50% 50%);
}

#page-transition.active {
  animation: sectionMorph 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

#cursor-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

.trail-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 0;
  background: radial-gradient(circle, rgba(255,234,168,0.95) 0%, rgba(201,168,76,0.85) 40%, rgba(201,168,76,0) 75%);
  box-shadow: 0 0 20px rgba(201,168,76,0.55);
  transform: translate(-50%, -50%);
  animation: trailFade 720ms ease-out forwards;
}

#insane-toggle {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 5000;
  border: 1px solid rgba(201,168,76,0.45);
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(10,10,10,0.92));
  color: var(--white);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#insane-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.75);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45), 0 0 18px rgba(201,168,76,0.25);
}

/* ═══════════════════════ NAV ═══════════════════════ */
nav {
  position: fixed; top:0; left:0; width:100%;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex; flex-direction: column;
  cursor: pointer;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-dark) 20%, var(--gold-light) 50%, var(--gold-dark) 80%);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShine 4.5s linear infinite;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position:absolute; bottom:-4px; left:0;
  width:0; height:1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  box-shadow: 0 6px 30px rgba(201,168,76,0.5) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display:none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 75px; left:0;
  width:100%; height: calc(100vh - 75px);
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════ PAGE WRAPPER ═══════════════════════ */
#page-content { position: relative; z-index:1; }

/* Each HTML file is a standalone page (SEO). SPA hide/show removed. */
.page { display: block; }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
  --layer-scale: 1;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.05) 45%, transparent 70%);
  filter: blur(20px);
  animation: heroPulse 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-scene {
  position: absolute; inset:0;
  display: flex; align-items:center; justify-content:center;
  pointer-events:none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(calc(var(--layer-scale, 1) + 0.04));
}

.hero-3d-ring {
  width: 600px; height: 600px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  position: absolute;
  animation: rotateSlow 20s linear infinite;
}
.hero-3d-ring:nth-child(2) {
  width: 800px; height: 800px;
  border-color: rgba(201,168,76,0.08);
  animation-duration: 30s;
  animation-direction: reverse;
}
.hero-3d-ring:nth-child(3) {
  width: 450px; height: 450px;
  border-color: rgba(201,168,76,0.2);
  animation-duration: 15s;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg) rotateX(70deg); }
  to { transform: rotate(360deg) rotateX(70deg); }
}

.floating-dishes {
  position: absolute; inset:0;
  pointer-events:none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(calc(var(--layer-scale, 1) + 0.02));
}
.dish {
  position: absolute;
  font-size: 3rem;
  animation: floatDish 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(201,168,76,0.4));
}
.dish:nth-child(1) { top:15%; left:8%; animation-delay:0s; }
.dish:nth-child(2) { top:20%; right:8%; animation-delay:1s; }
.dish:nth-child(3) { bottom:25%; left:5%; animation-delay:2s; }
.dish:nth-child(4) { bottom:20%; right:6%; animation-delay:3s; }
.dish:nth-child(5) { top:50%; left:3%; animation-delay:1.5s; }
.dish:nth-child(6) { top:50%; right:3%; animation-delay:2.5s; }

@keyframes floatDish {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative; z-index:2;
  text-align: center;
  max-width: 900px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(var(--layer-scale, 1));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease both;
}
.hero-badge::before {
  content: '★';
  font-size: 0.8rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-title .line1 { display:block; color: var(--white); }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  text-shadow: 0 0 20px rgba(201,168,76,0.25);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 45px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 45px;
  animation: fadeInUp 1s ease 0.5s both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content:'';
  position:absolute; top:0; left:-100%;
  width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left:100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.5);
}

.btn-magnetic {
  will-change: transform;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(201,168,76,0.05);
}

/* ═══════════════════════ SECTION COMMONS ═══════════════════════ */
section {
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title em,
.service-card h3,
.location-card h3,
.nav-logo-main {
  transition: text-shadow 0.35s ease, filter 0.35s ease;
}

.section-title:hover em,
.service-card:hover h3,
.location-card:hover h3 {
  text-shadow:
    -1px 0 rgba(120, 180, 255, 0.45),
    1px 0 rgba(255, 120, 170, 0.5),
    0 0 18px rgba(201,168,76,0.4);
  filter: saturate(1.2);
}

.section-title .word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) rotateX(55deg);
  filter: blur(4px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, filter 0.55s ease;
}

.section-title .word-reveal.word-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}

.section-sub {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 25px 0;
}
.text-center .divider { margin: 25px auto; }

/* ═══════════════════════ GLASS CARD ═══════════════════════ */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.glass-card::before {
  content:'';
  position:absolute; top:0; left:0;
  width:100%; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:0;
  transition: opacity 0.4s;
}
.glass-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.1);
}
.glass-card:hover::before { opacity:1; }

.glass-card::after {
  content: '';
  position: absolute;
  top: -130%;
  left: -40%;
  width: 35%;
  height: 260%;
  transform: rotate(15deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.glass-card:hover::after {
  left: 125%;
}

.glass-card.tilt-card {
  will-change: transform;
}

/* ═══════════════════════ SERVICES GRID ═══════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.service-card {
  padding: 40px 35px;
  cursor: pointer;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(201,168,76,0.4));
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.2) rotate(5deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.card-link {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.card-link:hover { gap: 14px; }

/* ═══════════════════════ LOCATIONS ═══════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 60px;
}

.location-card {
  padding: 30px 25px;
  text-align: center;
  cursor: pointer;
}

.location-card .loc-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════ WHY US ═══════════════════════ */
.why-us {
  background: var(--black-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-visual {
  position: relative;
  height: 500px;
}

.why-3d-cube {
  position: absolute;
  width: 250px; height: 250px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: rotateCube 15s linear infinite;
}

@keyframes rotateCube {
  from { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg); }
  to { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
}

.cube-face {
  position: absolute;
  width: 250px; height: 250px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  backdrop-filter: blur(5px);
}
.cube-face.front  { transform: translateZ(125px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(125px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(125px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(125px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(125px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(125px); }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-point-text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.why-point-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  padding: 40px 35px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.author-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════ WHATSAPP ═══════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  background: #25D366;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
  animation: pulsate 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

@keyframes pulsate {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}

/* ═══════════════════════ CALL BAR ═══════════════════════ */
.call-bar {
  background: linear-gradient(90deg, var(--black-2), var(--warm), var(--black-2));
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.call-bar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

.call-bar .call-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  transition: color 0.3s;
}
.call-bar .call-number:hover { color: var(--gold-light); }

/* ═══════════════════════ INNER PAGE HERO ═══════════════════════ */
.inner-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.inner-hero::after {
  content:'';
  position:absolute; bottom:0; left:0;
  width:100%; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
}

.inner-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
}

.inner-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.inner-hero h2 em {
  font-style: italic;
  color: var(--gold);
}

.inner-hero p.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.breadcrumb a { color: var(--gold); text-decoration:none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ═══════════════════════ CONTENT SECTIONS ═══════════════════════ */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}

.content-section h2 em { color: var(--gold); font-style: italic; }

.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 40px 0 15px;
  color: var(--gold);
}

.content-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 0.95rem;
}

.content-section ul {
  list-style: none;
  margin: 20px 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.content-section ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ═══════════════════════ MENU HIGHLIGHTS ═══════════════════════ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.menu-category {
  padding: 30px;
}

.menu-category h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-category ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.menu-category ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.menu-category ul li::before { content: '→'; color: var(--gold); }

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq-section {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 25px 0;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }

.faq-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 15px;
}

/* ═══════════════════════ CTA BANNER ═══════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--warm), rgba(201,168,76,0.15), var(--warm));
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 35px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
  background: var(--black-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand .nav-logo-main {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content:'→'; font-size:0.7rem; color:var(--gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
@keyframes fadeInDown {
  from { opacity:0; transform: translateY(-20px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}

.reveal {
  opacity:0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible {
  opacity:1;
  transform: translateY(0);
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 4000;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 14px rgba(201,168,76,0.55);
}

@keyframes logoShine {
  to { background-position: 220% center; }
}

@keyframes heroPulse {
  0%,100% { transform: translate(-50%, -50%) scale(0.94); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

@keyframes ambientShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(1.5%, -1%); }
}

@keyframes noiseDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-100px, 80px, 0); }
}

@keyframes sectionMorph {
  0% { opacity: 0; clip-path: circle(0% at 50% 50%); }
  35% { opacity: 0.95; clip-path: circle(85% at 50% 50%); }
  100% { opacity: 0; clip-path: circle(125% at 50% 50%); }
}

@keyframes trailFade {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, -18px))) scale(0.2);
  }
}

/* ═══════════════════════ GOLD LINE SEPARATOR ═══════════════════════ */
.gold-separator {
  text-align: center;
  color: var(--gold);
  letter-spacing: 10px;
  font-size: 0.8rem;
  margin: 40px 0;
  opacity: 0.5;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display:none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  section { padding: 70px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 25px; }
  .dish { font-size: 2rem; }
  .hero-3d-ring { display:none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .content-section { padding: 60px 20px; }
  .inner-hero { padding: 120px 20px 60px; }
  #cursor-trail { display: none; }
  .call-bar { padding: 20px; }
  .cinematic-vignette { display: none; }
  #fx-spotlight { display: none; }
  #insane-toggle {
    right: 14px;
    bottom: 84px;
    padding: 9px 13px;
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items:center; }
}

/* ═══════════════════════ SCROLL BAR ═══════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* Loading screen */
#loader {
  position: fixed; inset:0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity:0; visibility:hidden; }

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:0.5; }
  50% { opacity:1; }
}

.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.loader-fill {
  height:100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  animation: loadFill 2s ease forwards;
}
@keyframes loadFill {
  to { width: 100%; }
}
