/* =====================================================
   TOKENS
   ===================================================== */
:root {
  --bg:      #131110;
  --bg2:     #1C1814;
  --card:    #231E18;
  --terra:   #B5633F;
  --gold:    #C8933B;
  --gold-lt: #DBA84E;
  --gold-dk: #8A6020;
  --cream:   #F4EBDA;
  --cream-dk:#C8BAA2;
  --sage:    #6B8C5A;
  --muted:   #6B6256;
  --border:  rgba(255,255,255,0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-caps:    'Cinzel', 'Palatino Linotype', serif;
  --font-body:    'Inter', -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(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}
body.is-loading { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* =====================================================
   CORTINAS — La gran apertura
   ===================================================== */
.curtain {
  position: fixed;
  top: 0; bottom: 0;
  width: 50%;
  z-index: 9999;
  background: var(--bg);
  transition: transform 1.1s cubic-bezier(.76,0,.24,1);
  will-change: transform;
}

.curtain--left  { left: 0;  transform-origin: left; }
.curtain--right { right: 0; transform-origin: right; }

.curtain--left.open  { transform: translateX(-100%); }
.curtain--right.open { transform: translateX(100%); }

/* Centro entre cortinas */
.curtain-center {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}

.curtain-center.hide { opacity: 0; }

.cc-eyebrow {
  font-family: var(--font-caps);
  font-size: clamp(.5rem, 1.2vw, .65rem);
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: ccFade .8s var(--ease) .3s both;
}

.cc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 12rem);
  color: var(--cream);
  line-height: .9;
  letter-spacing: .08em;
  margin-bottom: .5rem;
  animation: ccUp 1s var(--ease-reveal) .5s both;
}

.cc-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(.85rem, 2vw, 1.2rem);
  color: var(--cream-dk);
  margin-bottom: 1.5rem;
  animation: ccFade .8s var(--ease) .7s both;
}

.cc-date {
  font-family: var(--font-caps);
  font-size: clamp(.5rem, 1.1vw, .62rem);
  letter-spacing: .28em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  animation: ccFade .8s var(--ease) .85s both;
}

.cc-dot { opacity: .5; }

.cc-progress-wrap {
  width: clamp(180px, 35vw, 320px);
  height: 1px;
  background: rgba(255,255,255,.08);
  animation: ccFade .5s var(--ease) 1s both;
}

.cc-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  width: 0%;
  transition: width .04s linear;
}

@keyframes ccFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ccUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

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

/* =====================================================
   NAVEGACIÓN
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background .4s, padding .4s;
}

.site-nav.nav--scrolled {
  background: rgba(19,17,16,.95);
  backdrop-filter: blur(12px);
  padding: .7rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.sn-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: var(--cream);
  transition: color .25s;
}

.sn-brand:hover { color: var(--gold); }

.sn-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.sn-link {
  font-family: var(--font-caps);
  font-size: .52rem;
  letter-spacing: .18em;
  color: rgba(244,235,218,.65);
  padding: .4rem .85rem;
  transition: color .25s;
}

.sn-link:hover { color: var(--gold); }

.sn-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  margin-left: .5rem;
  transition: background .25s, color .25s !important;
}

.sn-cta:hover { background: var(--gold); color: var(--bg) !important; }

.sn-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.sn-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}

.sn-burger.is-open span:first-child { transform: rotate(45deg) translate(4px,4px); }
.sn-burger.is-open span:last-child  { transform: rotate(-45deg) translate(4px,-4px); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 799;
  background: rgba(19,17,16,.97);
  padding: 5.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.is-open { transform: none; }

.mm-link {
  font-family: var(--font-caps);
  font-size: .75rem;
  letter-spacing: .22em;
  color: var(--cream-dk);
  transition: color .25s;
}

.mm-link:hover, .mm-cta { color: var(--gold); }

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

/* =====================================================
   SHARED
   ===================================================== */
