/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --ink: #0c1214;
  --ink-soft: #1a2428;
  --paper: #f8f4ee;
  --paper-warm: #f0e9df;
  --cream: #fdf8f1;
  --coral: #d4654a;
  --coral-light: #e8896f;
  --ocean: #1a4a5c;
  --ocean-deep: #0d2a36;
  --teal: #2a7a7a;
  --teal-soft: #3d9a9a;
  --sand: #c4a882;
  --gold: #c9a227;
  --muted: #6b7280;
  --border: rgba(26, 74, 92, 0.12);
  --shadow-sm: 0 4px 20px rgba(12, 18, 20, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 18, 20, 0.1);
  --shadow-lg: 0 24px 64px rgba(12, 18, 20, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 80px;
  --cursor-size: 12px;
  --cursor-ring: 36px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
body.touch-device { cursor: auto; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: none;
}
body.touch-device button,
body.touch-device input,
body.touch-device select,
body.touch-device textarea,
body.touch-device a { cursor: pointer; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: var(--cursor-ring);
  height: var(--cursor-ring);
  border: 1.5px solid rgba(212, 101, 74, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, background 0.3s;
}
.cursor-dot.is-hover {
  width: 8px; height: 8px;
  background: var(--ocean);
}
.cursor-ring.is-hover {
  width: 52px; height: 52px;
  border-color: var(--ocean);
  background: rgba(26, 74, 92, 0.06);
}
.cursor-dot.is-click { transform: translate(-50%, -50%) scale(0.7); }
body.touch-device .cursor-dot,
body.touch-device .cursor-ring { display: none !important; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.85rem;
}

/* ===== LAYOUT ===== */
.container {
  width: min(1140px, 90%);
  margin-inline: auto;
}
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.section-header p {
  color: var(--muted);
  margin-top: 0.85rem;
  font-size: 1.05rem;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 28px rgba(212, 101, 74, 0.28);
}
.btn-primary:hover {
  background: #c4553a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 101, 74, 0.38);
}
.btn-secondary {
  background: var(--ocean-deep);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--ocean);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), box-shadow 0.45s, backdrop-filter 0.45s;
}
.header.scrolled {
  background: rgba(248, 244, 238, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border);
}
.header.scrolled .logo,
.header.scrolled .nav-links a { color: var(--ink); }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--coral); }
.header.scrolled .nav-toggle span { background: var(--ink); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 90%);
  margin: 0 auto;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  transition: color 0.35s;
}
.logo svg { width: 22px; height: 22px; }
.logo span { color: var(--coral-light); }
.header.scrolled .logo span { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 450;
  color: rgba(255,255,255,0.88);
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1.5px;
  background: var(--coral-light);
  transition: width 0.4s var(--ease);
}
.header.scrolled .nav-links a::after { background: var(--coral); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  background: var(--coral);
  color: #fff !important;
  border-radius: 100px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #c4553a;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
  z-index: 0;
}
.hero.is-visible .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,18,20,0.45) 0%, rgba(12,18,20,0.25) 40%, rgba(12,18,20,0.7) 100%),
    linear-gradient(135deg, rgba(13,42,54,0.5) 0%, rgba(212,101,74,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out) 0.2s, transform 1.1s var(--ease-out) 0.2s;
}
.hero.is-visible .hero-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-content .eyebrow { color: var(--coral-light); }
.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero-content .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 2.25rem;
  line-height: 1.55;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s 1.2s;
}
.hero.is-visible .hero-scroll { opacity: 1; }
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0; width: 100%;
  line-height: 0;
  z-index: 4;
}
.wave-divider svg {
  width: 100%;
  height: clamp(40px, 6vw, 72px);
  display: block;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.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-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.is-in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.is-in { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale.is-in { opacity: 1; transform: scale(1); }

/* ===== PLATOS ===== */
.platos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.plato-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.plato-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plato-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.plato-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.plato-card:hover .plato-img-wrap img { transform: scale(1.06); }
.plato-info {
  padding: 1.5rem 1.4rem 1.6rem;
}
.plato-info h3 {
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
}
.plato-info p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.plato-precio {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--coral);
}

/* ===== SOBRE NOSOTROS HOME ===== */
.sobre-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.sobre-text .eyebrow { margin-bottom: 0.75rem; }
.sobre-text h2 { margin-bottom: 1.25rem; }
.sobre-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--teal);
  border-left: 2px solid var(--coral);
  padding-left: 1.15rem;
  margin: 1.5rem 0;
  line-height: 1.4;
}
.sobre-text p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.sobre-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.8s var(--ease);
}
.sobre-img:hover img { transform: scale(1.03); }
.sobre-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ===== VIDEO SECTION ===== */
.video-block {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow-lg);
}
.video-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,42,54,0.72) 0%, rgba(26,74,92,0.55) 100%);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  color: #fff;
}
.video-overlay h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.video-overlay p {
  max-width: 420px;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

/* ===== TESTIMONIOS ===== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonio-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  position: relative;
}
.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonio-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  line-height: 1;
}
.estrellas {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.estrellas svg { width: 16px; height: 16px; fill: currentColor; }
.testimonio-texto {
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  position: relative;
  z-index: 1;
}
.testimonio-autor {
  font-weight: 550;
  font-size: 0.92rem;
  color: var(--ink);
}
.testimonio-autor span {
  display: block;
  font-weight: 300;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.8);
  padding: 4.5rem 0 1.75rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,101,74,0.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}
.footer-brand p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  opacity: 0.85;
}
.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.92rem;
  font-weight: 300;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--coral-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  font-weight: 300;
}
.footer-contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.55;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 42vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: var(--nav-h);
  background: var(--ocean-deep);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(42,122,122,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(212,101,74,0.2) 0%, transparent 50%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out) 0.15s, transform 1s var(--ease-out) 0.15s;
}
.page-hero.is-visible .page-hero-content {
  opacity: 1;
  transform: translateY(0);
}
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p {
  font-weight: 300;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* ===== MENU PAGE ===== */
.menu-categoria {
  margin-bottom: 3.75rem;
}
.menu-categoria:last-of-type { margin-bottom: 2rem; }
.menu-cat-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.menu-cat-title svg {
  width: 24px; height: 24px;
  color: var(--coral);
  flex-shrink: 0;
}
.menu-cat-title h2 {
  font-size: 1.75rem;
}
.menu-items {
  display: grid;
  gap: 0.85rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.menu-item:hover {
  border-color: rgba(212, 101, 74, 0.25);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.menu-item-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.menu-item-info p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}
.menu-item-precio {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--coral);
  white-space: nowrap;
  padding-top: 0.15rem;
}
.experiencia-block {
  margin-top: 4rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.experiencia-block video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.experiencia-caption {
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}
.experiencia-caption svg {
  width: 18px; height: 18px;
  color: var(--coral);
  flex-shrink: 0;
}

/* ===== NOSOTROS ===== */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.historia-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--teal);
  margin: 1.25rem 0 1.5rem;
  line-height: 1.4;
}
.historia-text p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-top: 1rem;
}
.valor-card {
  background: #fff;
  padding: 2rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.valor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.valor-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: rgba(212, 101, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}
.valor-icon svg { width: 24px; height: 24px; }
.valor-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}
.valor-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
}
.cta-banner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-banner h2 { margin-bottom: 0.85rem; }
.cta-banner p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

