/* ============================================================
   Mi Pueblito Restaurant — "Fogón" · dark cinematic Colombian heritage
   Near-black + warm gold + full-bleed food photography. Logo real conservado.
   Ref: Phenomenon "City Whispers", ECLOR, Maison Élan, "Culinary Journey".
   ============================================================ */

:root {
  /* Base oscura cálida (fogón nocturno) */
  --void: #120D09;        /* base de página, negro-espresso cálido */
  --coal: #180F0A;        /* superficie de sección */
  --ember: #221812;       /* superficie elevada / cards */
  --ember-2: #2C2019;     /* card hover / raised */
  --cream: #F4E9D8;       /* texto principal sobre oscuro */
  --cream-soft: #C6B295;  /* texto secundario */
  --cream-dim: #8C7C68;   /* texto terciario / labels */
  /* Metales cálidos */
  --gold: #D7B074;        /* oro de marca elevado para dark (de #cfa670) */
  --gold-bright: #ECD3A4; /* oro claro para acentos de texto */
  --terra: #C65D34;       /* terracota ember */
  --hair: rgba(215, 176, 116, 0.16);   /* filete oro tenue */
  --hair-soft: rgba(244, 233, 216, 0.10);

  --scrim: linear-gradient(180deg, rgba(10,7,5,0.55) 0%, rgba(10,7,5,0.12) 28%, rgba(10,7,5,0.35) 62%, rgba(10,7,5,0.92) 100%);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --font-display: 'Gambetta', 'Times New Roman', serif;
  --font-body: 'Synonym', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--cream);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--void); }

/* Grano de film cálido, fijo */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: 0.4; background-image: url("assets/noise.png"); background-size: 110px 110px;
  mix-blend-mode: overlay;
}

/* ---- Tipografía ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(3rem, 1.8rem + 6vw, 6rem); }
h2 { font-size: clamp(2.2rem, 1.5rem + 3.2vw, 4rem); }
h3 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem); }
.italic { font-style: italic; font-weight: 401; color: var(--gold-bright); }
p { text-wrap: pretty; max-width: 66ch; }

.eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(0.66rem, 0.62rem + 0.15vw, 0.75rem);
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.8em;
}
.eyebrow::before { content: ""; width: clamp(1.6rem, 3vw, 2.6rem); height: 1px; background: var(--gold); opacity: 0.7; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding-block: clamp(5rem, 3.5rem + 8vw, 10rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.3rem; color: var(--cream-soft); font-size: 1.1em; }
.coal { background: var(--coal); }

/* ---- Botones ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1rem 0.9rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.94rem;
  background: var(--gold); color: var(--void);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 14px 30px -16px rgba(215,176,116,0.6);
}
.btn:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn__ico { width: 2rem; height: 2rem; border-radius: 999px; background: rgba(18,13,9,0.16); display: inline-flex; align-items: center; justify-content: center; transition: transform 0.5s var(--ease); }
.btn:hover .btn__ico { transform: translate(3px, -1px); }
.btn__ico svg { width: 0.9rem; height: 0.9rem; }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid var(--hair); box-shadow: none; }
.btn--ghost:hover { background: rgba(244,233,216,0.06); border-color: var(--gold); transform: translateY(-2px); }
.btn--ghost .btn__ico { background: rgba(244,233,216,0.08); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(0.8rem, 2vw, 1.4rem) var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18,13,9,0.72); backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--hair);
  padding-block: clamp(0.6rem, 1.4vw, 0.9rem);
}
.nav__logo { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo img { height: clamp(38px, 4vw, 52px); width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: height 0.5s var(--ease); }
.nav.scrolled .nav__logo img { height: clamp(32px, 3.4vw, 42px); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--cream-soft); letter-spacing: 0.01em; position: relative; transition: color 0.3s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---- HERO full-bleed cinematográfico ---- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: var(--scrim); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3.5rem, 8vh, 7rem); }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(3rem, 1.5rem + 7vw, 6.6rem); line-height: 0.98; max-width: 16ch; text-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.hero__lede { margin-top: 1.8rem; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); color: var(--cream-soft); max-width: 46ch; }
.hero__ctas { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--cream-soft); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll span { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2.2s var(--ease-io) infinite; }
@keyframes scrollpulse { 0%,100%{opacity:0.3; transform:scaleY(0.6);} 50%{opacity:1; transform:scaleY(1);} }

/* Datos rápidos sobre el hero */
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.5rem; margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--hair); font-size: 0.9rem; color: var(--cream-soft); }
.hero__meta b { color: var(--cream); font-weight: 600; }
.hero__meta .g { color: var(--gold); }
.hero__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

