/* ============================================================
   ADRIANA – ANTIGUO BAR GONZALO
   Styles · Mobile-first · No framework
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --terracotta:    #C0614A;
  --terracotta-dk: #A04E3A;
  --cream:         #F5ECD7;
  --cream-dk:      #EDD9B8;
  --brown:         #2C1A0E;
  --brown-lt:      #4A2E1A;
  --gold:          #C9A84C;
  --gold-lt:       #E2C46A;
  --white:         #FFFFFF;
  --text-primary:  #2C1A0E;
  --text-light:    #F5ECD7;
  --text-muted:    rgba(44,26,14,.65);

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(44,26,14,.12);
  --shadow-md:  0 8px 32px rgba(44,26,14,.16);
  --shadow-lg:  0 20px 60px rgba(44,26,14,.22);

  --transition: 220ms ease;
  --container:  1200px;
  --header-h:   72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }
@media (min-width: 1200px) { .container { padding-inline: 60px; } }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title--light { color: var(--cream); }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin-inline: auto; }
.section-subtitle--light { color: rgba(245,236,215,.75); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  padding: 12px 24px;
}
.btn--sm   { padding: 9px 18px; font-size: .875rem; }
.btn--lg   { padding: 16px 36px; font-size: 1.05rem; }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,97,74,.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(245,236,215,.15);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--outline-dark:hover {
  background: var(--brown);
  color: var(--cream);
}

.link-arrow {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--terracotta-dk); }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--gold);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
}
.logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.header__nav { display: none; }
@media (min-width: 960px) {
  .header__nav { display: block; }
  .nav__list { display: flex; gap: 28px; }
  .nav__link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--brown-lt);
    transition: color var(--transition);
    position: relative;
  }
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .nav__link:hover { color: var(--terracotta); }
  .nav__link:hover::after { transform: scaleX(1); }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: var(--cream-dk);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
@media (min-width: 960px) { .hamburger { display: none; } }

/* Mobile nav open */
.header--open .header__nav {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dk);
  padding: 20px;
  box-shadow: var(--shadow-md);
}
.header--open .nav__list { flex-direction: column; gap: 0; }
.header--open .nav__link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 1rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,.78) 0%, rgba(44,26,14,.35) 60%, rgba(44,26,14,.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
}

.hero__subheadline {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(245,236,215,.88);
  max-width: 580px;
  line-height: 1.65;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.hero__trust-text { font-size: .85rem; color: rgba(245,236,215,.75); }

/* ---------- REVIEWS ---------- */
.reviews {
  position: relative;
  /* overflow: clip prevents watermark bleed without creating a new scroll context
     (unlike overflow:hidden it doesn't interfere with child -webkit-overflow-scrolling) */
  overflow: clip;
  background: var(--cream);
  padding-block: 80px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card--linked { cursor: pointer; text-decoration: none; color: inherit; }
.review-card--linked:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--terracotta); }
.review-card--linked .review-card__source::after { content: " ↗"; font-size: .65rem; opacity: .7; }

.review-card__stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; }

.review-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--brown);
  line-height: 1.65;
  flex: 1;
}

.review-card__author {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-card__source {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--brown-lt);
}

/* ---------- DISHES ---------- */
.dishes {
  background: #3D1F0E;
  padding-block: 80px;
}
.dishes .section-title  { color: var(--cream); }
.dishes .section-subtitle { color: rgba(245,236,215,.7); }

/* Dishes fill column-by-column (CSS columns layout) */
.dishes__grid {
  column-count: 2;
  column-gap: 20px;
  orphans: 1; widows: 1;
}
@media (min-width: 768px) { .dishes__grid { column-count: 3; } }
@media (max-width: 480px) { .dishes__grid { column-count: 1; } }

.dish-card {
  background: var(--brown);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201,168,76,.2);
  /* Prevents cards from breaking across CSS columns */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 20px; /* replaces grid gap */
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.dish-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brown-lt);
}
.dish-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.dish-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown-lt, #3a2a1a);
  color: var(--cream);
}
.dish-card:hover .dish-card__img { transform: scale(1.04); }

.dish-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dish-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}
.dish-card__desc {
  font-size: .82rem;
  color: rgba(245,236,215,.65);
  line-height: 1.5;
  flex: 1;
}
.dish-card__price {
  font-size: .875rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  margin-top: 4px;
}

/* ---------- TOURIST HOOK ---------- */
.tourist-hook {
  background: var(--cream);
  padding-block: 80px;
}
.tourist-hook__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) { .tourist-hook__inner { grid-template-columns: 1fr 1fr; } }

