/* ============================================================
   FUENTES
   - Playball    → logo navbar, "Fefis" en hero, "Keep up with us"
   - Raleway 900 → headings (ABOUT US, VISIT US, CONTACT US, MENU mega)
   - Raleway 400 → cuerpo de texto, precios, párrafos
   - Raleway 500 italic → tagline "Classic Vibes" en hero
   - Bebas Neue  → títulos de categoría del menú { ... }
============================================================ */

/* ============================================================
   IMÁGENES — Cómo reemplazar placeholders:

   1. HERO sandwich:
      En #hero-img-block → background-image: url('../assets/img/sandwich.jpg');
      O descomenta el <img> comentado dentro del div.

   2. ABOUT (foto amigas):
      En #about-photo → background-image: url('../assets/img/friends.jpg');
      O descomenta el <img> comentado.

   3. VISIT US (fachada):
      En #visit-photo → descomenta el <img>.

   4. KEEP UP - 3 fotos:
      En #kp-photo-1, #kp-photo-2, #kp-photo-3 → descomenta cada <img>.
============================================================ */

/* ============================================================
   CONFIGURACIÓN GLOBAL
   ============================================================ */
:root {
  /* COLORES */
  --color-bg:      #FFFBDB;
  --color-olive:   #849324;
  --color-red:     #CA3B2E;
  --color-dark:    #1e1e1e;
  --color-tan:     #e8deb0;
  --color-border:  #cccccc;
  --color-text:    #333333;
  --color-muted:   #888888;
  --color-white:   #ffffff;

  /* TIPOGRAFÍAS */
  --font-script:   'Playball', cursive;
  --font-display:  'Raleway', sans-serif;
  --font-body:     'Raleway', sans-serif;
  --font-serif:    'Raleway', sans-serif;
  --font-bebas:    'Bebas Neue', sans-serif;

  /* TAMAÑOS */
  --fs-logo:       2.4rem;
  --fs-hero-tag-l: 1.65rem;
  --fs-hero-tag-r: 2.1rem;
  --fs-section-h2: 3.2rem;
  --fs-menu-mega:  7.2rem;
  --fs-menu-cat:   1.5rem;
  --fs-menu-item:  0.87rem;
  --fs-body:       0.9rem;

  /* LAYOUT */
  --pad-section:   60px 120px;
  --pad-navbar:    14px 80px;
  --max-content:   1160px;
  --checker-size:  28px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--color-bg); color: var(--color-dark); overflow-x: hidden; }

/* ─── PAGE HEADER (ticker + navbar sticky wrapper) ─── */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ─── TICKER MARQUEE ─── */
.ticker {
  background: var(--color-dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: .9rem;
  letter-spacing: .8px;
  padding: 0 20px;
  color: var(--color-white);
}
.ticker-track .t-bold  { font-family: var(--font-body); font-weight: 900; }
.ticker-track .t-vibe  { font-family: var(--font-script); font-weight: 400; font-size: 1rem; }
.ticker-track .t-sep   { color: var(--color-tan); font-weight: 400; padding: 0 8px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--color-olive);
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--pad-navbar);
  border-bottom: none;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease;
}
.navbar.scrolled {
  background: var(--color-olive);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.navbar-logo { text-decoration: none; display: flex; align-items: center; }
.navbar-logo-img { height: 44px; width: auto; display: block; }
.navbar-nav  { display: flex; align-items: center; gap: 24px; }
.navbar-nav a { text-decoration: none; font-size: .82rem; font-weight: 600; letter-spacing: .5px; color: var(--color-white); transition: opacity .2s; }
.navbar-nav a:hover { opacity: .75; }
.navbar-nav a.nav-active { text-decoration: underline; text-underline-offset: 4px; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 201;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE FULL-SCREEN MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--color-dark);
  display: flex; flex-direction: column;
  padding: 0 32px 36px;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); pointer-events: auto; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.mobile-menu-logo { height: 36px; }
.mobile-menu-close {
  background: none; border: none; color: var(--color-bg);
  font-size: 1.8rem; cursor: pointer; line-height: 1; padding: 4px;
  transition: opacity .2s;
}
.mobile-menu-close:hover { opacity: .6; }

