/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0b0b0b;
  --bg-2: #131110;
  --bg-3: #1a1613;
  --line: rgba(245, 245, 245, 0.1);
  --line-strong: rgba(245, 245, 245, 0.18);

  --cream: #f5f5f5;
  --cream-mute: rgba(245, 245, 245, 0.62);
  --cream-faint: rgba(245, 245, 245, 0.38);

  --gold: #c9a45c;
  --gold-soft: #e0c286;
  --gold-dark: #8a6d38;
  --red: #7a1f24;
  --red-soft: #a13138;

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1220px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 720px) { .container { padding-inline: 2.5rem; } }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: 0.6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-style: italic;
  margin-bottom: 1.1rem;
  max-width: 16ch;
}

.section-lede {
  color: var(--cream-mute);
  max-width: 46ch;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.section { position: relative; padding: 6.5rem 0; background: var(--bg); }
.section-alt { background: var(--bg-2); }
@media (min-width: 960px) { .section { padding: 9rem 0; } }

/* =============================================================
   4. Reveal
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-soft), transform 0.85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   5. Components — buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), background 0.35s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: 0.12s; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1508;
}
.btn-gold:hover { box-shadow: 0 20px 40px rgba(201, 164, 92, 0.28), 0 6px 18px rgba(0, 0, 0, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201, 164, 92, 0.08); }

.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform 0.8s var(--ease-soft);
}

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), margin 0.35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. Scroll progress
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; background: rgba(255, 255, 255, 0.06); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-soft));
  transform-origin: 0 0; transform: scaleX(0); transition: transform 0.08s linear;
}

/* =============================================================
   8. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 150;
  padding: 1.1rem 0;
  transition: background-color 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(11, 11, 11, 0.82);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.nav-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.nav-brand-name { font-family: var(--serif); font-style: italic; font-size: 1.15rem; letter-spacing: 0.01em; }

.nav-links { display: none; gap: 1.9rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: 0.92rem; padding: 0.25rem 0; color: var(--cream-mute); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; gap: 5px;
  width: 42px; height: 42px;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger span { width: 22px; height: 1.5px; background: var(--cream); transition: transform 0.35s var(--ease-out), opacity 0.35s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(11, 11, 11, 0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--serif); font-style: italic; font-size: 1.5rem; }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: clip;
  isolation: isolate;
  padding-top: 6rem;
}
.hero-mesh {
  position: absolute; inset: -15%; z-index: -2;
  background:
    radial-gradient(48% 40% at var(--mesh-x) var(--mesh-y), rgba(201, 164, 92, 0.32), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(201, 164, 92, 0.14), rgba(122, 31, 36, 0.14), rgba(201, 164, 92, 0.1), rgba(201, 164, 92, 0.14));
  filter: blur(90px) saturate(120%);
  animation: meshShift 26s linear infinite;
}
@keyframes meshShift {
  0% { --mesh-angle: 0deg; --mesh-x: 28%; --mesh-y: 36%; }
  50% { --mesh-angle: 180deg; --mesh-x: 68%; --mesh-y: 58%; }
  100% { --mesh-angle: 360deg; --mesh-x: 28%; --mesh-y: 36%; }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 50% 30%, transparent 30%, var(--bg) 92%);
}
.hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1.8rem; border: 1px solid var(--line-strong); }
.eyebrow { font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero-title {
  font-size: clamp(2.5rem, 6.6vw, 5rem);
  font-style: italic;
  max-width: 18ch;
  text-wrap: balance;
  margin-bottom: 1.6rem;
}
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--cream-mute); max-width: 46ch; margin-bottom: 2.6rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line-strong); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrollDot 1.8s infinite var(--ease-soft); }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* =============================================================
   10. Split text
   ============================================================= */
.split-word { display: inline-block; }

/* =============================================================
   11. Experiencia
   ============================================================= */
.exp-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }

.exp-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--bg-3);
  border: 1px solid var(--line);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease-soft), box-shadow 0.55s var(--ease-soft);
}
.exp-card:hover { transition-duration: 0.15s; box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 164, 92, 0.2); }

.exp-card-media { position: absolute; inset: 0; z-index: -1; }
.exp-card.has-photo .exp-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-soft), filter 0.6s;
  filter: brightness(0.62) saturate(1.05);
}
.exp-card.has-photo:hover .exp-card-media img { transform: scale(1.09); filter: brightness(0.72) saturate(1.15); }
.exp-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.15) 65%);
}

.exp-scoreboard {
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(122, 31, 36, 0.55), transparent 60%),
    linear-gradient(160deg, #1a0d0e, #0b0b0b 70%);
  display: flex; align-items: flex-start; justify-content: flex-end; padding: 1.4rem;
}
.exp-scoreboard-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-soft); box-shadow: 0 0 12px 2px var(--red-soft); animation: pulseDot 1.6s infinite; margin-right: 0.5rem; align-self: center; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.exp-scoreboard-text { font-size: 0.72rem; letter-spacing: 0.2em; font-weight: 700; color: var(--red-soft); align-self: center; }

