/* =============================================================
   PALACETE PEÑALBA — Editorial Light Cream
   1. Tokens
   ============================================================= */
:root {
  --script: "Alex Brush", cursive; --olive: #44502F;
  --color-bg: #FFFFFF; --color-text: #111111; --color-text-muted: #555555; --color-accent: #C5A059; --color-white: #FFFFFF;
  --bg:        var(--color-bg);
  --bg-2:      #F7F7F5;
  --paper:     var(--color-white);
  --ink:       var(--color-text);
  --ink-soft:  #333333;
  --ink-mute:  var(--color-text-muted);
  --accent:    var(--color-accent);   /* oro viejo */
  --accent-2:  #A5813E;   /* oro grabado, más profundo */
  --line:      rgba(17,17,17,0.13);
  --cream:     #FFFFFF;
  --shadow:    0 30px 60px -25px rgba(17,17,17,0.25);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 84px;
}

@property --mesh-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* =============================================================
   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;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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.08; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 960px) { .container { padding-inline: 2.5rem; } }

.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: .7rem 1.1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--accent-2);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.1rem; font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; transition: transform .5s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .5s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--cream);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 18px 30px -14px rgba(17,17,17,0.4); }
.btn-outline {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }

/* =============================================================
   4. Nav
   ============================================================= */
.masthead {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .5s var(--ease-out), box-shadow .5s var(--ease-out), height .4s var(--ease-out);
}
.masthead.is-solid {
  background: rgba(246,241,232,0.9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .masthead.is-solid { background: rgba(246,241,232,0.98); }
}
.masthead .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--serif); font-size: 1rem; letter-spacing: .04em;
  color: var(--ink);
}
.brand-crest {
  width: 40px; height: 40px; flex-shrink: 0;
}
.brand-name b { display: block; font-size: .98rem; }
.brand-name span { display: block; font-size: .62rem; letter-spacing: .18em; color: var(--ink-mute); text-transform: uppercase; margin-top: .15rem; }

.nav-links {
  display: none;
  gap: 2.1rem;
  font-size: .84rem; font-weight: 500; letter-spacing: .04em;
}
.nav-links a {
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent-2); transition: right .4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--accent-2); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Selector de idioma */
.lang-switch { position: relative; }
.lang-switch-btn {
  font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  color: inherit; background: none; border: 1px solid currentColor; opacity: .75;
  border-radius: 999px; padding: .38rem .75rem; cursor: pointer; line-height: 1;
  transition: opacity .2s ease;
}
.lang-switch-btn:hover { opacity: 1; }
.lang-switch-menu {
  position: absolute; top: calc(100% + .6rem); right: 0; z-index: 40;
  background: var(--cream, #FDFBF7); border: 1px solid rgba(17,17,17,.14);
  border-radius: 10px; box-shadow: 0 18px 40px -18px rgba(0,0,0,.35);
  padding: .4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .2rem;
  min-width: 132px; opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lang-switch.is-open .lang-switch-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch-opt {
  font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: #111; background: none; border: none; border-radius: 6px; padding: .5rem .4rem;
  cursor: pointer; text-align: center;
}
.lang-switch-opt:hover { background: rgba(197,160,89,.14); }
.lang-switch-opt.is-active { background: var(--accent, #C5A059); color: #fff; }
/* Oculta por completo el banner y estilos que Google Translate inyecta */
.goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.nav-ig {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; transition: border-color .3s, transform .4s var(--ease-out);
}
.nav-ig:hover { border-color: var(--ink); transform: rotate(-8deg); }
.nav-cta { padding: .78rem 1.5rem; font-size: .74rem; }

.nav-toggle {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .3s;
}
.nav-toggle span { position: relative; }
.nav-toggle::before, .nav-toggle::after { position: absolute; }
.nav-toggle::before { transform: translateY(-7px); }
.nav-toggle::after { transform: translateY(7px); }
.masthead.is-open .nav-toggle span { opacity: 0; }
.masthead.is-open .nav-toggle::before { transform: rotate(45deg); }
.masthead.is-open .nav-toggle::after { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 400;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 1.7rem;
  padding: 2rem 2rem 4rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease-out);
}
.masthead.is-open + .mobile-menu {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; }
.mobile-menu .btn { align-self: flex-start; margin-top: 1rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: clip;
  color: var(--cream);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.48) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: 6rem; padding-top: calc(var(--nav-h) + 3rem);
}
.hero .eyebrow { color: var(--bg-2); }
.hero .eyebrow::before { background: var(--bg-2); }
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  max-width: 16ch;
  margin-top: 1.1rem;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-title em { font-style: italic; color: var(--bg-2); }
.hero-sub {
  max-width: 46ch; margin-top: 1.3rem; font-size: 1.05rem; color: rgba(250,246,236,0.88);
}
.hero-actions { margin-top: 2.1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(250,246,236,0.5); color: var(--cream); }
.hero .btn-outline:hover { border-color: var(--cream); }
.hero-play {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.hero-play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  border: 1.5px solid rgba(250,246,236,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-out), background .3s;
}
.hero-play-btn:hover { transform: scale(1.08); background: rgba(250,246,236,0.12); }
.hero-play-btn svg { width: 24px; height: 24px; margin-left: 3px; }

@media (prefers-reduced-motion: reduce) {
  .hero-media video { animation-play-state: paused; }
}

/* =============================================================
   6. Ticker / marquee
   ============================================================= */
.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 34s linear infinite;
}
.ticker-track span {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .95rem 2.2rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  white-space: nowrap;
}
.ticker-track span::after { content: "◆"; font-size: .55rem; color: var(--accent); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation-duration: 70s; }
}