.mobile-menu-nav {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.mobile-menu-nav a {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.6rem; color: var(--color-bg);
  text-decoration: none; letter-spacing: 2px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
  display: block;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a.nav-active { color: var(--color-olive); padding-left: 10px; }

.mobile-menu-footer {
  display: flex; gap: 22px; align-items: center; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.mobile-menu-footer a { color: rgba(255,251,219,.5); transition: color .2s; }
.mobile-menu-footer a:hover { color: var(--color-bg); }

/* ─── HERO ─── */
.hero { background: var(--color-olive); padding: 56px 26px; }
.hero-inner { margin: 0 auto; }
#hero-img-block {
  width: 100%; border-radius: 20px; overflow: hidden;
  position: relative; height: 620px;
  background-image: url('../assets/img/hero-bg.webp');
  background-size: cover;
  background-position: center 100%;
}
#hero-img-block .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.28);
}
.hero-brand-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 34%;
  z-index: 2;
  filter: drop-shadow(0 4px 28px rgba(0,0,0,.4));
  pointer-events: none;
}
/* taglines posicionadas dentro de la foto, esquinas inferiores */
.hero-taglines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 60px 44px 32px;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
}
.tagline-left  { font-family: var(--font-body); font-weight: 800; font-size: 2.5rem; color: var(--color-bg); letter-spacing: 2px; }
.tagline-right { font-family: var(--font-script); font-weight: 400; font-size: 2.4rem; color: #f0e8b0; text-align: right; line-height: 1.1; }

/* ─── CHECKER STRIPS ─── */
.checker {
  height: var(--checker-size);
  background-image: repeating-linear-gradient(90deg, var(--color-olive) 0, var(--color-olive) var(--checker-size), var(--color-bg) var(--checker-size), var(--color-bg) calc(var(--checker-size)*2));
}
.checker-dbl {
  height: calc(var(--checker-size) * 2);
  background: repeating-linear-gradient(90deg, var(--color-olive) 0, var(--color-olive) calc(var(--checker-size)*2), var(--color-bg) calc(var(--checker-size)*2), var(--color-bg) calc(var(--checker-size)*4)), repeating-linear-gradient(90deg, var(--color-bg) 0, var(--color-bg) calc(var(--checker-size)*2), var(--color-olive) calc(var(--checker-size)*2), var(--color-olive) calc(var(--checker-size)*4));
  background-size: calc(var(--checker-size)*4) calc(var(--checker-size));
  background-position: 0 0, 0 calc(var(--checker-size));
}

/* ─── ABOUT ─── */
.about-section { background: var(--color-bg); padding: var(--pad-section); }
.about-section--page { padding-top: 100px; padding-bottom: 100px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: var(--max-content); margin: 0 auto; }
.about-left { padding-top: 40px; }
.about-yum-sticker { position: absolute; top: -90px; left: -140px; width: 350px; transform: rotate(-20deg); z-index: 4; }
.about-h2 { font-family: var(--font-display); font-weight: 900; font-size: var(--fs-section-h2); color: var(--color-red); letter-spacing: 1px; margin-bottom: 10px; }
.about-tagline { font-weight: 900; font-size: .93rem; color: var(--color-red); margin-bottom: 16px; }
.about-body p { font-size: var(--fs-body); line-height: 1.8; color: var(--color-text); margin-bottom: 14px; }
.about-right { position: relative; }
.bottle-deco { position: absolute; bottom: -62px; left: -130px; z-index: 3; width: 300px; }
.bottle-deco svg { filter: drop-shadow(2px 3px 8px rgba(0,0,0,.25)); }
#about-photo {
  width: 100%; height: 560px; border-radius: 6px; overflow: hidden;
  background-image: url('/assets/img/about-us.jpeg');
  background-size: cover;
  background-position: center top;
}

/* ─── MENU ─── */
.menu-section { background: var(--color-bg); padding: 40px 120px 80px; }
.menu-inner   { max-width: var(--max-content); margin: 0 auto; }

/* Tabs (solo desktop) */
.menu-tabs { display: flex; gap: 6px; margin-bottom: 36px; }
.menu-tabs button {
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 30px; border: none; border-radius: 50px; cursor: pointer;
  background: var(--color-red); color: var(--color-white);
  transition: background .15s, color .15s;
  outline: none;
}
.menu-tabs button:focus-visible { box-shadow: 0 0 0 3px rgba(132,147,36,.5); }
.menu-tabs button.active, .menu-tabs button:hover { background: var(--color-olive); color: var(--color-white); }

