/* =============================================
   BODEGUETA LOCA — Styles
   ============================================= */

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

:root {
  --bg:       #0f0e0b;
  --bg2:      #181510;
  --bg3:      #221e18;
  --yellow:   #e8c840;
  --cream:    #f4ede0;
  --muted:    #9a9085;
  --border:   rgba(244,237,224,.08);
  --font-ser: 'Playfair Display', Georgia, serif;
  --font-san: 'DM Sans', system-ui, sans-serif;
  --font-mono:'DM Mono', monospace;
  --r:        6px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-san);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

/* ── GRAIN ──────────────────────────────────── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  pointer-events: none;
  opacity: .04;
  z-index: 999;
  animation: grainMove 8s steps(2) infinite;
}
@keyframes grainMove {
  0%  { transform: translate(0,0); }
  25% { transform: translate(-3%,-4%); }
  50% { transform: translate(4%,2%); }
  75% { transform: translate(-2%,5%); }
}

/* ── LOADER ─────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-top { display: flex; align-items: center; gap: 20px; }
.loader-label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.loader-bar {
  flex: 1;
  height: 1px;
  background: rgba(244,237,224,.12);
  overflow: hidden;
  border-radius: 1px;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--yellow);
}
.loader-bottom { display: flex; align-items: flex-end; justify-content: flex-end; }
.loader-num {
  font-family: var(--font-ser);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 1;
  color: var(--cream);
  opacity: .06;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(15,14,11,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand-main {
  font-family: var(--font-ser);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .01em;
}
.brand-sub {
  font-family: var(--font-ser);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.nav-center { display: flex; gap: 36px; }
.nav-center a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-center a:hover { color: var(--cream); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-address {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .06em;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 28px;
  height: 28px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: all .3s;
  border-radius: 1px;
}
.hamburger span:first-child { width: 100%; }
.hamburger span:last-child  { width: 60%; }
.hamburger.active span:first-child { transform: translateY(3px) rotate(45deg); width: 100%; }
.hamburger.active span:last-child  { transform: translateY(-3px) rotate(-45deg); width: 100%; }

/* ── LANG SWITCHER ──────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--muted);
  padding: 3px 1px;
  transition: color .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active { color: var(--yellow); }
.lang-dot {
  font-family: var(--font-mono);
  font-size: .5rem;
  color: rgba(154,144,133,.25);
  line-height: 1;
  pointer-events: none;
}
.mm-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.mm-lang .lang-btn { font-size: .8rem; letter-spacing: .12em; }
.mm-lang .lang-dot { font-size: .65rem; }

/* ── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mm-link {
  font-family: var(--font-ser);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  transition: color .2s;
}
.mm-link:hover { color: var(--yellow); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 64px;
}
.hero-img-wrap {
  position: absolute;
  inset: -10%;
  z-index: 0;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,14,11,.3) 0%,
    rgba(15,14,11,.1) 35%,
    rgba(15,14,11,.72) 72%,
    rgba(15,14,11,.98) 100%
  );
}
.hero-img { object-position: center 30%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.hero-kicker {
  opacity: 0;
  transform: translateY(16px);
  margin-bottom: 16px;
}
.mono {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-title {
  font-family: var(--font-ser);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.03em;
  opacity: 0;
  transform: translateY(24px);
  margin-bottom: 36px;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; font-weight: 400; }
.hero-title .yellow {
  color: var(--yellow);
  text-shadow: 0 0 80px rgba(232,200,64,.35);
  animation: yellowPulse 4s ease-in-out infinite;
}
@keyframes yellowPulse {
  0%, 100% { text-shadow: 0 0 80px rgba(232,200,64,.35); }
  50%       { text-shadow: 0 0 140px rgba(232,200,64,.6); }
}
.hero-foot {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-foot p {
  font-size: .95rem;
  color: rgba(244,237,224,.65);
  line-height: 1.55;
  max-width: 280px;
}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--yellow);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.pill-btn:hover { background: var(--yellow); color: var(--bg); }
.pill-btn--dark {
  border-color: var(--bg);
  color: var(--bg);
  background: var(--yellow);
}
.pill-btn--dark:hover { background: var(--bg); color: var(--yellow); border-color: var(--bg); }
.hero-badge {
  position: absolute;
  bottom: 64px;
  right: 40px;
  z-index: 2;
  text-align: right;
  opacity: 0;
  transform: translateY(12px);
}
.badge-addr {
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.badge-num {
  display: block;
  font-family: var(--font-ser);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(244,237,224,.08);
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-ser);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  opacity: .75;
  letter-spacing: .01em;
}
.marquee-track .sep { color: var(--yellow); opacity: 1; font-size: .85rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── UTILITIES ──────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--font-ser);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--cream);
}
.section-h2 em { font-style: italic; font-weight: 400; color: var(--yellow); }
.body-text {
  font-size: .95rem;
  color: rgba(244,237,224,.65);
  line-height: 1.8;
  max-width: 480px;
}

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-up.visible { opacity: 1; transform: none; }
.reveal-img {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal-img.visible { opacity: 1; transform: scale(1); }

/* ── STATEMENT ──────────────────────────────── */
.statement-wrap {
  padding: 110px 40px;
  background: var(--bg2);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.statement-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,200,64,.06) 0%, transparent 70%);
  pointer-events: none;
}
.statement-text {
  font-family: var(--font-ser);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: -.03em;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.statement-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

/* ── HISTORIA ───────────────────────────────── */
.historia {
  padding: 120px 0 140px;
  background: var(--bg);
}
.historia-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.historia-col-img { position: relative; }
.img-stack { position: relative; padding-bottom: 60px; }
.img-block { border-radius: 12px; overflow: hidden; background: var(--bg3); }
.img-block--big { width: 78%; aspect-ratio: 3/4; }
.img-block--small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  aspect-ratio: 4/3;
  border: 3px solid var(--bg);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
}
.floating-tag {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--yellow);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: var(--r);
  text-align: center;
  opacity: 0;
  transform: translateY(14px) rotate(2deg);
  transition: opacity .6s ease, transform .6s ease;
}
.floating-tag.visible { opacity: 1; transform: translateY(0) rotate(2deg); }
.tag-line1 {
  display: block;
  font-family: var(--font-ser);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
}
.tag-line2 {
  display: block;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: .7;
}
.historia-col-text { padding-top: 20px; }
.historia-col-text .section-h2 { margin: 12px 0 24px; }
.historia-col-text .body-text + .body-text { margin-top: 16px; }
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-ser);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}
.stat-num::after { content: '+'; font-size: 1.5rem; }
.stat-num[data-target="1"]::after { content: ''; }
.stat-label {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .04em;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

/* ── CARTA ──────────────────────────────────── */
.carta { padding: 100px 0 120px; background: var(--bg2); }
.carta-header { margin-bottom: 48px; }
.carta-header .section-h2 { margin-top: 8px; }
.carta-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.ctab {
  padding: 12px 24px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.ctab:hover { color: var(--cream); }
.ctab.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.ctab-panel { display: none; }
.ctab-panel.active { display: block; }

/* Bento */
.carta-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.bento-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
}
.bento-card img {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.bento-card:hover img { transform: scale(1.05); }
.bento-wide { grid-column: 1 / 3; }
.bento-tall { grid-row: 1 / 3; }
.bento-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(15,14,11,.92) 0%, transparent 100%);
}
.bento-text h3 {
  font-family: var(--font-ser);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--cream);
}
.bento-text p { font-size: .8rem; color: rgba(244,237,224,.6); line-height: 1.4; }

