/* ==========================================================================
   Café del Mar — Cabanyal, Valencia — hoja de estilos compartida
   ========================================================================== */

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

:root {
  --cream: #faf5ec;
  --cream-soft: #f3ead9;
  --sand: #e8d8bc;
  --terracotta: #c97b4a;
  --terracotta-dark: #a55a31;
  --sea: #1d4a6b;
  --sea-deep: #0f2e44;
  --coffee: #3a2618;
  --coffee-soft: #5a3d2b;
  --gold: #c89b4d;
  --line: rgba(58, 38, 24, 0.12);
  --shadow: 0 20px 60px -20px rgba(15, 46, 68, 0.25);
  --shadow-soft: 0 8px 30px -12px rgba(15, 46, 68, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--coffee);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--terracotta); color: var(--cream); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb { background: var(--sea); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--sea-deep); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--sea-deep);
}
.brand-script { font-family: 'Allura', cursive; font-weight: 400; color: var(--sea-deep); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 24px; }
.section-title em { font-family: 'Allura', cursive; font-style: normal; color: var(--terracotta); font-size: 1.25em; line-height: 1; }

/* ---------- Navigation ---------- */
nav.main-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 245, 236, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
nav.main-nav.transparent-off,
nav.main-nav.scrolled,
nav.main-nav.solid {
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(15, 46, 68, 0.08);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 0.9; transition: color 0.3s ease; }
.nav-brand-script { font-family: 'Allura', cursive; font-size: 2rem; color: var(--sea-deep); line-height: 1; }
.main-nav:not(.scrolled):not(.solid) .nav-brand-script.on-video { color: var(--cream); }
.nav-brand-tag { font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.42em; color: var(--terracotta); margin-top: -2px; padding-left: 6px; font-weight: 600; }
.main-nav:not(.scrolled):not(.solid) .nav-brand-tag.on-video { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em; color: var(--coffee); position: relative; padding: 6px 0; transition: color 0.25s ease; }
.main-nav:not(.scrolled):not(.solid) .nav-links a.on-video { color: var(--cream); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--terracotta); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta { background: var(--sea-deep); color: var(--cream) !important; padding: 10px 22px !important; border-radius: 999px; transition: background 0.25s ease, transform 0.25s ease; }
.nav-cta:hover { background: var(--terracotta); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* ========== Legal modals ========== */
.legal-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15, 46, 68, 0.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 50px 16px; overflow-y: auto; animation: fadeIn 0.3s ease;
}
.legal-modal.open { display: flex; }
.legal-modal-content {
  position: relative; background: var(--cream); max-width: 760px; width: 100%;
  border-radius: 18px; padding: 50px 40px 36px; box-shadow: 0 30px 60px -20px rgba(15, 46, 68, 0.5);
  color: var(--coffee); margin-bottom: 40px;
}
.legal-modal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 4vw, 2.2rem); color: var(--sea-deep); margin-bottom: 6px; padding-right: 50px; }
.legal-modal-content .legal-sub { color: var(--terracotta); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; display: block; font-weight: 600; }
.legal-modal-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--sea-deep); margin: 24px 0 10px; font-weight: 600; }
.legal-modal-content p, .legal-modal-content li { font-size: 0.93rem; line-height: 1.65; margin-bottom: 10px; color: var(--coffee); }
.legal-modal-content ul, .legal-modal-content ol { padding-left: 22px; margin-bottom: 14px; }
.legal-modal-content a { color: var(--terracotta); text-decoration: underline; }
.legal-modal-content strong { color: var(--sea-deep); }
.legal-modal-content .legal-data { background: var(--cream-soft); border-left: 3px solid var(--terracotta); padding: 16px 20px; border-radius: 8px; margin: 16px 0; font-size: 0.92rem; }
.legal-modal-content .legal-data p { margin-bottom: 4px; }
.legal-modal-close {
  position: absolute; top: 14px; right: 14px; background: var(--sea-deep); color: var(--cream);
  border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease; z-index: 2;
}
.legal-modal-close:hover { background: var(--terracotta); transform: rotate(90deg); }

