/* =====================================================================
   Sazonao Pop Restaurante — Puerto Plata, RD
   Design system: warm, moody night-patio elegance
   Buildless. Vanilla CSS driven by custom properties.
   Built by Borg Sites — https://borgsites.com
   ===================================================================== */

/* ------------------------------------------------------------------ */
/*  1. Tokens                                                          */
/* ------------------------------------------------------------------ */
:root {
  /* Surfaces (deep espresso / near-black) */
  --bg:        #141010;
  --bg-1:      #1c1512;
  --bg-2:      #241a17;
  --bg-3:      #2f221d;

  /* Warm cream ink */
  --cream:      #f4ece0;
  --cream-dim:  #cebfb0;
  --cream-mute: #a2958a;

  /* Gold string-light accent */
  --gold:      #e0b464;
  --gold-deep: #d4a15a;
  --gold-soft: #f2d7a4;

  /* Neon pink (used sparingly) */
  --pink:      #ff3d8b;
  --pink-deep: #e0359e;

  /* Lines & glows */
  --line:      rgba(224, 180, 100, 0.22);
  --line-soft: rgba(244, 236, 224, 0.10);
  --scrim:     rgba(10, 7, 6, 0.55);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 0 40px rgba(224, 180, 100, 0.28);
  --glow-pink: 0 0 26px rgba(255, 61, 139, 0.55);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-hero: clamp(2.9rem, 8.5vw, 6.2rem);
  --fs-h2:   clamp(2rem, 4.6vw, 3.5rem);
  --fs-h3:   clamp(1.15rem, 1.5vw + 0.7rem, 1.5rem);
  --fs-lead: clamp(1.05rem, 0.6vw + 0.95rem, 1.28rem);
  --fs-eyebrow: 0.78rem;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 780px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --sp-section: clamp(4.5rem, 11vw, 9rem);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ */
/*  2. Reset / base                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Warm ambient glows anchored to the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 82% 8%, rgba(224, 180, 100, 0.10), transparent 70%),
    radial-gradient(55% 45% at 12% 88%, rgba(255, 61, 139, 0.07), transparent 70%);
}

img, video { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--pink); color: #fff; }

/* Keep content above the ambient glow layer */
.site-header, main, .site-footer, .lightbox { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ */
/*  3. Helpers                                                         */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 7vw, 5rem); }

section[id] { scroll-margin-top: 5.5rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: #17110d;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { max-width: var(--maxw-narrow); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: var(--fs-h2); }
.section-title .accent { color: var(--pink); }
.lead {
  font-size: var(--fs-lead);
  color: var(--cream-dim);
  margin-top: 1.15rem;
  line-height: 1.65;
}

/* Ornamental divider — a small twinkle between major sections */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: min(120px, 22vw);
  background: linear-gradient(90deg, transparent, var(--line));
}
.ornament::after { background: linear-gradient(90deg, var(--line), transparent); }
.ornament span {
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: var(--glow-gold);
}

/* ------------------------------------------------------------------ */
/*  4. Buttons                                                         */
/* ------------------------------------------------------------------ */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  line-height: 1;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }

.btn--gold {
  --btn-bg: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  --btn-fg: #1c130c;
  box-shadow: 0 10px 30px rgba(224, 180, 100, 0.25);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(224, 180, 100, 0.4); }

.btn--ghost {
  --btn-fg: var(--cream);
  border-color: var(--line);
  background: rgba(244, 236, 224, 0.03);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }

.btn--pink {
  --btn-bg: linear-gradient(135deg, var(--pink), var(--pink-deep));
  --btn-fg: #fff;
  box-shadow: 0 10px 30px rgba(255, 61, 139, 0.28);
}
.btn--pink:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(255, 61, 139, 0.45); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1em 2em; font-size: 1.05rem; }

/* ------------------------------------------------------------------ */
/*  5. Header / nav                                                    */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(18, 13, 11, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  transition: padding-block 0.35s var(--ease);
}
.is-scrolled .nav { padding-block: 0.85rem; }

/* Wordmark (text logo placeholder) */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--cream);
  white-space: nowrap;
}
.wordmark .pop {
  color: var(--pink);
  font-style: italic;
  text-shadow: 0 0 18px rgba(255, 61, 139, 0.55);
}
.wordmark:hover { color: var(--cream); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
}
.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream-dim);
  padding-block: 0.3rem;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
/* Desktop: hide the in-menu "Reservar" (it duplicates the header CTA). It reappears in the mobile overlay via the media query below. */
#nav-menu .nav__actions { display: none; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ */
/*  6. Hero                                                            */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* Optional background video sits above the still and fades out on scroll */
.hero__video { z-index: 1; opacity: 1; transition: opacity 0.4s linear; }

/* Slow Ken-Burns on the still image */
.hero__img { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.14) translateY(-1.5%); }
}

