/* ─── Asador El Bodegón — Página principal (Inicio) ─── */
/* Comparte tipografía, color y ornamentos con la carta */

/* Site navigation (shared header for the public site) */
.site-nav {
  position: sticky; top: 0;
  z-index: 60;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--rule);
}
.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-nav-links {
  display: flex; gap: 30px;
  justify-content: center;
}
.site-nav-links a {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 0.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav-links a:hover { color: var(--ink); }
.site-nav-links a.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.site-nav-cta {
  justify-self: end;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  border: 0.5px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.site-nav-cta:hover { background: var(--gold); color: var(--paper); }

/* ─── HOME HERO ─── */
.home-hero {
  position: relative;
  min-height: calc(100vh - 67px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.home-hero-bg { position: absolute; inset: 0; z-index: 0; }
.home-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(20,15,10,0.5) 0%, rgba(20,15,10,0.82) 100%),
    linear-gradient(180deg, rgba(20,15,10,0.45), rgba(20,15,10,0.72));
}
.home-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--paper);
  padding: 60px 32px;
  max-width: 760px;
  display: flex; flex-direction: column; align-items: center;
}
.home-hero-asador {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.55em;
  color: var(--goldLt);
  text-transform: uppercase;
  margin: 20px 0 12px;
}
.home-hero-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: 0.14em;
  color: var(--paper);
  text-transform: uppercase;
  line-height: 1;
}
.home-hero-name em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--goldLt);
  font-size: 0.62em;
  margin-top: 8px;
}
.home-hero-kicker {
  font-family: 'Cormorant SC', var(--display);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--goldLt);
  text-transform: uppercase;
  margin: 22px 0 18px;
}
.home-hero-desc {
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(250,246,238,0.86);
  max-width: 500px;
  margin-bottom: 34px;
}
.home-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-gold-fill {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 30px;
  background: var(--goldLt);
  border: 0.5px solid var(--goldLt);
  transition: background 0.25s;
}
.btn-gold-fill:hover { background: var(--gold); }
.btn-gold-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 16px 30px;
  border: 0.5px solid rgba(250,246,238,0.5);
  transition: background 0.25s, border-color 0.25s;
}
.btn-gold-ghost:hover { background: rgba(250,246,238,0.12); border-color: var(--paper); }

/* ─── Section shell ─── */
.home-section { max-width: 1280px; margin: 0 auto; padding: 96px 40px; }
.home-section-head { text-align: center; margin-bottom: 56px; }
.home-section-head .eyebrow { margin-bottom: 14px; }
.home-h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 46px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
}
.home-h2 em {
  font-style: italic;
  font-family: var(--body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--rust);
}