/* =============================================================
   7. Sections / editorial blocks
   ============================================================= */
.section { padding-block: clamp(3.2rem, 6vw, 6rem); position: relative; }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-alt { background: var(--paper); }

.section-head {
  max-width: 62rem; margin-bottom: 2.2rem;
}
.section-head .section-title { max-width: none; text-wrap: balance; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-top: .9rem; }
.section-lede { margin-top: 1.1rem; font-size: 1.05rem; color: var(--ink-soft); max-width: 66ch; text-align: justify; text-wrap: pretty; }
.section-lede.center { margin-inline: auto; }

.manifesto {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .manifesto { grid-template-columns: 0.5fr 1.5fr; gap: 3rem; align-items: start; }
}
.manifesto-num { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--accent); }
.manifesto-text { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; text-align: justify; text-wrap: pretty; }

.chef-split {
  display: grid; gap: 1.75rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .chef-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.chef-split-media {
  aspect-ratio: 4 / 3; border-radius: 2px; overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--line);
}
.chef-split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.chef-split-text { max-width: 52ch; }

/* =============================================================
   8. Galleries
   ============================================================= */
.gallery {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.4rem;
}
.gallery.cols-3 { grid-template-columns: repeat(2, 1fr); }
.gallery.cols-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) {
  .gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  cursor: zoom-in;
}
.gallery-item.ar-wide { aspect-ratio: 4 / 3; }
.gallery-item.ar-square { aspect-ratio: 1 / 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .5s var(--ease-out);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  transition: box-shadow .5s var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.12) brightness(1.03); }
.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item:hover::after { box-shadow: 0 0 0 1px rgba(184,135,74,0.4); }

/* =============================================================
   9. Reveal on scroll
   ============================================================= */
.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; }
.reveal-stagger .reveal:nth-child(1) { transition-delay: .05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: .14s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: .23s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: .32s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: .41s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: .5s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: .59s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: .68s; }

/* =============================================================
   10. Highlight / callout strip
   ============================================================= */
.callout {
  text-align: center; padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--ink); color: var(--cream);
}
.callout p {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-style: italic; max-width: 44ch; margin-inline: auto;
}
.callout p + p { margin-top: .6rem; color: var(--bg-2); font-style: normal; font-family: var(--sans); font-size: 1rem; }