.tourist-hook__text { display: flex; flex-direction: column; gap: 20px; }
.tourist-hook__text .section-title { text-align: left; margin-bottom: 0; }
.tourist-hook__body {
  font-size: .975rem;
  color: var(--brown-lt);
  line-height: 1.8;
  white-space: pre-line;
}

.tourist-hook__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.tourist-hook__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 860px) { .tourist-hook__img { aspect-ratio: 3/4; } }

/* ---------- MENU PREVIEW ---------- */
.menu-preview {
  background: var(--brown);
  padding-block: 80px;
}

.menu-preview__grid {
  columns: 1;
  column-gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .menu-preview__grid { columns: 2; } }

/* Categories must not break across columns */
.menu-category {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 40px;
}

/* Toggle button spans full width in column layout */
.menu-toggle-wrap {
  column-span: all;
  text-align: center;
  margin-top: 8px;
}

/* Extra categories container: transparent to columns when visible */
#menu-extra { display: contents; }
#menu-extra[hidden] { display: none; }

.menu-category__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(245,236,215,.08);
}
.menu-item__name {
  font-size: .95rem;
  color: var(--cream);
  font-weight: 400;
}
.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(245,236,215,.2);
  margin-bottom: 3px;
}
.menu-item__price {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-preview__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 480px) { .menu-preview__ctas { flex-direction: row; justify-content: center; } }

.menu-preview__whatsapp-link {
  font-size: .9rem;
  color: rgba(245,236,215,.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.menu-preview__whatsapp-link:hover { color: var(--gold); }

/* ---------- LOCATION ---------- */
.location {
  background: var(--cream);
  padding-block: 80px;
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 860px) { .location__inner { grid-template-columns: 1fr 1fr; } }

.location__map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.location__map iframe { display: block; width: 100%; height: 380px; }

.location__info { display: flex; flex-direction: column; gap: 20px; }
.location__info .section-title { margin-bottom: 0; }

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--brown-lt);
  font-size: .95rem;
  line-height: 1.6;
}
.location__detail svg { flex-shrink: 0; margin-top: 2px; color: var(--terracotta); }
.location__phone { color: var(--terracotta); font-weight: 600; }
.location__phone:hover { color: var(--terracotta-dk); }

.location__landmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.landmark-tag {
  display: inline-block;
  background: var(--cream-dk);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--brown-lt);
}

.location__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.final-cta__bg { position: absolute; inset: 0; }
.final-cta__img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,.72);
}
.final-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-block: 100px;
}
.final-cta .btn--primary {
  padding: 18px 48px;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.final-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.final-cta__sub {
  font-size: 1rem;
  color: rgba(245,236,215,.82);
  max-width: 520px;
  line-height: 1.65;
}
.final-cta__note { font-size: .875rem; color: rgba(245,236,215,.65); }
.final-cta__tel { color: var(--gold); font-weight: 600; }
.final-cta__tel:hover { color: var(--gold-lt); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown);
  padding-block: 48px 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245,236,215,.1);
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr auto auto; text-align: left; align-items: center; }
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.footer__tagline { font-size: .8rem; color: rgba(245,236,215,.5); margin-top: 4px; }

.footer__nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer__nav a {
  font-size: .875rem;
  color: rgba(245,236,215,.65);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--cream); }
.footer__admin-link { color: rgba(245,236,215,.3) !important; font-size: .75rem !important; }

.footer__social { display: flex; gap: 16px; justify-content: center; }
.footer__social a {
  color: rgba(245,236,215,.5);
  transition: color var(--transition);
  padding: 6px;
}
.footer__social a:hover { color: var(--gold); }

.footer__legal {
  padding-top: 20px;
  text-align: center;
  font-size: .78rem;
  color: rgba(245,236,215,.35);
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 56px;
  overflow: hidden;
}
.whatsapp-float:hover {
  max-width: 200px;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-float__label {
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms ease 60ms;
}
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* CSS animation fires automatically when the element enters the DOM —
   no IntersectionObserver or class toggle needed. fill-mode:both keeps
   opacity:0 before it starts and opacity:1 after it ends. */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeInUp 500ms ease both;
  }
}

/* Reduced-motion: always visible */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ---------- FOCUS STYLES (accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- JOBS ---------- */
.jobs {
  background: var(--cream);
  padding-block: 80px;
}

.jobs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin-inline: auto;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

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

.job-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
}

