/* ═══════════════════════════ DESIGN SYSTEM ═══════════════════════════ */
:root {
  --ink: #0B0A08;            /* fondo base */
  --ink-2: #11100D;          /* secciones alternas */
  --ink-3: #17150F;          /* tarjetas / superficies */
  --ink-4: #1E1B14;
  --gold: #B08D57;           /* champagne gold */
  --gold-soft: #CBA87B;
  --gold-dim: rgba(176,141,87,0.26);
  --white: #F7F4EE;
  --muted: #9B9588;
  --line: rgba(255,255,255,0.08);
  --line-gold: rgba(176,141,87,0.25);
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: clip;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
::selection { background: var(--gold); color: #000; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); }

/* ── Scrollbar premium ── */
html { scrollbar-width: thin; scrollbar-color: var(--gold) var(--ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track {
  background: var(--ink);
  border-left: 1px solid var(--line);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 45%, #7d5f35);
  border-radius: 10px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}
::-webkit-scrollbar-corner { background: var(--ink); }

/* ── Cursor personalizado ── */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s, opacity .3s;
  mix-blend-mode: difference;
}
.cursor-ring.hovered { width: 60px; height: 60px; background: rgba(176,141,87,0.08); }
@media (hover: none) { .cursor-ring { display: none; } }

/* ── Textura de grano ── */
.grain::before {
  content: "";
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  30% { transform: translate(3%,-15%); }
  50% { transform: translate(12%,9%); }
  70% { transform: translate(9%,4%); }
  90% { transform: translate(-1%,7%); }
}

/* ── Barra de progreso de scroll ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 2000;
}

/* ── Utilidades ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: .7rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.section { padding: clamp(80px, 12vh, 140px) 0; position: relative; scroll-margin-top: 80px; }
.section-alt { background: var(--ink-2); }

/* ── Número fantasma editorial ── */
.sec-ghost {
  position: absolute;
  top: 34px; right: clamp(16px, 4vw, 60px);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,141,87,.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Editorial section header ── */
.sec-head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: end; margin-bottom: clamp(48px, 8vh, 88px); position: relative; z-index: 1; }
.sec-head .index { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .95rem; letter-spacing: .1em; }
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.sec-head h2 em { font-style: italic; color: var(--gold-soft); }
.sec-head .sec-copy { grid-column: 1 / -1; max-width: 520px; color: var(--muted); font-size: .96rem; justify-self: end; margin-top: -28px; }
.sec-head .sec-copy.right { grid-column: 2; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 34px;
  transition: padding .5s var(--ease), background .5s, backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 34px;
  background: rgba(11,10,8,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--line);
}
.logo {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: .32em; text-indent: .32em;
  display: flex; align-items: center; gap: 14px;
}
.logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulseDot 2.6s ease infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:.35;} }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted);
  transition: color .3s ease;
  display: flex; align-items: center; gap: 7px;
}
.nav-links a .n { color: var(--gold); font-family: var(--serif); font-style: italic; font-size: .78rem; }
.nav-links a::after { content: ""; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 18px; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 22px;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  transition: all .35s var(--ease);
  display: inline-flex; align-items: center; gap: 9px;
}
.nav-cta:hover { background: var(--gold); color: #000; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(176,141,87,0.28); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; z-index: 120; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  animation: heroZoom 26s var(--ease) infinite alternate;
  filter: saturate(.92) contrast(1.05);
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,10,8,.55) 0%, rgba(11,10,8,.25) 40%, rgba(11,10,8,.92) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(11,10,8,.4) 100%);
}
.hero-content { position: relative; z-index: 3; padding: 0 24px; max-width: 900px; margin-top: -40px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: .72rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 15vw, 11.5rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.02em;
  margin-top: 26px;
  opacity: 0; animation: fadeUp 1.1s var(--ease) .7s forwards;
}
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(247,244,238,.6);
  color: transparent;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin: 28px auto 0;
  font-size: clamp(.98rem, 1.6vw, 1.12rem);
  font-weight: 300; color: var(--muted);
  max-width: 520px;
  opacity: 0; animation: fadeUp 1.1s var(--ease) .9s forwards;
}
.hero-cta-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 42px; opacity: 0; animation: fadeUp 1.1s var(--ease) 1.1s forwards; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 36px;
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: #000; font-weight: 600; }
.btn-gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn-gold:hover::before { transform: translateX(120%); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(176,141,87,.4); }
.btn-line { border: 1px solid rgba(247,244,238,.35); color: var(--white); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); background: rgba(176,141,87,.06); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