/* =============================================================
   11. Footer
   ============================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem;
}
.footer-head { text-align: center; margin-bottom: 3rem; }
.footer-cols {
  display: grid; gap: 2.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-col h3 { font-size: 1.2rem; margin-bottom: .8rem; }
.footer-col p { color: var(--ink-soft); font-size: .95rem; margin-top: .2rem; }
.footer-col a.tel { color: var(--accent-2); font-weight: 600; }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8rem; color: var(--ink-mute);
}

/* =============================================================
   12. Lightbox
   ============================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(12,12,12,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-fig {
  max-width: min(90vw, 1100px); max-height: 84vh;
  transform: scale(.96); transition: transform .4s var(--ease-out);
}
.lightbox.is-open .lightbox-fig { transform: scale(1); }
.lightbox-fig img { max-height: 84vh; width: auto; margin-inline: auto; border-radius: 2px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: var(--cream);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(250,246,236,.35);
  transition: background .3s, transform .3s var(--ease-out);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(250,246,236,.12); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 719px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

/* =============================================================
   13. Cursor
   ============================================================= */
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 950;
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1px solid var(--accent-2); border-radius: 50%;
  pointer-events: none; opacity: 0; mix-blend-mode: difference;
  transition: opacity .3s var(--ease-out), transform .18s var(--ease-out), width .25s, height .25s, margin .25s;
}
.cursor-ring.is-ready { opacity: .8; }
.cursor-ring.is-active { width: 54px; height: 54px; margin: -27px 0 0 -27px; }
@media (hover: none), (pointer: coarse) {
  .cursor-ring { display: none; }
}

/* =============================================================
   14. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
.splash-crest { width: 64px; height: 64px; opacity: 0; animation: splashFade 1.2s var(--ease-out) forwards .15s; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
@keyframes splashFade { to { opacity: 1; } }

/* =============================================================
   15. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { flex-wrap: nowrap; }
}
@media (min-width: 960px) {
  .section { padding-block: clamp(3.8rem, 6.5vw, 6.5rem); }
}
@media (min-width: 1280px) {
  .container { padding-inline: 3rem; }
}

/* =============================================================
   16. Reservar ahora — CTA + desplegable
   ============================================================= */
.nav-book { position: relative; }
.book-menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 600;
  min-width: 288px; padding: .5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .45s var(--ease-out);
}
.nav-book.is-open .book-menu { opacity: 1; transform: none; pointer-events: auto; }
.book-menu a {
  display: flex; flex-direction: column; gap: .12rem;
  padding: .85rem 1rem; border-radius: 6px;
  transition: background .25s var(--ease-out), transform .3s var(--ease-out);
}
.book-menu a b { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.book-menu a span { font-size: .76rem; color: var(--ink-mute); letter-spacing: .02em; }
.book-menu a:hover { background: var(--cream); transform: translateX(3px); }
.book-menu a + a { border-top: 1px solid var(--line); border-radius: 0 0 6px 6px; }

/* =============================================================
   17. Módulos de reserva directa
   ============================================================= */
.booking-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 40px 80px -45px rgba(17,17,17,0.35);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  position: relative; overflow: hidden;
}
.booking-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.section-alt .booking-card { background: var(--cream); }

.booking-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .booking-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .booking-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.booking-grid .span-2 { grid-column: 1 / -1; }

.field label {
  display: block; margin-bottom: .45rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 5px;
  background: var(--cream); color: var(--ink);
  font: inherit; font-size: .95rem;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
  appearance: none; -webkit-appearance: none;
}
.booking-card .field input, .booking-card .field select, .booking-card .field textarea { background: #ffffff; }
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237d715d' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,135,74,0.18);
}
.field input.is-invalid, .field select.is-invalid { border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(138,70,56,0.14); }
.field-hint { margin-top: .4rem; font-size: .78rem; color: var(--ink-mute); }

/* Stepper */
.stepper {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  border: 1px solid var(--line); border-radius: 5px; background: #ffffff;
  padding: .35rem .45rem;
}
.stepper button {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; line-height: 1;
  transition: background .25s, color .25s, transform .3s var(--ease-out);
}
.stepper button:hover:not(:disabled) { background: var(--ink); color: var(--cream); transform: scale(1.06); }
.stepper button:disabled { opacity: .3; cursor: not-allowed; }
.stepper output { font-weight: 600; font-size: 1rem; text-align: center; }
.stepper output small { display: block; font-weight: 400; font-size: .68rem; color: var(--ink-mute); letter-spacing: .06em; text-transform: uppercase; }