.job-card__badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.job-card__desc {
  font-size: .95rem;
  color: var(--brown-lt);
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-card__reqs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.job-card__reqs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-muted);
}

.job-card__reqs li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   GALLERY STRIP
══════════════════════════════════════════════════════════ */
.gallery-strip {
  padding-block: 60px 0;
  overflow: hidden;
}

.gallery-strip .section-header {
  text-align: center;
  margin-bottom: 32px;
}

.gallery-strip__track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.gallery-strip__track::-webkit-scrollbar { display: none; }

.gallery-strip__item {
  flex: 0 0 280px;
  height: 210px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--brown-dk, #1a0d00);
}

@media (min-width: 768px) {
  .gallery-strip__item {
    flex: 0 0 320px;
    height: 240px;
  }
}

@media (min-width: 1200px) {
  .gallery-strip__track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: unset;
  }
  .gallery-strip__item {
    flex: unset;
    height: 260px;
  }
}

.gallery-strip__item picture,
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-strip__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  background: var(--brown-dk, #1a0d00);
}

/* Hide placeholder once image is loaded */
.gallery-strip__item--loaded .gallery-strip__placeholder { display: none; }

/* Hide empty img/picture tags (no src set) */
.gallery-strip__item--empty img { display: none; }
.gallery-strip__item--empty picture { display: none; }


/* ══════════════════════════════════════════════════════════
   SECTION LOGO WATERMARK (reviews + faq background decoration)
══════════════════════════════════════════════════════════ */
.section-logo-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.14;
  width: 360px;
  height: auto;
  filter: brightness(0);
}

.section-logo-watermark--reviews-right {
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-16deg);
}

.section-logo-watermark--reviews-left {
  left: -40px;
  top: 10%;
  transform: rotate(12deg);
}

.section-logo-watermark--faq-left {
  left: -40px;
  bottom: 8%;
  transform: rotate(14deg);
}

.section-logo-watermark--faq-right {
  right: -40px;
  top: 12%;
  transform: rotate(-12deg);
}

@media (max-width: 767px) {
  .section-logo-watermark { display: none; }
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq {
  position: relative;
  overflow: clip;
  background: var(--cream);
  padding-block: 80px;
}

.faq .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,.08);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq__item[open] {
  box-shadow: var(--shadow-sm);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
}

.faq__item[open] .faq__q::after {
  content: '\2212';
}

.faq__a {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}

.faq__a p { margin: 0; }

/* ══════════════════════════════════════════════════════════
   GALLERY LIGHTBOX
══════════════════════════════════════════════════════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox[hidden] { display: none; }

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  cursor: zoom-out;
}

.gallery-lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1080px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none; /* clicks on image don't close */
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.gallery-lightbox__caption {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  margin-top: 10px;
  text-align: center;
  pointer-events: none;
}

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: fixed;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  background: rgba(255, 255, 255, .28);
  transform: scale(1.08);
}

.gallery-lightbox__close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  padding-bottom: 2px;
}
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover { transform: translateY(-50%) scale(1.08); }

.gallery-lightbox__prev { left: 14px; }
.gallery-lightbox__next { right: 14px; }

.gallery-lightbox__counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  letter-spacing: .05em;
  z-index: 2;
  background: rgba(0,0,0,.35);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Clickable gallery items */
