:root {
  --mustard: #C9952A;
  --mustard-light: #E8B84B;
  --mustard-deep: #A67A1E;
  --olive: #6B7C45;
  --olive-deep: #4A5A28;
  --shadow-mustard: rgba(201, 149, 42, 0.2);
  --cream: #FFF8F0;
  --cream-warm: #FFE8D0;
  --bone: #FFFAF5;
  --ink: #1A0500;
  --ink-soft: #3D3028;
}

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

/* RESPONSIVO: sin desbordamiento horizontal */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.display { font-family: 'Fraunces', serif; font-variation-settings: "SOFT" 50, "WONK" 0; }
.script { font-family: 'Caveat', cursive; }

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* RESPONSIVO: padding móvil por defecto */
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* RESPONSIVO: fondo sólido en móvil — backdrop-filter crea un containing block
     que rompe el position:fixed del overlay del menú */
  background: rgba(245, 239, 227, 0.97);
  border-bottom: 1px solid rgba(138, 47, 26, 0.08);
  transition: padding 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  /* RESPONSIVO: texto más pequeño en móvil para que no se parta */
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100vw - 100px);
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  /* RESPONSIVO: imagen nunca más ancha que su contenedor */
  max-width: 100%;
  display: block;
}

/* RESPONSIVO: nav-links ocultos en móvil */
.nav-links {
  display: none;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--mustard);
  transition: width 0.3s ease;
}

.nav-links a:hover        { color: var(--mustard); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active        { color: var(--mustard); }
.nav-links a.active::after { width: 100%; }

/* RESPONSIVO: CTA oculto en móvil */
.nav-cta {
  display: none;
  background: var(--mustard);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background: var(--mustard-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 149, 42, 0.25);
}

/* RESPONSIVO: botón hamburger visible en móvil */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  /* RESPONSIVO: área mínima de toque 44×44px */
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  /* encima del overlay 9998 */
  z-index: 9999;
  border-radius: 8px;
  transition: background 0.2s ease;
}

/* quita el outline de focus del navegador */
.menu-toggle:focus { outline: none; }
.menu-toggle:focus-visible { outline: 2px solid var(--mustard); outline-offset: 2px; }

/* fondo suave al hacer hover/tap */
.menu-toggle:hover { background: rgba(201, 149, 42, 0.1); }

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.open span { background: #fff; }

/* RESPONSIVO: menú overlay móvil */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  /* RESPONSIVO: fondo sólido oscuro que cubre toda la pantalla */
  background: #1A0500;
  z-index: 9998;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  list-style: none;
  animation: menuFadeIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links.open::before {
  content: '✦';
  font-size: 1.6rem;
  color: var(--mustard);
  margin-bottom: 2rem;
}

.nav-links.open li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links.open li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.nav-links.open li a {
  display: block;
  padding: 1.1rem 2rem;
  min-height: 44px;
  font-size: 1.4rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-links.open li a:hover  { color: var(--mustard); background: rgba(255, 255, 255, 0.04); }
.nav-links.open li a.active { color: var(--mustard); }

/* quita el subrayado ::after del desktop dentro del overlay móvil */
.nav-links.open li a::after { width: 0 !important; }

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  /* RESPONSIVO: una columna en móvil */
  padding: 7rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -10%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--mustard-light) 0%, transparent 65%);
  opacity: 0.25;
  z-index: 0;
  animation: floatSlow 20s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mustard);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--mustard);
}

/* RESPONSIVO: tipografía fluida con clamp() */
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--mustard-deep);
  font-weight: 300;
}

.hero h1 .crown-accent {
  display: inline-block;
  color: var(--mustard);
  font-style: normal;
  transform: translateY(-0.1em);
  margin: 0 0.1em;
  animation: subtleSway 4s ease-in-out infinite;
}

@keyframes subtleSway {
  0%, 100% { transform: translateY(-0.1em) rotate(-3deg); }
  50% { transform: translateY(-0.15em) rotate(3deg); }
}

.hero-script {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 0.5rem;
  transform: rotate(-2deg);
  display: inline-block;
}

/* RESPONSIVO: tipografía fluida */
.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--mustard);
  color: var(--cream);
  /* RESPONSIVO: padding mínimo 12px 24px */
  padding: 1rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(201, 149, 42, 0.2);
}

