/* ============================================================
   RHIN BARRIL — styles.css
   Archetype: Editorial Dark Warm (cervecería industrial vintage)
   v=20260522
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0B0905;
  --bg-2:      #110D08;
  --bg-card:   #1A1410;
  --bg-card-2: #221A12;
  --cream:     #F0E8D8;
  --cream-2:   #C8B898;
  --cream-mute:#8A7A62;
  --amber:     #D4860A;
  --amber-2:   #B87410;
  --gold:      #E0A030;
  --copper:    #C87840;
  --line:      rgba(212, 133, 10, 0.20);
  --line-soft: rgba(240, 232, 216, 0.08);
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  font-size: 16px;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.font-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.08;
  color: var(--cream);
}

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: rgba(11, 9, 5, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 0;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2rem; align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px; padding: 8px;
  width: 40px;
}
.nav-burger span {
  display: block; height: 1.5px; background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(11,9,5,0.97);
  backdrop-filter: blur(20px);
  z-index: 850;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--cream-2);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--amber); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--amber);
  color: var(--bg);
  border: 1px solid var(--amber);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,232,216,0.3);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-amber-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.btn-amber-outline:hover {
  background: var(--amber);
  color: var(--bg);
}

/* ---------- SECTION COMMONS ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.section-inner {
  max-width: 1280px; margin-inline: auto;
}

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--cream-2);
  max-width: 56ch;
  line-height: 1.7;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; }

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.55s; }

/* ---------- HERO (logo-centered static) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

/* Subtle photo background at low opacity */
.hero-bg-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/img/bar-taps-1.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.10;
  filter: saturate(0.4);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212,133,10,0.07) 0%, transparent 70%),
    linear-gradient(180deg, rgba(11,9,5,0.6) 0%, rgba(11,9,5,0.3) 50%, rgba(11,9,5,0.85) 100%);
}

.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(11,9,5,0.7) 100%);
  pointer-events: none;
}

/* Logo glow ring */
.hero-logo-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.hero-logo-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,80,0.28) 0%, rgba(212,133,10,0.14) 38%, transparent 68%);
  pointer-events: none;
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}

.hero-logo {
  width: clamp(200px, 30vw, 320px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  position: relative; z-index: 1;
  filter:
    drop-shadow(0 0 22px rgba(255,210,80,0.55))
    drop-shadow(0 0 60px rgba(212,133,10,0.30))
    drop-shadow(0 8px 40px rgba(0,0,0,0.55));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Invisible — kept for JS fallback compatibility */
.hero-video-wrap { display: none; }
.hero-video { display: none; }
.hero-fallback { display: none; }

.hero-inner {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(212,133,10,0.35);
  border-radius: 100px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.0;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0,0,0,0.7);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-lema {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--cream-2);
  max-width: 42ch;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

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

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- TAPS SECTION ---------- */
.taps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1280px; margin-inline: auto;
}

.tap-card {
  background: var(--bg-card);
  padding: clamp(2rem, 3vw, 2.5rem) 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1rem;
  transition: background 0.3s;
  cursor: pointer;
}

.tap-card:hover { background: var(--bg-card-2); }
.tap-card:hover .tap-logo-badge img {
  filter: drop-shadow(0 4px 14px rgba(212,133,10,0.45));
}

.tap-logo-badge {
  width: 140px; height: 140px;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  background: none;
}

.tap-logo-badge img,
.tap-logo-badge svg { width: 100%; height: 100%; object-fit: contain; }

.tap-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.2;
  margin: 0;
}

.tap-abv {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.tap-type {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-top: -0.5rem;
}

.tap-desc {
  font-size: 0.92rem;
  color: var(--cream-mute);
  line-height: 1.65;
}

/* Tap card price rows */
.tap-prices {
  width: 100%;
  margin-top: 0.3rem;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  display: flex; flex-direction: column; gap: 0.28rem;
}
.tap-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.tap-measure {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--cream-mute);
}
.tap-price-vals {
  font-size: 0.8rem; color: var(--cream-2); font-weight: 500;
  white-space: nowrap;
}
.tap-price-vals em { font-style: normal; color: var(--cream-mute); font-size: 0.72rem; }

@media (max-width: 1023px) {
  .taps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
  .taps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 399px) {
  .taps-grid { grid-template-columns: 1fr; }
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 5rem);
}