.gallery-strip__item[tabindex="0"] {
  cursor: pointer;
}
.gallery-strip__item[tabindex="0"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .gallery-lightbox__prev { left: 4px; width: 40px; height: 40px; font-size: 1.4rem; }
  .gallery-lightbox__next { right: 4px; width: 40px; height: 40px; font-size: 1.4rem; }
  .gallery-lightbox__close { top: 8px; right: 8px; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE STICKY CTA BAR (only shown on mobile)
══════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none; /* hidden by default; shown in mobile MQ below */
}

/* ══════════════════════════════════════════════════════════
   MOBILE MENU CARD (replaces the menu list on mobile)
══════════════════════════════════════════════════════════ */
.menu-mobile-card {
  display: none; /* hidden by default; shown in mobile MQ below */
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 32px;
}
.menu-mobile-card__icon {
  font-size: 2.4rem;
  line-height: 1;
}
.menu-mobile-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
}
.menu-mobile-card__sub {
  font-size: .88rem;
  color: rgba(245,236,215,.6);
  line-height: 1.55;
}
.menu-mobile-card .btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS  ≤ 767px
══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ─── Global ─────────────────────────────────── */
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 1.55rem; }
  .section-subtitle { font-size: .88rem; }

  /* ─── Header ─────────────────────────────────── */
  /* Hide the "Reservar mesa" button → sticky bar covers it */
  .header__actions .btn--sm { display: none; }

  /* ─── Hero ───────────────────────────────────── */
  .hero__content {
    padding-block: 72px 56px;
    gap: 14px;
  }
  .hero__headline  { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero__subheadline { font-size: .9rem; }
  .hero__trust-text  { font-size: .8rem; }

  /* Stack and full-width CTAs */
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 10px;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* ─── Reviews ────────────────────────────────── */
  .reviews { padding-block: 48px; }
  .reviews .section-header { margin-bottom: 24px; }

  /* Horizontal scroll carousel */
  .reviews__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-bottom: 12px;
    margin-bottom: 28px;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .trust-badges { gap: 16px; flex-direction: column; align-items: center; }

  /* ─── Gallery ────────────────────────────────── */
  .gallery-strip { padding-block: 40px 0; }
  .gallery-strip .section-header { margin-bottom: 20px; }

  /* ─── Dishes ─────────────────────────────────── */
  .dishes { padding-block: 48px; }
  .dishes__grid { column-count: 1; }
  .dish-card__body { padding: 12px; }
  .dish-card__desc { display: none; }        /* hide desc on mobile to save space */
  .dish-card__name { font-size: .95rem; }

  /* ─── Tourist hook ───────────────────────────── */
  /* Long editorial section — not useful on mobile */
  .tourist-hook { display: none; }

  /* ─── Menu preview ───────────────────────────── */
  .menu-preview { padding-block: 48px; }
  /* Hide the full menu list + toggle — /carta is the mobile menu */
  .menu-preview__grid { display: none !important; }
  .menu-toggle-wrap   { display: none !important; }
  /* Show the mobile card instead */
  .menu-mobile-card   { display: flex; }
  .menu-preview__ctas { flex-direction: column; align-items: stretch; }
  .menu-preview__ctas .btn { width: 100%; text-align: center; }

  /* ─── Location ───────────────────────────────── */
  .location { padding-block: 48px; }
  .location__map iframe { height: 220px !important; }
  .location__info .section-title { font-size: 1.4rem; }

  /* ─── Final CTA ──────────────────────────────── */
  .final-cta { min-height: 0; }
  .final-cta__content { padding-block: 52px 96px; gap: 12px; }
  .final-cta__headline { font-size: 1.8rem; }
  .final-cta__sub { font-size: .88rem; }
  /* Auto-width button — not full-stretch */
  #whatsapp-final { width: auto; min-width: 220px; }

  /* ─── FAQ ────────────────────────────────────── */
  .faq { padding-block: 48px; }
  .faq__q { padding: 16px 18px; font-size: .95rem; }
  .faq__a { padding: 0 18px 16px; }

  /* ─── Footer ─────────────────────────────────── */
  .footer { padding-bottom: calc(24px + 72px); } /* room for sticky bar */
  .footer__nav { gap: 14px; }

  /* ─── Floating WhatsApp ──────────────────────── */
  /* Hidden: sticky bar replaces it */
  .whatsapp-float { display: none; }

  /* ─── Mobile sticky CTA bar ──────────────────── */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 200;
    background: var(--brown);
    border-top: 1px solid rgba(201,168,76,.2);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  }
  .mobile-cta-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .88rem;
    font-weight: 600;
    transition: opacity .15s, transform .12s;
    color: var(--white);
  }
  .mobile-cta-bar__btn:active { transform: scale(.97); opacity: .85; }
  .mobile-cta-bar__btn--phone { background: var(--terracotta); }
  .mobile-cta-bar__btn--phone:hover { background: var(--terracotta-dk); }
  .mobile-cta-bar__btn--wa { background: #25D366; }
  .mobile-cta-bar__btn--wa:hover { background: #1da851; }
}

/* ─── Very small screens (< 360px) ──────────────── */
@media (max-width: 359px) {
  .mobile-cta-bar__btn span { display: none; } /* icon-only on tiny phones */
  .mobile-cta-bar__btn { flex: 0 0 52px; border-radius: 50%; padding: 13px; }
  .hero__headline { font-size: 1.55rem; }
}

/* ---------- PRINT ---------- */
@media print {
  .header, .whatsapp-float, .final-cta, .mobile-cta-bar { display: none; }
}