/* ========== Cookie banner ========== */
.cookie-banner {
  position: fixed; bottom: 14px; left: 14px; right: 14px;
  background: var(--sea-deep); color: var(--cream); padding: 18px 22px; z-index: 250;
  box-shadow: 0 14px 30px rgba(15, 46, 68, 0.28); border-radius: 16px; display: none;
  align-items: center; gap: 18px; flex-wrap: wrap; max-width: 920px; margin: 0 auto;
}
.cookie-banner.show { display: flex; animation: fadeUp 0.5s ease; }
.cookie-banner p { flex: 1 1 280px; font-size: 0.88rem; line-height: 1.45; margin: 0; color: var(--cream); }
.cookie-banner p a { color: var(--gold); text-decoration: underline; font-weight: 500; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  border: 1px solid rgba(250, 245, 236, 0.35); background: transparent; color: var(--cream);
  padding: 9px 18px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.cookie-btn.accept { background: var(--terracotta); border-color: var(--terracotta); }
.cookie-btn.accept:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.cookie-btn:hover:not(.accept) { background: rgba(250, 245, 236, 0.12); border-color: var(--gold); }

/* Footer legal */
.footer-legal { margin-top: 18px; font-size: 0.78rem; color: rgba(250, 245, 236, 0.55); }
.footer-legal a { color: rgba(250, 245, 236, 0.7); text-decoration: none; margin: 0 8px; transition: color 0.25s ease; border-bottom: 1px dotted rgba(250, 245, 236, 0.3); padding-bottom: 1px; }
.footer-legal a:hover { color: var(--gold); border-color: var(--gold); }
.footer-legal .sep { color: rgba(250, 245, 236, 0.3); margin: 0 2px; }

/* ========== Status pill — fijo, discreto, esquina inferior izquierda ========== */
.status-pill-fixed {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 46, 68, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 245, 236, 0.18);
  color: rgba(250, 245, 236, 0.85);
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 20px -8px rgba(15, 46, 68, 0.35);
  opacity: 0.55;
  transition: opacity 0.35s ease, background 0.35s ease;
}
.status-pill-fixed:hover { opacity: 1; }
.status-pill-fixed .status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.status-pill-fixed.open .status-dot { background: #4ade80; }
.status-pill-fixed.closed .status-dot { background: #f28b8b; }

/* ========== Testimonials ========== */
.testimonials { background: var(--sea-deep); color: var(--cream); position: relative; overflow: hidden; }
.testimonials::before {
  content: '"'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 22rem; line-height: 0.8;
  color: rgba(201, 123, 74, 0.08); top: -40px; left: 30px; pointer-events: none; font-weight: 700;
}
.testimonials .section-title { color: var(--cream); }
.testimonials .section-title em { color: var(--gold); }
.testimonials .eyebrow { color: var(--gold); }
.testimonials .section-header p { color: rgba(250, 245, 236, 0.75); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.review-card { background: rgba(250, 245, 236, 0.06); border: 1px solid rgba(250, 245, 236, 0.12); border-radius: 18px; padding: 28px 26px; transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease; }
.review-card:hover { transform: translateY(-4px); background: rgba(250, 245, 236, 0.1); border-color: var(--gold); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; line-height: 1.55; color: var(--cream); margin: 0 0 20px; font-style: italic; }
.review-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(250, 245, 236, 0.12); }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), var(--gold)); color: var(--cream); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.review-author { font-size: 0.92rem; font-weight: 600; color: var(--cream); line-height: 1.2; }
.review-date { font-size: 0.74rem; color: rgba(250, 245, 236, 0.55); margin-top: 2px; }
.reviews-cta { text-align: center; margin-top: 40px; position: relative; z-index: 1; }
.reviews-cta a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: 0.92rem; border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.3s ease, gap 0.3s ease; }
.reviews-cta a:hover { border-color: var(--gold); gap: 12px; }

