/* ── Variables ── */
:root {
  --black:   #0f0d0b;
  --coal:    #1a1612;
  --dark:    #231e18;
  --mid:     #3a3028;
  --red:     #c0392b;
  --ember:   #e05c2e;
  --gold:    #c8922a;
  --bone:    #f0e8d8;
  --cream:   #faf6ef;
  --muted:   #9a8f82;
  --border:  rgba(255,255,255,.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--bone);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(15,13,11,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.nav-logo-la {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--bone); letter-spacing: .02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .78rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  background: var(--red); color: var(--bone);
  padding: .55rem 1.4rem; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: var(--ember); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--bone); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0; z-index: 99;
  background: rgba(15,13,11,.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  transform: translateY(-8px); opacity: 0;
  transition: transform .25s, opacity .25s;
  pointer-events: none;
}
.nav-mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile-menu a {
  display: block; padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; font-size: .9rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover, .nav-mobile-menu .mobile-cta { color: var(--red); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 6rem 6rem 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.7) brightness(.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,13,11,.85) 45%, rgba(15,13,11,.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--red); }
.hero-title {
  display: flex; flex-direction: column; line-height: .95; margin-bottom: 1.2rem;
}
.hero-title-la {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.hero-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 10rem); font-weight: 900;
  color: var(--bone); letter-spacing: -.01em;
}
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--bone);
  padding: .9rem 2rem; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  text-decoration: none; transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { background: var(--ember); transform: translateY(-1px); }
.btn-ghost {
  color: var(--bone); text-decoration: none;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid var(--muted); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--bone); border-color: var(--bone); }

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 2;
  margin-top: auto; width: 100%;
  display: flex; align-items: center;
  padding: 2rem 0; gap: 0;
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: .25rem; padding: 0 2.5rem; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--bone); line-height: 1;
}
.hero-stat-label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.hero-stat-sep { width: 1px; height: 2.5rem; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
  color: var(--muted); font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── HORARIOS STRIP ── */
.horarios-strip {
  background: var(--red);
  padding: 1.2rem 0;
}
.horarios-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.horarios-item { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.horarios-label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(240,232,216,.7); font-family: 'Barlow Condensed', sans-serif;
}
.horarios-time {
  font-size: .9rem; font-weight: 600; color: var(--bone);
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: .05em;
}
.horarios-sep { width: 1px; height: 2.5rem; background: rgba(255,255,255,.2); }

/* ── SECTIONS BASE ── */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 1.5rem; height: 1px; background: var(--red); }
.section-tag--light { color: var(--gold); }
.section-tag--light::before { background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700;
  color: var(--bone); line-height: 1.1; margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--red); }
.section-title--light { color: var(--bone); }
.section-title--light em { color: var(--gold); }

/* ── NOSOTROS ── */
.about { background: var(--coal); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text .section-title { margin-bottom: 2rem; }
.about-text p {
  color: var(--muted); line-height: 1.8; font-size: .95rem;
  font-weight: 300; margin-bottom: 1rem;
}
.about-features {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: .6rem; margin-top: 2rem;
}
.about-features li {
  font-size: .82rem; color: var(--bone); display: flex; align-items: center; gap: .5rem;
  font-weight: 400;
}
.feat-icon { font-size: .9rem; }
.about-images { position: relative; display: grid; grid-template-columns: 1fr .6fr; gap: .5rem; }
.about-img-main img, .about-img-side img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.85);
}
.about-img-main { height: 500px; overflow: hidden; }
.about-img-side { display: flex; flex-direction: column; gap: .5rem; }
.about-img-side img { flex: 1; height: 220px; }
.about-badge {
  background: var(--red); color: var(--bone);
  padding: 1rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  text-align: center;
}

/* ── CARTA ── */
.carta { position: relative; padding: 7rem 0; background: var(--black); }
.carta-bg { position: absolute; inset: 0; }
.carta-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.4) brightness(.2); }
.carta-overlay { position: absolute; inset: 0; background: rgba(15,13,11,.88); }
.carta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 3.5rem;
  border: 1px solid var(--border);
}
.carta-item {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 1rem;
  transition: background .3s;
}
.carta-item:nth-child(3n) { border-right: none; }
.carta-item:nth-child(4), .carta-item:nth-child(5), .carta-item:nth-child(6) { border-bottom: none; }
.carta-item:hover { background: rgba(192,57,43,.08); }
.carta-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: rgba(192,57,43,.2);
  line-height: 1; flex-shrink: 0; padding-top: .1rem;
}
.carta-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--bone); margin-bottom: .5rem;
}
.carta-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.carta-cta { margin-top: 3rem; text-align: center; }
.carta-cta-note { margin-top: .75rem; font-size: .78rem; color: var(--muted); }