.stats-grid {
  max-width: 1280px; margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  color: var(--amber);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ---------- EDITORIAL INTRO ---------- */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1280px; margin-inline: auto;
}

.editorial-split.reverse { direction: rtl; }
.editorial-split.reverse > * { direction: ltr; }

.editorial-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.8s var(--ease-out);
}

.editorial-img:hover img { transform: scale(1.04); }

.editorial-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,9,5,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.editorial-text { display: flex; flex-direction: column; gap: 1.5rem; }

.editorial-text blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--cream-2);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 2px solid var(--amber);
}

/* ---------- BEER CARDS GRID ---------- */
.beers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1280px; margin-inline: auto;
}

.beer-card {
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}

.beer-card:hover { z-index: 2; }

.beer-card-img {
  width: 100%; aspect-ratio: 1/1;
  overflow: hidden;
}

.beer-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: saturate(1.0);
}

.beer-card:hover .beer-card-img img {
  transform: scale(1.07);
  filter: saturate(1.2) brightness(1.05);
}

.beer-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--bg-card);
}

.beer-card-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.beer-card-meta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.beer-card-desc {
  font-size: 0.88rem;
  color: var(--cream-mute);
  line-height: 1.6;
}

.beer-card-glow {
  position: absolute; inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,133,10,0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translate(var(--gx, 0), var(--gy, 0));
}

.beer-card:hover .beer-card-glow { opacity: 1; }

/* ---------- PROMO CARDS ---------- */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1280px; margin-inline: auto;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.promo-card:hover {
  border-color: rgba(212,133,10,0.5);
  transform: translateY(-4px);
}

.promo-card-img {
  width: 100%;
  overflow: hidden;
}

.promo-card-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.promo-card:hover .promo-card-img img { transform: scale(1.04); }

.promo-card-body {
  padding: 1.5rem;
}

.promo-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.promo-card-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.promo-card-desc {
  font-size: 0.88rem;
  color: var(--cream-2);
  line-height: 1.6;
}

.promo-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--amber);
  font-weight: 700;
}

/* ---------- GALLERY LIGHTBOX ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1280px; margin-inline: auto;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.1);
}

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(11,9,5,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(240,232,216,0.5);
  padding: 0.5rem 1rem;
  border-radius: 2px;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: auto; height: 100%; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(11,9,5,0.96);
  align-items: center; justify-content: center;
  cursor: pointer;
}

.lightbox.is-open { display: flex; }

.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: var(--cream-mute);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-close:hover { color: var(--cream); }

/* ---------- CARTA / PDF EMBED ---------- */
.carta-embed-wrap {
  width: 100%; max-width: 860px; margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-card);
}

.carta-embed-wrap object,
.carta-embed-wrap iframe {
  width: 100%;
  height: 70vh;
  display: block;
  border: none;
}

.carta-placeholder {
  background: var(--bg-card);
  border: 1px dashed rgba(212,133,10,0.4);
  border-radius: 2px;
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  text-align: center;
  max-width: 680px; margin-inline: auto;
}

.carta-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.carta-placeholder-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream-2);
  margin-bottom: 0.75rem;
}

.carta-placeholder-text {
  font-size: 0.9rem;
  color: var(--cream-mute);
  line-height: 1.7;
  max-width: 40ch; margin-inline: auto;
}

.placeholder-badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(212,133,10,0.35);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ---------- QR SECTION ---------- */
.qr-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  text-align: center;
}

.qr-img-wrap {
  background: #fff;
  padding: 1rem;
  border-radius: 4px;
  display: inline-block;
}

.qr-img-wrap img {
  width: 160px; height: 160px;
  object-fit: contain;
  display: block;
}

.qr-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

.qr-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cream);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1280px; margin-inline: auto;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-item { display: flex; flex-direction: column; gap: 0.35rem; }

.contact-item-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.contact-item-value {
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--cream-2);
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--amber); }

.schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9rem;
}

.schedule-row .day { color: var(--cream-2); }
.schedule-row .hours { color: var(--cream-mute); }
.schedule-row.closed .day,
.schedule-row.closed .hours { color: var(--cream-mute); opacity: 0.5; }
.schedule-row.closed .day::after {
  content: ' — CERRADO';
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--copper);
}

.map-wrap {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  height: 420px;
}

.map-wrap iframe {
  width: 100%; height: 100%; border: none;
}

/* ---------- INSTAGRAM / SOCIAL ---------- */
.social-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
}

.social-inner {
  max-width: 480px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}

