/* =============================================================
   SOLO BEACH — Editorial Light Cream (retro beach)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Paleta oficial — Manual de Identidad Corporativa Solo Beach */
  --bg:        #f9f4ea;   /* CLARA DE HUEVO — fondo crema */
  --bg-2:      #d6cd9d;   /* ARENA — fondo secundario */
  --paper:     #fdfaf3;   /* crema clara para tarjetas */
  --ink:       #4f3630;   /* CHOCOLATE — texto y secciones oscuras */
  --ink-soft:  #6b4f45;   /* chocolate suavizado */
  --ink-mute:  #9c8a7a;   /* tono tierra apagado */
  --red:       #ce6858;   /* FRESA — acento principal (reserva, logo, detalles) */
  --red-deep:  #b5503f;   /* fresa profunda */
  --blue:      #492e39;   /* BERENJENA — secundario profundo / badges */
  --blue-deep: #34212a;   /* berenjena profunda */
  --gold:      #f2cb80;   /* PAPAYA — detalle dorado cálido */
  --line:      rgba(79,54,48,0.16);
  --line-soft: rgba(79,54,48,0.08);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --script: "Kaushan Script", "Fraunces", cursive;

  --gutter: clamp(1.15rem, 4vw, 4rem);
  --maxw: 1280px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.03; letter-spacing: -0.015em; font-weight: 400; }
::selection { background: var(--red); color: var(--bg); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow.blue { color: var(--blue); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem;
  background: var(--ink); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Grain overlay (subtle paper texture) */
.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* =============================================================
   4. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--bg);
  animation: splashSafety .01s 4s forwards;
}
.splash-inner { text-align: center; }
.splash .logo-script { font-size: clamp(3rem, 12vw, 6rem); color: var(--red); }
.splash-logo { display: block; margin: 0 auto; width: clamp(150px, 34vw, 250px); height: auto; }
.splash-line {
  margin: 0.4rem auto 0; height: 2px; width: 0; background: var(--red);
  animation: splashBar 1.6s var(--ease-out) forwards;
}
@keyframes splashBar { to { width: 190px; } }
.splash.is-out {
  opacity: 0; pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .9s var(--ease-out), opacity .9s var(--ease-out);
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem; padding: 0.7rem var(--gutter);
  background: rgba(243,238,227,0);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-solid {
  background: rgba(243,238,227,0.92);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 0.5rem;
}
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links.right { justify-content: flex-end; }
.nav-link {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 0.3rem 0; white-space: nowrap;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--red); transition: width .35s var(--ease-out);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--red); }

.nav-cta {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); border: 1.5px solid var(--red); border-radius: 4px;
  padding: 0.55rem 1.1rem; transition: all .3s var(--ease-out); white-space: nowrap;
}
.nav-cta:hover { background: var(--red); color: var(--bg); transform: translateY(-1px); }

/* Logo lockup */
.logo { display: grid; justify-items: center; line-height: 1; text-align: center; }
.logo-top { display: flex; align-items: center; gap: 0.15rem; }
.logo-script {
  font-family: var(--script); color: var(--red);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 0.8;
}
.skier { width: 1.6em; height: 1.8em; flex: none; margin-left: -0.05em; margin-bottom: 0.25em; }
.logo-hero .skier { width: 1.5em; height: 1.7em; }
/* Real logo image (extracted from brand artwork) */
.logo-img { display: block; height: 52px; width: auto; }
.logo-hero .logo-img { height: clamp(120px, 21vw, 210px); filter: drop-shadow(0 6px 22px rgba(20,14,10,0.28)); }
.logo-beach {
  font-family: var(--serif); color: var(--blue);
  font-size: clamp(0.62rem, 1vw, 0.8rem); font-weight: 500;
  letter-spacing: 0.5em; text-indent: 0.5em; margin-top: 0.15rem;
}
.logo-sub {
  display: flex; align-items: center; gap: 0.4rem; margin-top: 0.25rem;
  font-size: 0.5rem; letter-spacing: 0.28em; color: var(--ink-mute); font-weight: 600;
}
.logo-sub::before, .logo-sub::after { content: ""; height: 1px; width: 14px; background: var(--ink-mute); opacity: .6; }