/* Tab panes */
.tab-pane       { display: none; }
.menu-mobile-nav { display: none; }
.tab-pane.active{ display: block; }

/* Layout */
.menu-layout { display: grid; grid-template-columns: 72px 1fr; gap: 0 114px; }
.menu-mega   { font-family: var(--font-display); font-weight: 900; font-size: var(--fs-menu-mega); line-height: .88; color: var(--color-red); letter-spacing: 4px; user-select: none; }

/* Títulos de sección */
.menu-cat-title     { font-family: var(--font-body); font-size: var(--fs-menu-cat); font-weight: 700; letter-spacing: 3px; border: 2.5px solid var(--color-red); color: var(--color-red); display: inline-block; padding: 4px 18px; margin-bottom: 20px; }
.menu-cat-subtitle  { font-size: .85rem; font-weight: 600; color: var(--color-dark); margin-bottom: 18px; margin-top: -10px; }
.menu-protein-note  { font-size: .82rem; font-weight: 700; color: var(--color-dark); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 8px 0; margin-bottom: 16px; }
.menu-protein-note strong { color: var(--color-red); }
.menu-sub-bracket   { font-family: var(--font-bebas); font-size: .98rem; letter-spacing: 3px; border: 1.5px solid var(--color-dark); display: inline-block; padding: 2px 13px; margin: 18px 0 10px; }
.menu-sub-red       { font-family: var(--font-body); font-weight: 800; font-size: .85rem; color: var(--color-red); letter-spacing: 1px; text-transform: uppercase; margin: 16px 0 8px; }

/* Columnas */
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.menu-cols-1 { display: block; }