.section-eyebrow {
  font-family: var(--font-caps);
  font-size: clamp(.5rem, 1.1vw, .65rem);
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

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

.section-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.light-eyebrow { color: var(--gold-lt); }
.light-title   { color: var(--cream); }

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

.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX( 28px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
  opacity: 1; transform: none;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(200,147,59,.18) 0 8%, transparent 32%),
    radial-gradient(circle at 18% 70%, rgba(181,99,63,.16) 0 7%, transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(244,235,218,.10) 0 5%, transparent 26%),
    linear-gradient(135deg, #131110 0%, #211815 45%, #0b0a09 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(19,17,16,.3) 0%, rgba(19,17,16,.85) 70%),
    linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  inset: clamp(1rem, 3vw, 2.8rem);
  border: 1px solid rgba(200,147,59,.25);
  background:
    linear-gradient(90deg, transparent, rgba(200,147,59,.38), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(244,235,218,.12), transparent) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(200,147,59,.24), transparent) left / 1px 100% no-repeat,
    linear-gradient(180deg, transparent, rgba(200,147,59,.24), transparent) right / 1px 100% no-repeat;
  box-shadow: inset 0 0 70px rgba(200,147,59,.07), 0 0 110px rgba(181,99,63,.08);
}

.hero::after {
  inset: 0;
  opacity: .62;
  background:
    radial-gradient(circle at 25% 34%, rgba(244,235,218,.44) 0 1px, transparent 1.8px),
    radial-gradient(circle at 70% 22%, rgba(200,147,59,.48) 0 1px, transparent 1.8px),
    radial-gradient(circle at 60% 76%, rgba(181,99,63,.38) 0 1px, transparent 2px),
    linear-gradient(120deg, transparent 0 42%, rgba(200,147,59,.12) 49%, transparent 58%);
  background-size: 170px 170px, 250px 250px, 220px 220px, 100% 100%;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  width: 100%;
  animation: heroIn .9s var(--ease-reveal) .2s both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-pre {
  font-family: var(--font-caps);
  font-size: clamp(.48rem, 1vw, .6rem);
  letter-spacing: .32em;
  color: var(--terra);
  margin-bottom: .5rem;
}

.hero-event-label {
  font-family: var(--font-caps);
  font-size: clamp(.52rem, 1.1vw, .65rem);
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-ornament span {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,147,59,.6));
}

.hero-ornament span:last-child {
  background: linear-gradient(90deg, rgba(200,147,59,.6), transparent);
}

.hero-ornament i { color: var(--gold); font-size: .6rem; }

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--cream-dk);
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.hm-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-caps);
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--cream-dk);
  border: 1px solid rgba(244,235,218,.15);
  padding: .55rem 1.2rem;
  backdrop-filter: blur(4px);
  background: rgba(19,17,16,.3);
}

.hm-pill i { color: var(--gold); font-size: .9rem; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-caps);
  font-size: .85rem;
  letter-spacing: .22em;
  color: var(--cream);
  background: var(--gold);
  padding: 1rem 2.2rem;
  transition: background .25s, transform .2s;
}

.hero-cta:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--bg); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.hsh-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(200,147,59,.5));
  animation: shPulse 2s ease-in-out infinite;
}

@keyframes shPulse {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50%       { transform: scaleY(.6); opacity: 1; }
}

.hsh-text {
  font-family: var(--font-caps);
  font-size: .4rem;
  letter-spacing: .3em;
  color: rgba(200,147,59,.4);
}

/* =====================================================
   TICKER
   ===================================================== */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  background: var(--gold);
  padding: .6rem 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  animation: tickerScroll 24s linear infinite;
}

.ticker-track span {
  font-family: var(--font-caps);
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--bg);
  font-weight: 600;
}

.tk-sep { font-size: .4rem !important; opacity: .6; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   CONCEPTO
   ===================================================== */
.concepto-section { padding: 8rem 0; background: var(--bg2); }

.concepto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 600px;
}

.cg-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.cg-photo img { transition: transform .6s var(--ease); }
.cg-photo:hover img { transform: scale(1.04); }

.cg-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg2) 100%);
}

.cg-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concepto-body {
  font-size: .95rem;
  color: var(--cream-dk);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.concepto-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.cs-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; }

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

.cs-label {
  font-family: var(--font-caps);
  font-size: .45rem;
  letter-spacing: .18em;
  color: var(--muted);
  text-align: center;
}