.btn-primary:hover {
  background: var(--mustard-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 149, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.hero-meta {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

.hero-meta-value {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}

/* RESPONSIVO: hero visual en móvil ocupa su propio espacio */
.hero-visual {
  position: relative;
  height: 50vh;
  z-index: 2;
}

.hero-image-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%; height: 90%;
  border-radius: 280px 280px 30px 30px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  box-shadow: 0 30px 80px rgba(201, 149, 42, 0.3);
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* RESPONSIVO: imágenes siempre escalables */
  max-width: 100%;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: 5%; left: -5%;
  /* RESPONSIVO: tamaño reducido en móvil */
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--bone);
  box-shadow: 0 20px 50px rgba(201, 149, 42, 0.25);
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  z-index: 3;
}

.hero-image-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 8%; left: -8%;
  background: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  box-shadow: 0 10px 30px var(--shadow-mustard);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero-badge-stars {
  color: var(--mustard);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.hero-badge-text {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 500;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--mustard);
  border-bottom: 1px solid var(--mustard);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

/* RESPONSIVO: tipografía fluida marquee */
.marquee-item {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item::after {
  content: '✦';
  color: var(--mustard);
  font-size: 1rem;
}

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

/* ============ STORY ============ */
.story {
  /* RESPONSIVO: clamp para padding fluido */
  padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  /* RESPONSIVO: una columna en móvil */
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--cream);
  position: relative;
}

.story-images {
  position: relative;
  /* RESPONSIVO: altura reducida en móvil */
  height: 350px;
}

.story-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 75%;
  background: var(--mustard);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-mustard);
}

.story-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 60%;
  background: var(--olive);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-mustard);
  z-index: 2;
}

/* RESPONSIVO: imágenes siempre escalables */
.story-img-1 img, .story-img-2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.story-decoration {
  position: absolute;
  top: -40px; right: 10%;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--mustard);
  transform: rotate(-8deg);
  z-index: 3;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mustard);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-eyebrow::before { content: '✦'; color: var(--mustard); }

/* RESPONSIVO: tipografía fluida */
.story h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(1.8rem, 4vw, 3.75rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.story h2 em {
  font-style: italic;
  color: var(--mustard);
  font-weight: 300;
}

.story-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: 540px;
}

.story-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 540px;
}

.story-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.story-feature-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--mustard);
  font-weight: 300;
  line-height: 1;
}

.story-feature-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ============ MENU SHOWCASE ============ */
.menu-section {
  /* RESPONSIVO: padding fluido */
  padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bone);
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVO: tipografía fluida */
.menu-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: clamp(1.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.menu-header h2 em { font-style: italic; color: var(--mustard); }

.menu-header p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* RESPONSIVO: una columna en móvil */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1300px;
  margin: 0 auto;
}

.dish-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              outline 0.3s ease;
  cursor: pointer;
  position: relative;
  outline: 2px solid transparent;
}

.menu-grid .dish-card:nth-child(1) { transition-delay: 0s; }
.menu-grid .dish-card:nth-child(2) { transition-delay: 0.15s; }
.menu-grid .dish-card:nth-child(3) { transition-delay: 0.3s; }

.dish-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 80px var(--shadow-mustard);
  outline: 2px solid var(--mustard);
}

.dish-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--mustard);
}

/* RESPONSIVO: imágenes siempre escalables */
.dish-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.dish-card:hover .dish-image img { transform: scale(1.12); }

.dish-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,5,0,0.92) 0%, rgba(107,124,69,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.dish-card:hover .dish-overlay { opacity: 1; transform: translateY(0); }

.dish-overlay-name {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  font-style: italic;
  font-weight: 400;
}

.dish-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mustard);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.dish-card:hover .dish-overlay-btn { transform: translateY(0); }

.dish-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: var(--bone);
  color: var(--mustard);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.dish-card:hover .dish-tag { opacity: 0; }

.dish-content { padding: 1.75rem 1.5rem 2rem; }

.dish-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.dish-description {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ CANTINA ============ */
.cantina {
  /* RESPONSIVO: padding fluido */
  padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cantina::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--mustard) 0%, transparent 60%);
  opacity: 0.35;
  z-index: 0;
}

/* RESPONSIVO: 1 columna en móvil */
.cantina-header {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}

/* RESPONSIVO: tipografía fluida */
.cantina-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: clamp(2rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.cantina-header h2 em {
  font-style: italic;
  color: var(--mustard-light);
  font-weight: 300;
}

.cantina-header p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(245, 239, 227, 0.8);
  max-width: 420px;
}

/* RESPONSIVO: 2 columnas en móvil, 4 en desktop */
.cocktails-grid {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
}

.cocktail-card {
  text-align: center;
  transition: transform 0.4s ease;
}

.cocktail-card:hover { transform: translateY(-6px); }

.cocktail-image {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--olive) 0%, var(--mustard) 100%);
  border: 3px solid var(--mustard);
  position: relative;
}

/* RESPONSIVO: imágenes siempre escalables */
.cocktail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.cocktail-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.cocktail-desc {
  font-size: 0.85rem;
  color: rgba(245, 239, 227, 0.65);
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  /* RESPONSIVO: padding fluido */
  padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--cream-warm);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 5rem);
}

/* RESPONSIVO: tipografía fluida */
.testimonials-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.testimonials-header h2 em { font-style: italic; color: var(--mustard); }

.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--mustard);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonials-rating span {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}

/* RESPONSIVO: 1 columna en móvil */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bone);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-quote {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--mustard-light);
  line-height: 1;
  opacity: 0.6;
}

