/* ============================================================
   VÉRTICE — Restaurante de Alta Gastronomía
   Paleta: bg #0d0806, gold #c4973e, crema #f0e6d0, vino #8b1515
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0806;
  --bg-section: #130e0a;
  --gold: #c4973e;
  --gold-light: #e8be75;
  --cream: #f0e6d0;
  --cream-dim: rgba(240,230,208,0.65);
  --wine: #8b1515;
  --white: #ffffff;
  --text: #f0e6d0;
  --gray: rgba(240,230,208,0.5);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(13,8,6,0.95) 0%, rgba(13,8,6,0) 100%);
  transition: background 0.3s;
}

.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__left a, .nav__right a {
  color: rgba(240,230,208,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 500;
}

.nav__left a:hover, .nav__right a:hover { color: var(--gold); }

.nav__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 6px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav__reservar {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: 1px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav__reservar:hover { background: var(--gold-light) !important; }

/* Nav scrolled state */
.nav--scrolled {
  background: rgba(10,6,4,0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(196,151,62,0.12);
}

/* Hamburger mobile button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(240,230,208,0.7);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,6,4,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu--open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(240,230,208,0.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* Map embed */
.map-embed {
  margin-top: 16px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(196,151,62,0.2);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: none;
  filter: grayscale(60%) sepia(20%);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-title--light { color: var(--gold); }

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #0d0806;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,8,6,0.62) 0%, rgba(13,8,6,0.45) 40%, rgba(13,8,6,0.78) 100%);
}

/* Floating particles */
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

.p {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: float-p 8s ease-in-out infinite;
}

.p1 { width: 3px; height: 3px; left: 15%; top: 25%; animation-delay: 0s; animation-duration: 9s; }
.p2 { width: 2px; height: 2px; left: 75%; top: 15%; animation-delay: 1.5s; animation-duration: 7s; }
.p3 { width: 4px; height: 4px; left: 45%; top: 70%; animation-delay: 3s; animation-duration: 11s; }
.p4 { width: 2px; height: 2px; left: 85%; top: 60%; animation-delay: 0.8s; animation-duration: 8s; }
.p5 { width: 3px; height: 3px; left: 25%; top: 75%; animation-delay: 2s; animation-duration: 10s; }
.p6 { width: 2px; height: 2px; left: 60%; top: 30%; animation-delay: 4s; animation-duration: 6s; }

@keyframes float-p {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.15; }
  33% { transform: translateY(-20px) translateX(10px); opacity: 0.3; }
  66% { transform: translateY(-10px) translateX(-8px); opacity: 0.1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 32px 80px;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(196,151,62,0.3);
  border-radius: 1px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 36px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: 2px solid var(--gold);
}

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

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 36px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(240,230,208,0.25);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(196,151,62,0.15);
}

.hero__award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.award-symbol {
  font-size: 1.1rem;
  color: var(--gold);
}

.hero__award span:last-child {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-align: center;
}