/* Mobile nav */
.nav-toggle { display: none; }
.nav-mobile { display: none; }

/* =============================================================
   6. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 1.7rem; border-radius: 5px; transition: all .3s var(--ease-out);
  cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--bg); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(181,80,63,0.28); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--bg); }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(73,46,57,0.28); }

/* =============================================================
   7. Decorative motifs
   ============================================================= */
.diamond {
  width: 16px; height: 16px; position: relative; flex: none;
}
.diamond::before, .diamond::after {
  content: ""; position: absolute; inset: 0; margin: auto;
}
.diamond::before { width: 100%; height: 100%; background: var(--red);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%); }

.rule-fancy {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  color: var(--red);
}
.rule-fancy::before, .rule-fancy::after {
  content: ""; height: 1px; width: min(90px, 14vw); background: currentColor; opacity: .5;
}

/* Scalloped edge */
.scallop {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 22px;
  background: var(--bg);
  -webkit-mask: radial-gradient(22px at 22px 0, transparent 98%, #000) repeat-x -11px 0 / 44px 100%;
          mask: radial-gradient(22px at 22px 0, transparent 98%, #000) repeat-x -11px 0 / 44px 100%;
  z-index: 4;
}

/* =============================================================
   8. Hero
   ============================================================= */
.hero { position: relative; background: var(--bg); isolation: isolate; }
.hero-head {
  position: relative;
  display: grid; justify-items: center; text-align: center; gap: 1.05rem;
  padding: 7.5rem var(--gutter) 2.6rem;
}
.hero-head .logo-hero { margin-bottom: 0.1rem; }
.hero-head .logo-img { height: clamp(118px, 19vw, 196px); filter: none; }
.hero-diamond {
  position: absolute; top: 52%; width: 20px; height: 20px; z-index: 6;
  opacity: 0; animation: diamondIn .8s var(--ease-out) 1.4s forwards;
}
.hero-diamond.left { left: clamp(0.5rem, 5vw, 5rem); }
.hero-diamond.right { right: clamp(0.5rem, 5vw, 5rem); }
.hero-diamond::before {
  content: ""; position: absolute; inset: 0; background: var(--red);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}
.hero-diamond::after {
  content: ""; position: absolute; inset: 50% auto auto 50%; width: 46px; height: 1px;
  background: var(--red); opacity: .4; transform: translateY(-50%);
}
.hero-diamond.left::after { left: 100%; }
.hero-diamond.right::after { left: auto; right: 100%; }
@keyframes diamondIn { to { opacity: .9; } }
@media (max-width: 900px) { .hero-diamond { display: none; } }

.hero-kicker { color: var(--red); }
.hero-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 400; color: var(--ink); max-width: 22ch; line-height: 1.14;
}
.hero-title em { font-style: italic; color: var(--red); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 0.5rem; }

/* Full photo — shown complete, never cropped or upscaled */
.hero-photo { position: relative; width: 100%; line-height: 0; background: var(--bg-2); }
.hero-photo img { width: 100%; height: auto; display: block; }

/* Feature bar */
.features {
  position: relative; z-index: 5; background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-soft);
}
.feature {
  background: var(--bg); display: flex; align-items: center; gap: 0.85rem;
  padding: 1.3rem var(--gutter);
}
.feature svg { width: 30px; height: 30px; flex: none; color: var(--red); }
.feature-txt h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.feature-txt p { font-size: 0.8rem; color: var(--ink-mute); line-height: 1.3; }

/* =============================================================
   9. Section scaffolding
   ============================================================= */
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section-head { display: grid; gap: 0.9rem; max-width: 640px; margin-bottom: 3rem; }
.section-head.center { justify-items: center; text-align: center; margin-inline: auto; }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 5.2vw, 3.6rem); color: var(--ink); line-height: 1.02;
}
.section-title em { font-style: italic; color: var(--red); }
.section-lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--ink-soft); max-width: 52ch; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }

/* =============================================================
   10. Chiringuito (manifesto, 2 columns)
   ============================================================= */
.chiringuito { background: var(--bg); }
.chiri-grid {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  grid-template-columns: 1fr;
}
.chiri-figure { position: relative; }
.chiri-figure img { width: 100%; border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; }
.chiri-figure .tag {
  position: absolute; bottom: 1rem; left: 1rem; background: var(--paper);
  padding: 0.5rem 0.9rem; border-radius: 5px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--red);
  box-shadow: 0 10px 30px rgba(30,24,20,0.16);
}
.chiri-body .section-title { margin-bottom: 0.4rem; }
.chiri-body p { color: var(--ink-soft); margin-top: 1rem; max-width: 46ch; }
.chiri-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2rem; }
.stat .num { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--red); line-height: 1; }
.stat .lbl { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.3rem; }

/* =============================================================
   11. Carta highlights (bento)
   ============================================================= */
.carta { background: var(--bg-2); }
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.dish {
  position: relative; overflow: hidden; border-radius: 8px; background: var(--ink);
  aspect-ratio: 4/5; box-shadow: 0 12px 30px rgba(30,24,20,0.12);
}
.dish img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out), filter .8s var(--ease-out);
  filter: saturate(1.05);
}
.dish::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,14,10,0.72) 100%);
}
.dish-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem; color: var(--paper); }
.dish-info .cat { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.dish-info h3 { font-family: var(--serif); font-size: 1.5rem; margin: 0.2rem 0; }
.dish-info .price { font-size: 0.9rem; font-weight: 700; }
.dish-info .desc { font-size: 0.82rem; color: rgba(251,248,241,0.82); margin-top: 0.3rem; line-height: 1.4; }
.dish:hover img { transform: scale(1.07); filter: saturate(1.18) brightness(1.05); }

.carta-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* =============================================================
   12. Cocktails
   ============================================================= */
.cocktails { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.cocktails .section-title { color: var(--paper); }
.cocktails .section-title em { color: var(--gold); }
.cocktails .section-lead { color: rgba(251,248,241,0.72); }
.cocktails .eyebrow { color: var(--gold); }
.cocktail-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 1rem;
}
.cocktail {
  position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; background: #000;
}
.cocktail img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.cocktail:hover img { transform: scale(1.06); }
.cocktail figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 1rem;
  font-family: var(--serif); font-size: 1.05rem; color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
}
.cocktail figcaption small { display: block; font-family: var(--sans); font-size: 0.72rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* Marquee */
.marquee {
  margin-top: 3.5rem; overflow: hidden; border-block: 1px solid rgba(251,248,241,0.16);
  padding-block: 1.1rem; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; gap: 2.4rem; animation: marquee 32s linear infinite; will-change: transform; }
.marquee-track span { font-family: var(--sans); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: clamp(1.05rem, 2.5vw, 1.55rem); color: rgba(251,248,241,0.85); display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   13. Playa
   ============================================================= */
.playa { background: var(--bg); }
.playa-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.playa-figure { border-radius: 8px; overflow: hidden; }
.playa-figure img { width: 100%; height: 100%; object-fit: cover; }
.playa-body { align-self: center; }
.playa-body p { color: var(--ink-soft); margin-top: 1rem; max-width: 44ch; }
.playa-rates { display: grid; gap: 1rem; margin-top: 1.8rem; grid-template-columns: 1fr 1fr; }
.rate {
  position: relative; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 10px; padding: 1.2rem 1.2rem 1.3rem;
}
.rate.featured { border-color: var(--blue); box-shadow: 0 12px 30px rgba(73,46,57,0.18); }
.rate-badge {
  position: absolute; top: -0.7rem; left: 1.2rem; background: var(--blue); color: var(--paper);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 100px;
}
.rate-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.rate-name { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.rate-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--blue); }
.rate.featured .rate-price { color: var(--blue-deep); }
.rate-desc { font-size: 0.84rem; color: var(--ink-mute); margin-top: 0.3rem; line-height: 1.35; }
@media (max-width: 540px) { .playa-rates { grid-template-columns: 1fr; } }

.playa-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.playa-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.playa-list li::before { content: ""; width: 8px; height: 8px; margin-top: 0.5rem; flex: none;
  background: var(--red); clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); }