/* Legibility scrims */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 10, 8, 0.65) 0%, rgba(15, 10, 8, 0) 26%),
    linear-gradient(0deg, rgba(13, 9, 7, 0.94) 4%, rgba(13, 9, 7, 0.55) 32%, rgba(13, 9, 7, 0.1) 60%),
    radial-gradient(120% 80% at 50% 120%, rgba(255, 61, 139, 0.14), transparent 55%);
}

.hero__content {
  padding-bottom: clamp(3.5rem, 9vh, 7rem);
  padding-top: 8rem;
  max-width: 46rem;
}
.hero__eyebrow {
  color: var(--gold-soft);
  letter-spacing: 0.34em;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.hero__title .pop {
  color: var(--pink);
  font-style: italic;
  text-shadow: 0 0 34px rgba(255, 61, 139, 0.6), 0 12px 40px rgba(0, 0, 0, 0.5);
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  color: var(--gold-soft);
  margin-top: 0.7rem;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--cream-dim);
  margin-top: 1.3rem;
  max-width: 34rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.hero__scroll .mouse {
  width: 22px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 6px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: wheel 1.7s var(--ease) infinite;
}
@keyframes wheel { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 100% { opacity: 0; top: 16px; } }

/* ------------------------------------------------------------------ */
/*  7. About                                                          */
/* ------------------------------------------------------------------ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__body p + p { margin-top: 1.1rem; }
.about__body .lead { margin-top: 1.3rem; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--cream-dim);
  background: rgba(244, 236, 224, 0.02);
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--glow-gold);
}

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(244, 236, 224, 0.08);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 9, 7, 0.35));
}
.about__badge {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  z-index: 2;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  background: rgba(18, 13, 11, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------------ */
/*  8. Menu / specialties                                             */
/* ------------------------------------------------------------------ */
.menu-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2.4rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(224, 180, 100, 0.06), transparent 60%),
    rgba(28, 21, 18, 0.5);
}
.menu-note p { color: var(--cream-dim); font-size: 0.98rem; margin: 0; }
.menu-note strong { color: var(--cream); }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1.1rem, 2vw, 1.7rem);
  margin-top: 3rem;
}
.dish {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.dish__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dish__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 9, 7, 0.5) 78%, rgba(13, 9, 7, 0.85));
}
.dish__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.2rem 1.25rem 1.3rem;
}
.dish__name {
  font-size: var(--fs-h3);
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.dish__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cream-dim);
  opacity: 0.92;
}
.dish:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.dish:hover .dish__media img { transform: scale(1.07); }

/* ------------------------------------------------------------------ */
/*  9. Cocktails                                                       */
/* ------------------------------------------------------------------ */
.cocktails { background: linear-gradient(180deg, var(--bg), var(--bg-1) 45%, var(--bg)); }
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
  margin-top: 3rem;
}
.cocktail {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cocktail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cocktail::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 9, 7, 0.85));
}
.cocktail__name {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}
.cocktail__name span { display: block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.cocktail:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(255, 61, 139, 0.22); }
.cocktail:hover img { transform: scale(1.08); }

/* ------------------------------------------------------------------ */
/*  10. Gallery + lightbox                                             */
/* ------------------------------------------------------------------ */
.gallery {
  columns: 4 220px;
  column-gap: clamp(0.7rem, 1.5vw, 1.1rem);
  margin-top: 3rem;
}
.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 clamp(0.7rem, 1.5vw, 1.1rem);
  border-radius: 14px;
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  border: 1px solid var(--line-soft);
  background: var(--bg-1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.gallery__item img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(13, 9, 7, 0.25));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__item .zoom-hint {
  position: absolute;
  right: 0.6rem; bottom: 0.6rem;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(18, 13, 11, 0.7);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .zoom-hint,
.gallery__item:focus-visible .zoom-hint { opacity: 1; transform: scale(1); }

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 5, 4, 0.92);
  backdrop-filter: blur(6px);
  animation: fade 0.3s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure {
  position: relative;
  z-index: 2;
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  animation: pop 0.35s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__caption { color: var(--cream-dim); font-size: 0.95rem; text-align: center; max-width: 42rem; }
.lightbox__count {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--cream-mute);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(28, 21, 18, 0.72);
  border: 1px solid var(--line);
  color: var(--cream);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__close { top: 1.1rem; right: 1.1rem; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); color: #1c130c; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }

/* ------------------------------------------------------------------ */
/*  11. Ambiente & Eventos                                            */
/* ------------------------------------------------------------------ */
.events { background: linear-gradient(180deg, var(--bg), var(--bg-1)); }
.events__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.events__feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
}
.events__feature img { width: 100%; height: 100%; object-fit: cover; }
.events__body .btn { margin-top: 1.8rem; }
.events__body p + p { margin-top: 1rem; }

.events__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(0.6rem, 1.4vw, 1rem);
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}
.events__thumbs figure {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line-soft);
}
.events__thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.events__thumbs figure:hover img { transform: scale(1.07); }