.insta-handle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--cream);
}

.insta-handle a {
  color: var(--amber);
  transition: color 0.2s;
}
.insta-handle a:hover { color: var(--gold); }

/* ---------- PASAPORTE ---------- */
.pasaporte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 860px; margin-inline: auto;
  border-radius: 2px;
  overflow: hidden;
}

.pasaporte-face {
  background: var(--bg-card);
  overflow: hidden;
}

.pasaporte-face img {
  width: 100%;
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.footer-inner {
  max-width: 1280px; margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex; align-items: center; gap: 0.75rem;
}

.footer-brand img {
  width: 52px; height: 52px;
  border-radius: 0; object-fit: contain;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
}
.footer-brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--cream-mute);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.footer-nav {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--amber); }

.footer-copy {
  max-width: 1280px; margin-inline: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
  color: var(--cream-mute);
  flex-wrap: wrap; gap: 0.5rem;
}

.footer-disclaimer {
  max-width: 1280px; margin-inline: auto;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.68rem;
  color: var(--cream-mute);
  opacity: 0.6;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* ---------- PAGE HERO (non-home) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 5rem) 4rem;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.5);
}

.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin-inline: auto;
}

.page-hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--cream-2);
}

/* ---------- CERVEZA LIST (pasaporte) ---------- */
.beer-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  max-width: 860px; margin-inline: auto;
}

.beer-chip {
  padding: 0.4rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream-2);
  transition: border-color 0.2s, color 0.2s;
}
.beer-chip:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { aspect-ratio: 1/1; }
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .pasaporte-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { gap: 1rem; }
  .beers-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 479px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ---------- CERVEZAS IMPORTACIÓN CATÁLOGO ---------- */
.cervezas-controls {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; margin-bottom: 1.5rem;
  max-width: 1280px; margin-inline: auto; margin-bottom: 1.5rem;
}
.cervezas-search {
  flex: 1; min-width: 200px; position: relative;
}
.cervezas-search svg {
  position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--cream-mute); pointer-events: none;
}
.cervezas-search input {
  width: 100%;
  background: var(--bg-card); border: 1px solid var(--line);
  color: var(--cream); padding: 0.72rem 1rem 0.72rem 2.5rem;
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  border-radius: 2px; outline: none; transition: border-color 0.2s;
}
.cervezas-search input:focus { border-color: var(--amber); }
.cervezas-search input::placeholder { color: var(--cream-mute); }

.cervezas-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.cerveza-filter-btn {
  padding: 0.42rem 1rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid var(--line);
  border-radius: 100px; background: transparent;
  color: var(--cream-mute); cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.cerveza-filter-btn:hover,
.cerveza-filter-btn.is-active {
  border-color: var(--amber); color: var(--amber);
  background: rgba(212,133,10,0.08);
}

.cervezas-count {
  font-size: 0.75rem; color: var(--cream-mute);
  letter-spacing: 0.06em; margin-bottom: 1.5rem;
  max-width: 1280px; margin-inline: auto;
}

.cervezas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  max-width: 1280px; margin-inline: auto;
}

.cerveza-card {
  background: var(--bg-card);
  display: flex; flex-direction: column;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  position: relative;
}
.cerveza-card:hover { background: var(--bg-card-2); transform: translateY(-2px); }
.cerveza-card:active { transform: translateY(0); }

/* Foto de la botella — siempre visible, se oculta solo si falla la carga */
.cerveza-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-soft);
}
.cerveza-card-img img {
  width: 75%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out);
}
.cerveza-card:hover .cerveza-card-img img { transform: scale(1.06) translateY(-4px); }

/* CTA en la tarjeta */
.cerveza-card-cta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  padding: 0.5rem 1.5rem 0.9rem;
  transition: opacity 0.2s;
}
.cerveza-card:hover .cerveza-card-cta { opacity: 1; }

/* ---------- PASSPORT BEER CARDS ---------- */
.passport-beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.65rem;
  max-width: 1020px;
  margin-inline: auto;
  margin-top: 1.5rem;
}

.passport-beer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid rgba(212,133,10,0.25);
  border-radius: 3px;
  padding: 0.85rem 0.8rem 0.75rem 0.9rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s, transform 0.18s, box-shadow 0.22s;
}
.passport-beer-card:hover {
  border-color: var(--amber);
  border-left-color: var(--amber);
  background: var(--bg-card-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,133,10,0.13);
}
.passport-beer-card:active { transform: translateY(0); }

