*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream: #f5f0e8;
  --cream2: #ede6d6;
  --brown: #2c1f0e;
  --brown2: #3d2b12;
  --gold: #b8860b;
  --gold2: #d4a843;
  --espresso: #1a1008;
  --muted: #7a6a55;
  --border: rgba(44,31,14,0.12);
  --radius: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { max-width: 100%; }
p { line-height: 1.75; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }

/* ── DEMO BAR ── */
.demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(26,16,8,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 0.55rem 3rem 0.55rem 1.5rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em; gap: 0.5rem;
  transition: transform 0.3s ease;
}
.demo-bar.hidden { transform: translateY(-100%); }
.demo-bar a { color: var(--gold2); text-decoration: underline; }
.demo-bar-close {
  position: absolute; right: 1rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  cursor: pointer; padding: 0.25rem 0.4rem;
  transition: color 0.2s;
}
.demo-bar-close:hover { color: rgba(255,255,255,0.7); }
.nav { top: 32px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(44,31,14,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 2rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; letter-spacing: 0.22em;
  color: var(--cream); transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--brown); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); transition: color 0.3s; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--brown); }
.nav-cta {
  background: var(--gold2) !important; color: var(--espresso) !important;
  font-weight: 600 !important; padding: 0.55rem 1.4rem; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 16px rgba(184,134,11,0.4) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: background 0.3s; }
.nav.scrolled .nav-burger span { background: var(--brown); }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--cream); border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem; gap: 0.25rem;
}
.nav-mobile a { font-size: 1rem; color: var(--muted); padding: 0.65rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--brown); }
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,8,2,0.45) 0%, rgba(15,8,2,0.35) 50%, rgba(15,8,2,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem; max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold2); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 1.5rem;
}
.ht-thin {
  font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 300;
  color: rgba(255,255,255,0.7); letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.ht-big {
  font-size: clamp(5rem, 14vw, 9.5rem); font-weight: 600; line-height: 0.88;
  color: #fff; letter-spacing: 0.04em;
  opacity: 0; animation: fadeUp 0.9s 0.65s forwards;
}
.ht-italic {
  font-size: clamp(2rem, 5vw, 3.5rem); font-style: italic; font-weight: 300;
  color: var(--gold2); letter-spacing: 0.06em;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 480px;
  margin: 0 auto 2.5rem; line-height: 1.75;
  opacity: 0; animation: fadeUp 0.9s 0.95s forwards;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 3;
}
.hdot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.3s, width 0.3s;
}
.hdot.active { background: var(--gold2); width: 48px; }

.hero-scroll {
  position: absolute; right: 2rem; bottom: 2.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hs-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold2), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.2} 50%{opacity:.9} }

/* ── BUTTONS ── */
.btn-cream {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cream); color: var(--espresso);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.9rem 2rem; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 0.9rem 2rem; border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brown); color: var(--cream);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.9rem 2rem; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(44,31,14,0.3); }
.mt-btn { margin-top: 2rem; display: inline-flex; }

/* ── ANNOUNCE ── */
.announce {
  background: var(--espresso); color: rgba(255,255,255,0.75);
  text-align: center; padding: 0.85rem 1.5rem;
  font-size: 0.8rem; letter-spacing: 0.04em;
}
.announce a { color: var(--gold2); font-weight: 600; text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.eyebrow {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold2); }
.s-head { text-align: center; margin-bottom: 4rem; }
.s-head-left { text-align: left; }
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 600; line-height: 1.18;
}
.s-title em { font-style: italic; color: var(--gold); }
.s-title.light { color: #fff; }
.s-title.light em { color: var(--gold2); }

/* ── MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.mcard {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s;
}
.mcard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(44,31,14,0.12); }
.mcard-img {
  height: 200px; background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.mcard:hover .mcard-img { transform: scale(1.04); }
.mcard-featured { border-color: rgba(184,134,11,0.25); box-shadow: 0 0 0 2px rgba(184,134,11,0.1); }
.mcard-wide { grid-column: span 2; }
.mcard-wide .mcard-img { height: 220px; }
.mcard-body { padding: 1.5rem; }
.mcard-body-wide { display: flex; flex-direction: column; }
.mcard-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block;
}
.mcard h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
.mcard p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.mcard-footer { display: flex; align-items: center; justify-content: space-between; }
.mcard-footer strong { font-size: 1.1rem; font-weight: 700; color: var(--brown); }
.mcard-footer span { font-size: 0.72rem; color: var(--gold); font-weight: 600; }
.menu-cta { text-align: center; margin-top: 3rem; }

/* ── ABOUT ── */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.about-photo {
  position: relative; background-size: cover; background-position: center;
  min-height: 500px;
}
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}
.about-text-wrap {
  background: var(--cream); display: flex; align-items: center; padding: 5rem 4rem 5rem 2rem;
}
.about-text p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; }
.about-nums {
  display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.anum { text-align: center; }
.anum strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.anum span { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; display: block; }

/* ── EXPERIENCIA ── */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1rem; }
.exp-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(44,31,14,0.1); }
.exp-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.exp-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; }
.exp-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── GALLERY ── */
.gallery-section { padding: 7rem 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  grid-template-rows: 280px 280px;
  gap: 4px; margin-top: 3rem;
}
.gi { overflow: hidden; position: relative; cursor: pointer; }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gi-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gi:hover .gi-bg { transform: scale(1.06); }