/* ---- Marquee ---- */
.marquee { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--coal); overflow: hidden; padding-block: 1.1rem; }
.marquee__track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem); color: var(--cream-soft); padding-inline: 1.6rem; display: inline-flex; align-items: center; gap: 3.2rem; }
.marquee__track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---- Story ---- */
.story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.story__copy p + p { margin-top: 1.15rem; color: var(--cream-soft); }
.story__copy > p:first-of-type { color: var(--cream-soft); }
.story__quote { position: relative; font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem); line-height: 1.3; color: var(--cream); margin: 2.4rem 0; padding-top: 2rem; }
.story__quote::before { content: "\201C"; position: absolute; top: -0.3em; left: -0.04em; font-size: 3.6em; line-height: 1; color: var(--gold); opacity: 0.5; font-family: var(--font-display); }
.story__seal { font-family: var(--font-display); font-style: italic; color: var(--gold); }
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }
.story__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(10,7,5,0.6); pointer-events: none; }
.frame-line { position: absolute; inset: clamp(0.8rem,2vw,1.4rem); border: 1px solid var(--hair); pointer-events: none; }
.story__stats { display: flex; gap: clamp(1.8rem, 4vw, 3.2rem); margin-top: 2.4rem; }
.story__stat b { font-family: var(--font-display); font-size: clamp(2rem, 1.5rem + 1.8vw, 3rem); display: block; color: var(--gold); line-height: 1; }
.story__stat span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.4rem; display: block; }

/* ---- Featured "Del fogón" — presentación inmersiva ---- */
.feat { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 6rem); }
.feat__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feat__row:nth-child(even) .feat__media { order: 2; }
.feat__media { position: relative; overflow: hidden; border-radius: 2px; }
.feat__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1.1s var(--ease); }
.feat__row:hover .feat__media img { transform: scale(1.05); }
.feat__num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; }
.feat__name { font-family: var(--font-display); font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem); margin: 0.6rem 0 1rem; line-height: 1.05; }
.feat__desc { color: var(--cream-soft); max-width: 46ch; }
.feat__price { margin-top: 1.4rem; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }
.feat__region { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim); }

/* ---- Journey (firma) ---- */
.journey { background: var(--coal); }
.journey__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.region { position: relative; padding: 2rem 1.9rem 2.2rem; border: 1px solid var(--hair); background: linear-gradient(180deg, var(--ember) 0%, var(--coal) 100%); border-radius: 2px; transition: transform 0.6s var(--ease), border-color 0.5s var(--ease); overflow: hidden; }
.region::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% -10%, rgba(215,176,116,0.10), transparent 60%); opacity: 0; transition: opacity 0.6s var(--ease); }
.region:hover { transform: translateY(-6px); border-color: rgba(215,176,116,0.4); }
.region:hover::before { opacity: 1; }
.region__map { width: 74px; height: 74px; margin-bottom: 1.2rem; position: relative; }
.region__map svg { width: 100%; height: 100%; }
.region__k { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.region__name { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; margin: 0.3rem 0 0.9rem; color: var(--cream); }
.region__blurb { font-size: 0.92rem; color: var(--cream-soft); margin-bottom: 1.2rem; }
.region__dishes { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.region__dishes button { all: unset; cursor: pointer; font-size: 0.92rem; color: var(--cream); padding-left: 1.1rem; position: relative; transition: color 0.3s var(--ease); }
.region__dishes button::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.region__dishes button:hover { color: var(--gold-bright); }

/* ---- Galería inmersiva ---- */
.gallery { display: flex; flex-direction: column; gap: clamp(0.8rem, 1.5vw, 1.2rem); }
.gallery figure { overflow: hidden; position: relative; margin: 0; border-radius: 2px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(10,7,5,0.4); pointer-events: none; }
.gallery__a { display: grid; grid-template-columns: 7fr 5fr; grid-auto-rows: clamp(280px, 34vw, 440px); gap: clamp(0.8rem, 1.5vw, 1.2rem); }
.gallery__a figure { height: 100%; }
.gallery__b { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.5vw, 1.2rem); }
.gallery__b figure { aspect-ratio: 1/1; }
@media (max-width: 900px) { .gallery__a { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(200px, 44vw, 320px); } .gallery__b { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery__a { grid-template-columns: 1fr; } }

/* ---- Testimonios ---- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
.quote { margin: 0; padding: 2rem 1.9rem; border: 1px solid var(--hair); border-radius: 2px; background: var(--ember); display: flex; flex-direction: column; gap: 1.2rem; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.quote:hover { transform: translateY(-5px); border-color: rgba(215,176,116,0.35); }
.quote__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; }
.quote blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem); line-height: 1.4; color: var(--cream); }
.quote figcaption { margin-top: auto; font-size: 0.86rem; letter-spacing: 0.05em; color: var(--gold); font-weight: 600; }

/* ---- Amenidades ---- */
.amenities__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.amenity { position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; border-radius: 2px; }
.amenity img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.amenity:hover img { transform: scale(1.05); }
.amenity__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,7,5,0.94) 6%, rgba(10,7,5,0.2) 55%, rgba(10,7,5,0.1)); }
.amenity__txt { position: relative; padding: 2rem 2rem; }
.amenity__txt h3 { color: var(--cream); }
.amenity__txt p { color: var(--cream-soft); font-size: 0.94rem; margin-top: 0.5rem; }
.amenity__txt .eyebrow { margin-bottom: 0.8rem; }

