/* ============================================================
   Vistara · Cocina India Moderna
   Premium dark theme, gold glow, smoke & spice particles.
   ============================================================ */

/* ===== 1. RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

:root {
  /* Color */
  --carbon: #0b0604;
  --carbon-2: #15090a;
  --wine: #3a0d12;
  --wine-2: #2a0a0e;
  --brown: #2a1a0f;
  --cream: #f5e7c8;
  --cream-soft: #e9d9b6;
  --saffron: #f6c453;
  --saffron-2: #e7a93b;
  --turmeric: #d9881f;
  --terracotta: #c25a3a;
  --chili: #c43029;
  --gold: #e7b658;
  --gold-2: #b88534;
  --rose: #b54a59;

  /* Glass */
  --glass: rgba(255, 220, 170, 0.06);
  --glass-strong: rgba(255, 220, 170, 0.10);
  --glass-border: rgba(231, 182, 88, 0.20);

  /* Font */
  --f-serif: "Cormorant Garamond", "Times New Roman", serif;
  --f-display: "Cinzel", "Cormorant Garamond", serif;
  --f-sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Sizing */
  --container: 1280px;
  --header-h: 84px;
  --r: 18px;
  --r-lg: 26px;

  /* Easings */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.6, .05, .35, 1);
}

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(ellipse at top, #1a0a0a 0%, var(--carbon) 50%, #060303 100%);
  color: var(--cream);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

/* Permite cursor normal en móvil */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-glow { display: none !important; }
}

/* ===== 2. GLOBAL TEXTURES & EFFECTS ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(rgba(231, 182, 88, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(196, 48, 41, 0.03) 1px, transparent 1px);
  background-size: 36px 36px, 80px 80px;
  background-position: 0 0, 20px 20px;
  opacity: 0.7;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(231, 182, 88, 0.10), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(196, 48, 41, 0.10), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(58, 13, 18, 0.30), transparent 60%);
}

/* ===== 3. CURSOR ===== */
.cursor, .cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}
.cursor-glow {
  width: 44px; height: 44px;
  border: 1px solid rgba(231, 182, 88, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 182, 88, 0.18), transparent 70%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s;
}
.cursor-glow.is-hover {
  width: 72px; height: 72px;
  background: radial-gradient(circle, rgba(231, 182, 88, 0.30), transparent 70%);
}

/* ===== 4. SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1000;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--chili), var(--turmeric), var(--saffron), var(--cream));
  box-shadow: 0 0 14px var(--saffron);
}

/* ===== 5. SMOKE ===== */
.smoke-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.smoke {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: smokeFloat 24s ease-in-out infinite;
}
.smoke--a { top: -10%; left: -10%; background: radial-gradient(circle, var(--saffron), transparent 60%); }
.smoke--b { bottom: -15%; right: -10%; background: radial-gradient(circle, var(--chili), transparent 60%); animation-delay: -8s; animation-duration: 30s; }
.smoke--c { top: 40%; left: 50%; background: radial-gradient(circle, var(--rose), transparent 60%); animation-delay: -16s; }

@keyframes smokeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.15); }
  66% { transform: translate(-60px, 40px) scale(0.92); }
}

/* ===== 6. SPICE PARTICLES ===== */
.spice-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.spice-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 8px var(--saffron);
  opacity: 0.5;
  animation: spiceFloat linear infinite;
}
.spice-particles span:nth-child(3n) { background: var(--chili); box-shadow: 0 0 8px var(--chili); }
.spice-particles span:nth-child(5n) { background: var(--cream); box-shadow: 0 0 8px var(--cream); opacity: 0.3; }
.spice-particles span:nth-child(7n) { background: var(--turmeric); box-shadow: 0 0 8px var(--turmeric); }

@keyframes spiceFloat {
  0%   { transform: translateY(110vh) translateX(0) rotate(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) translateX(40px) rotate(360deg); opacity: 0; }
}

/* ===== 7. CANDLE LIGHTS ===== */
.candle-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.candle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 182, 88, 0.25), transparent 60%);
  filter: blur(40px);
  animation: candleFlicker 5s ease-in-out infinite;
}
.candle--1 { top: 10%; left: 5%; }
.candle--2 { top: 50%; right: 5%; animation-delay: -2s; background: radial-gradient(circle, rgba(196, 48, 41, 0.18), transparent 60%); }
.candle--3 { bottom: 5%; left: 35%; animation-delay: -3.5s; }

@keyframes candleFlicker {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  25% { opacity: 1; transform: scale(1.05); }
  50% { opacity: 0.6; transform: scale(0.95); }
  75% { opacity: 0.9; transform: scale(1.02); }
}

