/* =========================================================
   TAQUERÍA VALDEZ · Cinematic Heritage Experience
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* palette */
  --c-bg: #120c08;
  --c-bg-2: #1a110b;
  --c-cream: #f3e6d0;
  --c-cream-2: #e7d4b3;
  --c-paper: #ece1c8;
  --c-terra: #c75d2c;
  --c-terra-d: #9a4520;
  --c-chili: #8b1a1a;
  --c-copper: #b87333;
  --c-copper-l: #d99a55;
  --c-olive: #4a5d23;
  --c-wood: #4a2e1f;
  --c-charcoal: #1a1410;
  --c-ink: #0c0805;
  --c-line: rgba(231, 212, 179, 0.18);
  --c-line-d: rgba(231, 212, 179, 0.08);

  /* type */
  --f-display: "Bodoni Moda", "Playfair Display", serif;
  --f-serif:   "Playfair Display", "Bodoni Moda", serif;
  --f-script:  "Caveat", cursive;
  --f-body:    "Manrope", system-ui, sans-serif;

  /* spacing */
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px; --s-9: 160px;

  /* misc */
  --r: 2px;
  --container: 1280px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.4,.0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-cream);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
::selection { background: var(--c-terra); color: var(--c-cream); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 9999;
  opacity: .08;
  mix-blend-mode: overlay;
  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='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- CURSOR ---------- */
.cursor {
  position: fixed; top:0; left:0;
  width: 36px; height: 36px;
  border: 1px solid rgba(216, 154, 85, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 10000;
  transition: transform .25s var(--ease), width .3s var(--ease), height .3s var(--ease), border-color .3s, background .3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; top:0; left:0;
  width: 4px; height: 4px;
  background: var(--c-copper-l);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none; z-index: 10001;
}
.cursor.is-hover {
  width: 70px; height: 70px;
  background: rgba(216, 154, 85, 0.12);
  border-color: var(--c-copper-l);
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
  body, button, a { cursor: auto; }
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #261509 0%, #0a0604 70%);
  z-index: 99999;
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; position: relative; }
.loader__brand { color: var(--c-cream); }
.loader__est {
  display:block; font-size: 11px; letter-spacing: .35em;
  color: var(--c-copper-l); margin-bottom: 14px;
}
.loader__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 8px; letter-spacing: .02em;
  font-style: italic;
}
.loader__loc { font-size: 12px; letter-spacing: .3em; color: var(--c-cream-2); opacity:.7; }
.loader__bar {
  margin-top: 28px;
  width: 220px; height: 1px;
  background: rgba(216,154,85,.2);
  position: relative; overflow: hidden;
  margin-inline: auto;
}
.loader__bar span {
  position: absolute; left:0; top:0; height:100%;
  width: 30%; background: var(--c-copper-l);
  animation: loadbar 1.6s var(--ease) infinite;
}
@keyframes loadbar {
  0% { left:-30%; }
  100% { left:100%; }
}
.loader__ember {
  position: absolute; left: 50%; top: -40px; transform: translateX(-50%);
  width: 6px; height: 6px; background: var(--c-terra);
  border-radius: 50%;
  box-shadow: 0 0 16px 6px rgba(199,93,44,.7);
  animation: emberFloat 2.4s ease-in-out infinite;
}
@keyframes emberFloat {
  0%,100% { transform: translate(-50%, 0); opacity:.9; }
  50% { transform: translate(-50%, -14px); opacity: 1; }
}

/* ---------- AMBIENT ---------- */
.fx { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.fx--embers { mix-blend-mode: screen; opacity: .65; }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(18,12,8,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--c-line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--c-copper-l);
  color: var(--c-copper-l);
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: 15px;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: 18px; color: var(--c-cream);
}
.nav__brand-sub { font-size: 10px; letter-spacing: .25em; color: var(--c-copper-l); margin-top: 4px; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-cream-2); position: relative; padding: 6px 0;
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--c-copper-l);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--c-cream); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1px solid var(--c-line);
  font-size: 11px; letter-spacing: .2em;
  transition: border-color .3s;
}
.lang-toggle:hover { border-color: var(--c-copper-l); }
.lang-toggle__opt { color: var(--c-cream-2); opacity: .55; transition: opacity .3s, color .3s; }
.lang-toggle__opt.is-active { opacity: 1; color: var(--c-copper-l); }
.lang-toggle__sep { opacity: .3; }

.nav__burger { display: none; width: 36px; height: 36px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 18px; height: 1px; background: var(--c-cream); transition: transform .3s, opacity .3s; }