/* ------------------------------------------------------------------ */
/*  12. Ubicación & Horario                                           */
/* ------------------------------------------------------------------ */
.location__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.info-card {
  background: rgba(28, 21, 18, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.info-block + .info-block { margin-top: 1.9rem; padding-top: 1.9rem; border-top: 1px solid var(--line-soft); }
.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.info-block .addr { font-size: 1.12rem; color: var(--cream); line-height: 1.5; }
.info-block .addr span { display: block; color: var(--cream-dim); font-size: 0.98rem; margin-top: 0.2rem; }

.hours { display: flex; flex-direction: column; gap: 0.15rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(244, 236, 224, 0.08);
  font-size: 0.98rem;
}
.hours li:last-child { border-bottom: none; }
.hours .day { color: var(--cream-dim); }
.hours .time { color: var(--cream); font-variant-numeric: tabular-nums; }
.hours li.is-closed .day { color: var(--cream); }
.hours li.is-closed .time { color: var(--pink); font-weight: 600; }
.hours li.is-open-hint { }

.contact-actions { display: flex; flex-direction: column; gap: 0.7rem; }
@media (min-width: 480px) { .contact-actions { flex-direction: row; flex-wrap: wrap; } .contact-actions .btn { flex: 1 1 auto; } }

/* Stylised "map" card (no external API) */
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(224, 180, 100, 0.10), transparent 60%),
    radial-gradient(90% 90% at 20% 90%, rgba(255, 61, 139, 0.10), transparent 60%),
    var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
}
/* Faux street grid */
.map-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 236, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 236, 224, 0.06) 1px, transparent 1px),
    linear-gradient(115deg, transparent 48%, rgba(224, 180, 100, 0.18) 49%, rgba(224, 180, 100, 0.18) 51%, transparent 52%);
  background-size: 46px 46px, 46px 46px, 100% 100%;
  mask-image: radial-gradient(120% 120% at 50% 30%, #000 55%, transparent 100%);
}
.map-card__pin {
  position: absolute;
  top: 40%; left: 50%;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: var(--glow-pink);
}
.map-card__pin::after {
  content: "";
  position: absolute; inset: 6px;
  background: #fff;
  border-radius: 50%;
}
.map-card__ping {
  position: absolute;
  top: 40%; left: 50%;
  width: 20px; height: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 61, 139, 0.6);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { opacity: 0.8; transform: translate(-50%,-50%) scale(0.6); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(3.4); } }
.map-card__label {
  position: relative;
  z-index: 2;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(0deg, rgba(13, 9, 7, 0.9), transparent);
}
.map-card__label .place { font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); }
.map-card__label .sub { color: var(--cream-dim); font-size: 0.92rem; margin: 0.15rem 0 1rem; }

/* ------------------------------------------------------------------ */
/*  13. Footer                                                         */
/* ------------------------------------------------------------------ */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
}
.footer__brand .wordmark { font-size: 1.7rem; }
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  margin-top: 0.7rem;
  font-size: 1.05rem;
}
.footer__brand p.small { color: var(--cream-mute); font-size: 0.9rem; margin-top: 0.8rem; max-width: 24rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a, .footer__col li { color: var(--cream-dim); font-size: 0.95rem; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__col .muted { color: var(--cream-mute); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--cream-mute);
}
.footer__bottom a { color: var(--cream-dim); }
.credit a { color: var(--gold-soft); font-weight: 600; }
.credit a:hover { text-decoration: underline; }

/* Social row (hidden until real profiles exist beyond IG) */
.social { display: inline-flex; gap: 0.6rem; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--cream-dim);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.social a:hover { color: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }

/* ------------------------------------------------------------------ */
/*  14. Reveal animations                                             */
/* ------------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ */
/*  15. Responsive                                                     */
/* ------------------------------------------------------------------ */
@media (max-width: 940px) {
  .about__grid,
  .events__grid,
  .location__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16 / 11; max-height: 440px; }
  .events__body { order: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links,
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }

  /* Full-screen mobile menu */
  #nav-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(15, 10, 8, 0.97);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .menu-open #nav-menu { opacity: 1; visibility: visible; transform: none; }
  #nav-menu .nav__links {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
  }
  #nav-menu .nav__link { font-family: var(--font-display); font-size: 1.9rem; color: var(--cream); }
  #nav-menu .nav__link::after { display: none; }
  #nav-menu .nav__actions { display: flex; }
  #nav-menu .nav__actions .btn { display: inline-flex; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .menu-note { flex-direction: column; align-items: flex-start; }
  .hero__content { padding-bottom: 4.5rem; }
}

body.lb-open { overflow: hidden; }

/* ------------------------------------------------------------------ */
/*  16. Reduced motion                                                */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__img { animation: none; transform: scale(1.04); }
  [data-reveal] { opacity: 1; transform: none; }
}