/* ===== RESERVAS ===== */
.reservas-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.form-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h2 {
  margin-bottom: 0.35rem;
  font-size: 1.85rem;
}
.form-card > p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.15rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: none;
}
body.touch-device .form-group input,
body.touch-device .form-group select,
body.touch-device .form-group textarea { cursor: text; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 122, 122, 0.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-card .btn { width: 100%; margin-top: 0.5rem; }
.form-mensaje {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.92rem;
}
.form-mensaje.visible { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-mensaje svg { width: 18px; height: 18px; flex-shrink: 0; }

.contacto-card {
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.88);
  padding: 2.5rem;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.contacto-card h3 {
  color: #fff;
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
}
.contacto-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
  font-weight: 300;
}
.contacto-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--coral-light);
}
.contacto-item strong {
  display: block;
  font-weight: 550;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 0.2rem;
}
.mapa-wrap {
  margin-top: 1.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
  background: #1a3a4a;
}
.mapa-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .platos-grid,
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .sobre-block,
  .historia-grid,
  .reservas-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contacto-card { position: static; }
  .platos-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ocean-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.4s;
    z-index: 5;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .header.scrolled .nav-toggle span { background: var(--ink); }
  .nav-toggle.active span { background: #fff !important; }

  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; gap: 0.4rem; }
  .menu-item:hover { transform: translateY(-3px); }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-buttons .btn { width: 100%; }
  .form-card, .contacto-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .valores-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ===== CINEMA SCROLL HERO ===== */