@media (max-width: 980px) {
  .nav__links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(18,12,8,.96); backdrop-filter: blur(24px);
    flex-direction: column; gap: 18px; padding: 32px 28px;
    transform: translateY(-150%); transition: transform .4s var(--ease);
    border-bottom: 1px solid var(--c-line);
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__burger { display: flex; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), background .35s, color .35s, border-color .35s;
}
.btn__arrow { font-style: normal; transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--c-terra);
  color: var(--c-cream);
  border-color: var(--c-terra);
}
.btn--primary:hover { background: var(--c-chili); border-color: var(--c-chili); }

.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream-2);
}
.btn--ghost:hover { background: var(--c-cream); color: var(--c-charcoal); }

.btn--ghost-light { border-color: rgba(243,230,208,.5); }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body); font-weight: 500;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--c-copper-l);
  margin-bottom: 18px;
  position: relative; padding-left: 30px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 20px; height: 1px; background: var(--c-copper-l);
}
.eyebrow--light { color: var(--c-cream); opacity: .85; }
.eyebrow--light::before { background: var(--c-cream); }

.h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 28px; color: var(--c-cream);
}
.h2 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--c-copper-l);
}
.h2--light { color: var(--c-cream); }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { padding-left: 0; }
.section-head--center .eyebrow::before { display: none; }
.section-head__lead { color: var(--c-cream-2); opacity: .8; max-width: 580px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.1) contrast(1.05);
  will-change: transform;
}
.hero__layer--1 { opacity: 1; transform: scale(1.08); animation: heroZoom 14s ease-in-out infinite alternate; }
.hero__layer--2 { opacity: .42; mix-blend-mode: multiply; }
@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(199,93,44,.18), transparent 55%),
    linear-gradient(180deg, rgba(12,8,5,.35) 0%, rgba(12,8,5,.5) 35%, rgba(12,8,5,.92) 92%);
}
.hero__smoke {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(243,230,208,0.06), transparent 70%),
    radial-gradient(ellipse 50% 30% at 80% 80%, rgba(199,93,44,0.08), transparent 70%);
  filter: blur(8px);
  animation: smokeDrift 18s ease-in-out infinite alternate;
}
@keyframes smokeDrift {
  0% { transform: translate3d(0,0,0); opacity: .7; }
  100% { transform: translate3d(-30px,-10px,0); opacity: 1; }
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 28px;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--c-line);
  background: rgba(12,8,5,.35);
  backdrop-filter: blur(12px);
  margin-bottom: 32px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.hero__stars { color: var(--c-copper-l); letter-spacing: 2px; font-size: 13px; }
.hero__rating-num { color: var(--c-cream); font-weight: 600; }
.hero__rating-text { color: var(--c-cream-2); opacity: .75; }

.hero__eyebrow {
  font-size: 12px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--c-copper-l); margin: 0 0 24px;
}
.hero__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: .92; letter-spacing: -.025em;
  margin: 0 0 28px; color: var(--c-cream);
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line--accent em {
  font-family: var(--f-serif); font-style: italic;
  color: var(--c-copper-l); font-weight: 400;
}
.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 540px; color: var(--c-cream-2);
  margin: 0 0 40px;
}
.hero__ctas { display: flex; gap: 14px; margin-bottom: 64px; flex-wrap: wrap; }

.hero__meta {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-num {
  font-family: var(--f-display); font-style: italic;
  font-size: 26px; color: var(--c-cream);
}
.hero__meta-lbl {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-cream-2); opacity: .6;
}
.hero__meta-divider { width: 1px; height: 28px; background: var(--c-line); }

.hero__scroll {
  position: absolute; right: 28px; bottom: 32px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--c-cream-2); opacity: .7;
}
.hero__scroll-line {
  width: 1px; height: 60px; background: linear-gradient(180deg, var(--c-copper-l), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(.4); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--c-terra);
  color: var(--c-cream);
  border-block: 1px solid rgba(0,0,0,.15);
  overflow: hidden;
  padding: 14px 0;
  position: relative; z-index: 5;
}
.marquee__track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: .04em;
  animation: marquee 38s linear infinite;
}
.marquee__track span { display: inline-block; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- STORY ---------- */
.story {
  position: relative; padding: var(--s-9) 0;
  background: var(--c-bg);
  overflow: hidden;
}
.story__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(199,93,44,.08), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(74,46,31,.4), transparent 60%);
}
.story__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 96px; align-items: center;
}
.story__media { position: relative; min-height: 600px; }
.story__photo { position: absolute; overflow: hidden; }
.story__photo--main {
  top: 0; left: 0;
  width: 78%; height: 520px;
  border: 1px solid var(--c-line);
}
.story__photo--main img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.18) saturate(1.05) contrast(1.05); }
.story__photo-tag {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-cream); padding: 6px 10px; background: rgba(12,8,5,.7);
  backdrop-filter: blur(8px);
}
.story__photo--sub {
  right: 0; bottom: 32px;
  width: 56%; height: 360px;
  border: 1px solid var(--c-copper);
  z-index: 2;
}
.story__photo--sub img { width: 100%; height: 100%; object-fit: cover; }
.story__stamp {
  position: absolute; right: -10px; top: 20px;
  z-index: 3; color: var(--c-copper-l);
  animation: stampSpin 30s linear infinite;
}
@keyframes stampSpin { 100% { transform: rotate(360deg); } }