.passport-beer-card.abv-low  { border-left-color: rgba(110,179,214,0.5); }
.passport-beer-card.abv-mid  { border-left-color: rgba(212,133,10,0.35); }
.passport-beer-card.abv-high { border-left-color: rgba(200,120,64,0.55); }
.passport-beer-card.abv-vhigh{ border-left-color: rgba(224,160,48,0.7); }

.passport-beer-card:hover.abv-low  { border-left-color: #6eb3d6; }
.passport-beer-card:hover.abv-mid  { border-left-color: var(--amber); }
.passport-beer-card:hover.abv-high { border-left-color: var(--copper); }
.passport-beer-card:hover.abv-vhigh{ border-left-color: var(--gold); }

.passport-beer-type {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--amber); opacity: 0.75;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.passport-beer-name {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.92rem; color: var(--cream); line-height: 1.25;
}
.passport-beer-meta {
  font-size: 0.6rem; color: var(--cream-mute); margin-top: 0.1rem;
}

@media (max-width: 479px) {
  .passport-beer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PASSPORT SEARCH BAR ---------- */
.passport-search-wrap {
  max-width: 600px;
  margin: 2.5rem auto 0;
  position: relative;
}
.passport-search-results {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: var(--bg-card-2);
  border: 1px solid rgba(212,133,10,0.5);
  border-radius: 3px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}
.passport-search-results.is-open { display: block; }

.passport-search-item {
  width: 100%; text-align: left;
  padding: 0.65rem 1rem;
  display: flex; flex-direction: column; gap: 0.12rem;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.15s;
}
.passport-search-item:last-child { border-bottom: none; }
.passport-search-item:hover { background: rgba(212,133,10,0.08); }

.psi-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.psi-meta { font-size: 0.72rem; color: var(--cream-mute); }
.passport-search-empty {
  padding: 0.75rem 1rem;
  font-size: 0.85rem; color: var(--cream-mute); font-style: italic;
}

/* ---------- HERO FREE BEER BTN ---------- */
.btn-free {
  background: var(--amber);
  color: var(--bg);
  border: 1px solid var(--amber);
  font-weight: 700;
  position: relative;
  overflow: visible;
}
.btn-free::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 4px;
  border: 2px solid rgba(212,133,10,0.55);
  animation: pulse-free 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-free {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.12); opacity: 0; }
}
.btn-free:hover { background: var(--gold); border-color: var(--gold); }

/* Chips del pasaporte clicables */
.beer-chip-btn {
  background: none;
  border: inherit;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: inline;
  transition: color 0.2s, border-color 0.2s;
}
.beer-chip-btn:hover {
  color: var(--cream);
  border-color: var(--amber);
  background: rgba(212,133,10,0.08);
}