/* =============================================================
   14. Eventos
   ============================================================= */
.eventos { position: relative; color: var(--paper); overflow: hidden; }
.eventos-bg { position: absolute; inset: 0; z-index: -2; }
.eventos-bg img { width: 100%; height: 100%; object-fit: cover; }
.eventos-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,24,20,0.55), rgba(30,24,20,0.78)); }
.eventos .container { position: relative; z-index: 1; }
.eventos .section-title { color: var(--paper); }
.eventos .section-title em { color: var(--gold); }
.eventos-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(251,248,241,0.85); max-width: 60ch; margin-top: 1rem; }
.eventos-contact { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.eventos-contact .btn svg { width: 20px; height: 20px; flex: none; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa svg { fill: currentColor; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.4); }
.btn-mail { border: 1.5px solid rgba(251,248,241,0.55); color: var(--paper); text-transform: none; letter-spacing: 0.02em; }
.btn-mail:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.eventos-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.evento-card {
  background: rgba(251,248,241,0.08); border: 1px solid rgba(251,248,241,0.18);
  border-radius: 8px; padding: 1.6rem; backdrop-filter: blur(6px);
}
.evento-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.evento-card p { font-size: 0.9rem; color: rgba(251,248,241,0.78); }

/* =============================================================
   15. Reserva / contacto
   ============================================================= */
.reserva { background: var(--bg-2); }
.reserva-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
.reserva-info .section-title { margin-bottom: 0.5rem; }
.info-block { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.info-item { display: grid; gap: 0.15rem; }
.info-item .k { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.info-item .v { font-size: 1rem; color: var(--ink-soft); }
.info-item a.v:hover { color: var(--red); }
.hours { margin-top: 1.6rem; border-top: 1px solid var(--line); padding-top: 1.2rem; display: grid; gap: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--ink-soft); }
.hours-row span:first-child { font-weight: 600; color: var(--ink); }
.map-wrap { position: relative; margin-top: 1.6rem; border-radius: 10px; overflow: hidden; box-shadow: 0 12px 30px rgba(30,24,20,0.12); border: 1px solid var(--line); }
.map-embed { display: block; width: 100%; height: 260px; border: 0; }
.map-cta { position: absolute; right: 0.7rem; bottom: 0.7rem; background: var(--ink); color: var(--paper); padding: 0.5rem 0.95rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; box-shadow: 0 6px 16px rgba(0,0,0,0.28); transition: background .3s var(--ease-out); }
.map-cta:hover { background: var(--red); }

.reserva-form {
  background: var(--paper); border-radius: 10px; padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 20px 50px rgba(30,24,20,0.1);
}
.reserva-form h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 1.4rem; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 6px; padding: 0.75rem 0.9rem;
  width: 100%; min-width: 0; box-sizing: border-box;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(206,104,88,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.reserva-form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.76rem; color: var(--ink-mute); margin-top: 0.8rem; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 2rem 0;
}
.form-success.show { display: block; }
.form-success svg { width: 54px; height: 54px; color: var(--red); margin: 0 auto 1rem; }
.form-success h3 { color: var(--red); }
.form-success p { color: var(--ink-soft); margin-top: 0.4rem; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--ink); color: var(--paper); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer-top { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
.footer .logo-script { color: var(--red); font-size: 2.6rem; }
.footer .logo-beach { color: rgba(251,248,241,0.8); }
.footer-logo { display: block; width: clamp(130px, 22vw, 168px); height: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tag { color: rgba(251,248,241,0.6); margin-top: 0.8rem; max-width: 34ch; font-size: 0.9rem; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.footer-col a, .footer-col p { display: block; color: rgba(251,248,241,0.72); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(251,248,241,0.14);
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between;
  font-size: 0.78rem; color: rgba(251,248,241,0.5);
}

/* =============================================================
   17. Custom cursor (fine pointer only)
   ============================================================= */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 500; pointer-events: none;
  opacity: 0; transition: opacity .3s var(--ease-out); mix-blend-mode: difference; }
.cursor { width: 7px; height: 7px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid #fff; border-radius: 50%; transform: translate(-50%,-50%); transition: opacity .3s var(--ease-out), width .3s var(--ease-out), height .3s var(--ease-out); }
.cursor.is-ready, .cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-hover { width: 54px; height: 54px; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* =============================================================
   18. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .dish.feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .cocktail-grid { grid-template-columns: repeat(4, 1fr); }
  .playa-grid { grid-template-columns: 1.2fr 1fr; }
  .eventos-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.3fr 2fr; }
}
@media (min-width: 960px) {
  .chiri-grid { grid-template-columns: 0.85fr 1.15fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento .dish.feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .reserva-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile nav behaviour */
@media (max-width: 899px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links.left { display: none; }
  .nav-links.right .nav-link { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 4px; padding: 0.5rem; justify-self: start;
    position: relative; z-index: 100;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s; }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-mobile {
    display: grid; position: fixed; inset: 0; z-index: 90;
    width: 100vw; height: 100vh; height: 100dvh;
    background: var(--bg); padding: 6rem var(--gutter) 2rem; gap: 0.4rem;
    align-content: start; transform: translateX(100%); transition: transform .45s var(--ease-out);
  }
  .nav.is-open .nav-mobile { transform: translateX(0); }
  .nav-mobile a {
    font-family: var(--serif); font-size: 1.8rem; color: var(--ink);
    padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft);
  }
  .nav-mobile a.cta { color: var(--red); }
}
@media (min-width: 900px) { .nav-toggle, .nav-mobile { display: none; } }

/* =============================================================
   18b. Carta page
   ============================================================= */
.carta-hero {
  position: relative; padding: 9rem var(--gutter) 3.5rem; text-align: center;
  background: var(--bg-2); overflow: hidden;
}
.carta-hero .eyebrow { display: block; margin-bottom: 0.8rem; }
.carta-hero h1 { font-family: var(--serif); font-size: clamp(2.6rem, 8vw, 5rem); color: var(--ink); }
.carta-hero h1 em { font-style: italic; color: var(--red); }
.carta-hero p { color: var(--ink-soft); max-width: 44ch; margin: 1rem auto 0; }

.carta-nav {
  position: sticky; top: 0; z-index: 50; background: rgba(243,238,227,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.carta-nav-inner {
  display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.7rem var(--gutter);
  scrollbar-width: none; -ms-overflow-style: none;
}
.carta-nav-inner::-webkit-scrollbar { display: none; }
.carta-nav a {
  white-space: nowrap; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); padding: 0.4rem 0.85rem;
  border-radius: 100px; transition: all .25s var(--ease-out); flex: none;
}
.carta-nav a:hover, .carta-nav a.is-active { background: var(--red); color: var(--bg); }

.menu-section { padding: clamp(3rem, 6vw, 5rem) 0 0; scroll-margin-top: 70px; }
.menu-section:last-of-type { padding-bottom: clamp(3rem, 6vw, 5rem); }
.menu-section-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; }
.menu-section-head h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4.4vw, 2.8rem); color: var(--ink); }
.menu-section-head h2 em { font-style: italic; color: var(--red); }
.menu-section-head .line { flex: 1; height: 1px; background: var(--line); }
.menu-note { font-size: 0.8rem; color: var(--ink-mute); margin-bottom: 1.5rem; font-style: italic; }

.menu-grid { display: grid; gap: 0.4rem 3.5rem; grid-template-columns: 1fr; }
.menu-item { padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft); }
.mi-head { display: flex; align-items: baseline; gap: 0.5rem; }
.mi-name { font-family: var(--serif); font-size: 1.12rem; color: var(--ink); font-weight: 500; }
.mi-dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-3px); min-width: 12px; }
.mi-price { font-weight: 700; color: var(--red); font-size: 0.98rem; white-space: nowrap; }
.mi-desc { font-size: 0.85rem; color: var(--ink-mute); margin-top: 0.15rem; max-width: 52ch; }