.counters {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.counter { display: flex; flex-direction: column; gap: 8px; }
.counter__num {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--c-copper-l); line-height: 1;
}
.counter__lbl {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-cream-2); opacity: .7;
}

/* ---------- MENU ---------- */
.menu { padding: var(--s-9) 0; background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%); }
.menu__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px;
}
.dish {
  position: relative;
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  transition: transform .5s var(--ease);
}
.dish:hover { transform: translateY(-6px); }
.dish__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--c-line-d);
}
.dish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .6s;
  filter: saturate(1.1) contrast(1.06);
}
.dish:hover .dish__media img { transform: scale(1.08); filter: saturate(1.2) contrast(1.1); }
.dish__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,8,5,.7));
  pointer-events: none;
}
.dish__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--c-terra); color: var(--c-cream);
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  padding: 6px 10px; z-index: 2;
}
.dish__body { display: flex; flex-direction: column; gap: 10px; }
.dish__num {
  font-family: var(--f-display); font-style: italic;
  font-size: 14px; color: var(--c-copper-l); letter-spacing: .15em;
}
.dish__name {
  font-family: var(--f-display); font-weight: 400;
  font-size: 30px; line-height: 1.1; color: var(--c-cream);
  margin: 0;
}
.dish__desc { color: var(--c-cream-2); opacity: .8; font-size: 14.5px; line-height: 1.65; }
.dish__line { display: block; height: 1px; background: var(--c-line); margin: 8px 0 4px; }
.dish__price {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-copper-l);
}

/* ---------- EXPERIENCE RAIL ---------- */
.experience { padding: var(--s-9) 0; background: var(--c-bg-2); }
.exp-rail {
  position: relative; padding: 40px 0 20px;
  overflow: hidden;
}
.exp-rail__track {
  display: flex; gap: 28px;
  padding: 0 28px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.exp-rail__track::-webkit-scrollbar { display: none; }
.exp-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  position: relative; height: 480px;
  overflow: hidden;
  border: 1px solid var(--c-line-d);
  isolation: isolate;
}
.exp-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 1s var(--ease);
}
.exp-card:hover .exp-card__img { transform: scale(1.08); }
.exp-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,8,5,.95));
  z-index: 1;
}
.exp-card__body {
  position: absolute; inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
}
.exp-card__num {
  font-family: var(--f-display); font-style: italic;
  font-size: 14px; color: var(--c-copper-l); letter-spacing: .25em;
  display: block; margin-bottom: 8px;
}
.exp-card h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 28px; margin: 0 0 8px; color: var(--c-cream);
}
.exp-card p { color: var(--c-cream-2); opacity: .85; font-size: 13.5px; }

/* ---------- REVIEWS ---------- */
.reviews { padding: var(--s-9) 0; position: relative; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.review {
  position: relative;
  padding: 48px 36px 32px;
  background: linear-gradient(180deg, rgba(232,213,180,.04), rgba(232,213,180,.01));
  border: 1px solid var(--c-line);
  margin: 0;
  transition: transform .5s var(--ease), border-color .5s;
}
.review:hover { transform: translateY(-4px); border-color: var(--c-copper); }
.review__quote {
  position: absolute; top: 14px; left: 24px;
  font-family: var(--f-display); font-style: italic;
  font-size: 80px; line-height: 1; color: var(--c-copper-l);
  opacity: .55;
}
.review blockquote {
  margin: 0 0 24px;
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 21px; line-height: 1.45; color: var(--c-cream);
}
.review figcaption {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-cream-2); opacity: .85;
}
.review__stars { color: var(--c-copper-l); letter-spacing: 2px; }

/* ---------- ATMOS ---------- */
.atmos {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  padding: var(--s-9) 0;
  overflow: hidden;
}
.atmos__bg {
  position: absolute; inset: -10% -5%;
  background-size: cover; background-position: center;
  filter: saturate(1.1) contrast(1.1);
}
.atmos__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(199,93,44,.18), transparent 55%),
    linear-gradient(180deg, rgba(12,8,5,.6) 0%, rgba(12,8,5,.85) 100%);
}
.atmos__content { position: relative; z-index: 2; max-width: 720px; }
.atmos__lead {
  font-size: 18px; line-height: 1.65; color: var(--c-cream);
  max-width: 600px; margin: 0 0 36px; opacity: .92;
}
.atmos__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px;
}
.atmos__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-top: 1px solid var(--c-line);
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; color: var(--c-cream);
}
.atmos__list span { color: var(--c-copper-l); font-size: 22px; }