/* ─── Esencia (split + stats) ─── */
.esencia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.esencia-media {
  position: relative;
  aspect-ratio: 4/5;
  border: 0.5px solid var(--rule);
  overflow: hidden;
  background: var(--surface);
}
.esencia-media img { width: 100%; height: 100%; object-fit: cover; }
.esencia-media .frame-corner {
  position: absolute; width: 22px; height: 22px; z-index: 2;
  border: 1px solid var(--goldLt);
}
.fc-tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.fc-br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.esencia-body .eyebrow { margin-bottom: 14px; }
.esencia-body .home-h2 { text-align: left; }
.esencia-lead {
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  margin: 22px 0 36px;
  max-width: 460px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 0.5px solid var(--rule);
  padding-top: 28px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  color: var(--rust);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ─── Especialidades ─── */
.especialidades { background: var(--surface); }
.especialidades-wrap { max-width: 1280px; margin: 0 auto; padding: 96px 40px; }
.especialidades-intro {
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.spec-card {
  background: var(--paper);
  border: 0.5px solid var(--rule);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.spec-art { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface); }
.spec-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.spec-card:hover .spec-art img { transform: scale(1.05); }
.spec-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(250,246,238,0.92);
  padding: 6px 12px;
  border: 0.5px solid var(--rule);
}
.spec-body { padding: 26px 26px 30px; }
.spec-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.spec-desc {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.especialidades-foot { text-align: center; margin-top: 56px; }
.link-underline {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid var(--gold);
}
.link-underline:hover { color: var(--rust); border-color: var(--rust); }

/* ─── Reservas CTA band ─── */
.reservas-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.reservas-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.28; }
.reservas-bg img { width: 100%; height: 100%; object-fit: cover; }
.reservas-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,15,10,0.6), rgba(20,15,10,0.82));
}
.reservas-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  text-align: center;
  padding: 110px 40px;
  display: flex; flex-direction: column; align-items: center;
}
.reservas-content .home-h2 { color: var(--paper); }
.reservas-content .home-h2 em { color: var(--goldLt); }
.reservas-content .eyebrow { color: var(--goldLt); margin-bottom: 14px; }
.reservas-lead {
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(250,246,238,0.86);
  max-width: 480px;
  margin: 22px 0 36px;
}
.reservas-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ─── Footer (site) ─── */
.site-footer {
  background: #0B0907;
  color: var(--paper);
  padding: 64px 40px 40px;
}
.site-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.site-footer .brand-a { color: var(--goldLt); }
.site-footer .brand-b { color: var(--paper); font-size: 24px; }
.footer-brand-tag {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: rgba(250,246,238,0.6);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--goldLt);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  font-family: var(--body);
  font-size: 16px;
  color: rgba(250,246,238,0.78);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--goldLt); }
.site-footer-base {
  max-width: 1280px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
}

/* ─── Reveal animation ─── */
.reveal { opacity: 1; transform: none; }
html.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .site-nav-links { display: none; }
  .site-nav-inner { grid-template-columns: 1fr auto; }
  .esencia { grid-template-columns: 1fr; gap: 40px; }
  .esencia-body .home-h2 { text-align: center; }
  .esencia-body .eyebrow { text-align: center; }
  .esencia-lead { text-align: center; margin-left: auto; margin-right: auto; }
  .spec-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand-tag { margin-left: auto; margin-right: auto; }
  .home-section { padding: 64px 32px; }
  .especialidades-wrap { padding: 64px 32px; }
}
@media (max-width: 600px) {
  .site-nav-inner { padding: 14px 24px; }
  .home-section { padding: 56px 24px; }
  .especialidades-wrap { padding: 56px 24px; }
  .stats { gap: 14px; }
  .stat-num { font-size: 28px; }
  .reservas-content { padding: 72px 24px; }
}

/* ════════════════════════════════════════════ */
/*  INNER PAGES                                   */
/* ════════════════════════════════════════════ */

/* Page hero (compact, shared by inner pages) */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(20,15,10,0.5), rgba(20,15,10,0.8));
}
.page-hero-content {
  position: relative; z-index: 2;
  color: var(--paper);
  padding: 80px 32px;
  max-width: 760px;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero-content .eyebrow { color: var(--goldLt); margin-bottom: 16px; }
.page-hero-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 72px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.02;
}
.page-hero-sub {
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,246,238,0.85);
  margin-top: 20px;
  max-width: 480px;
}