.menu-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.menu-tags span {
  font-size: 0.78rem; color: var(--ink-soft); background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: 100px; padding: 0.4rem 0.9rem;
}
.menu-cta { text-align: center; padding: clamp(3rem,6vw,5rem) 0; }

@media (min-width: 720px) {
  .menu-grid.two { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   19. Reduced motion (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll span { animation: none; }
  .marquee-track { animation-duration: 90s; }
  .splash-line { animation: none; width: 190px; }
}

/* =============================================================
   20. WhatsApp flotante + botón de idioma
   ============================================================= */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 70; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(37,211,102,0.55); }
.nav.is-open .wa-float { opacity: 0; pointer-events: none; }

.ig-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem);
  bottom: calc(clamp(1rem, 3vw, 1.6rem) + 70px);
  z-index: 70; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 8px 22px rgba(220,39,67,0.45);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.ig-float svg { width: 30px; height: 30px; fill: currentColor; }
.ig-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(220,39,67,0.55); }
.nav.is-open .ig-float { opacity: 0; pointer-events: none; }

.nav-lang {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ink-soft); background: transparent;
  border: 1.5px solid var(--line); border-radius: 100px;
  padding: 0.36rem 0.7rem; cursor: pointer; line-height: 1;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.nav-lang:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav-mobile .nav-lang { justify-self: start; margin-top: 0.6rem; }