@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr; } .testimonials::before { font-size: 14rem; left: -10px; top: -10px; } }
@media (max-width: 600px) { .review-card { padding: 24px 22px; } .review-text { font-size: 1rem; } }

/* PDF download button */
.pdf-download {
  display: inline-flex; align-items: center; gap: 10px; background: var(--cream-soft); border: 1.5px solid var(--terracotta);
  color: var(--terracotta); padding: 11px 22px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; margin-top: 24px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.pdf-download:hover { background: var(--terracotta); color: var(--cream); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(201, 123, 74, 0.5); }
.pdf-download svg { flex-shrink: 0; }

/* Language toggle (ES / EN) */
.lang-toggle { display: inline-flex; align-items: center; background: rgba(58, 38, 24, 0.06); border: 1px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; }
.main-nav:not(.scrolled):not(.solid) .lang-toggle.on-video { background: rgba(250,245,236,0.12); border-color: rgba(250,245,236,0.3); }
.lang-btn { background: transparent; border: none; padding: 5px 11px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--coffee-soft); cursor: pointer; transition: background 0.25s ease, color 0.25s ease; font-family: 'Inter', sans-serif; }
.main-nav:not(.scrolled):not(.solid) .lang-btn.on-video { color: rgba(250,245,236,0.75); }
.lang-btn.active { background: var(--sea-deep); color: var(--cream); }
.lang-btn:hover:not(.active) { color: var(--terracotta); }
.lang-toggle-li::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 2px; background: var(--coffee); transition: transform 0.3s ease, opacity 0.3s ease; }
.main-nav:not(.scrolled):not(.solid) .nav-toggle span.on-video { background: var(--cream); }
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }

/* ---------- Hero de vídeo a pantalla completa ---------- */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #141414;
}
.hero-video video,
.hero-video .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.9);
}
.hero-video-top { display: none; }
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.68) 0%, rgba(10,10,10,0.48) 40%, rgba(10,10,10,0.62) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.42) 0%, transparent 40%);
  z-index: 1;
}
.hero-video-fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(140px, 24vh, 320px);
  background: linear-gradient(180deg, transparent 0%, #141414 92%);
  z-index: 1;
  pointer-events: none;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 160px 24px 100px;
  color: var(--cream);
}
.hero-video-content .eyebrow { color: var(--gold); animation: fadeUp 0.9s ease 0.2s both; }
.hero-video-content h1 {
  font-family: 'Allura', cursive;
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(3.6rem, 11vw, 7.5rem);
  line-height: 0.95;
  margin-bottom: 18px;
  animation: fadeUp 1s ease 0.35s both;
}
.hero-video-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: rgba(250, 245, 236, 0.92);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-video-cta-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; animation: fadeUp 1s ease 0.65s both; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-3px); box-shadow: 0 12px 30px -8px rgba(201, 123, 74, 0.55); }
.btn-ghost { background: rgba(250,245,236,0.08); color: var(--cream); border-color: rgba(250,245,236,0.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: var(--cream); color: var(--sea-deep); border-color: var(--cream); transform: translateY(-3px); }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Cabecera compacta para páginas interiores ---------- */
.page-header {
  position: relative;
  padding: 160px 0 90px;
  background: linear-gradient(160deg, var(--sea-deep) 0%, #123452 60%, var(--sea-deep) 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.page-header video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 55%, rgba(10,10,10,0.62) 100%),
    radial-gradient(circle at 15% 20%, rgba(201,123,74,0.18), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(200,155,77,0.14), transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--gold); }
.page-header h1 { color: var(--cream); font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
.page-header h1 em { color: var(--gold); }
.page-header p { color: rgba(250,245,236,0.78); max-width: 600px; margin: 14px auto 0; font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-header p { color: var(--coffee-soft); font-size: 1.05rem; margin-top: 8px; }

/* ---------- About / Description ---------- */
.about { background: linear-gradient(180deg, #141414 0%, var(--cream) 7%, var(--cream) 60%, var(--cream-soft) 100%); padding-bottom: 40px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 1.08rem; color: var(--coffee-soft); margin-bottom: 24px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--terracotta); line-height: 1; }
.stat .lbl { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coffee-soft); margin-top: 8px; }

.about-visual { position: relative; aspect-ratio: 1; width: 100%; }
.about-visual .frame { position: absolute; border-radius: 20px; overflow: hidden; }
.about-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .frame.large { inset: 0 30% 30% 0; box-shadow: var(--shadow); }
.about-visual .frame.small-1 { inset: 38% 0 0 38%; box-shadow: var(--shadow-soft); border: 6px solid var(--cream); }

/* ---------- Explora (tarjetas de enlace a otras páginas — solo Inicio) ---------- */
.explore { background: var(--cream-soft); }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.explore-card {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.explore-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.explore-card:hover img { transform: scale(1.06); }
.explore-card img.zoom-in { transform: scale(1.22); }
.explore-card:hover img.zoom-in { transform: scale(1.3); }
.explore-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,46,68,0.05) 30%, rgba(15,46,68,0.88) 100%); }
.explore-card-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px; z-index: 1; color: var(--cream); }
.explore-card-label .eyebrow { color: var(--gold); font-size: 0.66rem; margin-bottom: 4px; }
.explore-card-label h3 { color: var(--cream); font-size: 1.4rem; display: flex; align-items: center; gap: 8px; }
.explore-card-label h3 .arrow { transition: transform 0.3s ease; }
.explore-card:hover h3 .arrow { transform: translateX(5px); }

/* ---------- Location / Hours ---------- */
.location { background: var(--sea-deep); color: var(--cream); }
.location .section-title { color: var(--cream); }
.location .section-title em { color: var(--gold); }
.location .eyebrow { color: var(--gold); }
.location .section-header p { color: rgba(250, 245, 236, 0.75); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-card { background: rgba(250, 245, 236, 0.06); border: 1px solid rgba(250, 245, 236, 0.12); border-radius: 20px; padding: 38px 30px; transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease; }
.info-card:hover { transform: translateY(-6px); background: rgba(250, 245, 236, 0.1); border-color: var(--gold); }
.info-card .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--terracotta), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 22px; }
.info-card h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 12px; }
.info-card p { color: rgba(250, 245, 236, 0.78); font-size: 0.98rem; margin-bottom: 8px; }
.info-card .schedule-line { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(250, 245, 236, 0.15); font-size: 0.95rem; }
.info-card .schedule-line:last-child { border-bottom: none; }
.info-card a.info-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; margin-top: 14px; font-size: 0.92rem; transition: gap 0.3s ease; }
.info-card a.info-link:hover { gap: 14px; }