.hero__sep {
  width: 1px;
  height: 40px;
  background: rgba(196,151,62,0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ============================================================
   CARTA
   ============================================================ */
.carta {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100px, var(--bg-section) calc(100% - 100px), var(--bg) 100%);
}

.carta__header {
  text-align: center;
  margin-bottom: 56px;
}

.carta__header .section-sub {
  margin: 0 auto;
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(196,151,62,0.2);
}

.tab {
  background: none;
  border: none;
  color: var(--gray);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tab:hover { color: var(--cream); }

.tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel--active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* DISHES */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.dish {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(196,151,62,0.12);
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
  overflow: hidden;
}

.dish:hover {
  background: rgba(196,151,62,0.04);
  border-color: rgba(196,151,62,0.25);
}

.dish__img {
  width: 120px;
  flex-shrink: 0;
  min-height: 150px;
}

.dish__img--1 { background: linear-gradient(135deg, #3d1a00, #8b4513); }
.dish__img--2 { background: linear-gradient(135deg, #00303d, #0d7b8c); }
.dish__img--3 { background: linear-gradient(135deg, #1a2d00, #4a7c00); }
.dish__img--4 { background: linear-gradient(135deg, #2d1500, #7c4a00); }
.dish__img--5 { background: linear-gradient(135deg, #3d0000, #8b1515); }
.dish__img--6 { background: linear-gradient(135deg, #00203d, #0d4a7c); }
.dish__img--7 { background: linear-gradient(135deg, #2d2d00, #7c7c00); }
.dish__img--8 { background: linear-gradient(135deg, #1a0000, #5c1515); }
.dish__img--9 { background: linear-gradient(135deg, #3d2000, #9c6000); }
.dish__img--10 { background: linear-gradient(135deg, #1a001a, #4a004a); }
.dish__img--11 { background: linear-gradient(135deg, #001a1a, #004a4a); }
.dish__img--12 { background: linear-gradient(135deg, #2d1500, #8b4513); }

.dish__info {
  flex: 1;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.dish__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.dish__header h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.dish__price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.dish__info p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
}

.dish__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(196,151,62,0.1);
  border: 1px solid rgba(196,151,62,0.2);
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  align-self: flex-start;
}

.dish__tag--wine { color: #e8be75; background: rgba(139,21,21,0.15); border-color: rgba(139,21,21,0.3); }
.dish__tag--veg { color: #81c784; background: rgba(129,199,132,0.1); border-color: rgba(129,199,132,0.2); }

/* ============================================================
   NUESTRA ESENCIA (reinvención de sección chef)
   ============================================================ */
.esencia {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0;
}

.esencia__bg {
  position: absolute;
  inset: 0;
}

.esencia__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.esencia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,8,6,0.90) 0%,
    rgba(13,8,6,0.80) 45%,
    rgba(13,8,6,0.93) 100%
  );
}

.esencia__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.esencia__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.esencia__rule {
  display: block;
  width: 72px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.esencia__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  max-width: 720px;
  border: none;
  padding: 0;
  margin: 0;
}

.esencia__autor {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.esencia__pillars {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.esencia__pillar {
  flex: 1;
  text-align: center;
  padding: 0 44px;
}

.esencia__pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.esencia__pillar p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}

.esencia__pillar-sep {
  width: 1px;
  background: rgba(196,151,62,0.2);
  align-self: stretch;
  min-height: 110px;
  flex-shrink: 0;
}

.esencia__stats {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  border-top: 1px solid rgba(196,151,62,0.18);
  padding-top: 44px;
}

.esencia__stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.esencia__stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.esencia__stat span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.esencia__stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(196,151,62,0.18);
  flex-shrink: 0;
}

/* ============================================================
   EXPERIENCIA
   ============================================================ */
.experiencia {
  padding: 120px 0;
  background: linear-gradient(135deg, #130e0a 0%, #0d0806 100%);
  text-align: center;
  border-top: 1px solid rgba(196,151,62,0.1);
  border-bottom: 1px solid rgba(196,151,62,0.1);
}

.exp-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  text-align: left;
}

.exp-card {
  padding: 40px 32px;
  border: 1px solid rgba(196,151,62,0.1);
  border-radius: 2px;
  background: rgba(196,151,62,0.02);
  transition: border-color 0.3s, background 0.3s;
}

.exp-card:hover {
  border-color: rgba(196,151,62,0.3);
  background: rgba(196,151,62,0.05);
}

.exp-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.exp-icon svg { width: 100%; height: 100%; }

.exp-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.exp-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   RESERVAS
   ============================================================ */
.reservas {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.reservas__bg {
  position: absolute;
  inset: 0;
}
.reservas__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.reservas__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(13,8,6,0.62) 12%,
    rgba(13,8,6,0.55) 50%,
    rgba(13,8,6,0.62) 88%,
    var(--bg) 100%
  );
}

.reservas > .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.reservas__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.reservas__note {
  color: rgba(240,230,208,0.75);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.reservas__dato {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: baseline;
}

.reservas__dato strong {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 90px;
  font-family: var(--font-head);
}

.reservas__dato a,
.reservas__dato span {
  color: var(--cream);
  font-size: 0.9rem;
  user-select: text;
}

.reservas__cancellation {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(196,151,62,0.2);
}

.reservas__cancellation h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reservas__cancellation p {
  font-size: 0.84rem;
  color: rgba(240,230,208,0.6);
  line-height: 1.7;
}

/* FORM */
.reservas__form {
  background: rgba(13,8,6,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196,151,62,0.3);
  border-top: 2px solid rgba(196,151,62,0.75);
  padding: 48px;
}

.reservas__form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row .form-group { margin-bottom: 20px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240,230,208,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-head);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,151,62,0.2);
  border-radius: 2px;
  color: var(--cream);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,230,208,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(196,151,62,0.05);
}

.form-group select option { background: #1a0c0a; color: var(--cream); }

.form-group textarea { resize: vertical; }

.btn-submit-res {
  width: 100%;
  padding: 16px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid var(--gold);
  color: var(--bg);
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   HORARIOS
   ============================================================ */
/* ============================================================
   HORARIOS
   ============================================================ */
.horarios {
  padding: 100px 0 96px;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-section) 100px);
}

.horarios__header {
  text-align: center;
  margin-bottom: 64px;
}

.horarios__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.horarios__info {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.horarios__bloque-title {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 20px;
}

.horario-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196,151,62,0.07);
}

.horario-row span:first-child { color: rgba(240,230,208,0.7); }
.horario-row span:last-child { color: var(--gold-light); font-weight: 500; }
.horario-row--closed span { color: rgba(240,230,208,0.25) !important; font-weight: 400 !important; }

.horario-note {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 12px;
}

.contact-list { display: flex; flex-direction: column; gap: 12px; }

.contact-row {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  align-items: baseline;
}

.contact-row strong {
  color: rgba(240,230,208,0.4);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  min-width: 76px;
}

.contact-row a,
.contact-row span {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  user-select: text;
}

.contact-row a:hover { color: var(--gold); }

.horarios__evento {
  padding-top: 20px;
  border-top: 1px solid rgba(196,151,62,0.1);
}

.horarios__evento strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.horarios__evento p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.65;
}

.horarios__mapa { display: flex; flex-direction: column; gap: 16px; }

address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(240,230,208,0.6);
  line-height: 1.7;
}

address strong { color: var(--cream); }

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: invert(92%) hue-rotate(180deg) saturate(0.35) brightness(0.75);
  border-radius: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060302;
  padding: 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 48px;
  padding: 72px 32px 64px;
  border-bottom: 1px solid rgba(196,151,62,0.1);
}

.footer__col { display: flex; flex-direction: column; gap: 0; }

.footer__col--brand { gap: 10px; }

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 7px;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__addr {
  font-size: 0.82rem;
  color: rgba(240,230,208,0.4);
  line-height: 1.75;
}

.footer__col-title {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 0.84rem;
  color: rgba(240,230,208,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--cream); }

.footer__links--text span {
  font-size: 0.84rem;
  color: rgba(240,230,208,0.45);
  user-select: text;
}

.footer__social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(240,230,208,0.45);
  cursor: default;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(240,230,208,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__socials a:hover { color: var(--cream); }

.footer__reserve a {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}

.footer__reserve a:hover { opacity: 0.7; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 32px;
}

.footer__bottom span {
  font-size: 0.72rem;
  color: rgba(240,230,208,0.18);
  letter-spacing: 0.04em;
}

/* ============================================================
   FIX: dish__img-wrap — imagen real en el plato (antes era .dish__img placeholder)
   ============================================================ */
.dish__img-wrap {
  width: 100%;
  height: 210px;
  min-height: 210px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #1a0d08;
}
.dish__img-wrap img {
  /* Absolute para garantizar que llene el contenedor independientemente del flex */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.dish:hover .dish__img-wrap img { transform: scale(1.07); }

/* esencia responsive */
@media (max-width: 768px) {
  .esencia__pillars { flex-direction: column; gap: 32px; align-items: center; }
  .esencia__pillar { padding: 0; }
  .esencia__pillar-sep { display: none; }
  .esencia__stats { flex-wrap: wrap; gap: 28px; padding-top: 32px; }
  .esencia__stat-sep { display: none; }
}

/* ============================================================
   PRENSA
   ============================================================ */
.prensa {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-section) 140px, var(--bg-section) calc(100% - 80px), var(--bg) 100%);
  text-align: center;
}
.prensa__hero {
  max-width: 860px;
  margin: 0 auto 72px;
  position: relative;
}
.prensa__comilla {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.18;
  margin-bottom: 8px;
  user-select: none;
}
.prensa__quote-featured {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}
.prensa__cite-featured {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.prensa__medios {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid rgba(196,151,62,0.12);
  border-bottom: 1px solid rgba(196,151,62,0.12);
  margin-bottom: 72px;
}
.prensa__medios span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,230,208,0.28);
  transition: color 0.3s;
}
.prensa__medios span:hover { color: var(--gold); }
.prensa__sep {
  color: rgba(196,151,62,0.25) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
.prensa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.prensa__item {
  padding: 40px 32px;
  border: 1px solid rgba(196,151,62,0.09);
  background: rgba(196,151,62,0.02);
  text-align: left;
  transition: background 0.3s, border-color 0.3s;
}
.prensa__item:hover {
  background: rgba(196,151,62,0.05);
  border-color: rgba(196,151,62,0.2);
}
.prensa__item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.prensa__item cite {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav__left, .nav__right a:not(.nav__reservar) { display: none; }
  .nav__right { gap: 0; }
  .nav__reservar { display: none; }
  .nav__hamburger { display: flex; }
  .nav--scrolled { padding: 10px 24px; }
  .premios__grid { grid-template-columns: 1fr 1fr; }

  .hero__title { font-size: 3rem; letter-spacing: -1px; }
  .hero__meta { flex-direction: column; gap: 16px; }
  .hero__sep { display: none; }

  .dishes-grid { grid-template-columns: 1fr; }
  .dish { flex-direction: column; }
  .dish__img { width: 100%; height: 140px; }
  .dish__img-wrap { width: 100%; height: 200px; min-height: 200px; }

  .prensa__grid { grid-template-columns: 1fr; }
  .prensa__comilla { font-size: 6rem; }
  .prensa__medios { gap: 12px; }

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

  .exp-cols { grid-template-columns: 1fr; gap: 24px; }
  .reservas__inner { grid-template-columns: 1fr; }
  .reservas__form { padding: 28px; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .form-row { grid-template-columns: 1fr; }
  .horarios__layout { grid-template-columns: 1fr; gap: 40px; }
  .map-embed iframe { height: 260px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   RESPONSIVE FIXES — Mobile & Tablet (appended)
   ============================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

img, iframe, video {
  max-width: 100%;
}

/* ---------- TABLET (<=1024px) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav { padding: 18px 28px; }
  .nav--scrolled { padding: 12px 28px; }
  .nav__left { gap: 22px; }
  .nav__logo img { height: 90px !important; }

  .hero__content { padding: 110px 24px 70px; }
  .hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); }
  .hero__meta { gap: 22px; flex-wrap: wrap; }

  .carta { padding: 90px 0; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .tab { padding: 14px 24px; font-size: 0.8rem; letter-spacing: 1.5px; }

  .esencia { padding: 100px 0; min-height: auto; }
  .esencia__content { gap: 56px; padding: 0 24px; }
  .esencia__pillar { padding: 0 24px; }

  .reservas__inner { grid-template-columns: 1fr; gap: 56px; }
  .reservas > .container { padding-top: 90px; padding-bottom: 90px; }
  .reservas__form { padding: 36px; }

  .horarios { padding: 80px 0; }
  .horarios__layout { grid-template-columns: 1fr; gap: 56px; }
  .horarios__mapa .map-embed iframe { height: 340px; }

  .prensa { padding: 90px 0; }
  .prensa__grid { grid-template-columns: 1fr 1fr; }

  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 36px;
    padding: 56px 24px 48px;
  }
}

/* ---------- MOBILE (<=768px) ---------- */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* NAV */
  .nav { padding: 12px 18px; }
  .nav--scrolled { padding: 10px 18px; }
  .nav__logo img { height: 70px !important; }
  .nav__hamburger { display: flex; }
  .nav__left,
  .nav__right { display: none; }
  .mobile-menu a { font-size: 1.3rem; letter-spacing: 2px; }

  /* HERO */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero__content { padding: 130px 20px 90px; max-width: 100%; }
  .hero__tagline {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    padding: 6px 14px;
    margin-bottom: 22px;
  }
  .hero__title {
    font-size: clamp(2.1rem, 9vw, 3rem);
    letter-spacing: -1px;
    line-height: 1.08;
    margin-bottom: 22px;
  }
  .hero__sub {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 30px;
  }
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 44px;
    align-items: stretch;
  }
  .hero__actions .btn-gold,
  .hero__actions .btn-ghost {
    width: 100%;
    padding: 14px 24px;
    text-align: center;
  }
  .hero__meta {
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
  }
  .hero__sep { display: none; }
  .hero__scroll { display: none; }

  /* CARTA */
  .carta { padding: 70px 0; }
  .carta__header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-sub { font-size: 0.92rem; }

  .tabs {
    gap: 0;
    margin-bottom: 32px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab {
    padding: 14px 20px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }
  .dish { flex-direction: column; }
  .dish__img-wrap {
    width: 100%;
    height: 220px;
    min-height: 220px;
  }
  .dish__info { padding: 22px 20px; }
  .dish__header {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .dish__header h3 { font-size: 1.05rem; }
  .dish__price { font-size: 1.05rem; }
  .dish__info p { font-size: 0.85rem; }

  /* ESENCIA */
  .esencia { padding: 80px 0; }
  .esencia__content { gap: 48px; padding: 0 20px; }
  .esencia__quote {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
    line-height: 1.5;
  }
  .esencia__autor { font-size: 0.72rem; }
  .esencia__pillars {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
  .esencia__pillar { padding: 0; max-width: 100%; }
  .esencia__pillar-sep { display: none; }
  .esencia__stats {
    flex-direction: column;
    gap: 28px;
    padding-top: 36px;
  }
  .esencia__stat-sep { display: none; }
  .esencia__stat strong { font-size: 1.9rem; }

  /* PRENSA */
  .prensa { padding: 70px 0; }
  .prensa__hero { margin-bottom: 48px; }
  .prensa__comilla { font-size: 5rem; }
  .prensa__quote-featured {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
    line-height: 1.55;
  }
  .prensa__medios {
    gap: 10px;
    padding: 28px 0;
    margin-bottom: 48px;
  }
  .prensa__medios span { font-size: 0.7rem; letter-spacing: 0.1em; }
  .prensa__grid { grid-template-columns: 1fr; gap: 1px; }
  .prensa__item { padding: 28px 22px; }
  .prensa__item p { font-size: 1rem; }

  /* RESERVAS */
  .reservas__bg img { object-position: center; }
  .reservas > .container { padding-top: 70px; padding-bottom: 70px; }
  .reservas__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reservas__note { font-size: 0.88rem; margin-bottom: 28px; }
  .reservas__dato {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
  }
  .reservas__dato strong { min-width: 0; }
  .reservas__dato span,
  .reservas__dato a {
    font-size: 0.95rem;
    word-break: break-word;
  }
  .reservas__form {
    padding: 26px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13,8,6,0.85);
  }
  .reservas__form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    font-size: 16px; /* evita zoom en iOS */
    padding: 12px 14px;
  }
  .btn-submit-res { padding: 14px; font-size: 0.85rem; }

  /* HORARIOS */
  .horarios { padding: 70px 0 64px; }
  .horarios__header { margin-bottom: 44px; }
  .horarios__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .horarios__info { gap: 32px; }
  .horario-row { font-size: 0.85rem; padding: 10px 0; }
  .contact-row {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }
  .contact-row strong { min-width: 0; }
  .contact-row span,
  .contact-row a { word-break: break-word; font-size: 0.9rem; }
  .map-embed { width: 100%; }
  .map-embed iframe { height: 280px; width: 100%; }

  /* FOOTER */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 36px;
    text-align: left;
  }
  .footer__col--brand { text-align: left; }
  .footer__logo { font-size: 1.4rem; letter-spacing: 5px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 18px 20px;
  }
  .footer__bottom span { font-size: 0.68rem; }
}

/* ---------- VERY SMALL (<=480px) ---------- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .nav { padding: 10px 14px; }
  .nav--scrolled { padding: 8px 14px; }
  .nav__logo img { height: 58px !important; }

  /* HERO */
  .hero__content { padding: 120px 16px 80px; }
  .hero__tagline {
    font-size: 0.58rem;
    letter-spacing: 2px;
    padding: 5px 12px;
    margin-bottom: 18px;
  }
  .hero__title {
    font-size: clamp(1.85rem, 9.5vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }
  .hero__sub {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 26px;
  }
  .hero__actions { margin-bottom: 36px; }
  .hero__actions .btn-gold,
  .hero__actions .btn-ghost {
    padding: 13px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
  }
  .hero__meta { gap: 14px; padding-top: 20px; }
  .hero__award span:last-child { font-size: 0.66rem; }

  /* SECTIONS */
  .carta,
  .prensa { padding: 56px 0; }
  .esencia { padding: 64px 0; }
  .horarios { padding: 56px 0 52px; }
  .reservas > .container { padding-top: 56px; padding-bottom: 56px; }

  .section-title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .section-eyebrow { font-size: 0.66rem; letter-spacing: 2px; }
  .section-sub { font-size: 0.88rem; }

  /* CARTA */
  .tabs { margin-bottom: 26px; }
  .tab {
    padding: 12px 16px;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
  }
  .dishes-grid { gap: 16px; }
  .dish__img-wrap { height: 180px; min-height: 180px; }
  .dish__info { padding: 20px 16px; }
  .dish__header h3 { font-size: 0.98rem; }
  .dish__price { font-size: 0.98rem; }
  .dish__info p { font-size: 0.82rem; line-height: 1.6; }

  /* ESENCIA */
  .esencia__content { gap: 40px; padding: 0 16px; }
  .esencia__quote {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .esencia__pillar h3 { font-size: 1.05rem; }
  .esencia__pillar p { font-size: 0.85rem; }
  .esencia__stat strong { font-size: 1.7rem; }
  .esencia__stat span { font-size: 0.72rem; }

  /* PRENSA */
  .prensa__comilla { font-size: 4rem; }
  .prensa__quote-featured { font-size: 1.1rem; line-height: 1.5; }
  .prensa__cite-featured { font-size: 0.65rem; }
  .prensa__item { padding: 24px 18px; }
  .prensa__item p { font-size: 0.94rem; }
  .prensa__medios { gap: 8px; }
  .prensa__medios span { font-size: 0.66rem; }

  /* RESERVAS */
  .reservas__form { padding: 22px 16px; }
  .reservas__form h3 { font-size: 1.25rem; margin-bottom: 20px; }
  .form-group label { font-size: 0.66rem; letter-spacing: 1.2px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px;
    font-size: 16px;
  }
  .btn-submit-res { padding: 13px; font-size: 0.8rem; }
  .form-note { font-size: 0.7rem; }

  /* HORARIOS */
  .horarios__header { margin-bottom: 36px; }
  .horarios__info { gap: 28px; }
  .horarios__bloque-title { font-size: 0.64rem; margin-bottom: 16px; }
  .horario-row { font-size: 0.82rem; padding: 9px 0; }
  .map-embed iframe { height: 240px; }

  /* FOOTER */
  .footer__inner {
    padding: 40px 16px 32px;
    gap: 28px;
  }
  .footer__logo { font-size: 1.25rem; letter-spacing: 4px; }
  .footer__col-title { font-size: 0.62rem; margin-bottom: 14px; }
  .footer__links a,
  .footer__links--text span,
  .footer__socials a,
  .footer__social-item { font-size: 0.8rem; }
  .footer__bottom { padding: 16px; }
  .footer__bottom span { font-size: 0.65rem; }
}

/* ---------- SAFETY: long-word break to avoid overflow ---------- */
@media (max-width: 768px) {
  .hero__sub,
  .section-sub,
  .reservas__note,
  .horarios__evento p,
  .esencia__pillar p,
  .prensa__item p,
  .dish__info p {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}