.exp-card-body { position: relative; z-index: 1; padding: 1.9rem 1.7rem 2.1rem; }
.exp-icon { font-size: 1.7rem; display: block; margin-bottom: 0.7rem; }
.exp-card-body h3 { font-size: 1.35rem; font-style: italic; margin-bottom: 0.55rem; }
.exp-card-body p { color: var(--cream-mute); font-size: 0.94rem; max-width: 32ch; }

/* =============================================================
   12. Carta / menu tiles
   ============================================================= */
.menu-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 960px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

.menu-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  text-align: left;
}
.menu-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-soft); }
.menu-tile:hover img { transform: scale(1.07); }
.menu-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.94) 0%, rgba(11, 11, 11, 0.1) 60%);
  transition: background 0.4s;
}
.menu-tile-label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  font-weight: 600; font-size: 0.98rem;
}
.menu-tile-label em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

/* =============================================================
   13. Espacios
   ============================================================= */
.spaces-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .spaces-grid { grid-template-columns: repeat(2, 1fr); } }

.space-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  padding: 2.4rem 1.9rem;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.55s var(--ease-soft), box-shadow 0.55s var(--ease-soft);
}
.space-card:hover { transition-duration: 0.15s; box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.5); }
.space-card-visual { position: absolute; inset: 0; z-index: -1; transition: transform 1s var(--ease-soft); }
.space-card:hover .space-card-visual { transform: scale(1.12); }
.space-card h3 { font-size: 1.4rem; font-style: italic; margin-bottom: 0.6rem; }
.space-card p { color: var(--cream-mute); font-size: 0.94rem; max-width: 34ch; }

.tone-gold .space-card-visual { background: radial-gradient(85% 70% at 20% 15%, rgba(201, 164, 92, 0.4), transparent 60%), linear-gradient(155deg, #1c160c, #0b0b0b 75%); }
.tone-red .space-card-visual { background: radial-gradient(85% 70% at 80% 10%, rgba(122, 31, 36, 0.55), transparent 60%), linear-gradient(155deg, #1a0d0e, #0b0b0b 75%); }
.tone-gold-dark .space-card-visual { background: conic-gradient(from 210deg at 30% 80%, rgba(138, 109, 56, 0.5), transparent 55%), linear-gradient(155deg, #171207, #0b0b0b 75%); }
.tone-rose .space-card-visual { background: radial-gradient(80% 70% at 75% 85%, rgba(161, 49, 56, 0.35), rgba(201, 164, 92, 0.22) 45%, transparent 70%), linear-gradient(155deg, #180f0d, #0b0b0b 75%); }

/* =============================================================
   14. Eventos
   ============================================================= */
.events-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }

.event-card {
  position: relative;
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-soft), border-color 0.4s, background 0.4s;
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(201, 164, 92, 0.35); background: rgba(245, 245, 245, 0.05); }
.event-date { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.9rem; }
.event-date span { font-size: 2rem; }
.event-tag { display: inline-block; font-size: 0.66rem; letter-spacing: 0.16em; font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 999px; margin-bottom: 0.9rem; }
.tag-red { background: rgba(122, 31, 36, 0.28); color: var(--red-soft); }
.tag-gold { background: rgba(201, 164, 92, 0.18); color: var(--gold-soft); }
.event-card h3 { font-size: 1.15rem; font-style: italic; margin-bottom: 0.5rem; }
.event-card p { color: var(--cream-mute); font-size: 0.9rem; }

/* =============================================================
   15. Galería masonry
   ============================================================= */
.masonry {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 170px;
}
@media (min-width: 720px) { .masonry { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; } }

.masonry-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  width: 100%; height: 100%;
}
.masonry-item.is-tall { grid-row: span 2; }
.masonry-item.is-wide { grid-column: span 2; }

.masonry-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-soft), filter 0.5s; }
button.masonry-item:hover img { transform: scale(1.1); filter: brightness(1.06) saturate(1.1); }

.masonry-quote {
  background: linear-gradient(155deg, var(--bg-3), var(--bg));
  display: flex; align-items: center; padding: 1.6rem;
}
.masonry-quote p { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold-soft); text-wrap: balance; }

.masonry-cta {
  background: radial-gradient(90% 80% at 30% 20%, rgba(201, 164, 92, 0.28), transparent 65%), var(--bg-3);
  display: flex; flex-direction: column; justify-content: center; padding: 1.5rem;
  transition: background 0.4s;
}
.masonry-cta:hover { background: radial-gradient(90% 80% at 30% 20%, rgba(201, 164, 92, 0.4), transparent 65%), var(--bg-3); }
.masonry-cta-label { font-size: 0.78rem; color: var(--cream-mute); margin-bottom: 0.3rem; }
.masonry-cta-handle { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-soft); }

/* =============================================================
   16. Testimonios
   ============================================================= */
.testi-carousel { position: relative; max-width: 760px; margin-inline: auto; }
.testi-track { position: relative; min-height: 220px; }
.testi-card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
  text-align: center;
  padding: 2.4rem 1.5rem;
  border-radius: 20px;
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid var(--line);
}
.testi-card.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi-card p { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.5rem); margin-bottom: 1.6rem; text-wrap: balance; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 0.7rem; font-size: 0.9rem; color: var(--cream-mute); }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  color: #1a1508; font-weight: 700; font-size: 0.8rem;
}
.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.8rem; }
.testi-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); transition: background 0.3s, width 0.3s; }
.testi-dots button.is-active { background: var(--gold); width: 22px; border-radius: 5px; }