.cs-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.btn-concepto {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-caps);
  font-size: .82rem;
  letter-spacing: .15em;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,147,59,.4);
  padding-bottom: .2rem;
  transition: border-color .25s, gap .25s;
  gap: 0;
  width: fit-content;
}

.btn-concepto:hover { border-color: var(--gold); gap: .2rem; color: var(--gold); }

/* =====================================================
   CHEF
   ===================================================== */
.chef-section { padding: 8rem 0; background: var(--bg); }

.chef-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

.chef-bio {
  font-size: .92rem;
  color: var(--cream-dk);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.chef-creds {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}

.chef-cred {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--cream-dk);
}

.chef-cred i { color: var(--gold); font-size: .8rem; flex-shrink: 0; }

.chef-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.chef-photo {
  transition: transform .5s var(--ease);
}

.chef-photo-wrap:hover .chef-photo { transform: scale(1.04); }

.chef-photo-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--bg);
  padding: .75rem 1.1rem;
  border-left: 2px solid var(--gold);
}

.cpt-title {
  font-family: var(--font-caps);
  font-size: .42rem;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: .2rem;
}

.cpt-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
}

/* =====================================================
   MENÚ TEASER
   ===================================================== */
.menu-section { padding: 8rem 0; background: var(--bg2); }

.section-head-simple { margin-bottom: 4rem; }

.menu-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: .25rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
}

.menu-item {
  background: var(--bg2);
  overflow: hidden;
  transition: transform .3s;
}

.menu-item:hover { transform: translateY(-4px); z-index: 1; }

.mi-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.mi-photo-wrap img { transition: transform .5s var(--ease); }
.menu-item:hover .mi-photo-wrap img { transform: scale(1.06); }

.mi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,17,16,.6) 0%, transparent 60%);
}

.mi-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-caps);
  font-size: .42rem;
  letter-spacing: .15em;
  padding: .25rem .65rem;
  font-weight: 600;
}

.mi-info { padding: 1.75rem; }

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

.mi-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--cream);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.mi-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.mi-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.1rem;
}

.mi-pairing {
  font-size: .92rem;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mi-pairing i { font-size: .85rem; }

.menu-item--featured { border: 1px solid rgba(200,147,59,.3); }
.menu-item--featured .mi-name { color: var(--gold-lt); }

.menu-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .88rem;
  color: var(--muted);
}

/* =====================================================
   GALERÍA EDITORIAL
   ===================================================== */
.galeria-section { padding: 8rem 0; background: var(--bg); overflow: hidden; }

.gal-header { margin-bottom: 3rem; }

.gal-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: .75rem;
  padding: 0 1.5rem;
}

.ge-item {
  overflow: hidden;
  position: relative;
}

.ge-item--tall { grid-row: span 2; }

.ge-item img {
  transition: transform .6s var(--ease);
}

.ge-item:hover img { transform: scale(1.06); }

.ge-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: .75rem;
}

/* =====================================================
   EVENTO — Detalles
   ===================================================== */
.evento-section { padding: 8rem 0; background: var(--bg2); }

.evento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 4rem;
}

.ev-info-card {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background .25s;
}

.ev-info-card:hover { background: var(--card); }

.eic-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.eic-label {
  font-family: var(--font-caps);
  font-size: .45rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: .6rem;
}

.eic-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
}

/* Countdown del evento */
.ev-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--card);
}

.ecd-label {
  font-family: var(--font-caps);
  font-size: .52rem;
  letter-spacing: .28em;
  color: var(--muted);
}

.ecd-units {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.ecd-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
  min-width: 2ch;
  text-align: center;
}

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

.ecd-sep { color: rgba(200,147,59,.4); font-size: 1.2rem; }

/* =====================================================
   UBICACIÓN
   ===================================================== */
.ubicacion-section { padding: 8rem 0; background: var(--bg); }

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ub-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ub-list i { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: .2rem; }

.ub-list strong {
  font-family: var(--font-caps);
  font-size: .48rem;
  letter-spacing: .18em;
  color: var(--gold);
  display: block;
  margin-bottom: .25rem;
}

.ub-list p { font-size: .87rem; color: var(--cream-dk); line-height: 1.6; }

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

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

.ub-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.ub-photo-wrap img { transition: transform .5s var(--ease); }
.ub-photo-wrap:hover img { transform: scale(1.04); }