.location-map-wrapper { border-radius: 24px; overflow: hidden; min-height: 420px; box-shadow: var(--shadow); margin-top: 50px; position: relative; }
.location-map-wrapper iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: contrast(0.95) saturate(1.05); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 18px;
}
.g-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #2a1a10;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); z-index: 2; }
.g-item:hover img { transform: scale(1.06); }
.g-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15, 46, 68, 0.85)); opacity: 0; transition: opacity 0.4s ease; z-index: 1; }
.g-item:hover::before { opacity: 1; }
.g-item .caption { position: absolute; bottom: 0; left: 0; padding: 16px 18px; color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; z-index: 2; transform: translateY(10px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; }
.g-item:hover .caption { transform: translateY(0); opacity: 1; }

.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item.g-big { grid-column: span 2; grid-row: span 2; }

/* ---------- Menu / Carta ---------- */
.carta { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 50px; }
.menu-tab { background: transparent; border: 1.5px solid var(--line); color: var(--coffee); padding: 10px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease; font-family: 'Inter', sans-serif; }
.menu-tab:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.menu-tab.active { background: var(--sea-deep); color: var(--cream); border-color: var(--sea-deep); }
.menu-panel { display: none; animation: fadeUpSoft 0.5s ease; }
.menu-panel.active { display: block; }
@keyframes fadeUpSoft { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.menu-group { margin-bottom: 50px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--sea-deep); margin-bottom: 8px; text-align: center; position: relative; padding-bottom: 18px; }
.menu-group-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 2px; background: var(--terracotta); border-radius: 2px; }
.menu-group-note { text-align: center; color: var(--coffee-soft); font-size: 0.88rem; font-style: italic; margin-bottom: 26px; margin-top: 14px; }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 60px; max-width: 980px; margin: 26px auto 0; }
.menu-row { display: flex; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--line); gap: 12px; }
.menu-row .name { font-size: 0.98rem; font-weight: 500; color: var(--coffee); flex: 0 1 auto; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted rgba(58, 38, 24, 0.25); margin: 0 8px; transform: translateY(-4px); }
.menu-row .price { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--terracotta); font-size: 1.05rem; white-space: nowrap; }
.combo-card { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 28px 30px; max-width: 720px; margin: 20px auto 0; box-shadow: var(--shadow-soft); }
.combo-card h4 { font-size: 1.3rem; margin-bottom: 6px; color: var(--sea-deep); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 600; }
.combo-card h4 .price { font-family: 'Cormorant Garamond', serif; color: var(--terracotta); font-size: 1.5rem; }
.combo-card .desc { color: var(--coffee-soft); font-size: 0.95rem; margin-top: 6px; }
.combo-card .extra { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 0.88rem; color: var(--coffee-soft); }
.combo-card .schedule { display: inline-block; margin-top: 10px; padding: 4px 12px; background: var(--sand); border-radius: 999px; font-size: 0.78rem; color: var(--coffee); font-weight: 500; letter-spacing: 0.04em; }
.allergens-note { margin-top: 60px; padding: 22px 26px; background: var(--cream); border-left: 4px solid var(--terracotta); border-radius: 8px; font-size: 0.9rem; color: var(--coffee-soft); max-width: 820px; margin-left: auto; margin-right: auto; }
.allergens-note strong { color: var(--coffee); }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.contact-info { background: var(--sea-deep); color: var(--cream); padding: 50px 44px; border-radius: 24px; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -50%; right: -30%; width: 70%; aspect-ratio: 1; background: radial-gradient(circle, rgba(201, 123, 74, 0.25), transparent 70%); border-radius: 50%; }
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: var(--cream); font-size: 1.8rem; margin-bottom: 8px; }
.contact-info .tag { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.5rem; line-height: 1; margin-bottom: 30px; display: block; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(250, 245, 236, 0.12); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(250, 245, 236, 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: background 0.3s ease, transform 0.3s ease; }
.contact-row:hover .icon { background: var(--terracotta); transform: rotate(-6deg) scale(1.05); }
.contact-row .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250, 245, 236, 0.6); margin-bottom: 4px; }
.contact-row .value { color: var(--cream); font-size: 1rem; font-weight: 500; }
.contact-row .value a:hover { color: var(--gold); }
.contact-row .value span { display: block; min-width: 0; overflow-wrap: break-word; }

.map-wrapper { position: relative; border-radius: 24px; overflow: hidden; min-height: 480px; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; inset: 0; filter: contrast(0.95) saturate(1.05); }
.map-cta { position: absolute; bottom: 18px; left: 18px; right: 18px; background: var(--cream); padding: 16px 22px; border-radius: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: var(--shadow-soft); z-index: 2; }
.map-cta .text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--sea-deep); font-weight: 500; }
.map-cta a { background: var(--terracotta); color: var(--cream); padding: 10px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; transition: background 0.25s ease, transform 0.2s ease; flex-shrink: 0; }
.map-cta a:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