/* =============================================================
   17. Ubicación
   ============================================================= */
.ubicacion-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .ubicacion-grid { grid-template-columns: 0.9fr 1.1fr; } }
.ubicacion-address { font-size: 1.1rem; color: var(--cream-mute); margin: 1.2rem 0 1.8rem; }
.ubicacion-map { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.ubicacion-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* =============================================================
   18. Reservas form
   ============================================================= */
.reservas-wrap { max-width: 720px; margin-inline: auto; text-align: center; position: relative; }
.reservas-copy { margin-bottom: 2.6rem; }
.reservas-copy .section-title, .reservas-copy .section-lede { margin-inline: auto; }

.reserva-form { text-align: left; display: flex; flex-direction: column; gap: 1.1rem; position: relative; transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-soft); }
.reserva-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }

.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem 0.5rem; border-radius: 10px;
  border: 1px solid var(--line-strong); background: rgba(245, 245, 245, 0.03); color: var(--cream);
  font-family: var(--sans); font-size: 0.98rem;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; padding-top: 1.6rem; }
.field input:focus, .field textarea:focus { border-color: var(--gold); background: rgba(201, 164, 92, 0.05); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.05rem;
  pointer-events: none; transition: all 0.25s var(--ease-out);
  color: var(--cream-faint); font-size: 0.98rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0.45rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(3, 1fr); } }

.reserva-submit { position: relative; margin-top: 0.6rem; }
.reserva-submit-spinner, .reserva-submit-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.reserva-form.is-sending .reserva-submit-label { opacity: 0; }
.reserva-form.is-sending .reserva-submit-spinner { opacity: 1; }
.reserva-submit-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid rgba(26, 21, 8, 0.35); border-top-color: #1a1508;
  border-radius: 50%; animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.reserva-success {
  position: absolute; left: 50%; top: 50%; width: 100%; max-width: 420px;
  transform: translate(-50%, -40%);
  opacity: 0; pointer-events: none; text-align: center;
  transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.9s var(--ease-soft) 0.15s;
}
.reserva-success.is-visible { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.reserva-success h3 { font-style: italic; font-size: 1.6rem; margin-bottom: 0.7rem; color: var(--gold-soft); }
.reserva-success p { color: var(--cream-mute); }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { background: #060606; padding: 5rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.6rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); }
.footer-brand p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.footer-brand p span { display: block; font-family: var(--sans); font-style: normal; font-size: 0.82rem; color: var(--cream-mute); margin-top: 0.2rem; }

.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-style: normal; }
.footer-hours { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.9rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; color: var(--cream-mute); }
.footer-hours li span:last-child { color: var(--cream); }

.footer-address { font-size: 0.9rem; color: var(--cream-mute); margin-bottom: 1rem; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: #5fd06b; }
.footer-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

.footer-social { display: flex; gap: 0.9rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: border-color 0.3s, background 0.3s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201, 164, 92, 0.1); }
.footer-social svg { width: 17px; height: 17px; fill: var(--cream); }

.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--cream-faint); }
.footer-bottom a { color: var(--cream-faint); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================================
   20. Lightbox
   ============================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6, 6, 6, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: min(92vw, 900px); max-height: 86vh; border-radius: 10px; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(245, 245, 245, 0.08); font-size: 1.1rem; }
.lightbox-close:hover { background: rgba(245, 245, 245, 0.16); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(245, 245, 245, 0.08);
  font-size: 1.8rem; display: grid; place-items: center;
}
.lightbox-nav:hover { background: rgba(245, 245, 245, 0.16); }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
@media (max-width: 640px) { .lightbox-nav { width: 42px; height: 42px; font-size: 1.4rem; } }

/* =============================================================
   21. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}

/* =============================================================
   22. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .exp-scoreboard-dot { animation: none; }
  .hero-scroll span { animation: none; }
}