.testimonial-stars {
  color: var(--mustard);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--mustard) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ============ VISIT / CONTACT ============ */
.visit {
  /* RESPONSIVO: clamp para padding fluido */
  padding: clamp(3rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bone);
  /* RESPONSIVO: 1 columna en móvil */
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* RESPONSIVO: tipografía fluida */
.visit-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: clamp(1.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.visit-content h2 em { font-style: italic; color: var(--mustard); }

.visit-script {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--mustard);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.visit-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  /* RESPONSIVO: 44×44 min touch */
  width: 44px; height: 44px;
  background: var(--mustard);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg { width: 18px; height: 18px; }

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.info-value {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.4;
  text-decoration: none;
}

a.info-value:hover { color: var(--mustard); }

.hours-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--shadow-mustard);
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.hours-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--mustard) 0%, transparent 60%);
  opacity: 0.4;
}

.hours-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mustard-light);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.hours-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.hours-list {
  list-style: none;
  position: relative;
  z-index: 2;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 239, 227, 0.12);
  font-size: 0.95rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-day { font-weight: 500; letter-spacing: 0.05em; }

.hours-time {
  font-family: 'Fraunces', serif;
  color: var(--mustard-light);
  font-style: italic;
}

.hours-time.closed { color: rgba(245, 239, 227, 0.4); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--mustard);
  color: var(--cream);
  /* RESPONSIVO: padding fluido */
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mustard-light) 0%, transparent 70%);
  opacity: 0.2;
}

.cta-banner::before { top: -50%; left: -10%; }
.cta-banner::after  { bottom: -50%; right: -10%; }

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* RESPONSIVO: tipografía fluida */
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-banner h2 em { font-style: italic; color: var(--mustard-light); }

.cta-banner p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-banner .btn-primary {
  background: var(--cream);
  color: var(--mustard-deep);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover { background: var(--bone); color: var(--ink); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  /* RESPONSIVO: padding fluido */
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3rem) 2rem;
}

/* RESPONSIVO: 1 columna en móvil */
.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--cream);
}

/* RESPONSIVO: imagen del logo escalable */
.footer-logo .nav-logo-img {
  max-width: 100%;
  display: block;
}

.footer-tagline {
  color: rgba(245, 239, 227, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mustard-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: rgba(245, 239, 227, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--mustard-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(245, 239, 227, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover { background: var(--mustard); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; color: var(--cream); }

/* RESPONSIVO: footer bottom en columna en móvil */
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 227, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 239, 227, 0.5);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE (MOBILE-FIRST, min-width) ============ */

/* 480px: teléfonos medianos */
@media (min-width: 480px) {
  /* RESPONSIVO: menu grid 2 columnas */
  .menu-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  /* RESPONSIVO: botones de ancho automático */
  .btn-primary, .btn-secondary {
    width: auto;
    display: inline-flex;
  }
}

/* 768px: tablets */
@media (min-width: 768px) {
  /* NAV desktop */
  nav {
    padding: 1.25rem 3rem;
    /* RESPONSIVO: blur solo en desktop para no romper el overlay del menú móvil */
    background: rgba(245, 239, 227, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav-logo { font-size: 1.15rem; }
  .nav-logo-img { width: 64px; height: 64px; }
  .nav-links { display: flex; gap: 2.5rem; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }

  /* HERO: 2 columnas */
  .hero { grid-template-columns: 1.1fr 1fr; padding: 8rem 3rem 4rem; gap: 4rem; }
  .hero-visual { height: 70vh; }
  .hero-image-accent { width: 180px; height: 180px; }
  .hero-meta { gap: 2.5rem; }

  /* STORY: 2 columnas */
  .story { grid-template-columns: 1fr 1.2fr; gap: 6rem; }
  .story-images { height: 500px; }

  /* MENU */
  .menu-header { margin-bottom: 4rem; }

  /* CANTINA: header 2 columnas */
  .cantina-header { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .cocktails-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

  /* TESTIMONIALS: 2 columnas */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* VISIT */
  .visit { gap: 4rem; }

  /* HOURS CARD */
  .hours-card { padding: 3rem 2.5rem; }

  /* FOOTER: 2 columnas */
  .footer-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: row; text-align: left; gap: 0; justify-content: space-between; }
}

/* 1024px: desktop */
@media (min-width: 1024px) {
  /* MENU: 3 columnas */
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .dish-card:nth-child(2) { transform: translateY(40px); }
  .dish-card:nth-child(2):hover { transform: translateY(-14px) scale(1.02); }

  /* TESTIMONIALS: 3 columnas */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* VISIT: 2 columnas */
  .visit { grid-template-columns: 1fr 1fr; gap: 5rem; }

  /* STORY imágenes más grandes */
  .story-images { height: 600px; }
}

/* 1280px: pantallas grandes */
@media (min-width: 1280px) {
  .footer-content { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; }
}