/* ── RESEÑAS ── */
.reviews { background: var(--dark); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3.5rem;
}
.review-card {
  background: var(--coal); border: 1px solid var(--border);
  padding: 2rem; transition: border-color .3s;
}
.review-card:hover { border-color: rgba(192,57,43,.4); }
.review-stars { color: var(--gold); font-size: .85rem; letter-spacing: .1em; margin-bottom: 1rem; }
.review-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; line-height: 1.7; color: var(--bone); margin-bottom: 1.5rem;
}
.review-footer { display: flex; justify-content: space-between; align-items: center; }
.review-author { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.review-source {
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red); font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
}
.reviews-score {
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 3rem; align-items: center; flex-wrap: wrap;
}
.score-box { text-align: center; }
.score-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: var(--bone); line-height: 1; display: block;
}
.score-stars { color: var(--gold); font-size: .85rem; margin: .2rem 0; }
.score-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ── LOCALES ── */
.locales { background: var(--coal); }
.locales-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.local-card {
  background: var(--dark); border: 1px solid var(--border);
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: border-color .3s;
}
.local-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.local-card:hover { border-color: rgba(192,57,43,.3); }
.local-card:hover::after { transform: scaleX(1); }
.local-tag {
  display: inline-block; background: rgba(192,57,43,.15);
  color: var(--red); font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; padding: .3rem .8rem; margin-bottom: 1rem;
}
.local-tag--red { background: rgba(192,57,43,.25); }
.local-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--bone); line-height: 1.15;
  margin-bottom: 1.5rem;
}
.local-address {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .85rem; color: var(--muted); margin-bottom: .6rem;
}
.local-icon { flex-shrink: 0; }
.local-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin: 1.2rem 0; }
.local-horario {
  font-size: .82rem; color: var(--bone); line-height: 1.8;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem;
}
.local-horario strong { color: var(--red); font-weight: 600; }
.local-btn {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.local-btn:hover { border-color: var(--red); }
.map-embed {
  margin-top: 3rem; border: 1px solid var(--border); overflow: hidden; height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.8) invert(.9) hue-rotate(180deg); }

/* ── CONTACTO ── */
.contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-lead {
  font-size: .95rem; color: var(--muted); line-height: 1.8;
  font-weight: 300; margin: 1.5rem 0 2rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: .9rem; color: var(--bone); text-decoration: none;
  transition: color .2s;
}
.contact-item:hover { color: var(--red); }
.contact-item--plain { cursor: default; }
.contact-item--plain:hover { color: var(--bone); }
.contact-icon {
  width: 2.5rem; height: 2.5rem; background: var(--dark); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-form-wrap
.contact-form { background: var(--dark); border: 1px solid var(--border); padding: 2.5rem; }
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--bone); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
}
.form-group input, .form-group textarea {
  background: var(--coal); border: 1px solid var(--border);
  padding: .75rem 1rem; font-family: 'Barlow', sans-serif;
  font-size: .9rem; color: var(--bone); outline: none; resize: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-note { font-size: .7rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--coal); border-top: 1px solid var(--border); padding: 3rem; }
.footer-inner { text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--bone); letter-spacing: .02em;
}
.footer-sub { font-size: .78rem; color: var(--muted); margin-top: .4rem; }
.footer-links {
  display: flex; justify-content: center; gap: 1rem; align-items: center;
  margin-top: 1.5rem; font-size: .78rem;
}
.footer-links a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--red); }
.footer-links span { color: var(--border); }
.footer-disclaimer {
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: .68rem; color: rgba(154,143,130,.4);
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
  background: #25d366;
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }

  .hero { padding: 5rem 1.5rem 0; min-height: 100svh; }
  .hero-title-main { font-size: clamp(4rem, 18vw, 7rem); }
  .hero-stats { gap: 0; flex-wrap: wrap; padding: 1.5rem 0; }
  .hero-stat { padding: .5rem 1.2rem; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-scroll { right: 1.5rem; }

  .horarios-inner { flex-direction: column; gap: 1rem; padding: 0 1.5rem; }
  .horarios-sep { width: 3rem; height: 1px; }

  section { padding: 4.5rem 0; }
  .container { padding: 0 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { grid-template-columns: 1fr .7fr; }
  .about-img-main { height: 320px; }
  .about-img-side img { height: 140px; }

  .carta-grid { grid-template-columns: 1fr; }
  .carta-item { border-right: none; }
  .carta-item:nth-child(4), .carta-item:nth-child(5) { border-bottom: 1px solid var(--border); }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-score { gap: 2rem; }

  .locales-grid { grid-template-columns: 1fr; }
  .map-embed { height: 220px; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}