/* ===== 8. CONTAINER / LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 5;
}

.section {
  position: relative;
  padding: 140px 0;
  z-index: 5;
}

.section__head {
  text-align: center;
  margin-bottom: 80px;
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 18px;
  opacity: 0.9;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
  color: var(--cream);
}
.section__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--saffron) 0%, var(--gold) 40%, var(--terracotta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__sub {
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: rgba(245, 231, 200, 0.75);
  max-width: 640px;
  margin: 0 auto;
}
.section__cta {
  text-align: center;
  margin-top: 64px;
}

/* ===== 9. HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out), backdrop-filter .4s;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(11, 6, 4, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(231, 182, 88, 0.12);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.brand__mark { display: inline-flex; }
.brand__text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}
.brand--big .brand__text { font-size: 1.7rem; }

.nav__list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 231, 200, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transition: width .35s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--saffron); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform .35s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav { position: fixed; inset: 0; background: rgba(11, 6, 4, 0.96); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transition: opacity .35s; }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; height: 100%; justify-content: center; gap: 28px; padding: 60px; }
  .nav__link { font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
  .burger { display: flex; }
  .btn--reserve { display: none; }
}

/* ===== 10. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform .4s var(--ease-out), box-shadow .4s, color .3s, background .3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 50%, var(--saffron) 100%);
  color: var(--carbon);
  box-shadow: 0 8px 24px rgba(231, 182, 88, 0.25), 0 0 0 1px rgba(255, 220, 170, 0.4) inset;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(231, 182, 88, 0.55), 0 0 24px rgba(231, 182, 88, 0.5);
}
.btn--liquid::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 240, 200, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}
.btn--liquid:hover::before { opacity: 1; }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 231, 200, 0.25);
}
.btn--ghost:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(231, 182, 88, 0.05);
}
.btn--reserve { padding: 12px 24px; }
.btn--block { width: 100%; justify-content: center; padding: 18px; }

/* ===== 11. HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  z-index: 5;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg-img {
  position: absolute; inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1565557623262-b51c2513a641?w=1800&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.4) saturate(1.4);
  transform: scale(1.05);
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 6, 4, 0.7) 0%, rgba(11, 6, 4, 0.4) 40%, rgba(11, 6, 4, 0.95) 100%),
    linear-gradient(90deg, rgba(58, 13, 18, 0.4), transparent 60%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

.hero__content {
  max-width: 880px;
  position: relative;
  z-index: 10;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow span { color: var(--gold-2); }

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1.02;
  margin: 0 0 28px;
  letter-spacing: -1px;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.hero__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--saffron) 0%, var(--terracotta) 60%, var(--chili) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-style: italic;
  color: rgba(245, 231, 200, 0.85);
  max-width: 620px;
  margin: 0 0 44px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero__meta {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.5);
}
.hero__meta strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--saffron);
  letter-spacing: 0.08em;
}

.hero__dish {
  position: absolute;
  right: -180px;
  bottom: -100px;
  width: 720px;
  height: 720px;
  pointer-events: none;
  z-index: 6;
}
.hero__dish-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631452180519-c014fe946bc7?w=1200&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(231, 182, 88, 0.35),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
  filter: saturate(1.1);
}
.hero__dish-aura {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 182, 88, 0.25), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: auraPulse 6s ease-in-out infinite;
}
@keyframes auraPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__dish-steam {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 220px;
  pointer-events: none;
}
.hero__dish-steam span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 240, 220, 0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: steam 4s ease-in infinite;
}
.hero__dish-steam span:nth-child(1) { animation-delay: 0s; left: 30%; }
.hero__dish-steam span:nth-child(2) { animation-delay: 1.3s; left: 50%; }
.hero__dish-steam span:nth-child(3) { animation-delay: 2.6s; left: 70%; }
@keyframes steam {
  0%   { transform: translate(-50%, 0) scale(0.4); opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { transform: translate(-50%, -220px) scale(1.6); opacity: 0; }
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.4) translateY(20px); opacity: 1; }
}

/* Cortina de seda intro */
.silk-curtain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  pointer-events: none;
}
.silk-curtain span {
  flex: 1;
  background: linear-gradient(180deg, var(--carbon) 0%, var(--wine-2) 50%, var(--carbon) 100%);
  position: relative;
  overflow: hidden;
}
.silk-curtain span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(231, 182, 88, 0.1), transparent);
  animation: silkShine 2s ease-in-out;
}
@keyframes silkShine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ===== 12. FLOATING SPICES (ingredients) ===== */
.floating-spices {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.floating-spices--hero { z-index: 8; }
.spice {
  position: absolute;
  width: 32px; height: 32px;
  left: var(--x, 50%); top: var(--y, 50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 4px 12px rgba(231, 182, 88, 0.4));
  animation: spiceDrift 8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
.spice--cardamom { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><ellipse cx='20' cy='20' rx='8' ry='14' fill='%23b9d18a' stroke='%237a8f4f' stroke-width='1.5' transform='rotate(20 20 20)'/><path d='M20 8 L22 14 L18 14 Z' fill='%237a8f4f'/></svg>"); }
.spice--chili    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M10 8 Q22 6 26 22 Q28 34 18 32 Q12 28 12 16 Z' fill='%23c43029' stroke='%238a1f1c' stroke-width='1.2'/><path d='M10 8 Q12 6 16 8 Q14 12 12 12 Z' fill='%234d6b1f'/></svg>"); }
.spice--turmeric { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><circle cx='20' cy='20' r='12' fill='%23d9881f'/><circle cx='17' cy='17' r='2' fill='%23f6c453' opacity='.6'/><circle cx='23' cy='22' r='1.5' fill='%23b56a1a'/></svg>"); }
.spice--cinnamon { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><rect x='8' y='14' width='24' height='12' rx='3' fill='%238a4a1f' stroke='%23552c0d' stroke-width='1.5'/><path d='M10 18 L30 18 M10 22 L30 22' stroke='%23552c0d' stroke-width='1'/></svg>"); }
.spice--cilantro { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M20 6 Q14 10 14 16 Q14 22 20 20 Q26 22 26 16 Q26 10 20 6 Z M20 18 L20 34' fill='%234d8f3f' stroke='%232f5a25' stroke-width='1' stroke-linecap='round'/></svg>"); }
.spice--lime     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><circle cx='20' cy='20' r='13' fill='%23b9d18a' stroke='%237a8f4f' stroke-width='1.5'/><path d='M20 10 L20 30 M10 20 L30 20 M13 13 L27 27 M27 13 L13 27' stroke='%237a8f4f' stroke-width='1' opacity='.6'/></svg>"); }

@keyframes spiceDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -25px) rotate(45deg); }
  50% { transform: translate(-15px, -15px) rotate(-30deg); }
  75% { transform: translate(-25px, 15px) rotate(20deg); }
}

/* ===== 13. MARQUEE ===== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid rgba(231, 182, 88, 0.15);
  border-bottom: 1px solid rgba(231, 182, 88, 0.15);
  background: linear-gradient(90deg, rgba(58, 13, 18, 0.4), rgba(11, 6, 4, 0.4), rgba(58, 13, 18, 0.4));
  z-index: 5;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.4);
}
.marquee__track .dot { color: var(--saffron); }
.marquee__track .gold {
  background: linear-gradient(120deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== 14. MENU SECTION (tabs) ===== */
.menu-section { background: linear-gradient(180deg, transparent, rgba(58, 13, 18, 0.25), transparent); }
.tabs__nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.tab {
  padding: 24px 36px;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .4s var(--ease-out), background .3s, border-color .3s;
  min-width: 240px;
}
.tab__num {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--saffron);
}
.tab__name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.tab__sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245, 231, 200, 0.6);
}
.tab:hover { transform: translateY(-3px); border-color: rgba(231, 182, 88, 0.4); }
.tab.is-active {
  background: linear-gradient(120deg, rgba(231, 182, 88, 0.15), rgba(196, 48, 41, 0.1));
  border-color: var(--saffron);
  box-shadow: 0 10px 30px rgba(231, 182, 88, 0.15);
}
.tab.is-active .tab__name { color: var(--saffron); }

