/* =====================================================
   TOKENS
   ===================================================== */
:root {
  --ink:     #080806;
  --ink2:    #141410;
  --paper:   #F2EBD9;
  --paper2:  #E8DFCA;
  --gold:    #B8903A;
  --gold-lt: #D4AB52;
  --gold-dk: #7A5E1E;
  --terra:   #B05035;
  --white:   #FAF8F3;
  --muted:   #888070;
  --border:  rgba(255,255,255,0.08);
  --border-paper: rgba(8,8,6,0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-caps:    'Cinzel', 'Palatino Linotype', serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-reveal: cubic-bezier(.16,1,.3,1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
}
body.is-loading { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; cursor: none; }
address { font-style: normal; }

/* =====================================================
   LOADER — CSS puro, sin setInterval
   ===================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: loaderOut .9s var(--ease) 2.6s both;
  pointer-events: none;
}

@keyframes loaderOut {
  to { opacity: 0; transform: translateY(-12px); }
}

/* Líneas que barren de fuera hacia dentro */
.loader-line-top,
.loader-line-bot {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineReveal 1.4s var(--ease) .4s both;
}

.loader-line-top { top: 12%; }
.loader-line-bot { bottom: 12%; }

@keyframes lineReveal {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.loader-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lb-eyebrow {
  font-family: var(--font-caps);
  font-size: clamp(.52rem, 1.2vw, .7rem);
  letter-spacing: .35em;
  color: var(--gold);
  animation: lbFade .8s var(--ease) .6s both;
}

.lb-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 20vw, 14rem);
  color: var(--white);
  line-height: .85;
  letter-spacing: .08em;
  animation: lbUp 1s var(--ease-reveal) .9s both;
}

.lb-sep {
  width: 48px;
  height: 1px;
  background: var(--gold);
  animation: lbFade .8s var(--ease) 1.2s both;
}

.lb-date {
  font-family: var(--font-caps);
  font-size: clamp(.52rem, 1.1vw, .68rem);
  letter-spacing: .3em;
  color: var(--muted);
  animation: lbFade .8s var(--ease) 1.5s both;
}

@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* =====================================================
   CURSOR PERSONALIZADO
   ===================================================== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  top: -5px; left: -5px;
  z-index: 8999;
  pointer-events: none;
  transition: transform .2s var(--ease), opacity .3s;
  mix-blend-mode: normal;
}

.cursor.cursor--lg { transform: scale(4); background: rgba(184,144,58,.3); }
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } a { cursor: pointer; } }

/* =====================================================
   NAV — minimalista con puntos laterales
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 2.5rem;
  mix-blend-mode: difference;
}

.sn-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: .1em;
  color: var(--white);
  transition: opacity .25s;
}

.sn-logo:hover { opacity: .7; }

.sn-chapters {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  gap: .6rem;
  mix-blend-mode: normal;
}

.sc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(184,144,58,.5);
  background: transparent;
  cursor: none;
  padding: 0;
  transition: background .3s, transform .3s;
}

.sc-dot.active  { background: var(--gold); border-color: var(--gold); transform: scale(1.35); }
.sc-dot:hover   { border-color: var(--gold); transform: scale(1.2); }

.sn-reservar {
  font-family: var(--font-caps);
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  padding: .45rem 1.2rem;
  justify-self: end;
  transition: background .25s, border-color .25s;
}

.sn-reservar:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

@media (max-width: 767px) { .sn-chapters, .sn-reservar { display: none; } }

/* =====================================================
   SCROLL PROGRESS
   ===================================================== */
.scroll-prog {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--gold-lt));
  z-index: 9000;
  transition: width .06s linear;
}

/* =====================================================
   MAIN
   ===================================================== */
.main { opacity: 0; transition: opacity .7s var(--ease); }
.main.main--visible { opacity: 1; }

/* Chapter label — vertical, lateral -->*/
.chapter-label {
  position: absolute;
  left: 2rem;
  bottom: 3rem;
  font-family: var(--font-caps);
  font-size: .5rem;
  letter-spacing: .3em;
  color: rgba(184,144,58,.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}

.chapter-label--dark { color: rgba(8,8,6,.3); }
.chapter-label--ink  { color: rgba(184,144,58,.35); }

/* Reveal animations */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease-reveal), transform .85s var(--ease-reveal);
  transition-delay: var(--d, 0s);
}

.reveal-right { transform: translateX(32px); }

.reveal.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }

/* =====================================================
   I. HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(244,218,154,.18) 0 9%, transparent 32%),
    radial-gradient(circle at 16% 26%, rgba(184,144,58,.18) 0 5%, transparent 26%),
    radial-gradient(circle at 84% 70%, rgba(255,255,255,.08) 0 6%, transparent 28%),
    linear-gradient(135deg, #080806 0%, #11100c 42%, #040403 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: clamp(1.1rem, 3vw, 2.8rem);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  border: 1px solid rgba(184,144,58,.26);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(184,144,58,.34) 49%, transparent 82%) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0 24%, rgba(250,248,243,.12) 50%, transparent 76%) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, transparent 0 14%, rgba(184,144,58,.22) 48%, transparent 86%) left / 1px 100% no-repeat,
    linear-gradient(180deg, transparent 0 14%, rgba(184,144,58,.22) 48%, transparent 86%) right / 1px 100% no-repeat;
  box-shadow:
    inset 0 0 70px rgba(184,144,58,.08),
    0 0 120px rgba(184,144,58,.08);
}

.hero::after {
  inset: 0;
  opacity: .72;
  background:
    radial-gradient(circle at 27% 36%, rgba(250,248,243,.58) 0 1px, transparent 1.8px),
    radial-gradient(circle at 71% 24%, rgba(184,144,58,.48) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 73%, rgba(250,248,243,.34) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 42%, rgba(184,144,58,.14) 49%, transparent 58%);
  background-size: 180px 180px, 260px 260px, 220px 220px, 100% 100%;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8,8,6,.18), rgba(8,8,6,.76)),
    radial-gradient(ellipse at center, transparent 0 36%, rgba(0,0,0,.62) 100%);
}

/* Nombre gigante en el fondo */
.hero-bg-name {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(180px, 45vw, 520px);
  color: rgba(255,255,255,.03);
  line-height: .8;
  letter-spacing: .05em;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 5rem;
  max-width: 860px;
  width: 100%;
}

.hc-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hc-slash {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}

.hc-eyebrow {
  font-family: var(--font-caps);
  font-size: clamp(.52rem, 1.1vw, .68rem);
  letter-spacing: .3em;
  color: var(--gold);
}

.hc-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5.5rem, 18vw, 14rem);
  color: var(--white);
  line-height: .85;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}

.hc-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: rgba(250,248,243,.7);
  margin-bottom: 3rem;
}

.hc-meta {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  max-width: 680px;
  margin: 0 auto 3rem;
  backdrop-filter: blur(4px);
  background: rgba(8,8,6,.25);
}

.hcm-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  gap: .3rem;
}

.hcm-label {
  font-family: var(--font-caps);
  font-size: .45rem;
  letter-spacing: .22em;
  color: var(--gold);
}

.hcm-val {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 300;
  color: rgba(250,248,243,.8);
  text-align: center;
}

.hcm-sep {
  width: 1px;
  background: rgba(255,255,255,.1);
}

.hc-scroll {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-caps);
  font-size: .58rem;
  letter-spacing: .28em;
  color: var(--gold);
  transition: gap .3s;
}

.hcs-label { border-bottom: 1px solid rgba(184,144,58,.35); padding-bottom: .1rem; }
.hcs-line { width: 32px; height: 1px; background: var(--gold); transition: width .3s; }
.hc-scroll:hover { gap: 1.2rem; color: var(--gold); }
.hc-scroll:hover .hcs-line { width: 56px; }

/* =====================================================
   II. MANIFESTO
   ===================================================== */
.manifesto-section {
  position: relative;
  padding: 10rem 0 8rem;
  background: var(--ink2);
  overflow: hidden;
}

/* Frase grande */
.manifesto-statement {
  max-width: 1000px;
  margin: 0 auto 6rem;
  padding: 0 4rem;
}

.ms-pre {
  font-family: var(--font-caps);
  font-size: .65rem;
  letter-spacing: .28em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.ms-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-dk);
  line-height: 1;
}

.ms-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
}

.ms-quote em { font-style: italic; color: var(--gold-lt); }

/* Split */
.manifesto-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.ms-text-col {
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ms-body {
  font-size: 1rem;
  color: rgba(250,248,243,.65);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.ms-stats {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: .5rem;
}

.mss-item { display: flex; flex-direction: column; gap: .2rem; }

.mss-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

.mss-lbl {
  font-family: var(--font-caps);
  font-size: .48rem;
  letter-spacing: .2em;
  color: var(--muted);
}

/* Foto con clip diagonal */
.ms-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.ms-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.ms-photo-col:hover .ms-photo { transform: scale(1.04); }

/* =====================================================
   III. CHEF — Sticky image
   ===================================================== */
.chef-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100svh;
  background: var(--ink);
  position: relative;
}

.chef-img-col {
  position: relative;
}

.chef-img-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.chef-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) contrast(1.05) saturate(.9);
  transition: filter .4s;
}