/* Ítem con descripción (brunch/sandwiches/cocktails) */
.ditem { padding: 10px 0; border-bottom: 1px solid #ddd; }
.ditem-header { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.ditem-name  { font-family: var(--font-body); font-weight: 800; font-size: .9rem; color: var(--color-red); letter-spacing: .5px; }
.ditem-price { font-weight: 700; font-size: .9rem; color: var(--color-dark); white-space: nowrap; }
.ditem-desc  { font-size: .82rem; line-height: 1.55; color: var(--color-text); }
.ditem-desc ul { padding-left: 16px; margin-top: 4px; }
.ditem-desc li { margin-bottom: 2px; }
.ditem-note  { font-size: .8rem; color: var(--color-muted); margin-top: 3px; }

/* Ítem con tallas apiladas (café) */
.mitem       { padding: 7px 0; border-bottom: 1px solid #ddd; }
.mitem-row   { display: flex; justify-content: space-between; font-size: var(--fs-menu-item); }
.mitem-row .mname { color: var(--color-text); flex: 1; }
.mitem-row .msz   { color: var(--color-muted); min-width: 38px; text-align: center; font-size: .8rem; }
.mitem-row .mpr   { font-weight: 700; color: var(--color-dark); min-width: 42px; text-align: right; }

/* Ítem fila simple */
.srow { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #ddd; font-size: var(--fs-menu-item); }
.srow .sn { color: var(--color-text); flex: 1; }
.srow .sp { font-weight: 700; color: var(--color-dark); white-space: nowrap; }

/* Caja extras */
.menu-box { border: 1.5px solid var(--color-border); border-radius: 4px; padding: 14px 18px; }

/* Disclaimer */
.disclaimer { background: #fff8e8; border: 1px solid #e8d898; border-radius: 6px; padding: 12px 16px; margin-top: 12px; font-size: .82rem; color: var(--color-text); line-height: 1.55; }
.disclaimer strong { color: var(--color-dark); }

/* ─── VISIT US ─── */
.visit { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; border-top: 3px solid var(--color-red); border-bottom: 3px solid var(--color-red); }
.visit-text { background: var(--color-olive); display: flex; flex-direction: column; justify-content: center; padding: 60px 70px; color: var(--color-white); }
.visit-text h2 { font-family: var(--font-display); font-weight: 900; font-size: 3.8rem; letter-spacing: 1px; margin-bottom: 18px; line-height: 1; }
.visit-text p  { font-size: 1rem; line-height: 1.75; max-width: 320px; }
#visit-photo   { overflow: hidden; min-height: 360px; }

/* ─── KEEP UP ─── */
.keepup    { background: var(--color-bg); padding: 50px 0 0; text-align: center; }
.keepup h2 { font-family: var(--font-script); font-size: 3rem; color: var(--color-red); font-weight: 700; margin-bottom: 28px; }
.keepup-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.keepup-controls { display: none; }
.kp          { overflow: hidden; aspect-ratio: 1.15/1; }
.kp .kph     { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; transition: transform .5s; }
.kp:hover .kph { transform: scale(1.05); }
.kp-bg-1 { background: linear-gradient(135deg,#a07030,#d8a850,#e8c060); }
.kp-bg-2 { background: linear-gradient(135deg,#3a5818,#608030,#88a040); }
.kp-bg-3 { background: linear-gradient(135deg,#282020,#906040,#c8a070); }

/* ─── CONTACT ─── */
.contact-section { background: var(--color-bg); padding: 90px 120px 90px; text-align: center; }
.contact-section h2 { font-family: var(--font-display); font-weight: 900; font-size: 4.2rem; color: var(--color-red); letter-spacing: 1px; margin-bottom: 10px; }
.contact-line { width: 220px; height: 4px; background: var(--color-olive); margin: 0 auto 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; text-align: left; align-items: start; max-width: var(--max-content); margin: 0 auto; }
.contact-map iframe { width: 100%; height: 420px; border: 2px solid var(--color-border); border-radius: 10px; }
.cinfo .crow { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; font-size: 1.1rem; line-height: 1.8; color: var(--color-red); font-weight: 600; }
.cinfo .crow .ico { color: var(--color-red); font-size: 1.3rem; margin-top: 4px; flex-shrink: 0; }
.dbtn-wrap  { display: flex; gap: 18px; align-items: center; margin-top: 36px; }
.dbtn-uber  { display: block; text-decoration: none; }
.dbtn-uber img { width: 66px; height: 66px; border-radius: 10px; display: block; }
.dbtn-dd    { display: block; text-decoration: none; }
.dbtn-dd img { width: 66px; height: 66px; border-radius: 50%; display: block; }

/* ─── FOOTER ─── */
footer { background: var(--color-olive); padding: 26px 80px; display: flex; justify-content: center; align-items: center; gap: 56px; }
.foot-logo { width: 66px; height: 66px; }
.foot-social { display: flex; gap: 20px; align-items: center; }
.foot-social a { color: var(--color-dark); text-decoration: none; transition: opacity .2s; }
.foot-social a:hover { opacity: .55; }
.foot-copy { font-size: .78rem; color: rgba(20,20,20,.65); }
.foot-legal { color: rgba(20,20,20,.65); text-decoration: underline; text-decoration-color: rgba(20,20,20,.35); transition: opacity .2s; }
.foot-legal:hover { opacity: .7; }

/* ─── LEGAL PAGES ─── */
.legal-section { padding: 80px 20px 100px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-family: var(--font-display); font-size: 3.2rem; color: var(--color-red); margin-bottom: 6px; }
.legal-inner h2 { font-family: var(--font-body); font-weight: 900; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; color: var(--color-dark); margin: 32px 0 10px; }
.legal-inner p, .legal-inner li { font-size: .95rem; line-height: 1.75; color: var(--color-dark); }
.legal-inner ul { padding-left: 20px; margin: 8px 0 16px; }
.legal-inner a { color: var(--color-red); }
.legal-date { font-size: .82rem; color: rgba(20,20,20,.5); margin-bottom: 32px; }

/* Visit Us – extras */
.contact-section h1 { font-family: var(--font-display); font-weight: 900; font-size: 4.2rem; color: var(--color-red); letter-spacing: 1px; margin-bottom: 10px; }
.contact-subtitle { font-size: 1rem; line-height: 1.65; max-width: 560px; margin: 0 auto 16px; color: var(--color-dark); }
.visit-msg-block { margin: 28px 0 18px; }
.visit-msg-block > p { font-size: .95rem; color: var(--color-dark); margin: 0 0 8px; }
.btn-send-msg { color: var(--color-red); font-weight: 700; font-size: .95rem; text-decoration: none; border-bottom: 2px solid var(--color-red); padding-bottom: 1px; transition: opacity .2s; }
.btn-send-msg:hover { opacity: .65; }
.visit-order-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-dark); opacity: .5; display: block; margin: 30px 0 6px; }

/* Reviews subtitle */
.reviews-subtitle { font-style: italic; font-size: 1rem; color: var(--color-dark); opacity: .65; margin: -14px 0 34px; text-align: center; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PREMIUM GAMES PAGE
   ============================================================ */

/* Hero */
.pg-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #1c2219;
  display: flex;
  align-items: stretch;
}
.pg-hero-bg {
  position: absolute;
  inset: 0;
}
.pg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 20%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.88) 100%);
  z-index: 1;
}
.pg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  display: block;
}
.pg-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 22px 64px;
}
.pg-hero-text {
  border-left: 4px solid rgba(255,255,255,.5);
  padding-left: 14px;
}
.pg-title-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.0;
  margin: 0;
}
.pg-script {
  font-family: 'Playball', cursive;
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
}
.pg-bold {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  color: #fff;
  text-transform: lowercase;
  line-height: 1;
}

/* Green badge */
.pg-badge {
  position: absolute;
  top: 28px;
  right: 22px;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.pg-badge-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Red stripe */
.pg-stripe {
  background: #c0281c;
  color: #fff;
  text-align: center;
  padding: 13px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.45;
}
.pg-stripe strong { font-weight: 900; }

/* 3-column features */
.pg-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-top: 3px solid #fff;
  border-bottom: 1px solid #ddd;
}
.pg-feat {
  padding: 16px 11px;
  border-right: 1px solid #e0e0e0;
}
.pg-feat:last-child { border-right: none; }
.pg-feat-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  color: #c0281c;
  font-size: .78rem;
  margin: 0 0 9px;
  line-height: 1.2;
}
.pg-feat-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0;
  font-size: .68rem;
  font-family: 'Raleway', sans-serif;
  color: #1a1a1a;
  font-weight: 500;
}
.pg-icon-sq {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #c0281c;
  flex-shrink: 0;
}
.pg-icon-sound {
  font-size: .75rem;
  line-height: 1;
  flex-shrink: 0;
}
.pg-icon-food {
  font-size: .8rem;
  line-height: 1;
  flex-shrink: 0;
}
.pg-feat-channels {
  font-size: .65rem;
  font-family: 'Raleway', sans-serif;
  color: #333;
  margin: 0;
  line-height: 1.55;
  font-weight: 400;
}
.pg-feat-note {
  display: block;
  font-size: .62rem;
  color: #888;
  font-style: italic;
  font-family: 'Raleway', sans-serif;
  margin-top: 9px;
}

/* Reserve CTA */
.pg-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 28px 32px;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
    url('/assets/img/sport-1.webp') 8% 5% / 220% no-repeat;
}
.pg-reserve-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.65rem;
  color: #f5e6c8;
  line-height: 1.25;
  max-width: 340px;
  margin: 0 0 36px;
}
.pg-reserve-btn {
  background: #c0281c;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 15px 72px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .02em;
  transition: background .2s;
}
.pg-reserve-btn:hover { background: #a82318; }

/* Gallery 2-up — lives inside .pg-reserve */
.pg-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-top: 48px;
}
.pg-gallery-img {
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.pg-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop adjustments */
@media (min-width: 769px) {
  .pg-hero { min-height: 540px; }
  .pg-script { font-size: 2.2rem; }
  .pg-bold { font-size: 4rem; }
  .pg-badge { width: 100px; height: 100px; top: 36px; right: 36px; }
  .pg-hero-content { padding: 0 44px 80px; }
  .pg-feat { padding: 22px 18px; }
  .pg-feat-title { font-size: .92rem; }
  .pg-feat-row { font-size: .8rem; }
  .pg-feat-channels { font-size: .78rem; }
  .pg-feat-note { font-size: .74rem; }
  .pg-reserve-title { font-size: 2.1rem; max-width: 480px; }
  .pg-gallery { gap: 6px; }
  .pg-gallery-img { height: 340px; }
}

/* ============================================================
   RESPONSIVE — WIDE DESKTOP (≥ 1440px)
   ============================================================ */
@media (min-width: 1440px) {
  :root {
    --pad-section:  70px 160px;
    --pad-navbar:   16px 100px;
    --max-content:  1280px;
  }

  /* Hero */
  .hero { padding: 45px 110px; }
  #hero-img-block { height: 720px; }
  .hero-brand-logo { width: 30%; }
  .hero-taglines { padding: 90px 60px 48px; }
  .tagline-left  { font-size: 2.8rem; }
  .tagline-right { font-size: 2.8rem; }

  /* Sections */
  .menu-section { padding: 50px 160px 90px; }
  .contact-section { padding: 70px 160px 60px; }
  footer { padding: 30px 100px; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (min-width: 769px) and (max-width: 980px) {
  :root { --pad-section: 40px 40px; --pad-navbar: 12px 32px; }
  .hero { padding: 12px 32px 0; }
  .menu-section { padding: 0 40px 60px; }
  .visit-text { padding: 40px 40px; }
  .contact-section { padding: 50px 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   En mobile: NO hay tabs, todo el menú se muestra en sábana
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-section:    40px 20px;
    --pad-navbar:     12px 20px;
    --fs-section-h2:  2.4rem;
    --fs-menu-mega:   4rem;
    --checker-size:   20px;
  }

  /* Ticker */
  .ticker-track span { padding: 0 12px; font-size: .75rem; }

  /* Navbar */
  .navbar { padding: var(--pad-navbar); }
  .navbar-logo-img { height: 32px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 18px 14px; }
  #hero-img-block { height: 260px; border-radius: 14px; }
  .hero-brand-logo { width: 52%; transform: translate(-50%, -55%); }
  .hero-taglines { padding: 30px 18px 18px; }
  .tagline-left  { font-size: 1rem; }
  .tagline-right { font-size: 1.25rem; }

  /* About */
  .about-section { padding: var(--pad-section); }
  .about-inner   { grid-template-columns: 1fr; gap: 24px; }
  .about-yum-sticker { display: none; }
  #about-photo   { height: 460px; }
  .bottle-deco   { display: none; }

  /* MENÚ MOBILE: TODO EN SÁBANA, SIN TABS */
  .menu-tabs  { display: none; }
  .tab-pane   { display: block !important; }

  /* MOBILE FLOATING CATEGORY NAV */
  .menu-mobile-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 14px;
    background: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 50;
    scrollbar-width: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    margin: 0 -14px 24px;
  }
  .menu-mobile-nav::-webkit-scrollbar { display: none; }
  .menu-mobile-nav .mob-cat-btn {
    flex-shrink: 0;
    font-family: var(--font-body); font-weight: 700; font-size: .72rem;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 9px 20px; border: none; border-radius: 50px; cursor: pointer;
    background: var(--color-red); color: var(--color-white);
    transition: background .2s;
  }
  .menu-mobile-nav .mob-cat-btn.active { background: var(--color-olive); }

  .tab-pane + .tab-pane {
    border-top: 2px dashed var(--color-border);
    margin-top: 32px;
    padding-top: 28px;
  }

  .menu-section { padding: 28px 20px 50px; }
  .menu-layout  { grid-template-columns: 1fr; gap: 0; }
  .menu-mega    { display: none; }
  .menu-cols    { grid-template-columns: 1fr; }
  .menu-cat-title { font-size: 1.2rem; }
  .menu-box     { margin-top: 20px; }

  /* Visit Us */
  .visit { grid-template-columns: 1fr; }
  .visit-text { padding: 36px 24px; }
  .visit-text h2 { font-size: 2.6rem; }
  #visit-photo { min-height: 220px; font-size: 3.5rem; }

  /* Premium Games */
  .pg-reserve { padding: 44px 16px 24px; }
  .pg-gallery { grid-template-columns: 1fr 1fr; gap: 4px; }
  .pg-gallery-img { height: 200px; border-radius: 10px; }

  /* Keep up */
  .keepup { padding: 34px 0 0; }
  .keepup h2 { font-size: 2.2rem; margin-bottom: 18px; }
  .keepup-carousel-wrap { overflow: hidden; }
  .keepup-grid { display: flex; transition: transform .42s cubic-bezier(.4,0,.2,1); }
  .kp { flex: 0 0 100%; aspect-ratio: unset; height: 280px; }
  .keepup-controls { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 20px 0 28px; }

  /* Contact */
  .contact-section { padding: 50px 20px 50px; }
  .contact-section h2 { font-size: 2.6rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-map iframe { height: 280px; }

  /* Footer */
  footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
  .foot-social { justify-content: center; }
}

/* ============================================================
   NEW SECTIONS
   ============================================================ */

/* ─── SHARED: btn-outline ─── */
.btn-outline {
  display: inline-block; margin-top: 24px;
  padding: 11px 30px; border: 2px solid var(--color-red);
  color: var(--color-red); text-decoration: none;
  font-weight: 700; font-size: .85rem; letter-spacing: 1px;
  border-radius: 4px; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--color-red); color: var(--color-white); }

/* ─── nav-active ─── */
.navbar-nav a.nav-active { text-decoration: underline; text-underline-offset: 4px; }

/* ─── MENU PAGE extra top padding ─── */
.menu-page-section { padding-top: 50px; }
.menu-tab-photo { display: none; margin: 24px 0; }

/* ─── VIEW MENU PREVIEW ─── */
.menu-preview-section { background: var(--color-dark); padding: 80px 120px; }
.menu-preview-inner {
  max-width: var(--max-content); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.menu-preview-heading {
  font-family: var(--font-display); font-weight: 900;
  font-size: 4.5rem; line-height: .9; letter-spacing: 2px;
  color: var(--color-bg); margin-bottom: 20px;
}
.menu-preview-sub { font-size: .95rem; line-height: 1.75; color: rgba(255,251,219,.7); max-width: 340px; margin-bottom: 32px; }
.btn-menu-cta {
  display: inline-block; padding: 14px 36px;
  background: var(--color-red); color: var(--color-white);
  text-decoration: none; font-weight: 700; font-size: .88rem;
  letter-spacing: 1px; border-radius: 4px; transition: background .2s;
}
.btn-menu-cta:hover { background: #9a1f17; }
.menu-preview-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 290px 290px; gap: 10px; }
.mp-photo { overflow: hidden; border-radius: 8px; }
.mp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.mp-photo:hover img { transform: scale(1.04); }
.mp-photo-tall { grid-row: span 2; height: calc(290px * 2 + 10px); }
.mp-photo-tall img { height: 100%; }
.mp-photo:not(.mp-photo-tall) { height: 290px; }

/* ─── REVIEWS ─── */
.reviews-section { background: var(--color-white); padding: 80px 120px; }
.reviews-inner { max-width: 680px; margin: 0 auto; }
.reviews-heading {
  font-family: var(--font-display); font-weight: 900; font-size: 2.4rem;
  color: var(--color-red); letter-spacing: 1px; margin-bottom: 8px; text-align: center;
}
.reviews-subtitle { text-align: center; font-size: .9rem; color: var(--color-muted); margin-bottom: 40px; }
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  background: var(--color-bg); border: 1.5px solid var(--color-tan);
  border-radius: 10px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: #d4a017; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: .95rem; line-height: 1.75; color: var(--color-text); flex: 1; font-style: italic; }
.review-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.review-author { font-weight: 700; font-size: .82rem; color: var(--color-dark); }
.review-source { font-size: .75rem; color: var(--color-muted); }
.reviews-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 28px;
}
.reviews-btn {
  background: var(--color-red); color: #fff;
  border: none; border-radius: 50%; width: 42px; height: 42px;
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0; padding-bottom: 2px;
}
.reviews-btn:hover { background: var(--color-olive); }
.reviews-dots { display: flex; gap: 10px; align-items: center; }
.reviews-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-tan); border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.reviews-dot.active { background: var(--color-red); transform: scale(1.35); }

/* ─── VISIT SECTION (homepage) ─── */
.visit-section { background: var(--color-bg); padding: 80px 120px; border-top: 3px solid var(--color-red); }
.visit-section-inner {
  max-width: var(--max-content); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.visit-section-left h2 {
  font-family: var(--font-display); font-weight: 900; font-size: 3.2rem;
  color: var(--color-red); letter-spacing: 1px; margin-bottom: 14px;
}
.visit-tagline { font-size: .95rem; line-height: 1.75; color: var(--color-text); margin-bottom: 32px; max-width: 340px; }
.visit-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.vrow { display: flex; align-items: flex-start; gap: 14px; font-size: .95rem; line-height: 1.7; color: var(--color-text); }
.vico { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.visit-section-map iframe { width: 100%; height: 420px; border: 2px solid var(--color-border); border-radius: 10px; }

/* ─── VISIT FULL PAGE ─── */
.visit-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; border-top: 3px solid var(--color-red); border-bottom: 3px solid var(--color-red); }
.visit-full-text { background: var(--color-olive); display: flex; flex-direction: column; justify-content: center; padding: 60px 70px; color: var(--color-white); }
.visit-full-text h1 { font-family: var(--font-display); font-weight: 900; font-size: 3.8rem; letter-spacing: 1px; margin-bottom: 18px; line-height: 1; }
.visit-full-text p  { font-size: 1rem; line-height: 1.75; max-width: 320px; }
.visit-full-photo   { overflow: hidden; min-height: 360px; }

/* ─── PAGE HERO ─── */
.page-hero { padding: 70px 120px; }
.page-hero--olive { background: var(--color-olive); }
.page-hero--dark  { background: var(--color-dark); }
.page-hero-inner h1 {
  font-family: var(--font-display); font-weight: 900; font-size: 4rem;
  color: var(--color-bg); letter-spacing: 2px; margin-bottom: 12px;
}
.page-hero-inner p { font-size: 1.1rem; color: rgba(255,251,219,.75); }

/* ─── ABOUT PAGE extras ─── */
.about-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.apr-img { overflow: hidden; aspect-ratio: 4/3; }
.apr-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.apr-img:hover img { transform: scale(1.04); }

.philosophy-section { background: var(--color-bg); padding: 80px 120px; }
.philosophy-inner { max-width: var(--max-content); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.phil-item { text-align: center; padding: 32px 24px; border: 1.5px solid var(--color-tan); border-radius: 10px; background: var(--color-white); }
.phil-icon { font-size: 2.2rem; margin-bottom: 16px; }
.phil-item h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--color-red); letter-spacing: 1px; margin-bottom: 12px; }
.phil-item p { font-size: .88rem; line-height: 1.7; color: var(--color-text); }

/* ─── COMING SOON ─── */
.coming-soon-section { background: var(--color-bg); padding: 100px 20px; text-align: center; }
.coming-soon-inner { max-width: 480px; margin: 0 auto; }
.coming-soon-icon { font-size: 4rem; margin-bottom: 24px; }
.coming-soon-inner h2 { font-family: var(--font-display); font-weight: 900; font-size: 3rem; color: var(--color-red); margin-bottom: 16px; }
.coming-soon-inner p { font-size: 1rem; line-height: 1.75; color: var(--color-text); margin-bottom: 32px; }

/* ─── FAQ ─── */
.faq-section { background: var(--color-bg); padding: 80px 120px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  color: var(--color-olive); letter-spacing: 1px; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid var(--color-tan);
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 0; font-family: var(--font-body); font-weight: 700;
  font-size: .95rem; color: var(--color-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--color-red); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-a.open { display: block; }
.faq-a p { font-size: .88rem; line-height: 1.75; color: var(--color-text); }

/* ============================================================
   RESPONSIVE — NEW SECTIONS (mobile)
   ============================================================ */
@media (max-width: 768px) {
  .menu-preview-section { padding: 50px 20px; }
  .menu-preview-inner { grid-template-columns: 1fr; gap: 32px; }
  .menu-preview-heading { font-size: 3rem; }
  .menu-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .mp-photo-tall { height: calc(160px * 2 + 10px); }
  .mp-photo:not(.mp-photo-tall) { height: 160px; }

  .kp { height: 260px; aspect-ratio: unset; }
  .kp .kph { height: 100%; }

  .reviews-section { padding: 50px 20px; }
  .reviews-heading { font-size: 1.8rem; }

  .visit-section { padding: 50px 20px; }
  .visit-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .visit-section-map iframe { height: 280px; }

  .visit-full { grid-template-columns: 1fr; }
  .visit-full-text { padding: 40px 24px; }
  .visit-full-photo { min-height: 220px; }

  .page-hero { padding: 50px 20px; }
  .page-hero-inner h1 { font-size: 2.6rem; }

  .about-photo-row { grid-template-columns: 1fr; }
  .philosophy-section { padding: 50px 20px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 18px; }

  .faq-section { padding: 50px 20px; }

  .menu-page-section { padding-top: 28px; }
  .mobile-menu-nav a { font-size: 2rem; }

  .menu-tab-photo { display: block; width: 100%; max-height: 460px; object-fit: cover; object-position: center center; margin: 24px 0; }
}