.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Dish cards */
.dish-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(42, 26, 15, 0.6), rgba(11, 6, 4, 0.8));
  border: 1px solid rgba(231, 182, 88, 0.12);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.dish-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--saffron), transparent 40%, transparent 60%, var(--chili));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.dish-card:hover { border-color: rgba(231, 182, 88, 0.4); box-shadow: 0 30px 80px -20px rgba(196, 48, 41, 0.3), 0 0 40px rgba(231, 182, 88, 0.2); }
.dish-card:hover .dish-card__glow { opacity: 1; }
.dish-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out);
}
.dish-card:hover .dish-card__img { transform: scale(1.06); }
.dish-card__body { padding: 28px; }
.dish-card__body h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: var(--cream);
}
.dish-card__body p {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: rgba(245, 231, 200, 0.7);
  margin: 0 0 16px;
  line-height: 1.55;
}
.dish-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dish-card__tags li {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(231, 182, 88, 0.08);
  color: var(--saffron);
  border: 1px solid rgba(231, 182, 88, 0.2);
}

/* ===== 15. COCTELERÍA ===== */
.cocteleria {
  position: relative;
  overflow: hidden;
}
.cocteleria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cocteleria__text p { font-family: var(--f-serif); font-size: 1.2rem; color: rgba(245, 231, 200, 0.8); }
.cocteleria__list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cocteleria__list li {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: var(--cream);
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(231, 182, 88, 0.12);
}
.cocteleria__list span {
  font-family: var(--f-display);
  font-size: 0.85rem;
  color: var(--saffron);
  letter-spacing: 0.3em;
}