/* Chips (turnos, horas, tipo de evento) */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .6rem 1.05rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: transparent; font-size: .87rem; font-weight: 500;
  transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease-out);
}
.chip:hover { border-color: var(--ink); transform: translateY(-2px); }
.chip.is-selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chips.is-missing .chip { border-color: var(--accent-2); }

/* Range (invitados eventos) */
.range-row { display: flex; align-items: center; gap: 1.1rem; }
.range-row input[type="range"] {
  flex: 1; padding: 0; height: 4px; border: 0; border-radius: 999px;
  background: var(--bg-2); accent-color: var(--accent-2); cursor: pointer;
}
.range-row output {
  min-width: 92px; text-align: center;
  font-family: var(--serif); font-size: 1.35rem;
  border: 1px solid var(--line); border-radius: 5px; padding: .35rem .5rem; background: #ffffff;
}
.range-row output small { display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }

/* Resumen y envío */
.booking-summary {
  margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.summary-lines { display: grid; gap: .15rem; }
.summary-lines span { font-size: .92rem; color: var(--ink-soft); }
.summary-lines .price { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.summary-lines .price small { font-family: var(--sans); font-size: .75rem; font-weight: 500; color: var(--ink-mute); margin-left: .35rem; }
.booking-note { margin-top: 1.1rem; font-size: .8rem; color: var(--ink-mute); max-width: 60ch; }
.booking-note b { color: var(--ink); }

/* Ventajas reserva directa */
.direct-perks { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 1.2rem; }
.direct-perks li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500; color: var(--ink-soft);
}
.direct-perks li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* Confirmación */
.booking-confirm { text-align: center; padding: 1.5rem 0 .5rem; }
.booking-confirm .confirm-badge {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  animation: confirmPop .6s var(--ease-out) both;
}
@keyframes confirmPop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.booking-confirm h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.booking-confirm .confirm-summary {
  margin: 1.1rem auto 0; max-width: 56ch;
  font-size: 1.02rem; color: var(--ink-soft);
}
.booking-confirm .confirm-summary b { color: var(--ink); }
.booking-confirm .booking-note { margin-inline: auto; text-align: center; }
.booking-confirm .btn { margin-top: 1.4rem; }

/* Accesos directos Home */
.biz-cards { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 2.4rem; }
@media (min-width: 720px) { .biz-cards { grid-template-columns: repeat(3, 1fr); } }
.biz-card {
  position: relative; display: block; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4 / 5; background: var(--bg-2);
}
.biz-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft), filter .6s var(--ease-out);
}
.biz-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0) 40%, rgba(20,16,10,.72) 100%);
  transition: opacity .5s var(--ease-out);
}
.biz-card:hover img { transform: scale(1.07); filter: saturate(1.1); }
.biz-card-label {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.3rem; z-index: 2;
  color: var(--cream);
}
.biz-card-label b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.55rem; }
.biz-card-label span {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .35rem; font-size: .76rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--bg-2);
}
.biz-card-label span::after { content: "→"; transition: transform .35s var(--ease-out); }
.biz-card:hover .biz-card-label span::after { transform: translateX(5px); }


/* =============================================================
   18. Slider de habitaciones (deslizamiento lateral + fade)
   ============================================================= */
.slider { overflow: hidden; position: relative; margin-top: 2.4rem; }
.slider-track {
  display: flex; gap: 1.1rem;
  transition: transform 1.15s var(--ease-soft);
  will-change: transform;
}
.slider .gallery-item {
  flex: 0 0 calc((100% - 2.2rem) / 3);
  margin: 0;
  transition: opacity .95s var(--ease-out), transform .8s var(--ease-soft), filter .5s var(--ease-out);
}
@media (max-width: 719px) {
  .slider .gallery-item { flex-basis: calc((100% - 1.1rem) / 2); }
}
.slider .gallery-item.is-gone { opacity: 0; transform: scale(.96); pointer-events: none; }
.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.slider-dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: var(--line);
  transition: background .3s, transform .3s var(--ease-out);
}
.slider-dots button.is-on { background: var(--accent-2); transform: scale(1.3); }


/* =============================================================
   19. Cabecera elegante centrada (logo + 4 estrellas)
   ============================================================= */