.cerveza-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1; display: flex; flex-direction: column; gap: 0.6rem;
}
.cerveza-card-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 0.5rem;
}
.cerveza-name {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.15rem; color: var(--cream); line-height: 1.25;
  /* botón que rodea el nombre */
  display: inline-block;
  border: 1px solid rgba(212,133,10,0.18);
  border-radius: 3px;
  padding: 0.12rem 0.55rem 0.15rem;
  transition: border-color 0.28s ease, box-shadow 0.28s ease,
              color 0.2s ease, background 0.28s ease;
}
/* iluminar al pasar el ratón sobre la tarjeta */
.cerveza-card:hover .cerveza-name {
  border-color: var(--amber);
  background: rgba(212,133,10,0.06);
  box-shadow: 0 0 0 2px rgba(212,133,10,0.1),
              0 0 16px rgba(212,133,10,0.22);
  color: #fff;
}
/* pulso al pulsar */
.cerveza-card:active .cerveza-name {
  box-shadow: 0 0 0 3px rgba(212,133,10,0.28),
              0 0 28px rgba(212,133,10,0.38);
  border-color: #e8950f;
}
.cerveza-abv {
  font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.65rem;
  border-radius: 100px; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.06em;
}
.abv-low  { background: rgba(100,180,60,0.12);  color: #8ACA50; border: 1px solid rgba(100,180,60,0.2); }
.abv-mid  { background: rgba(212,133,10,0.12);  color: var(--amber); border: 1px solid rgba(212,133,10,0.25); }
.abv-high { background: rgba(200,80,40,0.12);   color: #E08860; border: 1px solid rgba(200,80,40,0.2); }
.abv-vhigh{ background: rgba(180,30,30,0.12);   color: #E06060; border: 1px solid rgba(180,30,30,0.2); }

.cerveza-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.cerveza-type {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(212,133,10,0.08);
  padding: 0.2rem 0.65rem; border-radius: 2px;
}
.cerveza-origin { font-size: 0.72rem; color: var(--cream-mute); }
.cerveza-desc   { font-size: 0.86rem; color: var(--cream-2); line-height: 1.65; flex: 1; }
.cerveza-notes  {
  font-size: 0.75rem; color: var(--cream-mute); font-style: italic;
  padding-top: 0.6rem; border-top: 1px solid var(--line-soft);
}

/* Precios en la tarjeta */
.cerveza-prices {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--cream-2);
}
.cerveza-prices em { color: var(--cream-mute); font-style: normal; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 0.2rem; }
.precio-sep { color: var(--line); }

/* Selectores de país y ordenación */
.cervezas-selects {
  display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: flex-end;
  margin-top: 0.5rem;
}
.cerveza-select-wrap {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.cerveza-select-wrap label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-mute);
}
.cerveza-select {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.52rem 2.2rem 0.52rem 0.75rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4850A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color 0.2s;
  min-width: 160px;
}
.cerveza-select:focus { border-color: var(--amber); outline: none; }
.cerveza-select option { background: #1a1510; }
.cervezas-empty {
  grid-column: 1/-1; text-align: center; padding: 4rem 2rem;
  color: var(--cream-mute); font-size: 0.9rem; font-style: italic;
}

@media (max-width: 767px) {
  .cervezas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .cervezas-grid { grid-template-columns: 1fr; }
}

/* ---------- BEER MODAL ---------- */
.beer-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9600;
  background: rgba(8,6,3,0.96);
  align-items: center; justify-content: center;
  padding: 1.25rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.beer-modal.is-open { display: flex; }

.beer-modal-inner {
  position: relative;
  width: 100%; max-width: 860px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.beer-modal-close {
  position: absolute; top: 0.9rem; right: 1.1rem;
  font-size: 1.6rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  color: var(--cream-mute); padding: 0.4rem 0.6rem;
  z-index: 10; transition: color 0.2s;
}
.beer-modal-close:hover { color: var(--amber); }

.beer-modal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 380px;
}

.beer-modal-photo-wrap {
  background: rgba(255,255,255,0.025);
  border-right: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.5rem;
}
.beer-modal-photo-wrap img {
  max-height: 320px;
  width: auto; max-width: 100%;
  object-fit: contain;
}

.beer-modal-info {
  padding: 2.25rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}

.beer-modal-abv-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem; border-radius: 100px;
  align-self: flex-start;
}

.beer-modal-name {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cream); line-height: 1.15;
  margin: 0;
}

.beer-modal-meta {
  display: flex; align-items: center; gap: 0.65rem;
  flex-wrap: wrap;
}

.beer-modal-desc {
  font-size: 0.92rem; color: var(--cream-2);
  line-height: 1.78; flex: 1;
}

.beer-modal-notes {
  font-size: 0.78rem; color: var(--amber); font-style: italic;
  border-top: 1px solid var(--line-soft); padding-top: 0.75rem;
}

/* Precios en el modal */
.beer-modal-prices {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(212,133,10,0.06);
  border: 1px solid rgba(212,133,10,0.15);
  border-radius: 3px;
  padding: 0.65rem 1rem;
}
.bmp-item { display: flex; flex-direction: column; gap: 0.1rem; }
.bmp-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-mute);
}
.bmp-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--amber);
  letter-spacing: 0.02em;
}
.bmp-sep { color: var(--line); font-size: 1.2rem; align-self: center; }

@media (max-width: 600px) {
  .beer-modal-layout { grid-template-columns: 1fr; }
  .beer-modal-photo-wrap {
    border-right: none; border-bottom: 1px solid var(--line);
    max-height: 240px; padding: 1.5rem;
  }
  .beer-modal-photo-wrap img { max-height: 180px; }
  .beer-modal-info { padding: 1.5rem; }
}

/* ---------- TAP MODAL ---------- */
.tap-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(11,9,5,0.93);
  align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.tap-modal.is-open { display: flex; }