/* ── Sobre Nosotros ── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.story:last-child { margin-bottom: 0; }
.story.reverse .story-media { order: 2; }
.story-media {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  border: 0.5px solid var(--rule);
  background: var(--surface);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media .frame-corner { position: absolute; width: 22px; height: 22px; z-index: 2; border: 1px solid var(--goldLt); }
.story-body .eyebrow { margin-bottom: 14px; }
.story-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.story-body h3 em {
  font-style: italic; font-family: var(--body); font-weight: 400;
  text-transform: none; letter-spacing: 0.01em; color: var(--rust);
}
.story-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-sign {
  font-family: 'Cormorant SC', var(--display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
}

/* Values row */
.values { background: var(--surface); }
.values-wrap { max-width: 1280px; margin: 0 auto; padding: 90px 40px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.value-item { text-align: center; }
.value-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { width: 40px; height: 40px; }
.value-item h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.value-item p {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Galería ── */
.gallery-page { max-width: 1320px; margin: 0 auto; padding: 90px 40px; }
.masonry {
  column-count: 3;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 0.5px solid var(--rule);
  background: var(--surface);
}
.masonry-item img { width: 100%; display: block; transition: transform 0.6s ease, filter 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); filter: brightness(0.92); }
.masonry-item .gi-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(20,15,10,0.78));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.masonry-item:hover .gi-cap { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,9,7,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border: 0.5px solid rgba(212,168,75,0.4); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--goldLt);
  background: transparent; border: 0; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 32px; color: var(--goldLt);
  background: transparent; border: 0; cursor: pointer;
  padding: 16px;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* ── Eventos ── */
.eventos-intro {
  max-width: 720px; margin: 0 auto 64px;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.event-card {
  position: relative;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  border: 0.5px solid var(--rule);
  color: var(--paper);
}
.event-card-bg { position: absolute; inset: 0; z-index: 0; }
.event-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover .event-card-bg img { transform: scale(1.05); }
.event-card-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(transparent 30%, rgba(20,15,10,0.88));
}
.event-card-body { position: relative; z-index: 2; padding: 32px; }
.event-card-body .eyebrow { color: var(--goldLt); margin-bottom: 10px; }
.event-card-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.event-card-body p {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250,246,238,0.85);
  max-width: 380px;
}

/* ── Reservas ── */
.reservas-page { max-width: 1180px; margin: 0 auto; padding: 90px 40px; }
.reservas-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.res-form { display: flex; flex-direction: column; gap: 20px; }
.res-field { display: flex; flex-direction: column; gap: 8px; }
.res-field label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.res-field input,
.res-field select,
.res-field textarea {
  font-family: var(--body);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid var(--rule);
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.2s;
}
.res-field input:focus,
.res-field select:focus,
.res-field textarea:focus { border-bottom-color: var(--gold); }
.res-field textarea { resize: vertical; min-height: 70px; }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.res-submit {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 0.5px solid var(--ink);
  padding: 18px 28px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.res-submit:hover { background: var(--rust); border-color: var(--rust); }
.res-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.res-actions .res-submit { margin-top: 0; flex: 1; min-width: 180px; }
.res-submit-alt {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--ink);
}
.res-submit-alt:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.res-note {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
}

.res-info { border-left: 0.5px solid var(--rule); padding-left: 56px; }
.res-info-block { margin-bottom: 36px; }
.res-info-block:last-child { margin-bottom: 0; }
.res-info-block h4 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.res-info-block p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 4px;
}
.res-info-block a { color: var(--rust); text-decoration: none; }
.res-info-block a:hover { text-decoration: underline; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.07);
  font-size: 16px;
  color: var(--ink);
}
.hours-row span:last-child { color: var(--muted); font-style: italic; font-weight: 300; }
.hours-row.closed span:last-child { color: var(--rust); }

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 36px; margin-bottom: 64px; }
  .story.reverse .story-media { order: 0; }
  .story-body { text-align: center; }
  .story-body .eyebrow { display: block; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .masonry { column-count: 2; }
  .event-grid { grid-template-columns: 1fr; }
  .reservas-grid { grid-template-columns: 1fr; gap: 48px; }
  .res-info { border-left: 0; padding-left: 0; border-top: 0.5px solid var(--rule); padding-top: 40px; }
  .gallery-page, .reservas-page { padding: 64px 32px; }
  .values-wrap { padding: 64px 32px; }
}
@media (max-width: 560px) {
  .masonry { column-count: 1; }
  .res-row { grid-template-columns: 1fr; }
  .gallery-page, .reservas-page { padding: 56px 24px; }
}