:root { --nav-h: 138px; }
@media (min-width: 960px) { :root { --nav-h: 184px; } }
body { padding-top: var(--nav-h); }

.masthead {
  height: var(--nav-h);
  background: rgba(246,241,232,0.97);
  box-shadow: 0 1px 0 var(--line);
}
.masthead-stack {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; height: 100%; width: 100%; position: relative;
}
.brand {
  display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.2rem);
  transition: opacity .4s var(--ease-out), transform .45s var(--ease-out);
}
.brand-word {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(.82rem, 1.9vw, 1.3rem);
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap;
}
.brand-mark { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.brand-logo { height: clamp(52px, 9vw, 92px); width: auto; }
.brand-stars { display: flex; gap: .35rem; transform: scale(1.15); }
.brand-stars svg { width: 15px; height: 15px; fill: #e0b23c; filter: drop-shadow(0 1px 2px rgba(140,95,20,.45)); }
@media (min-width: 960px) { .brand-stars svg { width: 17px; height: 17px; } }

.masthead-bar {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  position: relative; width: 100%; min-height: 46px;
}
.masthead-bar .nav-actions { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.bar-crest {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 38px; opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.bar-crest img { height: 100%; width: auto; }

/* Al hacer scroll: menú flotante sutil */
.masthead.is-solid { height: 72px; }
.masthead.is-solid .brand {
  opacity: 0; transform: translateY(-16px) scale(.85);
  pointer-events: none; position: absolute; top: 0; left: 50%; margin-left: -160px;
}
.masthead.is-solid .bar-crest { opacity: 1; pointer-events: auto; }

.mobile-menu { inset: 0; padding-top: calc(var(--nav-h) + 1.5rem); z-index: 400; justify-content: flex-start; }

/* Hero compensado (la cabecera ya no es transparente) */
.hero { min-height: calc(100svh - var(--nav-h)); }
.hero.hero-restaurante { min-height: 80vh; }
.hero-inner { padding-top: 3rem; }

/* =============================================================
   20. Botón flotante de WhatsApp
   ============================================================= */
.whatsapp-fab {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #11614b; color: #ffffff;
  box-shadow: 0 20px 38px -14px rgba(17,97,75,0.6);
  transition: transform .35s var(--ease-out), background .3s, box-shadow .35s var(--ease-out);
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  background: #0d4f3c;
  box-shadow: 0 26px 45px -14px rgba(17,97,75,0.7);
}
.whatsapp-fab svg { width: 28px; height: 28px; }
@media (min-width: 960px) { .whatsapp-fab { right: 2rem; bottom: 2rem; } }


/* =============================================================
   21. Rediseño boutique premium — header minimal transparente
   ============================================================= */
:root { --nav-h: 78px; }
body { padding-top: 0 !important; }
.hero { min-height: 100svh; }
.hero-inner { padding-top: calc(var(--nav-h) + 3rem); }

.masthead { height: var(--nav-h); background: transparent; box-shadow: none; }
.masthead:not(.is-solid):not(.is-open)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.38) 0%, rgba(0,0,0,.18) 60%, rgba(0,0,0,0) 100%);
}
@media (max-width: 719px) {
  .home-hero { min-height: 82svh; }
  .home-hero video { object-position: center 35%; }
  .home-hero .hero-tag {
    flex-direction: column; align-items: flex-start; gap: .55rem;
    margin-top: 1.3rem;
  }
  .home-hero .hero-tag span { padding-right: 0; padding-left: 1.05rem; }
  .home-hero .hero-tag span::after { content: none; }
  .home-hero .hero-tag span::before {
    content: "✦"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    font-size: .5rem; color: rgba(240,217,163,.6);
  }
}
.masthead.is-solid, .masthead.is-open {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 1px 0 var(--line);
}
.masthead-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.masthead:not(.is-solid):not(.is-open) { color: var(--cream); }
.masthead:not(.is-solid):not(.is-open) .nav-toggle span,
.masthead:not(.is-solid):not(.is-open) .nav-toggle::before,
.masthead:not(.is-solid):not(.is-open) .nav-toggle::after { background: currentColor; }

.brand { display: flex; align-items: center; gap: .85rem; color: inherit; }
.brand-logo-wrap { position: relative; width: 52px; height: 38px; flex-shrink: 0; }
.brand-logo-wrap img {
  position: absolute; left: 0; top: 0; height: 38px; width: auto;
  transition: opacity .45s var(--ease-out);
}
.brand-logo-wrap .logo-dark { opacity: 0; }
.masthead.is-solid .logo-dark, .masthead.is-open .logo-dark { opacity: 1; }
.masthead.is-solid .logo-light, .masthead.is-open .logo-light { opacity: 0; }
.brand-text { display: flex; align-items: baseline; gap: .65rem; white-space: nowrap; }
.brand-title {
  font-family: var(--serif); font-weight: 500; font-size: 1.02rem;
  letter-spacing: .14em; text-transform: uppercase;
}
.brand-stars { display: inline-flex; gap: .22rem; transform: scale(1.15); }
.brand-stars svg { width: 11px; height: 11px; fill: #e0b23c; filter: drop-shadow(0 1px 1.5px rgba(140,95,20,.4)); }
@media (max-width: 540px) { .brand-title { font-size: .82rem; letter-spacing: .1em; } .brand-text { gap: .45rem; } }
@media (max-width: 420px) {
  .masthead-row { gap: .5rem; }
  .nav-actions { gap: .5rem; }
  .lang-switch-btn { padding: .3rem .55rem; font-size: .66rem; }
  .btn-gold { padding: .55rem .95rem; font-size: .68rem; }
}

.masthead .nav-links { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; gap: 1.9rem; }
.nav-links a::after { background: var(--accent); }
.masthead:not(.is-solid):not(.is-open) .nav-links a.is-active { color: var(--cream); }
.masthead:not(.is-solid):not(.is-open) .nav-links a.is-active::after { right: 0; }

.btn-gold {
  border: 1px solid var(--accent); color: inherit;
  padding: .68rem 1.5rem; font-size: .74rem;
}
.btn-gold:hover { background: var(--accent); color: var(--color-text); transform: translateY(-2px); }

/* =============================================================
   22. Drawer de reservas
   ============================================================= */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 890;
  background: rgba(17,17,17,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease-out);
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 900;
  width: min(480px, 100%);
  background: var(--paper);
  box-shadow: -35px 0 70px rgba(17,17,17,0.18);
  transform: translateX(103%);
  transition: transform .6s var(--ease-out);
  display: flex; flex-direction: column;
}
body.drawer-open .drawer { transform: none; }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.6rem 1.1rem; border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 1.35rem; }
.drawer-head .eyebrow { margin-bottom: .3rem; }
.drawer-close {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .35s var(--ease-out);
}
.drawer-close:hover { background: var(--bg-2); transform: rotate(90deg); }
.drawer-tabs { display: flex; padding: .4rem 1.6rem 0; gap: .2rem; border-bottom: 1px solid var(--line); }
.drawer-tab {
  flex: 1; padding: .85rem .4rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-mute); border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.drawer-tab.is-active { color: var(--ink); border-color: var(--accent); }