/* =============================================================
   21. Banner de cookies (RGPD)
   ============================================================= */
.cookie-banner {
  position: fixed; left: clamp(1rem, 3vw, 1.6rem); right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem); z-index: 90;
  max-width: 560px; margin-inline: auto;
  background: var(--ink); color: var(--paper);
  border-radius: 18px; padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 50px rgba(52,33,42,0.38);
  transform: translateY(140%); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
}
.cookie-banner.is-in { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  margin: 0 0 0.4rem; color: var(--paper);
}
.cookie-banner p {
  font-family: var(--sans); font-size: 0.86rem; line-height: 1.55;
  color: rgba(253,250,243,0.82); margin: 0 0 1rem;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookie-actions .btn { font-size: 0.78rem; padding: 0.7rem 1.3rem; }
.btn-cookie-accept { background: var(--red); color: #fff; border: none; }
.btn-cookie-accept:hover { background: var(--red-deep); }
.btn-cookie-reject {
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(253,250,243,0.4); text-transform: none; letter-spacing: 0.02em;
}
.btn-cookie-reject:hover { border-color: var(--paper); background: rgba(253,250,243,0.08); }
@media (max-width: 520px) { .cookie-actions .btn { flex: 1 1 auto; text-align: center; } }
.footer-legal a { color: inherit; text-decoration: none; opacity: .85; transition: opacity .3s var(--ease-out); }
.footer-legal a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   22. Páginas legales (Aviso legal / Privacidad)
   ============================================================= */
.legal { padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem); background: var(--bg); }
.legal .container { max-width: 780px; }
.legal .eyebrow { margin-bottom: 0.6rem; }
.legal h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05;
  color: var(--ink); margin: 0 0 0.4rem;
}
.legal .legal-updated { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 2.4rem; }
.legal h2 {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
  color: var(--ink); margin: 2.6rem 0 0.8rem;
}
.legal h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--ink); margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { font-family: var(--sans); font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }
.legal p { margin: 0 0 1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.2rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--red-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal-data {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.6rem; margin: 1.2rem 0 1.8rem;
}
.legal .legal-data p { margin: 0.25rem 0; font-size: 0.92rem; }
.legal .legal-back { display: inline-block; margin-top: 2.4rem; font-family: var(--sans); font-weight: 600; font-size: 0.9rem; }
.legal table.cookie-table { width: 100%; border-collapse: collapse; margin: 0.5rem 0 1.6rem; }
.legal .cookie-table th, .legal .cookie-table td {
  text-align: left; padding: 0.6rem 0.7rem; border-bottom: 1px solid var(--line);
  font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); vertical-align: top;
}
.legal .cookie-table th { color: var(--ink); font-weight: 600; }