.cocteleria__visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cocteleria__glass {
  position: relative;
  width: 240px;
  height: 380px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, transparent 0%, transparent 30%, rgba(255, 220, 170, 0.05) 100%);
  border: 1.5px solid rgba(255, 240, 200, 0.25);
  border-radius: 18px 18px 60% 60% / 18px 18px 40% 40%;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 40px rgba(231, 182, 88, 0.1),
    0 0 60px rgba(231, 182, 88, 0.2);
  overflow: hidden;
}
.cocteleria__liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(231, 182, 88, 0.6), rgba(196, 48, 41, 0.7) 50%, rgba(58, 13, 18, 0.9));
  border-radius: 0 0 60% 60% / 0 0 40% 40%;
  filter: blur(0.5px);
}
.cocteleria__shine {
  position: absolute;
  top: 10%; left: 10%;
  width: 12px; height: 70%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  border-radius: 50%;
  filter: blur(2px);
}
.cocteleria__ice {
  position: absolute;
  top: 30%; right: 25%;
  width: 30px; height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(15deg);
}
.cocteleria__smoke {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(255, 240, 220, 0.4), transparent 70%);
  filter: blur(20px);
  animation: smokeRise 5s ease-in-out infinite;
}
@keyframes smokeRise {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(-40px) scale(1.3); opacity: 0.7; }
}

.floating-bit {
  position: absolute;
  width: 40px; height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  animation: floatBit 6s ease-in-out infinite;
}
.floating-bit--lime  { top: 20%; right: 12%; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><circle cx='20' cy='20' r='13' fill='%23b9d18a' stroke='%237a8f4f' stroke-width='1.5'/><path d='M20 10 L20 30 M10 20 L30 20 M13 13 L27 27 M27 13 L13 27' stroke='%237a8f4f' stroke-width='1' opacity='.6'/></svg>"); }
.floating-bit--star  { top: 70%; left: 18%; animation-delay: -2s; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M20 5 L24 16 L36 16 L26 24 L30 36 L20 28 L10 36 L14 24 L4 16 L16 16 Z' fill='%23f6c453' stroke='%23b88534' stroke-width='1'/></svg>"); }
.floating-bit--spice { top: 35%; left: 8%; animation-delay: -4s; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M10 8 Q22 6 26 22 Q28 34 18 32 Q12 28 12 16 Z' fill='%23c43029' stroke='%238a1f1c' stroke-width='1.2'/></svg>"); }
@keyframes floatBit {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* ===== 16. FEATURED DISHES ===== */
.featured__list {
  display: flex;
  flex-direction: column;
  gap: 140px;
}
.featured-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-item--reverse .featured-item__visual { order: 2; }

.featured-item__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-item__aura {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 182, 88, 0.4), rgba(196, 48, 41, 0.2) 60%, transparent 80%);
  filter: blur(50px);
  animation: auraPulse 6s ease-in-out infinite;
  z-index: 1;
}
.featured-item__img {
  position: relative;
  width: 80%; height: 80%;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    inset 0 0 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(231, 182, 88, 0.3);
  transition: transform .8s var(--ease-out);
  z-index: 2;
  will-change: transform;
}
.featured-item__img:hover { transform: scale(1.04); }

.featured-item__steam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 180px;
  z-index: 3;
  pointer-events: none;
}
.featured-item__steam span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 240, 220, 0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: steam 4s ease-in infinite;
}
.featured-item__steam span:nth-child(1) { left: 35%; }
.featured-item__steam span:nth-child(2) { left: 50%; animation-delay: 1.3s; }
.featured-item__steam span:nth-child(3) { left: 65%; animation-delay: 2.6s; }

.featured-item__spices {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 4;
  animation: spinSlow 30s linear infinite;
}
.featured-item__spices .spice {
  width: 28px; height: 28px;
  animation: floatBit 7s ease-in-out infinite;
}
.featured-item__spices .spice:nth-child(1) { top: 10%; left: 8%; }
.featured-item__spices .spice:nth-child(2) { top: 14%; right: 5%; animation-delay: -1s; }
.featured-item__spices .spice:nth-child(3) { bottom: 12%; right: 10%; animation-delay: -2s; }
.featured-item__spices .spice:nth-child(4) { bottom: 8%; left: 12%; animation-delay: -3s; }
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.featured-item__text {
  position: relative;
}
.featured-item__num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--saffron);
  display: block;
  margin-bottom: 18px;
}
.featured-item__text h3 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--cream);
}
.featured-item__text h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  background: linear-gradient(120deg, var(--saffron), var(--terracotta), var(--chili));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.featured-item__text p {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: rgba(245, 231, 200, 0.8);
  margin: 0 0 28px;
  line-height: 1.55;
}
.featured-item__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.featured-item__chips li {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(231, 182, 88, 0.08);
  color: var(--saffron);
  border: 1px solid rgba(231, 182, 88, 0.2);
}