/* Menú */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.menu-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg3);
}
.menu-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--yellow);
  color: var(--bg);
  padding: 16px 20px;
  border-radius: var(--r);
}
.menu-tag-title { font-family: var(--font-ser); font-size: 1.05rem; font-weight: 700; }
.menu-tag-sub {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: .7;
}
.menu-tag-include { font-size: .8rem; margin-top: 8px; line-height: 1.5; opacity: .75; }
.menu-lista { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.menu-bloque h3 {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.menu-bloque ul { list-style: none; display: flex; flex-direction: column; }
.menu-bloque li {
  font-size: .9rem;
  color: rgba(244,237,224,.72);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.menu-bloque li:last-child { border-bottom: none; }

/* Para picar */
.picar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.picar-item {
  background: var(--bg3);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s ease;
}
.picar-item:hover { transform: translateY(-4px); }
.picar-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.picar-img img { transition: transform .5s ease; }
.picar-item:hover .picar-img img { transform: scale(1.07); }
.picar-item h3 {
  font-family: var(--font-ser);
  font-size: .95rem;
  font-weight: 700;
  padding: 16px 20px 6px;
  color: var(--cream);
}
.picar-item p { font-size: .82rem; color: var(--muted); padding: 0 20px 18px; line-height: 1.5; }

/* ── NOCHE FEATURE ──────────────────────────── */
.noche-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: #060504;
}
.noche-img {
  position: relative;
  overflow: hidden;
}
.noche-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.75);
  transition: transform 8s ease, filter .6s ease;
}
.noche-img:hover img { transform: scale(1.04); filter: brightness(.85); }
.noche-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, #060504 100%);
  pointer-events: none;
}
.noche-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.noche-text .mono { margin-bottom: 28px; }
.noche-text .section-h2 {
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  margin-bottom: 28px;
}
.noche-text .body-text {
  margin-bottom: 44px;
  max-width: 360px;
}
.noche-divider {
  width: 48px;
  height: 1px;
  background: var(--yellow);
  margin-bottom: 28px;
  opacity: .6;
}