/* ── TESTIMONIOS ── */
.testi-section { background: var(--cream2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tcard {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: transform 0.3s;
}
.tcard:hover { transform: translateY(-4px); }
.tcard-dark { background: var(--espresso); border-color: transparent; }
.tcard-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1rem; font-size: 0.9rem; }
.tcard-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.tcard-dark .tcard-text { color: rgba(255,255,255,0.6); }
.tcard-author { display: flex; align-items: center; gap: 0.85rem; }
.tcard-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
}
.tcard-author strong { display: block; font-size: 0.88rem; font-weight: 700; }
.tcard-dark .tcard-author strong { color: #fff; }
.tcard-author em { font-size: 0.75rem; color: var(--muted); font-style: normal; }
.tcard-dark .tcard-author em { color: rgba(255,255,255,0.4); }

/* ── VISIT ── */
.visit-section { position: relative; min-height: 600px; }
.visit-map { display: grid; grid-template-columns: 1fr 480px; min-height: 600px; }
.visit-map-bg {
  background-size: cover; background-position: center;
  position: relative; grid-column: 1; grid-row: 1;
}
.visit-map-overlay { position: absolute; inset: 0; background: rgba(15,8,2,0.4); }
.visit-info {
  background: var(--espresso); padding: 5rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  grid-column: 2; grid-row: 1;
}
.vinfo-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.vinfo-item { display: flex; align-items: flex-start; gap: 1rem; }
.vinfo-item span { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.vinfo-item strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gold2); margin-bottom: 0.2rem; letter-spacing: 0.08em; text-transform: uppercase; }
.vinfo-item em { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-style: normal; line-height: 1.5; }

/* ── RESERVAR ── */
.reservar-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
}
.reservar-sub { font-size: 0.9rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.7; }
.reservar-photo {
  margin-top: 2rem; height: 280px; border-radius: 20px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.reservar-form, .rf-success {
  background: var(--espresso); border-radius: 24px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.rf-field { display: flex; flex-direction: column; gap: 0.45rem; }
.rf-field label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.rf-field label span { font-weight: 400; opacity: 0.6; }
.rf-field input, .rf-field select, .rf-field textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 0.85rem 1rem; font-size: 0.88rem;
  color: #fff; font-family: inherit; transition: border-color 0.2s;
}
.rf-field input::placeholder, .rf-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.rf-field input:focus, .rf-field select:focus, .rf-field textarea:focus {
  outline: none; border-color: rgba(212,168,67,0.5);
}
.rf-field select option { background: #2c1f0e; color: #fff; }
.rf-field textarea { resize: none; }
.rf-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--espresso); font-size: 0.9rem; font-weight: 700;
  padding: 1rem 1.5rem; border-radius: 12px; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.4); }
.rf-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: center; }
.rf-success {
  text-align: center; align-items: center; justify-content: center;
  min-height: 400px;
}
.rfs-icon { font-size: 3rem; margin-bottom: 1rem; }
.rf-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: var(--gold2); margin-bottom: 0.5rem; }
.rf-success p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* ── FOOTER ── */
.footer { background: var(--espresso); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.fg-brand .nav-logo { color: var(--cream); font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.fg-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.fg-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.fg-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; transition: border-color 0.2s, color 0.2s;
}
.fg-social a:hover { border-color: var(--gold2); color: var(--gold2); }
.fg-col { display: flex; flex-direction: column; gap: 0.75rem; }
.fg-col strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold2); margin-bottom: 0.25rem; }
.fg-col a, .fg-col span { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.fg-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem; text-align: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.2);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.footer-disclaimer {
  font-size: 0.68rem; color: rgba(255,255,255,0.15); max-width: 680px; margin: 0 auto;
}
.footer-disclaimer a { color: rgba(212,168,67,0.5); text-decoration: underline; }

/* ── WhatsApp ── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 54px; height: 54px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 300;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── Scroll reveal ── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.sr.in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .mcard-wide { grid-column: auto; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { min-height: 360px; }
  .about-photo-overlay { background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%); }
  .about-text-wrap { padding: 3rem 2rem; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .visit-map { grid-template-columns: 1fr; }
  .visit-map-bg { min-height: 320px; grid-column: 1; grid-row: 1; }
  .visit-info { grid-column: 1; grid-row: 2; padding: 3rem 2rem; }
  .reservar-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rf-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-tall, .gi-wide { grid-row: auto; grid-column: auto; }
  .gi { min-height: 220px; }
  .gi-bg { position: relative; min-height: 220px; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .about-nums { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .ht-big { font-size: clamp(4rem, 18vw, 6rem); }
}