/* ===== 17. EXPERIENCIA (pinned) ===== */
.experience {
  position: relative;
  z-index: 5;
  height: 600vh;
}
.experience__pin {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.experience__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 48, 41, 0.35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(231, 182, 88, 0.3), transparent 50%),
    linear-gradient(135deg, var(--carbon), var(--wine-2) 50%, var(--carbon));
  transition: background 0.8s var(--ease-out);
}
.experience__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}
.experience__intro p {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: rgba(245, 231, 200, 0.8);
  margin-top: 24px;
}
.experience__stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  padding: 60px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(231, 182, 88, 0.08), rgba(196, 48, 41, 0.05));
  border: 1px solid rgba(231, 182, 88, 0.15);
  backdrop-filter: blur(10px);
}
.exp-layer.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.exp-layer__num {
  font-family: var(--f-display);
  font-size: 6rem;
  font-weight: 500;
  background: linear-gradient(120deg, var(--saffron), var(--gold), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.exp-layer h3 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: -0.5px;
}
.exp-layer p {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(245, 231, 200, 0.85);
  margin: 0;
  max-width: 480px;
}
.experience__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.experience__dots li {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(231, 182, 88, 0.25);
  transition: background .3s, transform .3s;
}
.experience__dots li.is-active {
  background: var(--saffron);
  transform: scale(1.4);
  box-shadow: 0 0 12px var(--saffron);
}

/* ===== 18. REVIEWS ===== */
.reviews { overflow: hidden; }
.reviews__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.reviews__row {
  display: flex;
  gap: 28px;
  padding: 20px 32px;
}
.review {
  flex: 0 0 380px;
  padding: 32px;
  border-radius: var(--r-lg);
  background: rgba(255, 220, 170, 0.04);
  border: 1px solid rgba(231, 182, 88, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .5s var(--ease-out), border-color .3s, box-shadow .4s;
}
.review:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(231, 182, 88, 0.45);
  box-shadow: 0 25px 60px -20px rgba(196, 48, 41, 0.3);
}
.review__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--carbon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.review__top strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.stars {
  display: block;
  font-size: 13px;
  color: var(--saffron);
  letter-spacing: 0.15em;
}
.review p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 231, 200, 0.8);
  margin: 0;
  line-height: 1.55;
}