/* ---------- Footer ---------- */
footer { background: var(--coffee); color: rgba(250, 245, 236, 0.7); padding: 70px 0 30px; text-align: center; }
footer .brand-script { font-size: 3.5rem; color: var(--cream); margin-bottom: 16px; display: block; }
footer p { margin-bottom: 8px; font-size: 0.92rem; }
footer .socials { display: flex; justify-content: center; gap: 14px; margin: 24px 0 30px; }
footer .socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(250, 245, 236, 0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, transform 0.3s ease; color: var(--cream); }
footer .socials a:hover { background: var(--terracotta); transform: translateY(-3px); }
footer .copyright { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(250, 245, 236, 0.1); font-size: 0.82rem; color: rgba(250, 245, 236, 0.5); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Parallax decorative glyph (sutil, no lúdico) */
.parallax-decor { position: absolute; pointer-events: none; z-index: 0; will-change: transform; opacity: 0.07; font-size: 14rem; font-family: 'Allura', cursive; color: var(--terracotta); }
.parallax-decor.d1 { top: 8%; right: -2%; }
.parallax-decor.d2 { bottom: 5%; left: -3%; transform: rotate(-8deg); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .info-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; gap: 14px; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { min-height: 380px; }
  section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: linear-gradient(165deg, rgba(250,245,236,0.97) 0%, rgba(243,234,217,0.97) 50%, rgba(232,216,188,0.96) 100%);
    backdrop-filter: blur(14px); padding: 22px 26px 28px; gap: 2px;
    box-shadow: 0 20px 30px rgba(15, 46, 68, 0.14);
    border-top: 3px solid var(--terracotta);
  }
  .nav-links.open { display: flex; }
  .nav-links a.on-video { color: var(--coffee) !important; }
  .nav-links a:not(.nav-cta) { display: flex; align-items: center; gap: 10px; padding: 13px 6px; border-bottom: 1px solid rgba(58,38,24,0.08); }
  .nav-links li:has(> a:not(.nav-cta)):last-of-type a:not(.nav-cta) { border-bottom: none; }
  .nav-links a:not(.nav-cta)::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; opacity: 0.3; transform: scale(0.7); transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease; }
  .nav-links a:not(.nav-cta):hover::before,
  .nav-links a:not(.nav-cta).active::before { opacity: 1; transform: scale(1); background: var(--gold); }
  .nav-toggle { display: flex; }
  nav.main-nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.main-nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.main-nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-toggle span.on-video { background: var(--coffee) !important; }
  .nav-cta { width: 100%; text-align: center; padding: 14px !important; margin-top: 14px; }
  .lang-toggle-li { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(58,38,24,0.1); display: flex; justify-content: center; }
  .nav-brand-script { font-size: 1.7rem; }
  .nav-brand-tag { font-size: 0.55rem; letter-spacing: 0.36em; }
  .nav-brand-script.on-video, .nav-brand-tag.on-video { color: var(--sea-deep) !important; }
  .main-nav:not(.scrolled):not(.solid) .nav-brand-tag.on-video { color: var(--terracotta) !important; }

  .hero-video-content { padding: 130px 20px 90px; }
  .hero-video video { left: 0; right: 0; height: 50%; object-fit: cover; }
  .hero-video video.hero-video-bottom { top: 50%; bottom: auto; }
  .hero-video video.hero-video-top { display: block; top: 0; bottom: auto; }
  .page-header { padding: 130px 0 60px; }

  section { padding: 70px 0; }
  .section-header { margin-bottom: 50px; }
  .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  .about-grid { gap: 40px; }
  .about-visual { max-width: 340px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 30px 12px 0; margin-top: 30px; }
  .stat { text-align: center; }
  .stat .num { font-size: 2rem; }
  .stat .lbl { font-size: 0.66rem; letter-spacing: 0.14em; }

  .explore-grid { grid-template-columns: 1fr; gap: 16px; }
  .explore-card { aspect-ratio: 16/10; }

  .info-grid { gap: 18px; }
  .info-card { padding: 30px 26px; }
  .info-card h3 { font-size: 1.3rem; }

  .menu-tabs { flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 40px; padding: 0 12px; overflow: visible; }
  .menu-tab { flex-shrink: 1; padding: 9px 16px; font-size: 0.8rem; }

  .combo-card { padding: 24px 22px; }
  .combo-card h4 { font-size: 1.2rem; }
  .combo-card h4 .price { font-size: 1.35rem; }

  .menu-group-title { font-size: 1.55rem; }
  .menu-row { padding: 11px 0; }
  .menu-row .name { font-size: 0.95rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-item .caption { font-size: 1.1rem; padding: 14px 16px; }

  .contact-info { padding: 36px 28px; }
  .contact-info h3 { font-size: 1.5rem; }
  .map-wrapper { min-height: 340px; border-radius: 18px; }
  .map-cta { flex-direction: column; align-items: stretch; text-align: center; padding: 14px 18px; }
  .map-cta a { text-align: center; }

  .allergens-note { padding: 18px 22px; font-size: 0.86rem; }
  .parallax-decor { font-size: 8rem; opacity: 0.05; }

  footer { padding: 60px 0 26px; }
  footer .brand-script { font-size: 2.8rem; }

  .status-pill-fixed { left: 10px; bottom: 10px; font-size: 0.68rem; padding: 6px 11px 6px 9px; }
}