.tap-modal-inner {
  background: var(--bg-card);
  border: 1px solid rgba(212,133,10,0.4);
  border-radius: 6px;
  max-width: 460px; width: 100%;
  padding: clamp(1.75rem, 5vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  position: relative; cursor: default;
  text-align: center;
  max-height: 90vh; overflow-y: auto;
}
.tap-modal-logo { width: 130px; height: 130px; object-fit: contain; }
.tap-modal-abv {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber);
}
.tap-modal-name {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.9rem, 5vw, 2.8rem); color: var(--cream);
  line-height: 1.1; margin: 0;
}
.tap-modal-divider { width: 40px; height: 1px; background: var(--amber); opacity: 0.5; }
.tap-modal-type {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-mute);
}
.tap-modal-desc {
  font-size: 0.97rem; color: var(--cream-2);
  line-height: 1.75; max-width: 36ch;
}
.tap-modal-close {
  position: absolute; top: 0.85rem; right: 1rem;
  font-size: 1.8rem; color: var(--cream-mute); cursor: pointer;
  line-height: 1; transition: color 0.2s;
  background: none; border: none; font-family: inherit;
}
.tap-modal-close:hover { color: var(--cream); }
.tap-modal-notes {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--amber); opacity: 0.85;
  text-align: center;
}

/* Tap modal price box */
.tap-modal-prices {
  width: 100%;
  background: rgba(212,133,10,0.06);
  border: 1px solid rgba(212,133,10,0.15);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.tap-modal-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.tap-modal-measure {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--cream-mute);
}
.tap-modal-price-pair {
  display: flex; align-items: center; gap: 0.4rem;
}
.tap-modal-plabel {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--cream-mute);
}
.tap-modal-pval {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem; font-weight: 600; color: var(--amber);
}
.tap-modal-psep { color: var(--line); font-size: 0.85rem; }

/* ---------- CARTA IMAGE ---------- */
.carta-img-wrap {
  max-width: 820px; margin-inline: auto;
}
.carta-img-wrap img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ---------- CARTEL SECTIONS ---------- */
.cartel-wrap { max-width: 1100px; margin-inline: auto; }
.cartel-wrap img { width: 100%; height: auto; display: block; border-radius: 2px; }
.cartel-wrap.cartel-vertical { max-width: 500px; }

/* ---------- INSTAGRAM BUTTON (replaces QR) ---------- */
.btn-instagram {
  display: inline-flex; align-items: center; gap: 1.25rem;
  padding: 1rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-instagram:hover {
  border-color: rgba(212,133,10,0.6);
  background: var(--bg-card-2);
  transform: translateY(-2px);
}
.btn-instagram:active { transform: scale(0.97); }
.insta-brand-logo { width: 52px; height: auto; object-fit: contain; }
.insta-icon-svg { width: 28px; height: 28px; color: var(--cream-mute); flex-shrink: 0; }
.insta-text-wrap {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem;
}
.insta-handle-name {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.15rem; color: var(--amber); line-height: 1.2;
}
.insta-sub {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-mute);
}

/* ==========================================
   CARTA DE COMIDAS — FOOD SECTIONS
   ========================================== */