/* ── Hero rotating badge ── */
.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 26%;
  width: 132px; height: 132px;
  z-index: 4;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 1.3s forwards;
}
@media (max-width: 900px) { .hero-badge { display: none; } }
.hero-badge svg {
  width: 100%; height: 100%;
  animation: spin 18s linear infinite;
}
.hero-badge text {
  font-size: 9.5px;
  letter-spacing: 2.2px;
  fill: var(--gold-soft);
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
}
.hero-badge-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-center i {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(11,10,8,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.15rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Hero bottom bar ── */
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-gold);
  background: rgba(11,10,8,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.4s forwards;
}
.hero-bar-item { padding: 18px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; text-align: left; }
.hero-bar-item:last-child { border-right: none; }
.hero-bar-item small { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.hero-bar-item span { font-size: .85rem; font-weight: 400; letter-spacing: .04em; }

/* ── Marquee ── */
.marquee { background: var(--gold); color: #000; overflow: hidden; padding: 16px 0; position: relative; z-index: 3; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: .78rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  padding-right: 28px; white-space: nowrap;
  display: flex; align-items: center; gap: 28px;
}
.marquee-track span i { font-size: .5rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-visual { position: relative; }
.about-visual .frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
}
.about-visual .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-visual:hover .frame img { transform: scale(1.06); }
.about-visual .frame::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.about-visual .corner { position: absolute; width: 34px; height: 34px; border-color: var(--gold); z-index: 2; }
.about-visual .c1 { top: -10px; left: -10px; border-top: 1px solid; border-left: 1px solid; }
.about-visual .c2 { bottom: -10px; right: -10px; border-bottom: 1px solid; border-right: 1px solid; }
.about-float {
  position: absolute; right: -26px; bottom: -30px;
  background: var(--ink-3); border: 1px solid var(--line-gold);
  padding: 22px 28px;
  z-index: 3;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.about-float .num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-float p { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.about-text h3 { font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 500; line-height: 1.12; margin: 22px 0 24px; }
.about-text h3 em { font-style: italic; color: var(--gold-soft); }
.about-text > p { color: var(--muted); margin-bottom: 16px; font-size: .96rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 38px; border-top: 1px solid var(--line); padding-top: 30px; }
.about-feature { display: flex; gap: 15px; align-items: flex-start; }
.about-feature .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--line-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  transition: all .4s var(--ease);
}
.about-feature:hover .ic { background: var(--gold); color: #000; transform: rotate(8deg) scale(1.05); }
.about-feature strong { display: block; font-weight: 500; font-size: .95rem; letter-spacing: .02em; }
.about-feature span { color: var(--muted); font-size: .84rem; }

/* ── Stats band ── */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(60px, 10vh, 110px); }
.stat-cell { background: var(--ink-2); padding: 34px 28px; text-align: center; transition: background .4s ease; }
.stat-cell:hover { background: var(--ink-3); }
.stat-cell .val { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-cell .lbl { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ── Gallery ── */
.gallery-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.gallery-count { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .95rem; letter-spacing: .12em; }
.gallery-wrap { position: relative; overflow: hidden; }
.gallery-track { display: flex; gap: 22px; transition: transform .9s var(--ease); }
.gallery-slide { flex: 0 0 calc(33.333% - 15px); position: relative; overflow: hidden; aspect-ratio: 3/4; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.9); }
.gallery-slide:hover img { transform: scale(1.08); filter: saturate(1.05); }
.gallery-slide .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 20px 18px;
  background: linear-gradient(transparent, rgba(11,10,8,.9));
  transform: translateY(8px);
  opacity: 0;
  transition: all .5s var(--ease);
}
.gallery-slide:hover .cap { transform: translateY(0); opacity: 1; }
.gallery-slide .cap span { font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.gallery-slide .cap small { display: block; color: var(--gold); font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; margin-top: 2px; }
.gallery-slide::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(247,244,238,.18); opacity: 0; transition: opacity .5s; pointer-events: none; }
.gallery-slide:hover::after { opacity: 1; }
.gallery-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.gallery-nav { display: flex; gap: 10px; }
.g-arrow {
  width: 52px; height: 52px;
  background: transparent;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  font-size: .9rem;
}
.g-arrow:hover { background: var(--gold); color: #000; }
.g-progress { flex: 1; margin: 0 30px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.g-progress-bar { position: absolute; inset: 0; background: var(--gold); transform-origin: left; transition: transform .9s var(--ease); }

/* ── Menu ── */
.menu-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(40px, 6vh, 64px); }
.menu-filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 11px 24px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; border-radius: 100px;
  transition: all .4s var(--ease);
  position: relative;
}
.menu-filter:hover { border-color: var(--gold-dim); color: var(--gold); }
.menu-filter.active { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 600; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(30px, 4vw, 48px); }
.menu-item { opacity: 0; transform: translateY(30px); animation: itemIn .7s var(--ease) forwards; }
@keyframes itemIn { to { opacity: 1; transform: translateY(0); } }
.menu-img { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--ink-4); transition: transform .4s var(--ease); }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; filter: saturate(.92); }
.menu-item:hover .menu-img img { transform: scale(1.1); filter: saturate(1.05); }
.menu-num {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: .9rem;
  background: rgba(11,10,8,.65); backdrop-filter: blur(6px);
  border: 1px solid var(--line-gold);
  padding: 4px 12px;
  letter-spacing: .1em;
}
.menu-tags { position: absolute; top: 14px; right: 14px; display: flex; gap: 6px; }
.tag {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; padding: 5px 11px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.tag.vegan { background: rgba(91,185,138,.85); color: #000; }
.tag.gf { background: rgba(185,138,91,.9); color: #000; }
.tag.origin { background: rgba(176,141,87,.9); color: #000; }
.menu-info { padding: 20px 6px 0; }
.menu-row { display: flex; align-items: baseline; gap: 12px; }
.menu-name { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; letter-spacing: .01em; white-space: nowrap; }
.menu-dots { flex: 1; border-bottom: 1px dotted rgba(247,244,238,.22); transform: translateY(-4px); }
.menu-price { color: var(--gold); font-family: var(--serif); font-size: 1.14rem; font-weight: 700; white-space: nowrap; }
.menu-desc { color: var(--muted); font-size: .86rem; margin-top: 9px; line-height: 1.55; }

/* ── Quote ── */
.quote-sec { position: relative; text-align: center; padding: clamp(110px, 18vh, 170px) 0; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat; opacity: .14; transform: scale(1.05); }
.quote-mark { position: relative; font-family: var(--serif); font-size: 7rem; line-height: .6; color: var(--gold); opacity: .5; }
.quote-sec blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  font-weight: 500; font-style: italic;
  max-width: 860px; margin: 0 auto;
  line-height: 1.35;
}
.quote-sec cite { display: block; margin-top: 30px; font-style: normal; color: var(--gold); letter-spacing: .32em; text-transform: uppercase; font-size: .7rem; }
.quote-line { width: 1px; height: 60px; background: var(--gold-dim); margin: 44px auto 0; }

/* ── Visit ── */
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.visit-card { background: var(--ink-2); padding: clamp(34px, 5vw, 52px) 34px; text-align: left; position: relative; transition: background .4s ease; }
.visit-card:hover { background: var(--ink-3); }
.visit-card .v-ic {
  width: 54px; height: 54px;
  border: 1px solid var(--line-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.15rem;
  margin-bottom: 24px;
  transition: all .4s var(--ease);
}
.visit-card:hover .v-ic { background: var(--gold); color: #000; transform: rotate(-8deg); }
.visit-card h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 16px; }
.visit-card p { color: var(--muted); font-size: .92rem; }
.visit-card a.hl { color: var(--gold-soft); transition: color .3s; }
.visit-card a.hl:hover { color: var(--white); }
.hours-table { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px dashed rgba(247,244,238,.14); }
.hours-row span:first-child { color: var(--muted); font-size: .86rem; }
.hours-row span:last-child { color: var(--white); font-weight: 400; letter-spacing: .03em; }
.hours-today { color: var(--gold) !important; }
.hours-row span:first-child.hours-today { color: var(--gold) !important; }

/* ── Footer ── */
footer { border-top: 1px solid var(--line-gold); padding: clamp(60px, 9vh, 90px) 0 36px; background: var(--ink-2); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 1.8rem; }
.footer-brand p { color: var(--muted); margin-top: 20px; font-size: .9rem; max-width: 320px; }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 46px; height: 46px;
  border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
  transition: all .4s var(--ease);
  border-radius: 50%;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #000; transform: translateY(-4px); box-shadow: 0 12px 30px rgba(176,141,87,.3); }
.footer-col h5 { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a { color: var(--muted); font-size: .9rem; transition: all .3s; display: inline-flex; gap: 8px; align-items: center; }
.footer-col ul a i { color: var(--gold); font-size: .72rem; opacity: 0; transition: all .3s; }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul a:hover i { opacity: 1; }
.qr-box { text-align: center; }
.qr-box img { width: 118px; height: 118px; margin: 0 auto 14px; border: 1px solid var(--line-gold); padding: 8px; background: var(--white); }
.qr-box p { color: var(--muted); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: .8rem; }
.footer-bottom .made { display: flex; align-items: center; gap: 8px; }
.footer-bottom .made b { color: var(--gold); font-weight: 500; letter-spacing: .08em; }

/* ── Back to top ── */
.to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 90;
  width: 50px; height: 50px;
  border: 1px solid var(--line-gold);
  background: rgba(11,10,8,.7); backdrop-filter: blur(8px);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(14px);
  pointer-events: none;
  transition: all .45s var(--ease);
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--gold); color: #000; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: all .4s var(--ease);
  animation: waPulse 2.4s ease infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 40px rgba(37,211,102,.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 34px rgba(37,211,102,.65); }
}
@media (max-width: 600px) {
  .wa-float { bottom: 20px; left: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}

/* ── Reseñas ── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: all .45s var(--ease);
}
.review-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .6s var(--ease);
}
.review-card:hover { border-color: var(--line-gold); transform: translateY(-6px); background: var(--ink-3); }
.review-card:hover::before { width: 100%; }
.review-stars { color: var(--gold); font-size: .82rem; letter-spacing: 3px; }
.review-text { color: var(--muted); font-size: .95rem; line-height: 1.65; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: linear-gradient(135deg, var(--ink-4), var(--ink-3));
  color: var(--gold-soft);
  font-family: var(--serif); font-style: italic;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .95rem; font-weight: 500; }
.review-author span { color: var(--muted); font-size: .78rem; }

.rating-banner {
  margin-top: 46px;
  border: 1px solid var(--line-gold);
  background: linear-gradient(120deg, var(--ink-3), var(--ink-2));
  padding: 26px 34px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.rating-score {
  font-family: var(--serif);
  font-size: 3.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-meta { flex: 1; min-width: 200px; }
.rating-meta span { display: block; color: var(--muted); font-size: .8rem; margin-top: 6px; letter-spacing: .05em; }
.rating-stars-big { color: var(--gold); font-size: 1rem; letter-spacing: 4px; }
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .gallery-slide { flex: 0 0 calc(50% - 11px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .qr-box { text-align: left; }
  .qr-box img { margin: 0 0 14px; }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: min(340px, 82vw);
    background: rgba(11,10,8,.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 34px;
    padding: 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .5s var(--ease), visibility 0s .5s;
    border-left: 1px solid var(--line-gold);
    z-index: 110;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform .5s var(--ease), visibility 0s; }
  .nav-links a { font-size: .9rem; }
  .nav-toggle { display: block; z-index: 120; }
  .sec-head { grid-template-columns: 1fr; gap: 20px; }
  .sec-head .sec-copy.right { grid-column: 1; justify-self: start; margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-float { right: 16px; bottom: -22px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .hero-bar { grid-template-columns: 1fr; position: relative; margin-top: 40px; border-top: none; }
  .hero-bar-item { border-right: none; border-bottom: 1px solid var(--line); padding: 14px 24px; }
  .hero { min-height: 0; padding: 140px 0 0; justify-content: flex-start; }
  .hero-content { margin-top: 0; }
  .hero-title { font-size: clamp(3.4rem, 16vw, 6rem); }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .gallery-slide { flex: 0 0 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; text-align: left; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-col { align-items: center; }
  .qr-box { grid-column: 1 / -1; text-align: center; }
  .qr-box img { margin: 0 auto 14px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .g-progress { margin: 0 20px; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 10px 20px; }
}

/* --------------- NEXT-LEVEL TOOLKIT --------------- */

/* -- Cursor dot -- */
.cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); will-change: transform; }
.cursor-ring { mix-blend-mode: normal; }
.cursor-ring.hovered { border-color: var(--gold-soft); }
@media (hover: none) { .cursor-dot { display: none; } }

/* -- Scroll spy -- */
.dots { position: fixed; right: 26px; top: 50%; transform: translateY(-50%); z-index: 95; display: none; flex-direction: column; gap: 16px; }
@media (min-width: 1080px) { .dots { display: flex; } }
.dots a { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(247,244,238,.45); opacity: .5; transition: all .3s var(--ease); }
.dots a:hover { opacity: .9; }
.dots a.active { opacity: 1; background: var(--gold); border-color: var(--gold); transform: scale(1.4); }

/* -- Wave edges -- */
.edge { position: absolute; left: 0; top: calc(-1 * var(--edge-h, 90px)); width: 100%; height: var(--edge-h, 90px); pointer-events: none; z-index: 2; line-height: 0; }
.edge svg { display: block; width: 100%; height: 100%; }
.edge-gold path { fill: var(--gold); }
.edge-ink path { fill: var(--ink); }
.edge-ink2 path { fill: var(--ink-2); }

/* -- Steam (hero badge) -- */
.steam { position: absolute; left: 50%; bottom: calc(100% - 6px); transform: translateX(-50%); width: 0; height: 0; z-index: 2; }
.steam i { position: absolute; left: 0; bottom: 8px; width: 20px; height: 34px; border-left: 2px solid rgba(247,244,238,.55); border-radius: 50%; opacity: 0; animation: steamRise 3.4s ease-in-out infinite; }
.steam i:nth-child(2) { left: -18px; height: 26px; animation-delay: 1.15s; }
.steam i:nth-child(3) { left: 18px; height: 40px; animation-delay: 2.25s; }
@keyframes steamRise {
  0% { transform: translateY(6px) scale(.6); opacity: 0; }
  30% { opacity: .75; }
  100% { transform: translateY(-64px) scale(1.2); opacity: 0; }
}
@media (max-width: 900px) { .steam { display: none; } }

/* -- Split text -- */
.split .wl { display: inline-block; overflow: hidden; vertical-align: top; }
.split .wi { display: inline-block; transform: translateY(115%); transition: transform 1s var(--ease); }
.split.in .wi { transform: translateY(0); }
.split .wi:nth-child(n) { transition-delay: var(--sd, 0s); }

/* -- Parallax -- */
[data-parallax] { will-change: transform; }
.parallax-cover { transform: scale(1.12); will-change: transform; }

/* -- Gallery drag -- */
.gallery-track { touch-action: pan-y; cursor: grab; }
.gallery-track.dragging { cursor: grabbing; transition: none !important; }


/* -- EL RITUAL � taza que se llena -------------------------------- */