.cinema-scroll {
  position: relative;
  height: calc(100vh + 1800px);
}
.cinema-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: #0d2a36;
}
.cinema-world {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cinema-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transform: scale(var(--bg-scale, 1.08)) translate3d(calc(var(--mx, 0) * -20px), calc(var(--bg-y, 0px) + var(--my, 0) * -10px), 0);
  will-change: transform;
  transition: none;
}
.cinema-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,18,20,0.35) 0%, rgba(12,18,20, calc(var(--overlay-alpha, 0.45))) 100%),
    linear-gradient(135deg, rgba(13,42,54,0.4) 0%, rgba(212,101,74,0.12) 100%);
}
.cinema-header-spacer { height: var(--nav-h); }
.cinema-title {
  position: absolute;
  left: 50%;
  top: clamp(28%, 32vh, 38%);
  width: min(94vw, 900px);
  margin: 0;
  transform: translate3d(-50%, var(--title-y, 0px), 0) scale(var(--title-scale, 1));
  opacity: var(--title-opacity, 1);
  text-align: center;
  color: #fdf8f1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 40px rgba(0,0,0,0.35);
  will-change: transform, opacity;
  z-index: 3;
  pointer-events: none;
}
.cinema-intro {
  position: absolute;
  left: 50%;
  bottom: clamp(80px, 14vh, 140px);
  width: min(520px, calc(100vw - 40px));
  transform: translate3d(-50%, var(--intro-y, 0px), 0);
  opacity: var(--intro-opacity, 1);
  text-align: center;
  z-index: 4;
  will-change: transform, opacity;
}
.cinema-intro p {
  color: rgba(253, 248, 241, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.cinema-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.cinema-tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(253, 248, 241, 0.95);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cinema-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(640px, calc(100vw - 40px));
  transform: translate3d(-50%, calc(-50% + var(--panel-y, 40px)), 0);
  opacity: var(--panel-opacity, 0);
  text-align: center;
  z-index: 5;
  pointer-events: none;
  will-change: transform, opacity;
}
.cinema-panel h2 {
  color: #fdf8f1;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
  text-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.cinema-panel p {
  color: rgba(253, 248, 241, 0.9);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.cinema-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: var(--scroll-hint-opacity, 1);
  pointer-events: none;
}
.cinema-scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.maqueta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 101, 74, 0.12);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== MODERN MENU CARDS ===== */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.menu-filter-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  cursor: none;
}
body.touch-device .menu-filter-btn { cursor: pointer; }
.menu-filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.menu-filter-btn.is-active {
  background: var(--ocean-deep);
  color: #fff;
  border-color: var(--ocean-deep);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--coral);
  opacity: 0;
  transition: opacity 0.35s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-card:hover::before { opacity: 1; }
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.menu-card h3 {
  font-size: 1.25rem;
  margin: 0;
}
.menu-card-precio {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--coral);
  white-space: nowrap;
}
.menu-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  flex: 1;
}
.menu-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ===== RESERVA COMPACTA ===== */
.reserva-hero-note {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-weight: 300;
}
.reserva-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.reserva-step {
  text-align: center;
  padding: 1.25rem 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.reserva-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 101, 74, 0.12);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.reserva-step h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 550;
  margin-bottom: 0.25rem;
}
.reserva-step p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 768px) {
  .cinema-title { font-size: clamp(2.6rem, 12vw, 4rem); top: 30%; }
  .cinema-intro { bottom: 70px; }
  .reserva-steps { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}

/* ===== MENU CARDS WITH PHOTO ===== */
.menu-card-img {
  padding: 0;
  overflow: hidden;
}
.menu-card-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-warm);
}
.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card-img:hover .menu-card-photo img {
  transform: scale(1.05);
}
.menu-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-card-body .menu-card-top {
  margin-top: 0.15rem;
}
.menu-img-hint {
  display: none; /* oculto en producción; útil solo para el diseñador */
  font-size: 0.7rem;
  color: var(--sand);
  font-weight: 500;
  margin-top: 0.35rem;
}
body.show-img-hints .menu-img-hint {
  display: block;
}

/* ===== MOBILE REFINEMENTS ===== */
@media (max-width: 640px) {
  .cinema-scroll {
    height: calc(100vh + 1400px);
  }
  .cinema-stage {
    min-height: 100svh;
  }
  .cinema-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    top: 28%;
    line-height: 0.95;
  }
  .cinema-intro {
    bottom: max(72px, env(safe-area-inset-bottom, 0px) + 56px);
    width: calc(100vw - 32px);
  }
  .cinema-intro p {
    font-size: 0.95rem;
  }
  .cinema-tags span {
    min-height: 32px;
    padding: 0 14px;
    font-size: 0.78rem;
  }
  .cinema-panel h2 {
    font-size: 1.55rem;
  }
  .cinema-panel p {
    font-size: 0.95rem;
  }
  .platos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .plato-img-wrap {
    aspect-ratio: 16/11;
  }
  .menu-filters {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-filters::-webkit-scrollbar { display: none; }
  .menu-filter-btn {
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page-hero {
    min-height: 280px;
  }
  .header {
    height: 64px;
  }
  :root {
    --nav-h: 64px;
  }
  .section {
    padding: 3rem 0;
  }
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .cinema-title {
    font-size: 2.2rem;
  }
  .container {
    width: 92%;
  }
}

/* Safe areas for notched phones */
@supports (padding: max(0px)) {
  .header .nav {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}