.chef-img-sticky:hover .chef-img { filter: brightness(.95) contrast(1.05) saturate(1); }

.chef-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink) 100%),
              linear-gradient(to top, rgba(8,8,6,.5) 0%, transparent 40%);
}

.chef-text-col {
  padding: 8rem 4rem 8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.chef-eyebrow {
  font-family: var(--font-caps);
  font-size: .62rem;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.chef-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.chef-name em { font-style: italic; color: var(--gold-lt); }

.chef-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.chef-bio {
  font-size: .95rem;
  color: rgba(250,248,243,.65);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.chef-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.chef-creds li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.cc-year {
  font-family: var(--font-caps);
  font-size: .48rem;
  letter-spacing: .15em;
  color: var(--gold);
}

.cc-text {
  font-size: .88rem;
  color: rgba(250,248,243,.65);
}

.chef-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-lt);
  border-left: 2px solid var(--gold-dk);
  padding-left: 1.25rem;
  line-height: 1.65;
}

/* =====================================================
   IV. MENÚ — Tasting notes
   ===================================================== */
.menu-section {
  position: relative;
  padding: 9rem 0;
  background: var(--ink2);
  overflow: hidden;
}

/* Background watermark */
.menu-section::before {
  content: 'CARTA';
  position: absolute;
  right: -2%;
  bottom: 5%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 25vw, 300px);
  color: rgba(184,144,58,.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.menu-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 4rem;
}

.menu-eyebrow {
  font-family: var(--font-caps);
  font-size: .65rem;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.menu-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

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

.menu-sub {
  font-size: .88rem;
  color: var(--muted);
}

/* Lista de platillos */
.menu-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  transition: background .25s;
}

.menu-item:last-of-type { border-bottom: 1px solid var(--border); }

.menu-item:hover { background: rgba(255,255,255,.015); }

.menu-item--star .mi-name { color: var(--gold-lt); }
.menu-item--star .mi-num  { color: var(--gold); }

.mi-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding-top: .2rem;
}

.mi-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,.12);
  line-height: 1;
  font-weight: 400;
  transition: color .3s;
}

.menu-item:hover .mi-num { color: rgba(184,144,58,.25); }

.mi-star-badge {
  font-size: .85rem;
  color: var(--gold);
}

.mi-cat {
  font-family: var(--font-caps);
  font-size: .55rem;
  letter-spacing: .22em;
  color: var(--terra);
  display: block;
  margin-bottom: .5rem;
}

.mi-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .5rem;
}

.mi-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

.mi-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
  text-align: right;
  padding-top: .2rem;
  min-width: 180px;
}

.mi-pair-label {
  font-family: var(--font-caps);
  font-size: .45rem;
  letter-spacing: .2em;
  color: var(--gold-dk);
}

.mi-pair-val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: rgba(250,248,243,.55);
}

.menu-note {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 4rem;
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
}

/* =====================================================
   V. FECHA — Tipografía como protagonista
   ===================================================== */
.fecha-section {
  position: relative;
  min-height: 100svh;
  background: var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}

.fecha-display {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.fd-number {
  padding-right: 3rem;
  border-right: 2px solid var(--border-paper);
}

.fdn-day {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 28vw, 280px);
  color: var(--ink);
  line-height: .85;
  display: block;
  letter-spacing: -.04em;
}

.fd-rest {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fdr-top {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fdr-month {
  font-family: var(--font-caps);
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: var(--ink);
  letter-spacing: .12em;
}

.fdr-slash {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 300;
}

.fdr-year {
  font-family: var(--font-caps);
  font-size: clamp(.9rem, 2.5vw, 1.8rem);
  color: var(--muted);
  letter-spacing: .1em;
}

.fdr-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* Lista de detalles */
.fdr-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fdr-details li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border-paper);
  align-items: baseline;
}

.fdd-label {
  font-family: var(--font-caps);
  font-size: .48rem;
  letter-spacing: .2em;
  color: var(--gold-dk);
}

.fdd-val {
  font-size: .92rem;
  color: var(--ink2);
}

/* Countdown en cream */
.fdr-countdown {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.fdc-unit { display: flex; align-items: baseline; gap: .35rem; }

.fdc-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
  min-width: 2ch;
  text-align: center;
}