@media (max-width: 480px) {
  .container { padding: 0 22px; }
  .hero-video-content { padding: 118px 16px 70px; }
  .hero-video-tagline { font-size: 1.1rem; }
  .hero-video-cta-row .btn { padding: 12px 22px; font-size: 0.85rem; }

  section { padding: 60px 0; }
  .section-header { margin-bottom: 42px; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; }

  .about-visual { max-width: 280px; }
  .stats { grid-template-columns: 1fr; gap: 14px; padding-top: 28px; margin-top: 28px; }
  .stat { display: flex; align-items: baseline; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
  .stat:last-child { border-bottom: none; }
  .stat .num { font-size: 1.9rem; line-height: 1; flex-shrink: 0; min-width: 70px; }
  .stat .lbl { margin-top: 0; font-size: 0.72rem; }

  .info-card { padding: 26px 22px; border-radius: 16px; }
  .info-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
  .info-card p { font-size: 0.92rem; }
  .info-card .schedule-line { font-size: 0.88rem; padding: 5px 0; }

  .menu-tab { padding: 8px 14px; font-size: 0.76rem; }
  .menu-group { margin-bottom: 36px; }
  .menu-group-title { font-size: 1.4rem; padding-bottom: 14px; }
  .combo-card { padding: 22px 20px; border-radius: 14px; }
  .combo-card h4 { font-size: 1.1rem; flex-wrap: wrap; }
  .combo-card h4 .price { font-size: 1.25rem; }
  .combo-card .desc { font-size: 0.9rem; }

  .gallery-grid { grid-auto-rows: 140px; gap: 10px; }
  .g-item { border-radius: 14px; }
  .g-item .caption { font-size: 0.98rem; padding: 12px 14px; }

  .contact-info { padding: 30px 22px; border-radius: 16px; }
  .contact-info h3 { font-size: 1.35rem; }
  .contact-info .tag { font-size: 1.3rem; margin-bottom: 22px; }
  .contact-row { padding: 14px 0; gap: 12px; }
  .contact-row .icon { width: 38px; height: 38px; }
  .contact-row .label { font-size: 0.66rem; }
  .contact-row .value { font-size: 0.92rem; }
  .map-wrapper { min-height: 280px; border-radius: 16px; }
  .map-cta { padding: 12px 14px; }
  .map-cta .text { font-size: 0.92rem; }

  .parallax-decor { display: none; }

  footer { padding: 48px 0 22px; }
  footer .brand-script { font-size: 2.4rem; }
  footer p { font-size: 0.85rem; }
  footer .socials a { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