@media (max-width: 1024px) {
  .noche-feature { grid-template-columns: 1fr; }
  .noche-img { min-height: 420px; }
  .noche-img::after { background: linear-gradient(to top, #060504 0%, transparent 60%); }
  .noche-text { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .noche-text { padding: 48px 20px; }
  .noche-img { min-height: 320px; }
}

/* ── BENTO CARD UPGRADE ─────────────────────── */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,200,64,.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-text { z-index: 2; }

/* ── CÓCTELES TAB ───────────────────────────── */
.ctab--cocktail { position: relative; }
.ctab--cocktail::after {
  content: 'Nuevo';
  position: absolute;
  top: -6px;
  right: -4px;
  background: var(--yellow);
  color: var(--bg);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1;
}
.cocteles-layout { display: flex; flex-direction: column; gap: 40px; }
.coc-intro { max-width: 640px; }
.coc-intro h3 {
  font-family: var(--font-ser);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--cream);
}
.coc-intro p {
  font-size: .9rem;
  color: rgba(244,237,224,.6);
  line-height: 1.75;
}

/* ── GALERÍA ────────────────────────────────── */
.galeria { padding: 100px 0 0; background: var(--bg); overflow: hidden; }
.galeria .container { margin-bottom: 48px; }
.galeria-scroll {
  display: flex;
  gap: 12px;
  padding: 0 40px 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}
.galeria-scroll::-webkit-scrollbar { display: none; }
.galeria-scroll.grabbing { cursor: grabbing; }
.gal-item {
  flex-shrink: 0;
  width: 400px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg3);
  position: relative;
}
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,11,.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gal-item:hover::after { opacity: 1; }
.gal-item--tall { height: 620px; }
.gal-item img { transition: transform .6s ease; }
.gal-item:hover img { transform: scale(1.06); }

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner { background: var(--yellow); padding: 80px 40px; }
.cta-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-ser);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--bg);
  line-height: 1.1;
}
.cta-banner h2 em { font-style: italic; font-weight: 400; }

/* ── CONTACTO ───────────────────────────────── */
.contacto { padding: 120px 0; background: var(--bg2); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacto-left .section-h2 { margin-top: 8px; margin-bottom: 40px; }
.info-list { display: flex; flex-direction: column; }
.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-key {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.info-val { font-size: .9rem; color: var(--cream); line-height: 1.6; }
.contacto-right form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-san);
  font-size: .9rem;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(154,144,133,.35); }
.field input:focus,
.field textarea:focus { border-color: var(--yellow); }
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: var(--yellow);
  color: var(--bg);
  border-radius: var(--r);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: opacity .2s, transform .2s;
}
.submit-btn:hover { opacity: .88; transform: translateY(-1px); }
.submit-btn:disabled { opacity: .45; transform: none; cursor: not-allowed; }
.submit-btn span { font-size: 1.1rem; }
.form-ok {
  display: none;
  padding: 14px;
  background: rgba(232,200,64,.08);
  border: 1px solid rgba(232,200,64,.25);
  border-radius: var(--r);
  color: var(--yellow);
  font-size: .85rem;
  text-align: center;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand span {
  font-family: var(--font-ser);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer-brand em { font-style: italic; font-weight: 400; color: var(--yellow); }
.footer-brand p { font-size: .75rem; color: var(--muted); }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-credit {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: rgba(154,144,133,.4);
  letter-spacing: .05em;
}
.footer-credit a { color: var(--yellow); opacity: .55; transition: opacity .2s; }
.footer-credit a:hover { opacity: 1; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .historia-layout { grid-template-columns: 1fr; gap: 60px; }
  .img-block--big { width: 65%; }
  .img-block--small { display: none; }
  .floating-tag { right: 16px; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-img { aspect-ratio: 16/9; }
  .contacto-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .statement-wrap { padding: 64px 20px; }
  .nav { padding: 0 20px; }
  .nav-center, .nav-address { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 0 20px 60px; }
  .hero-badge { right: 20px; bottom: 60px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .historia-layout, .container { padding: 0 20px; }
  .historia { padding: 80px 0 100px; }
  .carta { padding: 80px 0 100px; }
  .carta-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .bento-wide { grid-column: 1 / 3; }
  .bento-tall { grid-row: auto; }
  .picar-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 60px 20px; }
  .galeria-scroll { padding: 0 20px 48px; }
  .stats-row { gap: 24px; }
  .contacto { padding: 80px 0; }
  .footer-nav { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .carta-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .picar-grid { grid-template-columns: 1fr; }
  .gal-item { width: 280px; height: 360px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}