.ub-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,17,16,.7) 0%, transparent 50%);
}

.ub-photo-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-caps);
  font-size: .52rem;
  letter-spacing: .2em;
  color: var(--cream);
  background: rgba(19,17,16,.75);
  padding: .4rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.ub-photo-tag i { color: var(--terra); }

/* =====================================================
   RSVP
   ===================================================== */
.rsvp-section {
  position: relative;
  padding: 8rem 0;
  background: var(--bg2);
  overflow: hidden;
}

.rsvp-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=40')
    center / cover no-repeat;
  opacity: .06;
}

.rsvp-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-top: .5rem;
}

.rsvp-rule { margin: 1.5rem auto 0; }

.rsvp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

/* Formulario */
.rsvp-form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem;
}

.rf-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

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

.rf-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 300;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}

.rf-input:focus { border-color: rgba(200,147,59,.5); }
.rf-input::placeholder { color: var(--muted); }
.rf-select { cursor: pointer; }
.rf-textarea { resize: vertical; min-height: 80px; }

/* Select color fix */
.rf-select option { background: var(--bg2); color: var(--cream); }

.btn-rsvp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-caps);
  font-size: .6rem;
  letter-spacing: .22em;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
  margin-bottom: 1rem;
}

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

.rf-note {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

/* Panel lateral */
.rsvp-side { display: flex; flex-direction: column; gap: 1.25rem; }

.rs-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.rsc-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}

.rsc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: .5rem;
}

.rsc-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: .75rem;
}

.rsc-text { font-size: .85rem; color: var(--cream-dk); margin-bottom: .4rem; }
.rsc-note { font-size: .78rem; color: var(--muted); }

.rsc-wa {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-caps);
  font-size: .48rem;
  letter-spacing: .15em;
  color: var(--bg);
  background: #25D366;
  padding: .5rem 1rem;
  margin-top: .5rem;
  transition: background .25s;
}

.rsc-wa:hover { background: #1da851; color: var(--bg); }

.rs-card--highlight {
  border-color: rgba(181,99,63,.4);
  background: rgba(181,99,63,.08);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.rsc-alert-icon { color: var(--terra) !important; flex-shrink: 0; }

.rsc-alert {
  font-size: .82rem;
  color: var(--cream-dk);
  line-height: 1.65;
}

.rsc-alert strong { color: var(--terra); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  padding: 5rem 0 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.ft-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.ft-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: .12em;
  color: var(--cream);
}

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

.ft-social { display: flex; gap: 1rem; }

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

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

.ft-rule { height: 1px; background: var(--border); margin-bottom: 2.5rem; }

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

.ftb-left p, .ftb-right p { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.ftb-right { text-align: right; }

.ft-date-line {
  font-family: var(--font-caps);
  font-size: .6rem;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: .3rem;
}

.ft-copy { font-size: .75rem; color: rgba(244,235,218,.25); }
.ft-copy i { color: rgba(200,147,59,.4); }

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

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .sn-links { display: none; }
  .sn-burger { display: flex; }

  .concepto-grid { grid-template-columns: 1fr; }
  .cg-text { padding: 3rem 1.5rem; }
  .cg-photo { min-height: 320px; }

  .chef-grid { grid-template-columns: 1fr; gap: 3rem; }
  .chef-photo-wrap { aspect-ratio: 4/3; max-width: 500px; }

  .menu-grid { grid-template-columns: 1fr; }

  .gal-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .ge-item--tall { grid-row: auto; }
  .ge-col { display: contents; }

  .evento-grid { grid-template-columns: repeat(2, 1fr); }

  .ubicacion-grid { grid-template-columns: 1fr; gap: 3rem; }

  .rsvp-grid { grid-template-columns: 1fr; gap: 3rem; }

  .ft-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .ftb-right { text-align: left; }
}

@media (max-width: 575px) {
  .rf-row { grid-template-columns: 1fr; }
  .rsvp-form { padding: 2rem 1.25rem; }
  .hero-meta { flex-direction: column; align-items: center; }
  .evento-grid { grid-template-columns: 1fr 1fr; }
  .gal-editorial { grid-template-columns: 1fr; grid-template-rows: auto; }
}