/* ---- Sedes ---- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.loc { position: relative; padding: 2.2rem 2rem; border: 1px solid var(--hair); border-radius: 2px; background: var(--ember); display: flex; flex-direction: column; gap: 0.9rem; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.loc:hover { transform: translateY(-4px); border-color: rgba(215,176,116,0.4); }
.loc__k { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.loc__name { font-family: var(--font-display); font-size: 1.8rem; color: var(--cream); }
.loc__rating { color: var(--gold); font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.loc__row { display: flex; gap: 0.75rem; font-size: 0.95rem; color: var(--cream-soft); align-items: flex-start; }
.loc__row svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--gold); }
.loc__row a:hover { color: var(--gold-bright); }
.loc__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.7rem; }
.loc__actions .btn { font-size: 0.85rem; padding: 0.65rem 0.75rem 0.65rem 1.1rem; }
.loc__sib { font-size: 0.82rem; color: var(--cream-dim); }
.loc__sib b { color: var(--gold); font-weight: 500; }

/* ---- Cierre ---- */
.closing { position: relative; text-align: center; overflow: hidden; }
.closing__bg { position: absolute; inset: 0; z-index: 0; }
.closing__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.closing__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 50%, rgba(18,13,9,0.6), var(--void)); }
.closing__inner { position: relative; z-index: 1; }
.closing h2 { max-width: 20ch; margin: 1rem auto 1.6rem; }
.closing__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.closing__info { margin-top: 2.8rem; display: flex; gap: 0.6rem 2.4rem; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; color: var(--cream-dim); }

/* ---- Footer ---- */
.footer { background: var(--coal); border-top: 1px solid var(--hair); padding-block: clamp(3.5rem, 5vw, 5rem) 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer__logo img { width: 230px; max-width: 62vw; }
.footer__tag { margin-top: 1.2rem; font-size: 0.92rem; color: var(--cream-soft); max-width: 34ch; }
.footer h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer a { display: block; font-size: 0.93rem; padding: 0.22rem 0; color: var(--cream-soft); transition: color 0.3s var(--ease); }
.footer a:hover { color: var(--gold-bright); }
.footer__bottom { margin-top: 3.2rem; padding-top: 1.6rem; border-top: 1px solid var(--hair-soft); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--cream-dim); }

/* ---- Action bar móvil ---- */
.actionbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; display: none; grid-template-columns: repeat(4, 1fr); background: rgba(18,13,9,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--gold); }
.actionbar a { display: flex; flex-direction: column; align-items: center; gap: 0.28rem; padding: 0.65rem 0.4rem calc(0.65rem + env(safe-area-inset-bottom)); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--cream-soft); }
.actionbar svg { width: 1.3rem; height: 1.3rem; color: var(--gold); }