/* ===== 19. RESERVAS ===== */
.reservas__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.reservas__highlights {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}
.reservas__highlights li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px;
  border-left: 2px solid var(--saffron);
  background: rgba(231, 182, 88, 0.05);
  border-radius: 0 var(--r) var(--r) 0;
}
.reservas__highlights strong {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.reservas__highlights span { font-family: var(--f-serif); font-style: italic; color: rgba(245, 231, 200, 0.6); font-size: 0.98rem; }

.form-glass {
  padding: 44px;
  border-radius: var(--r-lg);
  background: rgba(255, 220, 170, 0.04);
  border: 1px solid rgba(231, 182, 88, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px -30px rgba(196, 48, 41, 0.3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-glass label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-glass label span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.5);
}
.form-glass input, .form-glass textarea {
  background: rgba(11, 6, 4, 0.4);
  border: 1px solid rgba(231, 182, 88, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 14px;
  outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
  color-scheme: dark;
}
.form-glass input::placeholder, .form-glass textarea::placeholder { color: rgba(245, 231, 200, 0.35); }
.form-glass input:focus, .form-glass textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(231, 182, 88, 0.15), 0 0 24px rgba(231, 182, 88, 0.2);
  background: rgba(11, 6, 4, 0.6);
}
.form-textarea { margin-bottom: 22px; }
.form-textarea textarea { resize: vertical; min-height: 90px; }
.form-alert {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 22px;
  border: 1px solid;
}
.form-alert--ok    { background: rgba(122, 200, 88, 0.1); border-color: rgba(122, 200, 88, 0.4); color: #b9d18a; }
.form-alert--error { background: rgba(196, 48, 41, 0.12); border-color: rgba(196, 48, 41, 0.4); color: #f4a8a4; }

/* ===== 20. INFO ===== */
.info__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.info__address {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(245, 231, 200, 0.85);
  margin: 0 0 24px;
}
.info__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.info__contact a {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--saffron);
  letter-spacing: 0.04em;
  transition: color .3s;
}
.info__contact a:hover { color: var(--cream); }
.info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info__h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--saffron);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(231, 182, 88, 0.1);
  font-family: var(--f-serif);
  font-size: 1.05rem;
}
.schedule li span { color: var(--cream); }
.schedule li em { font-style: normal; color: rgba(245, 231, 200, 0.7); font-family: var(--f-sans); font-size: 0.9rem; letter-spacing: 0.04em; }
.schedule li em.closed { color: var(--chili); font-style: italic; }

.map {
  position: relative;
  height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(231, 182, 88, 0.2);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 13, 18, 0.15), transparent 50%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.map iframe { filter: grayscale(0.5) saturate(0.8) brightness(0.85); }

/* ===== 21. FOOTER ===== */
.site-footer {
  position: relative;
  margin-top: 120px;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(231, 182, 88, 0.15);
  background: linear-gradient(180deg, transparent, rgba(58, 13, 18, 0.4));
  overflow: hidden;
  z-index: 5;
}
.footer__decoration {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.footer__glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(231, 182, 88, 0.18), transparent 70%);
  filter: blur(40px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.footer__tag {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--saffron);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin: 8px 0 16px;
}
.footer__desc {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: rgba(245, 231, 200, 0.65);
  margin: 0 0 24px;
  max-width: 360px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(231, 182, 88, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.social-link:hover {
  background: var(--saffron);
  color: var(--carbon);
  transform: translateY(-3px);
}
.footer__title {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer__col ul li { margin-bottom: 10px; font-size: 0.95rem; color: rgba(245, 231, 200, 0.65); }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--saffron); }
.footer__col address { font-style: normal; font-family: var(--f-serif); color: rgba(245, 231, 200, 0.7); line-height: 1.7; margin-bottom: 16px; font-size: 0.98rem; }
.footer__col p a { color: var(--saffron); display: block; font-family: var(--f-display); letter-spacing: 0.05em; font-size: 0.95rem; margin-top: 4px; }
.footer__bottom {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 30px 32px 0;
  border-top: 1px solid rgba(231, 182, 88, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(245, 231, 200, 0.5);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.footer__hand span { color: var(--saffron); margin: 0 6px; }

/* ===== 22. REVEAL UTILITIES ===== */
.reveal-fade { opacity: 0; transform: translateY(30px); }
.reveal-words .word { display: inline-block; overflow: hidden; }
.reveal-words .word > span { display: inline-block; transform: translateY(110%); }

/* ===== 23. RESPONSIVE ===== */
@media (max-width: 1100px) {
  .section { padding: 100px 0; }
  .featured__list { gap: 90px; }
  .featured-item, .cocteleria__grid, .reservas__grid, .info__grid, .experience__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .featured-item--reverse .featured-item__visual { order: 0; }
  .dishes { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__dish { width: 500px; height: 500px; right: -150px; bottom: -150px; opacity: 0.6; }
}

@media (max-width: 720px) {
  .container, .site-header__inner { padding: 0 22px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 50px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__meta { gap: 30px; }
  .hero__dish { width: 360px; height: 360px; right: -120px; bottom: -180px; opacity: 0.35; }
  .dishes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-glass { padding: 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .exp-layer { padding: 32px; }
  .exp-layer__num { font-size: 4rem; }
  .review { flex: 0 0 300px; padding: 24px; }
  .tabs__nav { flex-direction: column; }
  .tab { min-width: 100%; }
  .experience { height: 700vh; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .section__title { font-size: 2rem; }
}

/* ===== 24. ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================================
   25. PRELOADER · cortina cinematográfica
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preloader__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, #2a0a14 0%, #0b0604 50%, #060303 100%);
}
.preloader__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(231, 182, 88, 0.25), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(196, 48, 41, 0.2), transparent 40%);
  animation: candleFlicker 4s ease-in-out infinite;
}
.preloader__center {
  position: relative;
  text-align: center;
  z-index: 2;
}
.preloader__mandala {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: spinSlow 12s linear infinite;
}
.preloader__brand {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3em;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.preloader__v {
  background: linear-gradient(120deg, var(--saffron), var(--chili));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preloader__bar {
  width: 220px;
  height: 2px;
  background: rgba(231, 182, 88, 0.15);
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 2px;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--chili), var(--saffron), var(--cream));
  box-shadow: 0 0 12px var(--saffron);
}
.preloader__caption {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.5);
}
.preloader.is-gone {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s var(--ease-out);
}

/* ============================================================
   26. MANDALA BG · gira lento por detrás
   ============================================================ */
.bg-mandala {
  position: fixed;
  top: -10%;
  right: -25%;
  width: 80vmax;
  height: 80vmax;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  animation: spinSlow 90s linear infinite;
  mix-blend-mode: screen;
}

/* ============================================================
   27. GRAIN · grano de película animado
   ============================================================ */
.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 .85  0 0 0 0 .55  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 0.8s steps(4) infinite;
  mix-blend-mode: overlay;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-5%,-3%); }
  50%  { transform: translate(3%,-5%); }
  75%  { transform: translate(-3%,4%); }
  100% { transform: translate(0,0); }
}

/* ============================================================
   28. EMBERS · canvas partículas
   ============================================================ */
.embers {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ============================================================
   29. LIGHT LEAK · destello dorado lateral
   ============================================================ */
.light-leak {
  position: fixed;
  top: 0; right: -10%;
  width: 60%;
  height: 100vh;
  background:
    radial-gradient(ellipse at right top, rgba(246, 196, 83, 0.18), transparent 60%),
    radial-gradient(ellipse at right bottom, rgba(196, 48, 41, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  animation: leakBreath 8s ease-in-out infinite;
}
@keyframes leakBreath {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-4%); }
}

/* ============================================================
   30. CURSOR TRAIL
   ============================================================ */
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0;
}
.cursor-glow.is-magnetic {
  width: 100px; height: 100px;
  border-color: var(--saffron);
  background: radial-gradient(circle, rgba(231,182,88,.45), transparent 70%);
  mix-blend-mode: screen;
}

/* ============================================================
   31. AUDIO TOGGLE
   ============================================================ */
.audio-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: rgba(11, 6, 4, 0.6);
  border: 1px solid rgba(231, 182, 88, 0.3);
  backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: border-color .3s, transform .3s;
}
.audio-toggle:hover { border-color: var(--saffron); transform: translateY(-2px); }
.audio-toggle__icon {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.audio-toggle__icon span {
  display: block;
  width: 2px;
  background: var(--saffron);
  border-radius: 1px;
  height: 8px;
  animation: bars 1.2s ease-in-out infinite;
  animation-play-state: paused;
}
.audio-toggle__icon span:nth-child(2) { animation-delay: .15s; height: 14px; }
.audio-toggle__icon span:nth-child(3) { animation-delay: .3s;  height: 10px; }
.audio-toggle__icon span:nth-child(4) { animation-delay: .45s; height: 16px; }
.audio-toggle.is-on .audio-toggle__icon span { animation-play-state: running; }
@keyframes bars {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.5); }
}

/* ============================================================
   32. CHEF SECTION
   ============================================================ */
.chef {
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(58, 13, 18, 0.35), transparent);
}
.chef__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.chef__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
}
.chef__frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(231, 182, 88, 0.3);
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,0.8),
    inset 0 0 80px rgba(0,0,0,0.4);
}
.chef__img {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  will-change: transform;
}
.chef__frame-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(11,6,4,0.8) 100%),
    linear-gradient(45deg, rgba(196,48,41,0.2), transparent 60%);
  pointer-events: none;
}
.chef__signature {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 3;
  pointer-events: none;
}
.chef__stamp {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 5;
  animation: spinSlow 20s linear infinite;
  filter: drop-shadow(0 0 20px rgba(231, 182, 88, 0.4));
}