.drawer-body { overflow-y: auto; padding: 1.6rem; flex: 1; }
.drawer-panel[hidden] { display: none; }
.drawer .booking-card { border: 0; box-shadow: none; padding: 0; background: transparent; border-radius: 0; overflow: visible; }
.drawer .booking-card::before { display: none; }
.drawer .booking-grid, .drawer .booking-grid.cols-3 { grid-template-columns: 1fr; }
.drawer .booking-summary { flex-direction: column; align-items: stretch; text-align: left; }
.drawer .booking-summary .btn { width: 100%; }

/* =============================================================
   23. Galería cross-fade automática (sin controles)
   ============================================================= */
.fade-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); margin-top: 2.4rem; }
@media (min-width: 720px) { .fade-grid { grid-template-columns: repeat(3, 1fr); } }
.fade-grid .gallery-item { cursor: default; }
.fade-grid .gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 1.4s var(--ease-soft), transform 8s linear;
}
.fade-grid .gallery-item img.is-entering { opacity: 0; }
.fade-grid .gallery-item img.is-shown { opacity: 1; }

/* WhatsApp en paleta navy/oro */
.whatsapp-fab { background: var(--color-text); color: var(--color-bg); box-shadow: 0 20px 38px -14px rgba(17,17,17,0.5); }
.whatsapp-fab:hover { background: #2a2a2a; box-shadow: 0 0 0 2px var(--accent), 0 26px 45px -14px rgba(17,17,17,0.55); }


/* =============================================================
   24. Estética editorial de gran lujo
   ============================================================= */
h1, h2, h3, .section-title { font-weight: 500; }
.section-title { letter-spacing: .01em; }
.btn { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; font-weight: 500; }

/* Pre-título serif limpio y legible */
.section-head .eyebrow, .footer-head .eyebrow {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: .78rem; line-height: 1.4;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--olive); margin-bottom: .9rem;
}
.section-head .eyebrow::before, .section-head .eyebrow::after,
.footer-head .eyebrow::before, .footer-head .eyebrow::after { content: none; }