/* ---- Popup de plato (G5) ---- */
.pop { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 1.3rem; }
.pop.open { display: flex; }
.pop__scrim { position: absolute; inset: 0; background: rgba(10,7,5,0.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.45s var(--ease); }
.pop.open .pop__scrim { opacity: 1; }
.pop__panel { position: relative; z-index: 1; width: min(560px, 100%); max-height: 90vh; overflow: auto; background: var(--ember); border: 1px solid var(--hair); border-radius: 3px; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9); transform: translateY(24px) scale(0.98); opacity: 0; transition: transform 0.55s var(--ease), opacity 0.45s var(--ease); }
.pop.open .pop__panel { transform: none; opacity: 1; }
.pop__img { width: 100%; aspect-ratio: 16/11; object-fit: cover; background: var(--void); }
.pop__body { padding: 1.8rem 2rem 2.2rem; }
.pop__k { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.pop__name { font-family: var(--font-display); font-size: clamp(1.7rem, 1.3rem + 1.3vw, 2.2rem); margin: 0.5rem 0 0.9rem; line-height: 1.08; color: var(--cream); }
.pop__desc { color: var(--cream-soft); font-size: 1.02rem; }
.pop__sizes { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.pop__size { border: 1px solid var(--hair); border-radius: 2px; padding: 0.55rem 1rem; font-size: 0.9rem; color: var(--cream-soft); }
.pop__size b { color: var(--gold); }
.pop__price { margin-top: 1.4rem; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.pop__close { position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(18,13,9,0.8); border: 1px solid var(--hair); display: flex; align-items: center; justify-content: center; z-index: 2; transition: transform 0.35s var(--ease), background 0.3s var(--ease); }
.pop__close:hover { transform: rotate(90deg); background: var(--gold); color: var(--void); }
.pop__close svg { width: 1.1rem; height: 1.1rem; }

/* ---- Menú (menu.html) ---- */
.menu-hero { padding-top: clamp(8rem, 7rem + 6vw, 12rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.menu-hero h1 { font-size: clamp(3rem, 1.8rem + 6vw, 6rem); }
.menu-nav { position: sticky; top: 0; z-index: 40; background: rgba(18,13,9,0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-block: 1px solid var(--hair); }
.menu-nav__inner { display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.9rem var(--gutter); scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a { flex: 0 0 auto; font-size: 0.85rem; font-weight: 500; padding: 0.45rem 1rem; border-radius: 999px; color: var(--cream-soft); white-space: nowrap; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.menu-nav a.active, .menu-nav a:hover { background: var(--gold); color: var(--void); }
.menu-section { padding-block: clamp(3rem, 4vw, 4.5rem); scroll-margin-top: 4.5rem; }
.menu-section__head { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--hair); }
.menu-section__head h2 { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 3rem); }
.menu-section__es { font-style: italic; color: var(--gold); font-size: 0.62em; }
.menu-section__count { font-size: 0.82rem; color: var(--cream-dim); letter-spacing: 0.06em; margin-left: auto; }

/* Cards de plato */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: clamp(1.1rem, 2vw, 1.6rem); }
.dish { text-align: left; width: 100%; display: flex; flex-direction: column; background: var(--ember); border: 1px solid var(--hair-soft); border-radius: 2px; overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.dish:hover { transform: translateY(-5px); border-color: rgba(215,176,116,0.35); }
.dish__imgwrap { overflow: hidden; aspect-ratio: 4/3; background: var(--void); }
.dish__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dish:hover .dish__imgwrap img { transform: scale(1.06); }
.dish__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.dish__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); line-height: 1.15; }
.dish__desc { font-size: 0.88rem; color: var(--cream-soft); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; }
.dish__price { font-weight: 600; color: var(--gold); font-size: 1rem; }
.dish__more { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.3s var(--ease); }
.dish:hover .dish__more { color: var(--gold); }
.dish--nophoto .dish__imgwrap { display: none; }
.dish--nophoto .dish__name { font-style: italic; font-size: 1.35rem; margin-top: 0.3rem; }
.dish--nophoto .dish__body { padding-block: 1.5rem; }

/* ---- Reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(30px); }
[data-reveal].is-in { opacity: 1; transform: none; }
.no-js [data-reveal], html.static [data-reveal] { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__bg img { transform: none !important; }
  .marquee__track, .hero__scroll span { animation: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================ Responsive */
@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; }
  .feat__row { grid-template-columns: 1fr; gap: 1.5rem; }
  .feat__row:nth-child(even) .feat__media { order: 0; }
  .feat__media img { aspect-ratio: 16/10; }
  .amenities__grid, .loc-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__logo { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .actionbar { display: grid; }
  body { padding-bottom: 4.4rem; }
  .hero { min-height: 92svh; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; justify-content: space-between; }
}