/* ---------- GALLERY ---------- */
.gallery { padding: var(--s-9) 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gal-item {
  position: relative; overflow: hidden;
  border: 1px solid var(--c-line-d);
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.55) saturate(.9);
  transition: transform .9s var(--ease), filter .6s;
}
.gal-item:hover img { transform: scale(1.06); filter: grayscale(0) saturate(1.1); }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }
.gal-item::after {
  content: "+"; position: absolute; right: 14px; bottom: 14px;
  width: 32px; height: 32px; border: 1px solid var(--c-cream);
  color: var(--c-cream); display: grid; place-items: center;
  font-size: 18px; opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  background: rgba(12,8,5,.4); backdrop-filter: blur(8px);
}
.gal-item:hover::after { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,5,3,.95);
  display: none; place-items: center;
  backdrop-filter: blur(8px);
}
.lightbox.is-open { display: grid; }
.lightbox__img {
  max-width: 90vw; max-height: 86vh; object-fit: contain;
  border: 1px solid var(--c-line);
}
.lightbox__close, .lightbox__nav {
  position: absolute; color: var(--c-cream);
  font-size: 28px; width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  transition: background .3s, border-color .3s;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--c-terra); border-color: var(--c-terra); }

/* ---------- CONTACT ---------- */
.contact { padding: var(--s-9) 0; background: linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg) 100%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.contact__lead { font-size: 16px; color: var(--c-cream-2); opacity: .85; max-width: 480px; margin-bottom: 36px; }
.contact__list { list-style: none; padding: 0; margin: 0 0 36px; }
.contact__list li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0; border-top: 1px solid var(--c-line);
}
.contact__list li:last-child { border-bottom: 1px solid var(--c-line); }
.contact__lbl {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-copper-l);
}
.contact__list b {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 20px; color: var(--c-cream);
}
.contact__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.contact__social {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-cream-2);
}
.contact__social a { display: inline-flex; align-items: center; gap: 8px; transition: color .3s; }
.contact__social a:hover { color: var(--c-copper-l); }

.contact__map { position: relative; }
.contact__map-frame {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border: 1px solid var(--c-copper);
  background: var(--c-bg-2);
}
.contact__map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.55) sepia(.2) saturate(1.1) brightness(.85) contrast(1.1);
  transition: filter .5s;
}
.contact__map:hover .contact__map-frame iframe { filter: grayscale(0) saturate(1.15); }
.contact__map-tag {
  display: block; margin-top: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-copper-l);
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative; padding: var(--s-9) 0 40px;
  overflow: hidden; isolation: isolate;
  background: #0a0604;
}
.footer__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(199,93,44,.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(139,26,26,.2), transparent 60%),
    linear-gradient(180deg, #1a0f08 0%, #0a0604 100%);
}
.footer__glow {
  position: absolute; left: 50%; top: -20%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(199,93,44,.25), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0% { opacity: .55; transform: translateX(-50%) scale(1); }
  100% { opacity: .85; transform: translateX(-50%) scale(1.1); }
}

.footer__inner { position: relative; z-index: 1; }
.footer__cta { text-align: center; max-width: 720px; margin: 0 auto 96px; }
.footer__cta .eyebrow { padding-left: 0; }
.footer__cta .eyebrow::before { display: none; }
.footer__title {
  font-size: clamp(48px, 8vw, 110px) !important;
  margin-bottom: 18px;
}
.footer__since {
  font-family: var(--f-script); font-size: 36px;
  color: var(--c-copper-l); margin: 0 0 36px;
}
.footer__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.footer__col-h {
  display: block;
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 20px; color: var(--c-cream); margin-bottom: 16px;
}
.footer__col p { color: var(--c-cream-2); opacity: .75; margin: 0; line-height: 1.8; font-size: 14px; }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--c-copper-l); }

.footer__bar {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 32px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-cream-2); opacity: .55;
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

.dish { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--dish-i) * 80ms); }
.dish.is-in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .story__grid { grid-template-columns: 1fr; gap: 64px; }
  .story__media { min-height: 540px; max-width: 600px; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 120px 0 60px; }
  .hero__rating { font-size: 10px; gap: 8px; flex-wrap: wrap; }
  .hero__rating-text { display: none; }
  .hero__meta { gap: 18px; }
  .hero__meta-divider { display: none; }
  .menu__grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .atmos__list { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bar { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .counters { grid-template-columns: 1fr 1fr; }
  .story__photo--main { width: 90%; height: 380px; }
  .story__photo--sub { width: 60%; height: 240px; bottom: 0; }
  .story__media { min-height: 460px; }
  .exp-card { flex-basis: 280px; height: 400px; }
  .nav__brand-sub { display: none; }
  .nav__brand-name { font-size: 16px; }
}