.fdc-lbl {
  font-family: var(--font-caps);
  font-size: .42rem;
  letter-spacing: .15em;
  color: var(--muted);
}

.fdc-sep {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(184,144,58,.4);
  line-height: 1;
}

/* Botones sobre cream */
.btn-fecha, .btn-calendar {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-caps);
  font-size: .65rem;
  letter-spacing: .18em;
  padding: .9rem 1.75rem;
  transition: all .25s;
  margin-bottom: .75rem;
  width: fit-content;
}

.btn-fecha {
  background: var(--ink);
  color: var(--white);
  margin-right: .75rem;
}

.btn-fecha:hover { background: var(--ink2); color: var(--white); }

.btn-calendar {
  background: transparent;
  border: 1px solid var(--border-paper);
  color: var(--ink);
}

.btn-calendar:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* =====================================================
   VI. LLEGANDO — Ubicación
   ===================================================== */
.llegando-section {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.llegando-photo-wrap {
  position: absolute;
  inset: 0;
}

.llegando-photo { filter: brightness(.5) saturate(.8); }

.llegando-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,6,.9) 45%, rgba(8,8,6,.2) 100%);
}

.llegando-content {
  position: relative;
  z-index: 2;
  padding: 6rem 4rem;
  max-width: 540px;
}

.llegando-eyebrow {
  font-family: var(--font-caps);
  font-size: .62rem;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.llegando-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: .95;
  margin-bottom: 1.5rem;
}

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

.llegando-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.llegando-address { margin-bottom: 2rem; }

.la-street {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .2rem;
}

.la-col, .la-city {
  font-size: .9rem;
  color: rgba(250,248,243,.65);
  line-height: 1.6;
}

.llegando-info {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.llegando-info li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(250,248,243,.65);
}

.llegando-info i { color: var(--gold); font-size: .9rem; flex-shrink: 0; }

.btn-map {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-caps);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--ink);
  background: var(--gold);
  padding: .85rem 1.75rem;
  transition: background .25s, transform .2s;
}

.btn-map:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  padding: 3.5rem 4rem;
  background: #050503;
  border-top: 1px solid var(--border);
}

.ft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.ft-social {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
}

.ft-soc {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  transition: border-color .25s, color .25s;
}

.ft-soc:hover { border-color: var(--gold); color: var(--gold); }

.ft-contact { font-size: .8rem; color: var(--muted); }

.ft-center { text-align: center; }

.ft-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: .3rem;
}

.ft-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .5rem;
}

.ft-date {
  font-family: var(--font-caps);
  font-size: .48rem;
  letter-spacing: .22em;
  color: var(--gold-dk);
}

.ft-right { text-align: right; }

.ft-hours { font-size: .82rem; color: var(--muted); margin-bottom: .3rem; }
.ft-copy  { font-size: .72rem; color: rgba(255,255,255,.2); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .manifesto-split { grid-template-columns: 1fr; padding: 0 2rem; }
  .ms-text-col     { padding-right: 0; margin-bottom: 3rem; }
  .ms-photo-col    { clip-path: none; min-height: 360px; }

  .chef-section { grid-template-columns: 1fr; }
  .chef-img-sticky { position: relative; height: 50svh; }

  .menu-header, .menu-list, .menu-note { padding: 0 2rem; }
  .menu-item { grid-template-columns: 60px 1fr; gap: 0 1.5rem; }
  .mi-right  { display: none; }

  .fecha-display { grid-template-columns: 1fr; padding: 0 2rem; }
  .fd-number { border-right: none; border-bottom: 2px solid var(--border-paper); padding: 0 0 1.5rem 0; margin-bottom: 2rem; }
  .fd-rest   { padding-left: 0; }

  .llegando-content { padding: 4rem 2rem; }

  .ft-inner { grid-template-columns: 1fr; text-align: center; }
  .ft-social { justify-content: center; }
  .ft-right  { text-align: center; }

  .manifesto-statement { padding: 0 2rem; }
  .site-nav { padding: 1.25rem 1.5rem; }
}

@media (max-width: 575px) {
  .hc-meta { flex-direction: column; }
  .hcm-sep { width: 100%; height: 1px; }
  .fdr-details li { grid-template-columns: 100px 1fr; }
  .chef-text-col { padding: 4rem 1.5rem; }
  .fdr-top { flex-wrap: wrap; gap: .5rem; }
  .btn-fecha, .btn-calendar { width: 100%; justify-content: center; margin-right: 0; }
}