.chef__text { padding-left: 20px; }
.chef__lead {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: rgba(245, 231, 200, 0.85);
  margin: 0 0 28px;
  line-height: 1.55;
}
.chef__quote {
  margin: 0 0 32px;
  padding: 24px 28px;
  border-left: 2px solid var(--saffron);
  background: rgba(231, 182, 88, 0.06);
  border-radius: 0 var(--r) var(--r) 0;
  position: relative;
}
.chef__quote::before {
  content: "“";
  position: absolute;
  top: -30px; left: 20px;
  font-family: var(--f-display);
  font-size: 5rem;
  color: rgba(231, 182, 88, 0.4);
  line-height: 1;
}
.chef__quote p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.4;
}
.chef__points {
  display: grid;
  gap: 14px;
}
.chef__points li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(231, 182, 88, 0.1);
}
.chef__points strong {
  font-family: var(--f-display);
  color: var(--saffron);
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}
.chef__points span {
  font-family: var(--f-serif);
  font-style: italic;
  color: rgba(245, 231, 200, 0.6);
  text-align: right;
}

/* ============================================================
   33. STATS COUNTER
   ============================================================ */
.stats {
  padding: 80px 0;
  position: relative;
  z-index: 5;
  background:
    linear-gradient(90deg, transparent, rgba(231, 182, 88, 0.04), transparent);
  border-top: 1px solid rgba(231, 182, 88, 0.1);
  border-bottom: 1px solid rgba(231, 182, 88, 0.1);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(231, 182, 88, 0.3), transparent);
}
.stats__num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  background: linear-gradient(120deg, var(--saffron), var(--gold), var(--terracotta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  display: inline-block;
}
.stats__sym {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--saffron);
  margin-top: -8px;
}
.stats__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.6);
  margin-top: 8px;
  max-width: 200px;
}