/* Hero editorial */
.hero-script {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 1.5rem); line-height: 1.4;
  letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: .55em; color: #ffffff;
}
.hero-caps {
  display: block; font-family: var(--serif); font-weight: 600;
  text-transform: uppercase; letter-spacing: clamp(.08em, 1.6vw, .18em);
  font-size: clamp(2rem, 6.5vw, 4.4rem); line-height: 1.14;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.hero-tag {
  display: flex; flex-wrap: wrap; align-items: center; gap: .65rem;
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(.62rem, 1.4vw, .74rem); letter-spacing: .2em;
  text-transform: uppercase; margin-top: 1.5rem; color: #f0d9a3;
}
.hero-tag span { position: relative; padding-right: .8rem; }
.hero-tag span::after {
  content: "✦"; position: absolute; right: -.05rem; top: 50%; transform: translateY(-50%);
  font-size: .55rem; color: rgba(240,217,163,.55);
}
.hero-tag span:last-child { padding-right: 0; }
.hero-tag span:last-child::after { content: none; }
.hero-sub { font-family: var(--sans); font-weight: 300; letter-spacing: .02em; }
.hero-title em { font-style: italic; letter-spacing: .01em; }
.hero-title { line-height: 1.16; }
.hero-title:has(.hero-caps) { max-width: none; }
.hero-inner .hero-sub { max-width: 46ch; }

/* Fade-in / fade-out orgánico con el scroll */
.img-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.img-reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .img-reveal { opacity: 1; transform: none; transition: none; } }

/* Mosaico asimétrico en columnas */
.gallery.mosaic { display: block; columns: 2; column-gap: .9rem; position: relative; column-fill: balance; }
@media (min-width: 900px) { .gallery.mosaic { columns: 3; column-gap: 1.2rem; column-fill: balance; } }
.gallery.mosaic .gallery-item {
  display: block; width: 100%; height: auto; aspect-ratio: auto;
  margin: 0 0 .9rem; break-inside: avoid; position: relative; overflow: hidden;
}
@media (min-width: 900px) { .gallery.mosaic .gallery-item { margin-bottom: 1.2rem; } }
.gallery.mosaic .gallery-item img { position: static; display: block; width: 100%; height: auto; object-fit: cover; }
.gallery.mosaic .gallery-item:nth-child(5n+1) img { aspect-ratio: 3 / 4; }
.gallery.mosaic .gallery-item:nth-child(5n+2) img { aspect-ratio: 2 / 3; }
.gallery.mosaic .gallery-item:nth-child(5n+3) img { aspect-ratio: 1 / 1; }
.gallery.mosaic .gallery-item:nth-child(5n+4) img { aspect-ratio: 4 / 5; }
.gallery.mosaic .gallery-item:nth-child(5n+5) img { aspect-ratio: 3 / 4; }

.mosaic-showall {
  position: absolute; right: .6rem; bottom: 1.6rem; z-index: 6;
  display: inline-flex; align-items: stretch; gap: 0;
  background: var(--color-white); border: 1px solid var(--line);
  padding: 0; overflow: hidden;
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  box-shadow: 0 18px 40px -18px rgba(17,17,17,.35);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.mosaic-showall:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -18px rgba(17,17,17,.4); }
.mosaic-showall .msa-icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; background: var(--olive); color: var(--color-bg); flex-shrink: 0;
}
.mosaic-showall .msa-text { display: flex; align-items: center; padding: .95rem 1.15rem; }