.food-cat-nav-wrap {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.food-cat-nav {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.food-cat-nav::-webkit-scrollbar { display: none; }
.food-cat-link {
  display: block;
  padding: 0.85rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
  white-space: nowrap;
  transition: color 0.2s;
  text-decoration: none;
}
.food-cat-link:hover { color: var(--amber); }

.food-section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.food-col-labels {
  display: flex;
  gap: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  padding-bottom: 0.25rem;
  flex-shrink: 0;
}

.food-list { display: flex; flex-direction: column; gap: 0; }
.food-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.food-item:last-child { border-bottom: none; }
.food-item--indent { padding-left: 1.5rem; }

.food-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.food-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.3;
}
.food-desc { font-size: 0.8rem; color: var(--cream-mute); line-height: 1.5; }
.food-desc em { font-style: italic; opacity: 0.75; }

.alg-row { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.35rem; }
.alg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6em;
  height: 1.6em;
  padding: 0 0.3em;
  border-radius: 2px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: default;
  text-transform: uppercase;
}
.alg-g   { background: #c07c0a; }
.alg-c   { background: #d04830; }
.alg-h   { background: #b89000; }
.alg-p   { background: #2070b8; }
.alg-ca  { background: #7a5030; }
.alg-s   { background: #3e8a38; }
.alg-l   { background: #4888a8; }
.alg-fc  { background: #b86020; }
.alg-ap  { background: #2e7a4e; }
.alg-m   { background: #909020; }
.alg-se  { background: #787878; }
.alg-so2 { background: #7850b8; }
.alg-mo  { background: #207080; }
.alg-al  { background: #982848; }

.food-prices {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.food-prices span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  min-width: 4rem;
  text-align: right;
}

.food-section-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.allergen-legend-section {
  background: var(--bg-2);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 3rem);
}
.allergen-legend-inner { max-width: 900px; margin-inline: auto; }
.allergen-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.6rem;
}
.alg-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--cream-mute);
}
.allergen-legend-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--cream-mute);
  opacity: 0.6;
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .food-section-hd { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .food-col-labels { align-self: flex-end; }
  .food-item { gap: 0.75rem; }
  .food-prices { gap: 1rem; }
  .food-prices span { min-width: 3rem; font-size: 0.82rem; }
  .allergen-legend-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

/* Allergen emoji icons */
.alg { font-size: 0; min-width: 1.9rem; height: 1.9rem; padding: 0; border-radius: 3px; }
.alg::before { font-size: 1rem; line-height: 1; }
.alg-g::before   { content: '🌾'; }
.alg-c::before   { content: '🦐'; }
.alg-h::before   { content: '🥚'; }
.alg-p::before   { content: '🐟'; }
.alg-ca::before  { content: '🥜'; }
.alg-s::before   { content: '🌿'; }
.alg-l::before   { content: '🥛'; }
.alg-fc::before  { content: '🌰'; }
.alg-ap::before  { content: '🥬'; }
.alg-m::before   { content: '🌼'; }
.alg-se::before  { content: '🌱'; }
.alg-so2::before { content: '🍷'; }
.alg-mo::before  { content: '🐚'; }
.alg-al::before  { content: '🌻'; }

/* Postres note */
.food-postres-note {
  text-align: center;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cream-mute);
  padding: 2rem 0 1rem;
  letter-spacing: 0.02em;
}

/* ==========================================
   PASSPORT STRIP — carta.html
   ========================================== */
.passport-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2.25rem clamp(1.5rem, 6vw, 4rem);
  background: linear-gradient(
    100deg,
    var(--bg) 0%,
    rgba(212,133,10,0.04) 30%,
    rgba(212,133,10,0.10) 55%,
    rgba(212,133,10,0.22) 75%,
    rgba(212,133,10,0.38) 100%
  );
  border-top: 1px solid rgba(212,133,10,0.18);
  border-bottom: 1px solid rgba(212,133,10,0.18);
  text-decoration: none;
  transition: background 0.4s;
  cursor: pointer;
}
.passport-strip:hover {
  background: linear-gradient(
    100deg,
    var(--bg) 0%,
    rgba(212,133,10,0.08) 25%,
    rgba(212,133,10,0.18) 50%,
    rgba(212,133,10,0.32) 72%,
    rgba(212,133,10,0.55) 100%
  );
}

/* Animated sweep */
.passport-strip-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(212,133,10,0.07) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: passport-sweep 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes passport-sweep {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Right-side amber edge glow */
.passport-strip::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, rgba(212,133,10,0.5), rgba(212,133,10,0.9), rgba(212,133,10,0.5));
  box-shadow: 0 0 18px 4px rgba(212,133,10,0.45);
}

/* Text */
.passport-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.passport-strip-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.75;
}
.passport-strip-headline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--cream);
  line-height: 1.15;
}
.passport-strip-sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-top: 0.2rem;
  transition: letter-spacing 0.3s;
}
.passport-strip:hover .passport-strip-sub {
  letter-spacing: 0.1em;
}

/* Burger dual-size prices */
.food-prices-burger {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.burger-size {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.burger-grams {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  min-width: 4rem;
  text-align: right;
}
.burger-size span:not(.burger-grams) {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  min-width: 4rem;
  text-align: right;
}

/* Interactive hours */
.hero-badge--open   { color: #5ecb7a; }
.hero-badge--open   .hero-badge-dot { background: #5ecb7a; box-shadow: 0 0 8px #5ecb7a; }
.hero-badge--closed { color: var(--cream-mute); }
.hero-badge--closed .hero-badge-dot { background: #cc4444; box-shadow: 0 0 6px #cc4444; animation: none; }

.schedule-row--today .day  { color: var(--amber); font-weight: 700; }
.schedule-row--today .hours { color: var(--cream); }