/* ============================================================
   34. FILOSOFÍA · HORIZONTAL SCROLL
   ============================================================ */
.philosophy {
  position: relative;
  height: 350vh;
  z-index: 5;
}
.philosophy__pin {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(58, 13, 18, 0.5), transparent 60%);
}
.philosophy__intro {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 380px;
  z-index: 5;
}
.philosophy__intro p {
  font-family: var(--f-display);
  letter-spacing: 0.3em;
  color: var(--saffron);
  margin-top: 24px;
  font-size: 0.9rem;
}
.philosophy__track {
  display: flex;
  gap: 40px;
  padding-left: 38%;
  padding-right: 8%;
  will-change: transform;
}
.philo-card {
  flex: 0 0 360px;
  padding: 50px 40px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(231, 182, 88, 0.08), rgba(196, 48, 41, 0.05)),
    rgba(11, 6, 4, 0.4);
  border: 1px solid rgba(231, 182, 88, 0.18);
  backdrop-filter: blur(10px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: border-color .4s;
}
.philo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(231, 182, 88, 0.18), transparent 60%);
  opacity: 0.5;
}
.philo-card:hover { border-color: var(--saffron); }
.philo-card__num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--saffron);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.philo-card h3 {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  background: linear-gradient(120deg, var(--cream), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
}
.philo-card p {
  font-family: var(--f-serif);
  font-style: italic;
  color: rgba(245, 231, 200, 0.75);
  margin: 0;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

/* ============================================================
   35. GALERÍA · grid asimétrico
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: rgba(11, 6, 4, 0.4);
  border: 1px solid rgba(231, 182, 88, 0.15);
  display: block;
  isolation: isolate;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out), filter .6s;
  filter: saturate(0.9) brightness(0.85);
}
.gallery__item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,6,4,0.85));
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(231,182,88,0.25), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
  mix-blend-mode: overlay;
}
.gallery__cap {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s, transform .5s;
  z-index: 3;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.1);
  filter: saturate(1.2) brightness(1);
}
.gallery__item:hover::before,
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* ============================================================
   36. PRESS · marquee inverso, sutil
   ============================================================ */
.press {
  position: relative;
  padding: 60px 0;
  z-index: 5;
  text-align: center;
  border-top: 1px solid rgba(231, 182, 88, 0.08);
  border-bottom: 1px solid rgba(231, 182, 88, 0.08);
  overflow: hidden;
}
.press__label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 231, 200, 0.45);
  margin-bottom: 20px;
}
.press__track {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 50s linear infinite reverse;
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: rgba(245, 231, 200, 0.5);
}
.press__item {
  transition: color .3s;
  font-style: italic;
}
.press__item:hover { color: var(--saffron); }
.press__track .dot { color: var(--saffron); font-size: 0.9rem; }

/* ============================================================
   37. SCROLLBAR personalizada
   ============================================================ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--carbon); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-2), var(--saffron), var(--chili));
  border-radius: 10px;
  border: 2px solid var(--carbon);
}
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }
* { scrollbar-color: var(--saffron) var(--carbon); scrollbar-width: thin; }

/* ============================================================
   38. RESPONSIVE adicional
   ============================================================ */
@media (max-width: 1100px) {
  .chef__grid { grid-template-columns: 1fr; gap: 60px; }
  .chef__portrait { max-width: 480px; margin: 0 auto; aspect-ratio: 3/4; }
  .chef__text { padding-left: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .stats__item:nth-child(2)::after { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }

  /* Filosofía: en móvil → scroll horizontal nativo, sin pin */
  .philosophy { height: auto; padding: 80px 0; }
  .philosophy__pin { height: auto; display: block; }
  .philosophy__intro { position: relative; top: auto; left: auto; transform: none; padding: 0 30px 30px; max-width: 100%; }
  .philosophy__track {
    padding: 20px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .philo-card { scroll-snap-align: start; }
  .bg-mandala { opacity: 0.3; }
}

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .philo-card { flex: 0 0 280px; padding: 32px 26px; min-height: 280px; }
  .philo-card h3 { font-size: 1.9rem; }
  .chef__quote p { font-size: 1.1rem; }
  .chef__stamp { width: 80px; height: 80px; right: -10px; bottom: -10px; }
  .chef__stamp svg { width: 80px; height: 80px; }
  .audio-toggle { bottom: 16px; left: 16px; padding: 8px 14px 8px 8px; }
  .audio-toggle__label { display: none; }
}