/* =============================================================
   25. Jerarquía tipográfica imponente + restaurante
   ============================================================= */
.section-title { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.08; }
.hero-title { font-weight: 600; }
.footer-col h3, .booking-confirm h3 { font-weight: 600; }
.chef-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.12;
  margin-top: .5rem; color: var(--ink);
}
.badge-open {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--accent); color: var(--olive);
  padding: .55rem 1.2rem; border-radius: 999px;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; white-space: nowrap;
}
.badge-open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.badge-open.on-dark { color: #ffffff; border-color: rgba(255,255,255,.65); }

/* Hero split (restaurante): texto a la izquierda sobre fondo limpio, foto a la derecha */
.hero-split {
  display: grid; grid-template-columns: 1fr; align-items: stretch;
  padding-top: var(--nav-h); background: var(--bg);
}
.hero-split-text {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 3.2rem 1.5rem 3rem;
}
.hero-split-title {
  font-size: clamp(2.2rem, 6vw, 3.4rem); margin-top: 1rem; color: var(--ink);
}
.hero-split-media {
  aspect-ratio: 4 / 3; overflow: hidden;
}
.hero-split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) {
  .hero-split { grid-template-columns: 1fr 1fr; min-height: calc(100svh - var(--nav-h)); }
  .hero-split-text { padding: 4rem 4.5rem; }
  .hero-split-media { aspect-ratio: auto; }
}


/* =============================================================
   26. Móvil aligerado: carruseles swipe y galerías reducidas
   ============================================================= */
@media (max-width: 899px) {
  /* Galerías estándar -> carrusel horizontal con snap */
  .gallery:not(.mosaic) {
    display: flex; gap: .8rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .4rem;
    margin-inline: calc(50% - 50vw); padding-inline: 1.25rem;
  }
  .gallery:not(.mosaic)::-webkit-scrollbar { display: none; }
  .gallery:not(.mosaic) .gallery-item {
    flex: 0 0 76%; scroll-snap-align: center;
  }
  .gallery:not(.mosaic).cols-3 .gallery-item, .gallery:not(.mosaic).cols-4 .gallery-item { flex-basis: 72%; }

  /* Mosaico -> carrusel swipe, nada de listas verticales */
  .gallery.mosaic { columns: auto; column-gap: 0;
    display: flex; gap: .8rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: .4rem;
    margin-inline: calc(50% - 50vw); padding-inline: 1.25rem;
  }
  .gallery.mosaic::-webkit-scrollbar { display: none; }
  .gallery.mosaic .gallery-item {
    flex: 0 0 74%; margin: 0; scroll-snap-align: center;
  }
  .gallery.mosaic .gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5 !important; }
  /* Botón "ver galería" estático bajo el carrusel */
  .gallery.mosaic .mosaic-showall {
    position: static; order: 99;
    flex: 0 0 auto; align-self: center; scroll-snap-align: center;
    margin-right: 1.25rem;
  }

  /* Fade-grid: solo dos imágenes destacadas en paralelo */
  .fade-grid { grid-template-columns: repeat(2, 1fr); }
  .fade-grid .gallery-item:nth-child(n+3) { display: none; }
}

/* Intro de páginas secundarias: CTA visible arriba */
.intro-cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem; }


/* =============================================================
   27. Encuadre correcto: fotos completas, enmarcadas en blanco
   ============================================================= */
.biz-card {
  aspect-ratio: auto;
  background: var(--color-white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.biz-card::after { content: none; }
.biz-card img {
  position: static;
  width: 100%; height: auto; aspect-ratio: 4 / 3;
  object-fit: scale-down !important; object-position: center !important;
  background: var(--color-white);
  padding: .9rem .9rem 0;
  transition: none;
}
.biz-card:hover img { transform: none; filter: none; }
.biz-card-label {
  position: static; display: block;
  padding: 1.05rem 1.2rem 1.25rem;
  color: var(--ink);
}
.biz-card-label span { color: var(--ink-mute); }
.biz-card:hover .biz-card-label span::after { transform: translateX(5px); }

/* Heroes: mostrar la parte alta de la arquitectura (remates, escudo, banderas) */
.hero-media img { object-position: center top; }


