/* ================================================================
   DOBLE-R · Hoja de estilos
   ================================================================ */

/* ================ RESET ================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================ TOKENS ================ */
:root {
  --cream: #FAF6F0;
  --cream-deep: #F2EBDD;
  --sand: #E8DDD0;
  --sand-warm: #D4C2A8;
  --tan: #B8956A;
  --bronze: #8B6F47;
  --bronze-deep: #6B5638;
  --ink: #2A2620;
  --ink-soft: #4A4338;
  --terracotta: #C77D5C;
  --olive: #7B7A5C;
  --line: rgba(42, 38, 32, 0.12);
  --line-soft: rgba(42, 38, 32, 0.06);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
}

/* ================ TYPOGRAPHY ================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

.display {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display .ital { font-style: italic; font-weight: 300; }

h2.section-title {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
}
h2.section-title .ital { font-style: italic; color: var(--bronze); }

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink-soft);
}

p { color: var(--ink-soft); font-weight: 300; }

/* ================ LAYOUT ================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: 1480px; }
section { padding-block: var(--section-y); position: relative; }

/* ================ NAV ================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px var(--gutter);
  border-bottom-color: var(--line-soft);
}

.brand {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  transition: color 0.4s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}
.brand-pre {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.78;
}
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
/* .brand-mark queda para el footer (que sí lo usa) */
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.nav.scrolled .brand { color: var(--ink); }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  padding: 8px 4px;
}
.nav.scrolled .menu-btn { color: var(--ink); }

.menu-icon {
  width: 28px;
  height: 18px;
  position: relative;
  display: inline-block;
}
.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s ease, opacity 0.3s ease, top 0.4s ease;
}
.menu-icon span:nth-child(1) { top: 4px; }
.menu-icon span:nth-child(2) { top: 13px; width: 70%; }

/* Open state */
body.menu-open .menu-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
body.menu-open .menu-icon span:nth-child(2) {
  top: 9px;
  width: 100%;
  transform: rotate(-45deg);
}

/* ── FIX especificidad: usamos `body.menu-open .nav` para ganar a `.nav.scrolled` ── */
body.menu-open .nav {
  background: transparent !important;
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.menu-open .nav .brand,
body.menu-open .nav .menu-btn { color: var(--cream) !important; }
body.menu-open .nav .lang-current {
  color: var(--cream) !important;
  border-color: rgba(250, 246, 240, 0.45) !important;
  background: transparent !important;
}
body.menu-open .nav .nav-pin { opacity: 0; pointer-events: none; }

/* Fullscreen overlay menu */
/* ════════════════════════════════════════════════════════════════
 *  MENU OVERLAY · Versión editorial
 * ════════════════════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,149,106,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(123,122,92,0.08) 0%, transparent 50%),
    var(--ink);
  color: var(--cream);
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
}
body.menu-open .menu-overlay { transform: translateY(0); }

/* Marca de agua decorativa en el fondo */
.menu-watermark {
  position: absolute;
  bottom: -40px;
  right: -30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 300;
  color: var(--cream);
  opacity: 0.03;
  line-height: 0.85;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.menu-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: flex-start;
  padding: 130px var(--gutter) 60px;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ─── Columna principal ───────────────────────────── */
.menu-col-main { padding-top: 8px; }

.menu-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .5s ease .25s, transform .5s ease .25s;
  display: block;
}
body.menu-open .menu-eyebrow { opacity: 1; transform: translateY(0); }

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.menu-list li {
  overflow: hidden;
  border-bottom: 1px solid rgba(250,246,240,0.07);
}
.menu-list li:first-child { border-top: 1px solid rgba(250,246,240,0.07); }

.menu-list a {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(14px, 1.8vw, 22px) 0;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), color 0.3s ease;
}
body.menu-open .menu-list a { transform: translateY(0); }
.menu-list li:nth-child(1) a { transition-delay: 0.20s; }
.menu-list li:nth-child(2) a { transition-delay: 0.27s; }
.menu-list li:nth-child(3) a { transition-delay: 0.34s; }
.menu-list li:nth-child(4) a { transition-delay: 0.41s; }
.menu-list li:nth-child(5) a { transition-delay: 0.48s; }
.menu-list li:nth-child(6) a { transition-delay: 0.55s; }
.menu-list li:nth-child(7) a { transition-delay: 0.62s; }

.menu-list a .num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--tan);
  opacity: 0.6;
  vertical-align: super;
  flex-shrink: 0;
  min-width: 28px;
  transition: opacity .3s ease, color .3s ease;
}

.menu-list a .txt {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), font-style .3s ease, color .3s ease;
  flex: 1;
}

/* Flecha que aparece al hover (sin tocar el HTML) */
.menu-list a::after {
  content: "→";
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--tan);
  margin-left: auto;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: el texto se mueve, sale la flecha, cambia color */
.menu-list a:hover .txt {
  transform: translateX(14px);
  font-style: italic;
  color: var(--tan);
}
.menu-list a:hover .num {
  opacity: 1;
  color: var(--cream);
}
.menu-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Sidebar (contacto) ───────────────────────────── */
.menu-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}
body.menu-open .menu-side { opacity: 1; transform: translateY(0); }

.menu-side-item h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.menu-side-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--tan);
}

.menu-side-item p,
.menu-side-item a {
  font-family: var(--serif);
  color: rgba(250, 246, 240, 0.82);
  font-size: 17px;
  line-height: 1.55;
  text-decoration: none;
  transition: color .25s ease;
}
.menu-side-item a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* CTA destacado dentro del side */
.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 26px;
  margin-top: 10px;
  background: var(--cream);
  color: var(--ink) !important;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .3s ease, transform .25s ease, color .3s ease;
  width: fit-content;
}
.menu-cta:hover {
  background: var(--bronze);
  color: var(--cream) !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}
.menu-cta-arrow {
  font-size: 16px;
  transition: transform .3s ease;
}
.menu-cta:hover .menu-cta-arrow { transform: translateX(4px); }

/* ─── Footer del menú ─────────────────────────────── */
.menu-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--gutter);
  border-top: 1px solid rgba(250,246,240,0.08);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(250,246,240,0.5);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease .75s, transform .5s ease .75s;
}
body.menu-open .menu-footer { opacity: 1; transform: translateY(0); }
.menu-footer-meta {
  font-style: italic;
  color: var(--tan);
  letter-spacing: 0.08em;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .menu-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
    gap: 50px;
  }
  .menu-side { padding-top: 20px; }
  .menu-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .menu-list a .txt { font-size: clamp(34px, 8vw, 52px); }

  /* Watermark más contenido en móvil para evitar scroll horizontal */
  .menu-watermark {
    font-size: clamp(140px, 42vw, 220px);
    bottom: -20px;
    right: -10px;
  }
  /* Evitar que cualquier hijo desborde por los lados */
  .menu-inner,
  .menu-footer { max-width: 100%; }
  .menu-list a .txt { word-break: break-word; }
}

/* ================ HERO ================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  color: var(--cream);
  padding: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('../../images/dobler1.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: kenburns 18s ease-out forwards;
}

/* FIX PARA MÓVIL: Evita que el navegador oscurezca o ralentice la imagen por culpa de la animación */
@media (max-width: 768px) {
  .hero-img {
    transform: none !important;
    animation: none !important;
  }
}

@keyframes kenburns {
  to { transform: scale(1); }
}

/* Se elimina el linear-gradient oscuro para que la foto se vea original */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(50px, 8vh, 90px);
}
.hero-eyebrow {
  color: rgba(250, 246, 240, 0.9);
  margin-bottom: 26px;
  animation: fadeUp 1.1s 0.3s both;
  text-shadow: 0 1px 14px rgba(20, 18, 15, 0.6);
}
.hero-eyebrow::before { background: rgba(250, 246, 240, 0.7); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 8.5vw, 124px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 30px;
  animation: fadeUp 1.2s 0.45s both;
  /* Sombra para que el cream se lea como cream sobre cualquier zona del hero */
  text-shadow:
    0 2px 24px rgba(20, 18, 15, 0.55),
    0 1px 3px rgba(20, 18, 15, 0.25);
}
.hero h1 .ital { font-style: italic; font-weight: 300; }
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  animation: fadeUp 1.1s 0.7s both;
  padding-right: clamp(80px, 8vw, 110px);
}
.hero-tag {
  max-width: 380px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.95);
  line-height: 1.5;
  text-shadow: 0 1px 14px rgba(20, 18, 15, 0.65);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;             /* +1 grado de peso para más presencia */
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(20, 18, 15, 0.25),
    0 2px 6px  rgba(20, 18, 15, 0.15);  /* elevación visible */
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
}
.hero-cta:hover {
  background: var(--bronze);    /* hover: pasa a cobre para reforzar el call */
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(20, 18, 15, 0.35),
    0 4px 10px  rgba(20, 18, 15, 0.20);
}
.hero-cta .arrow {
  color: var(--bronze);          /* la flecha en cobre desde el estado base */
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
  display: inline-block;
}
.hero-cta:hover .arrow {
  color: var(--cream);           /* en hover se funde con el texto */
  transform: translateX(6px);
}

/* Subtle "breathing" — atrae el ojo sin ser molesto.
   Si te resulta excesivo, comenta este bloque entero. */
@keyframes ctaBreathe {
  0%, 100% {
    box-shadow:
      0 8px 24px rgba(20, 18, 15, 0.25),
      0 2px 6px  rgba(20, 18, 15, 0.15);
  }
  50% {
    box-shadow:
      0 10px 30px rgba(184, 149, 106, 0.35),
      0 2px 6px  rgba(20, 18, 15, 0.15);
  }
}
.hero-cta {
  animation: ctaBreathe 4s ease-in-out infinite;
}
.hero-cta:hover {
  animation: none;  /* parar la respiración al interactuar */
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250, 246, 240, 0.7);
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 760px) {
  .scroll-indicator { display: none; }
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(250, 246, 240, 0.7), transparent);
  animation: scrollPulse 4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ================ INTRO / FILOSOFIA ================ */
.intro {
  background: var(--cream);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.intro-left { position: sticky; top: 130px; }
.intro-quote {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 60px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.intro-quote .accent { color: var(--tan); font-style: normal; }
.intro-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--bronze);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.intro-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.intro-text .first-letter::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--tan);
  font-style: italic;
  font-weight: 400;
}
.signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.signature-names {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.signature-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 2px;
}

/* ================ MARQUEE / TICKER ================ */
/* El espacio entre frases va dentro de cada .ticker-item (padding-right),
   NO con gap en el track. Si lo pones con gap, el translateX(-50%) deja
   medio hueco descuadrado y se ve un salto al reiniciar el bucle. */
.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;  
  will-change: transform;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;        /* se pausa al pasar el cursor */
}
.ticker-item {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  padding-right: 60px;   /* espacio "interno" hasta la siguiente frase */
}
.ticker-item::after {
  content: "✦";
  color: var(--tan);
  font-size: 0.6em;
  font-style: normal;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ================ ESPACIOS / GALLERY ================ */
.spaces {
  background: var(--cream-deep);
}
.spaces-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 80px;
  align-items: end;
}
.spaces-head p { font-size: 17px; line-height: 1.75; max-width: 520px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  pointer-events: none;
  letter-spacing: 0.005em;
}

.gallery-item.a { grid-column: span 7; aspect-ratio: 16 / 11; }
.gallery-item.b { grid-column: span 5; aspect-ratio: 4 / 5; }
.gallery-item.c { grid-column: span 5; aspect-ratio: 4 / 5; }
.gallery-item.d { grid-column: span 7; aspect-ratio: 16 / 11; }

/* ================ HABITACIONES ================ */
.rooms {
  background: var(--cream);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 70px;
}
.room-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.room-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  text-transform: uppercase;
}
.room-name {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.room-name .ital { font-style: italic; }
.room-desc { font-size: 15px; line-height: 1.7; max-width: 360px; }
.room-meta {
  display: flex;
  gap: 20px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ================ PARALLAX QUOTE ================ */
.quote-block {
  position: relative;
  padding: clamp(120px, 18vw, 220px) 0;
  background: url('../../images/dobler4.jpeg') center/cover fixed no-repeat;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.quote-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.5), rgba(20,18,15,0.55));
}
.quote-block .container { position: relative; z-index: 2; }
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  max-width: 1000px;
  margin-inline: auto;
  letter-spacing: -0.01em;
}
.quote-block blockquote::before,
.quote-block blockquote::after {
  content: "“";
  color: var(--tan);
  font-size: 1.1em;
  vertical-align: -0.18em;
  margin: 0 0.06em;
  opacity: 0.85;
}
.quote-block blockquote::after { content: "”"; }
.quote-attr {
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.8);
}

/* ================ AMENIDADES ================ */
.amenities {
  background: var(--cream);
  position: relative;
}
.amenities-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: 80px;
}
.amenities-head p { font-size: 17px; line-height: 1.75; max-width: 520px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.amenity-card {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease;
  position: relative;
}
.amenity-card:hover { background: var(--cream-deep); }
.amenity-icon {
  width: 48px;
  height: 48px;
  color: var(--bronze);
  margin-bottom: 24px;
  transition: transform 0.5s ease, color 0.4s ease;
}
.amenity-card:hover .amenity-icon {
  color: var(--tan);
  transform: rotate(-6deg) scale(1.05);
}
.amenity-icon svg { width: 100%; height: 100%; stroke-width: 1; }
.amenity-title {
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.amenity-title .ital { font-style: italic; color: var(--tan); }
.amenity-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}
.amenity-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-top: 18px;
}
.amenity-list li {
  font-size: 14px;
  color: var(--ink-soft);
  width: 100%;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-list li::before {
  content: "—";
  color: var(--tan);
  font-size: 14px;
  flex-shrink: 0;
}
.amenity-list li:last-child { border-bottom: none; }

/* ================ RONDA / UBICACION ================ */
.ronda {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.ronda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.ronda-text .eyebrow { color: var(--tan); }
.ronda-text .eyebrow::before { background: var(--tan); }
.ronda h2.section-title { color: var(--cream); margin: 30px 0 30px; }
.ronda h2.section-title .ital { color: var(--tan); }
.ronda p { color: rgba(250, 246, 240, 0.75); font-size: 17px; line-height: 1.8; max-width: 520px; }

.ronda-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(250, 246, 240, 0.16);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-num .unit { font-size: 0.45em; color: var(--tan); margin-left: 6px; font-style: italic; }
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
  margin-top: 12px;
}

.ronda-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.ronda-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.ronda-visual::after {
  content: "Serranía de Ronda · Málaga";
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(20, 18, 15, 0.5);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 999px;
}

/* ================ CIERRE ================ */
.closing {
  background: var(--cream-deep);
  text-align: center;
  padding-block: clamp(100px, 14vw, 180px);
}
.closing h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.1;
  max-width: 1100px;
  margin-inline: auto;
  letter-spacing: -0.015em;
}
.closing h2 .ital { font-style: italic; color: var(--tan); }
.closing .lede {
  max-width: 640px;
  margin: 32px auto 0;
}
.closing-cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 42px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.closing-cta:hover { background: var(--tan); transform: translateY(-2px); }
.closing-cta .arrow { transition: transform 0.3s ease; }
.closing-cta:hover .arrow { transform: translateX(4px); }

/* ================ FOOTER ================ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}
.footer-brand .footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  display: block;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(250, 246, 240, 0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 400;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(250, 246, 240, 0.7);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--tan); }
.footer-col p {
  font-size: 14px;
  color: rgba(250, 246, 240, 0.7);
  line-height: 1.8;
}
.footer-col p strong { color: var(--cream); font-weight: 400; }

.socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 246, 240, 0.2);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.socials a:hover {
  background: var(--tan);
  border-color: var(--tan);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250, 246, 240, 0.45);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: rgba(250, 246, 240, 0.55); }
.footer-bottom a:hover { color: var(--tan); }

/* ================ WHATSAPP FLOAT ================ */
/* ⚠️ Latido ralentizado: 4.5s en vez de 2.4s para que no agobie */
.wa-float {
  position: fixed;
  right: clamp(18px, 2.4vw, 30px);
  bottom: clamp(18px, 2.4vw, 30px);
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 4px 16px rgba(0,0,0,0.2);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: wa-pulse 4.5s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}
.wa-float svg { width: 28px; height: 28px; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--ink);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* ================ REVEAL ON SCROLL ================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ================ RESPONSIVE ================ */
@media (max-width: 960px) {
  .menu-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .menu-side { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-left { position: static; }

  .spaces-head { grid-template-columns: 1fr; gap: 24px; }
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .gallery-item.a, .gallery-item.b, .gallery-item.c, .gallery-item.d {
    grid-column: span 6;
    aspect-ratio: 4 / 3;
  }

  .rooms-grid { grid-template-columns: 1fr; gap: 50px; }

  .amenities-head { grid-template-columns: 1fr; gap: 24px; }
  .amenities-grid { grid-template-columns: 1fr; }

  .ronda-grid { grid-template-columns: 1fr; gap: 50px; }
  .ronda-visual { aspect-ratio: 4 / 4; max-height: 70vh; }
  .ronda-stats { gap: 20px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand { grid-column: span 2; }

  .quote-block { background-attachment: scroll; }

  .hero h1 { font-size: clamp(54px, 14vw, 120px); }

  .closing h2 { font-size: clamp(34px, 8vw, 60px); }
}

@media (max-width: 600px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; padding-right: 0; }
  .hero-tag { font-size: 16px; max-width: 100%; }
  .hero-cta { padding: 18px 30px; font-size: 14px; }
  .ronda-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-item.a, .gallery-item.b, .gallery-item.c, .gallery-item.d {
    aspect-ratio: 1 / 1;
  }
  .menu-list a { font-size: 42px; }
  .wa-tooltip { display: none; }
  .nav { padding-inline: 20px; }

  /* Brand: ajustar tamaños en móvil para que quepan los dos textos */
  .brand-name { font-size: 20px; }
  .brand-pre  { font-size: 9px; letter-spacing: 0.28em; }
  .brand { gap: 9px; }

  /* Menú hamburguesa: como en desktop pero ocultando el texto "Menú" */
  .menu-label { display: none; }

  /* Drop-shadow al icono para que las líneas blancas se vean sobre cualquier fondo */
  .menu-icon { filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.55)); }
  body.menu-open .menu-icon { filter: none; }

  /* Sombra sutil también al texto del nav cuando va sobre la imagen del hero */
  .nav:not(.scrolled) .brand { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45); }

  /* Líneas un pelín más gruesas en móvil para más presencia */
  .menu-icon span { height: 1.5px; }

  /* ==============================================================
     HERO MÓVIL — título arriba (sobre el cielo), CTA abajo
     ============================================================== */
  .hero-content {
    justify-content: flex-start;
    padding-top: clamp(105px, 16vh, 140px);
    padding-bottom: clamp(36px, 6vh, 56px);
  }

  .hero-eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(50px, 13vw, 72px);
    line-height: 0.95;
    margin-bottom: 0;
    /* Triple sombra para máximo contraste sobre cualquier zona del cielo */
    text-shadow:
      0 2px 32px rgba(20, 18, 15, 0.85),
      0 1px 6px  rgba(20, 18, 15, 0.55),
      0 0 1px    rgba(20, 18, 15, 0.6);
  }

  .hero-tag {
    text-shadow:
      0 2px 24px rgba(20, 18, 15, 0.9),
      0 1px 3px  rgba(20, 18, 15, 0.6);
  }

  .hero-eyebrow {
    text-shadow: 0 2px 16px rgba(20, 18, 15, 0.85);
  }

  /* Empuja la tagline + CTA al fondo del hero */
  .hero-bottom {
    margin-top: auto;
  }

  /* Gradiente más fuerte arriba para reforzar contraste donde está el título */
  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(20,18,15,0.55) 0%,
        rgba(20,18,15,0.20) 30%,
        rgba(20,18,15,0.05) 50%,
        rgba(20,18,15,0.45) 75%,
        rgba(20,18,15,0.88) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none; transform: none; }
  .quote-block { background-attachment: scroll; }
}

/* ================================================================
   TICKER · velocidad escalada por viewport
   Pantalla más pequeña = items más pequeños = menos contenido que recorrer,
   así que se baja la duración para mantener una sensación de velocidad
   parecida en todos los tamaños. Menos segundos = más rápido.
   ================================================================ */
@media (max-width: 1280px) { .ticker-track { animation-duration: 34s; } }
@media (max-width: 960px)  { .ticker-track { animation-duration: 26s; } }
@media (max-width: 600px)  { .ticker-track { animation-duration: 18s; } }
@media (max-width: 380px)  { .ticker-track { animation-duration: 14s; } }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  AMPLIACIÓN · Cookies · Idioma · Slider · Lightbox · Calendar ║
   ║  Legal · Blog · FAQ                                            ║
   ╚══════════════════════════════════════════════════════════════╝ */


/* ================ NAV-RIGHT + LANG SWITCH ================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  position: relative;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(250, 246, 240, 0.35);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.lang-current:hover { background: rgba(250, 246, 240, 0.12); }

.nav.scrolled .lang-current {
  color: var(--ink);
  border-color: var(--line);
}
.nav.scrolled .lang-current:hover { background: var(--cream-deep); }
body.menu-open .lang-current { color: var(--cream); border-color: rgba(250,246,240,0.35); background: transparent; }

.lang-caret {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}
.lang-switch.open .lang-caret { transform: rotate(180deg); }

.flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  vertical-align: -2px;
}
.flag-es {
  background:
    linear-gradient(to bottom, #AA151B 0 25%, #F1BF00 25% 75%, #AA151B 75% 100%);
}
.flag-en {
  width: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'><clipPath id='uka'><path d='M0,0 v30 h60 v-30 z'/></clipPath><clipPath id='ukb'><path d='M30,15 l30,15 h-30 z M30,15 l-30,15 v-15 z M30,15 l-30,-15 h30 z M30,15 l30,-15 v15 z'/></clipPath><g clip-path='url(%23uka)'><rect width='60' height='30' fill='%23012169'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='4' clip-path='url(%23ukb)'/><path d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/><path d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/></g></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  list-style: none;
  background: var(--cream);
  color: var(--ink);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 48px rgba(20, 18, 15, 0.18), 0 2px 8px rgba(20, 18, 15, 0.08);
  min-width: 168px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 110;
}
.lang-switch.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  transition: background 0.2s ease;
}
.lang-menu a:hover { background: var(--cream-deep); }
.lang-menu a[aria-current="true"] {
  background: var(--cream-deep);
  color: var(--bronze);
  font-weight: 500;
}

.lang-code {
  font-weight: 400;
  letter-spacing: 0.18em;
}

@media (max-width: 600px) {
  .nav-right { gap: 10px; }
  .lang-current { padding: 7px 11px; font-size: 10px; gap: 6px; }
  .lang-code { display: none; }   /* solo bandera en móvil */
  .lang-menu { min-width: 150px; }
}


/* ================ COOKIE BANNER ================ */
.cookie-banner {
  position: fixed;
  left: clamp(14px, 2vw, 30px);
  right: clamp(14px, 2vw, 30px);
  bottom: clamp(14px, 2vw, 30px);
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(20, 18, 15, 0.40), 0 2px 12px rgba(20, 18, 15, 0.20);
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 1180px;
  margin-inline: auto;
}
.cookie-banner.is-open { opacity: 1; transform: translateY(0); }
.cookie-banner-inner {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
.cookie-banner-text h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}
.cookie-banner-text p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.78);
  max-width: 680px;
}
.cookie-more {
  color: var(--tan);
  text-decoration: underline;
  text-decoration-color: rgba(184, 149, 106, 0.4);
  text-underline-offset: 3px;
  margin-left: 4px;
  white-space: nowrap;
}
.cookie-more:hover { color: var(--cream); }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); }

.cookie-btn-ghost {
  color: rgba(250, 246, 240, 0.85);
  background: transparent;
  border-color: rgba(250, 246, 240, 0.25);
}
.cookie-btn-ghost:hover { background: rgba(250,246,240,0.10); color: var(--cream); }

.cookie-btn-line {
  color: rgba(250, 246, 240, 0.9);
  background: transparent;
  border-color: rgba(250, 246, 240, 0.55);
}
.cookie-btn-line:hover { background: rgba(250,246,240,0.10); color: var(--cream); }

.cookie-btn-solid {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.cookie-btn-solid:hover { background: var(--tan); color: var(--cream); border-color: var(--tan); }

/* En el modal (fondo claro) cambiamos colores */
.cookie-modal .cookie-btn-ghost { color: var(--ink-soft); border-color: var(--line); }
.cookie-modal .cookie-btn-ghost:hover { background: var(--cream-deep); color: var(--ink); }
.cookie-modal .cookie-btn-line { color: var(--ink); border-color: var(--ink); }
.cookie-modal .cookie-btn-line:hover { background: var(--ink); color: var(--cream); }
.cookie-modal .cookie-btn-solid { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cookie-modal .cookie-btn-solid:hover { background: var(--tan); border-color: var(--tan); color: var(--cream); }

@media (max-width: 820px) {
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 20px; }
  .cookie-banner-actions { justify-content: flex-start; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; border-radius: 14px; }
  .cookie-btn { padding: 12px 18px; flex: 1; min-width: 0; }
}


/* ================ COOKIE MODAL ================ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cookie-modal.is-open .cookie-modal-backdrop { opacity: 1; }
.cookie-modal-card {
  position: relative;
  z-index: 1;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 18, 15, 0.35);
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}
.cookie-modal.is-open .cookie-modal-card { transform: scale(1) translateY(0); opacity: 1; }

.cookie-modal-head {
  position: relative;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 40px) 20px;
  border-bottom: 1px solid var(--line-soft);
}
.cookie-modal-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.cookie-modal-head h2 .ital { font-style: italic; color: var(--bronze); }
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  transition: background 0.2s ease;
}
.cookie-modal-close:hover { background: var(--cream-deep); }
.cookie-modal-close svg { width: 22px; height: 22px; }

.cookie-modal-body {
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-cat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}
.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-cat h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}
.cookie-cat p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.cookie-pill {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.cookie-pill-locked {
  background: var(--cream-deep);
  color: var(--bronze);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--sand);
  border-radius: 999px;
  transition: background 0.3s ease;
}
.cookie-toggle-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(20, 18, 15, 0.15);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--bronze);
}
.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb {
  transform: translateX(20px);
}
.cookie-toggle input:focus-visible + .cookie-toggle-track {
  outline: 2px solid var(--tan);
  outline-offset: 2px;
}

.cookie-modal-foot {
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  background: var(--cream-deep);
  border-radius: 0 0 20px 20px;
}
@media (max-width: 540px) {
  .cookie-modal-foot { justify-content: stretch; }
  .cookie-modal-foot .cookie-btn { flex: 1; padding: 13px 14px; }
}


/* ================ SLIDER · ESPACIOS ================ */
.slider {
  position: relative;
  --slide-gap: clamp(12px, 2vw, 20px);
}
.slider-viewport {
  overflow: hidden;
  border-radius: 4px;
}
.slider-track {
  display: flex;
  gap: var(--slide-gap);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 calc((100% - var(--slide-gap) * 2) / 3);
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 960px) { .slide { flex-basis: calc((100% - var(--slide-gap)) / 2); } }
@media (max-width: 600px) { .slide { flex-basis: 100%; aspect-ratio: 4 / 5; } }

.slide-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--sand);
}
.slide-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: zoom-in;
  user-select: none;
}
.slide-trigger:hover img { transform: scale(1.04); }

.slide-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Flechas */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(20, 18, 15, 0.18);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 3;
}
.slider-arrow:hover { background: var(--tan); color: var(--cream); transform: translateY(-50%) scale(1.05); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow-prev { left: 14px; }
.slider-arrow-next { right: 14px; }
.slider-arrow[disabled],
.slider-arrow.is-disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
@media (max-width: 600px) { .slider-arrow { width: 42px; height: 42px; } }

/* Dots */
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  cursor: pointer;
  padding: 0;
}
.slider-dot:hover { background: var(--tan); }
.slider-dot.is-active { background: var(--bronze); width: 26px; border-radius: 999px; }

.slider-hint {
  text-align: center;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.7;
}
@media (min-width: 961px) { .slider-hint { display: none; } }


/* ================ LIGHTBOX ================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(20, 18, 15, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox[hidden] { display: none; }

.lightbox-figure {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(250, 246, 240, 0.85);
  text-align: center;
  max-width: 70ch;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  background: rgba(250, 246, 240, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: rgba(250, 246, 240, 0.22); transform: scale(1.05); }

.lightbox-close {
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 48px;
  height: 48px;
}
.lightbox-close svg { width: 22px; height: 22px; }

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
}
.lightbox-arrow:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-arrow svg { width: 26px; height: 26px; }
.lightbox-arrow-prev { left: clamp(14px, 3vw, 32px); }
.lightbox-arrow-next { right: clamp(14px, 3vw, 32px); }

.lightbox-counter {
  position: absolute;
  bottom: clamp(16px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
  background: rgba(20, 18, 15, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-close { width: 42px; height: 42px; }
}


/* ================ FOOTER · enlaces legales ================ */
.footer-legal-links { display: inline-flex; flex-wrap: wrap; gap: 8px 6px; }
.footer-legal-links a { color: rgba(250, 246, 240, 0.55); }
.footer-legal-links a:hover { color: var(--tan); }


/* ================ PÁGINAS LEGALES + FAQ + BLOG ================ */
.legal-page,
.blog-page,
.faq-page,
.avail-page {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 110px;  /* hueco para el nav fijo */
}

.legal-hero,
.faq-hero,
.blog-hero,
.avail-hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}
.legal-hero .container,
.faq-hero .container,
.blog-hero .container,
.avail-hero .container {
  max-width: 880px;
}
.legal-hero h1,
.faq-hero h1,
.blog-hero h1,
.avail-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 22px 0 18px;
  color: var(--ink);
}
.legal-hero h1 .ital,
.faq-hero h1 .ital,
.blog-hero h1 .ital,
.avail-hero h1 .ital { font-style: italic; color: var(--bronze); }
.legal-hero p,
.faq-hero p,
.blog-hero p,
.avail-hero p {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 640px;
}
.legal-meta {
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.legal-body {
  padding: clamp(60px, 8vw, 100px) 0;
}
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--bronze);
}
.legal-body p,
.legal-body li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-color: rgba(139, 111, 71, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-body a:hover { color: var(--terracotta); }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 14px;
}
.legal-body th,
.legal-body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-body th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
  background: var(--cream-deep);
}

/* ================ FAQ ================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--bronze); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
  color: var(--bronze);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.faq-icon svg { width: 14px; height: 14px; }

.faq-answer {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 760px;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }


/* ================ BLOG ================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(60px, 8vw, 100px) 0;
}
.blog-grid .container { display: contents; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.blog-card-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.blog-card-title .ital { font-style: italic; color: var(--bronze); }
.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.blog-card-more {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 4px;
}
.blog-card-more:hover { color: var(--terracotta); }

.post-body {
  padding: clamp(50px, 7vw, 90px) 0;
}
.post-body .container { max-width: 780px; }
.post-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.post-body p.lede-post {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 1.5;
}
.post-body img {
  width: 100%;
  border-radius: 4px;
  margin: 30px 0;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.post-body h2 .ital { font-style: italic; color: var(--bronze); }


/* ================ DISPONIBILIDAD / CALENDARIO ================ */
.avail-page { padding-top: 0; }
.avail-hero { padding-top: 130px; }

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: 40px;
}
@media (max-width: 760px)  { .season-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .season-grid { grid-template-columns: 1fr; } }
.season-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.season-card-head {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  display: flex;
  justify-content: space-between;
}
.season-card-name {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-top: 6px;
}
.season-card-price {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bronze);
}
.season-card-price .price-from {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
}
.season-card-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.avail-section { padding: clamp(50px, 7vw, 90px) 0; }

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cal-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cal-nav-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cal-nav-btn svg { width: 18px; height: 18px; }
.cal-month-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  flex: 1;
  letter-spacing: -0.005em;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.cal-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.cal-legend-dot { width: 14px; height: 14px; border-radius: 4px; }
.cal-legend-free   { background: #6FA978; }
.cal-legend-booked { background: var(--sand-warm); }
.cal-legend-past   { background: var(--cream-deep); border: 1px solid var(--line); }

.calendar-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 1200px) { .calendar-wrapper { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .calendar-wrapper { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .calendar-wrapper { grid-template-columns: 1fr; } }

.cal-month {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
}
.cal-month-name {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  text-align: center;
  margin-bottom: 12px;
  color: var(--ink);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-weekday {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bronze);
  padding: 6px 0 10px;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-deep);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  cursor: default;
  border: 1px solid transparent;
  position: relative;
}
.cal-day.empty { background: transparent; }
.cal-day.past {
  color: rgba(42, 38, 32, 0.30);
  background: var(--cream-deep);
}
.cal-day.booked {
  background: var(--sand-warm);
  color: rgba(42, 38, 32, 0.5);
  text-decoration: line-through;
}
.cal-day.free {
  background: #6FA978;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
}
.cal-day.free:hover {
  background: #5D9266;
  transform: scale(1.05);
  border-color: #4D7A56;
}
.cal-day.free:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.cal-day.today {
  border-color: var(--bronze);
  font-weight: 600;
}

@media (max-width: 600px) {
  .cal-day { font-size: 13px; border-radius: 6px; }
  .cal-month { padding: 16px; }
}


/* ================ HOMOGENEIZAR · ARROW IN BUTTONS ================ */
.closing-cta .arrow,
.hero-cta .arrow { display: inline-block; }


/* ================ FIN AMPLIACIÓN ================ */

/* ──────────────────────────────────────────────────────────────────
 *  AVAIL-PAGE · Versión compacta del hero con chips de precio
 * ────────────────────────────────────────────────────────────────── */
.avail-hero-compact {
  padding-bottom: clamp(28px, 4vw, 48px);
}
.avail-hero .avail-intro {
  max-width: 640px;
  margin-bottom: 32px;
}

/* Chips horizontales con los precios por temporada */
.price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(20,18,15,0.06);
}
.price-chip-season {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--bronze);
}
.price-chip-sep {
  color: var(--sand-warm);
}
.price-chip-amount {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

/* Pequeña distinción cromática por temporada (sutil) */
.price-chip-invierno  { background: linear-gradient(135deg, var(--cream) 0%, #EEF1F2 100%); }
.price-chip-primavera { background: linear-gradient(135deg, var(--cream) 0%, #F2F1E6 100%); }
.price-chip-verano    { background: linear-gradient(135deg, var(--cream) 0%, #F7EDDF 100%); }
.price-chip-otono     { background: linear-gradient(135deg, var(--cream) 0%, #F0E4D5 100%); }

.avail-note {
  margin-top: 22px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.55;
}

/* Calendario: refinar la toolbar y la sección general */
.avail-section {
  padding: clamp(40px, 6vw, 70px) 0 clamp(70px, 9vw, 110px);
}
.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}
.cal-month-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  color: var(--ink);
  min-width: 320px;
  text-align: center;
}
.cal-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .15s ease, border-color .25s ease;
}
.cal-nav-btn:hover:not(:disabled) {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--cream);
}
.cal-nav-btn:active:not(:disabled) { transform: scale(0.96); }
.cal-nav-btn svg { width: 18px; height: 18px; }

/* Con 2 meses queremos verlos lado a lado en escritorio */
.avail-page .calendar-wrapper {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 760px) {
  .avail-page .calendar-wrapper { grid-template-columns: 1fr; }
  .cal-month-title { min-width: 0; font-size: 20px; }
}

/* Ocultar las tarjetas viejas si quedaron renderizadas en cache */
.season-grid { display: none !important; }

/* ──────────────────────────────────────────────────────────────────
 *  NAV en páginas con hero claro (disponibilidad, blog, FAQs, legal):
 *  no es transparente — arranca ya con apariencia sólida para que
 *  el logo, MENÚ y el selector de idioma tengan contraste suficiente.
 * ────────────────────────────────────────────────────────────────── */
body.avail-page  .nav:not(.scrolled),
body.blog-page   .nav:not(.scrolled),
body.faq-page    .nav:not(.scrolled),
body.legal-page  .nav:not(.scrolled) {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

body.avail-page  .brand,
body.blog-page   .brand,
body.faq-page    .brand,
body.legal-page  .brand,
body.avail-page  .menu-btn,
body.blog-page   .menu-btn,
body.faq-page    .menu-btn,
body.legal-page  .menu-btn { color: var(--ink); }

body.avail-page  .lang-current,
body.blog-page   .lang-current,
body.faq-page    .lang-current,
body.legal-page  .lang-current {
  color: var(--ink);
  border-color: var(--line);
}
body.avail-page  .lang-current:hover,
body.blog-page   .lang-current:hover,
body.faq-page    .lang-current:hover,
body.legal-page  .lang-current:hover { background: var(--cream-deep); }

/* Reset cuando el menú está abierto (overlay oscuro): vuelven a ser claros */
body.menu-open .brand,
body.menu-open .menu-btn { color: var(--cream); }
body.menu-open .lang-current { color: var(--cream); border-color: rgba(250,246,240,0.35); }

/* ══════════════════════════════════════════════════════════════════
 *  AVAIL-PAGE · Versión profesional
 *  Hero · Steps · Seasons · Calendar · Why · CTA
 * ══════════════════════════════════════════════════════════════════ */

/* ─── Hero profesional ─────────────────────────────────────────── */
.avail-hero-pro {
  padding-top: 160px;
  padding-bottom: clamp(60px, 8vw, 100px);
  background:
    radial-gradient(circle at 80% 20%, rgba(184,149,106,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(123,122,92,0.06) 0%, transparent 50%),
    var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.avail-hero-pro::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid var(--sand-warm);
  border-radius: 50%;
  opacity: 0.2;
  transform: translateY(-50%);
  pointer-events: none;
}
.avail-hero-pro h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 18px 0 28px;
  max-width: 900px;
}
.avail-hero-pro h1 .ital {
  font-style: italic;
  color: var(--bronze);
}
.avail-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 44px;
}
.avail-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}
.avail-trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.avail-trust svg {
  width: 18px;
  height: 18px;
  color: var(--olive);
  flex-shrink: 0;
}

/* ─── Encabezado de sección reutilizable ──────────────────────── */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(50px, 6vw, 80px);
}
.section-head .eyebrow {
  display: block;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head h2 .ital {
  font-style: italic;
  color: var(--bronze);
}
.section-head-p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Steps (3 pasos) ──────────────────────────────────────────── */
.avail-steps {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(30px, 3vw, 44px) clamp(26px, 2.5vw, 34px);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20,18,15,0.08);
  border-color: var(--sand-warm);
}
.step-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  font-weight: 300;
  color: var(--sand-warm);
  opacity: 0.55;
  line-height: 1;
  letter-spacing: -0.02em;
}
.step-icon {
  width: 52px;
  height: 52px;
  color: var(--bronze);
  margin-bottom: 26px;
}
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  padding-right: 50px;
}
.step-card p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ─── Seasons (tarjetas por temporada) ─────────────────────────── */
.avail-seasons {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream-deep);
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
}
.season-pro-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 24px 30px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.season-pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(20,18,15,0.07);
  border-color: var(--bronze);
}
.season-pro-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: var(--bronze);
  display: grid;
  place-items: center;
}
.season-pro-icon svg { width: 100%; height: 100%; }
.season-pro-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 4px;
}
.season-pro-months {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.season-pro-divider {
  width: 36px;
  height: 1px;
  background: var(--sand-warm);
  margin: 0 auto 18px;
}
.season-pro-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.season-pro-from {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.season-pro-amount {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.season-pro-max {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
  font-style: italic;
}
@media (max-width: 960px) { .seasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .seasons-grid { grid-template-columns: 1fr; } }

/* ─── Calendar section (marco profesional) ─────────────────────── */
.avail-calendar-section {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream);
}
.calendar-frame {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 50px) clamp(20px, 3vw, 40px);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(20,18,15,0.05);
}

/* ─── Why directly (4 razones) ─────────────────────────────────── */
.avail-why {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream-deep);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1180px;
  margin: 0 auto;
}
.why-card {
  text-align: center;
  padding: 0 8px;
}
.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  color: var(--bronze);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.why-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── CTA final ────────────────────────────────────────────────── */
.avail-cta {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.avail-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.avail-cta .eyebrow {
  color: var(--bronze);
}
.avail-cta h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin: 16px 0 18px;
}
.avail-cta h2 .ital {
  font-style: italic;
  color: var(--bronze);
}
.avail-cta > .container > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(250,246,240,0.75);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.55;
}
.avail-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.btn-wa, .btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--sans);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  min-width: 240px;
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37,211,102,0.25);
}
.btn-mail {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--cream);
}
.btn-mail:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-wa svg, .btn-mail svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.btn-wa span, .btn-mail span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}
.btn-wa small, .btn-mail small {
  font-size: 12.5px;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin-top: 2px;
}
.btn-wa > div, .btn-mail > div {
  text-align: left;
}

/* ══════════════════════════════════════════════════════════════════
 *  BLOG POST · Nuevo diseño editorial
 *  Hero full · Meta bar · Lede · Sections numeradas · Tips ·
 *  Pull quotes · Image blocks · Galleries · Route grid · CTA final
 * ══════════════════════════════════════════════════════════════════ */

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* ─── Hero full con imagen de fondo ──────────────────────────── */
.post-hero-full {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(50px, 7vw, 90px);
  padding-top: 140px;
  color: var(--cream);
}
.post-hero-content {
  max-width: 920px;
  position: relative;
  z-index: 2;
}
.post-hero-full h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 22px 0 24px;
  max-width: 900px;
}
.post-hero-full h1 .ital {
  font-style: italic;
  color: #E2BB8B;
}
.post-hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  color: rgba(250,246,240,0.92);
  max-width: 560px;
  line-height: 1.5;
}
.eyebrow-light {
  color: rgba(250,246,240,0.85);
}

/* ─── Meta bar (fecha, lectura, autor) ────────────────────────── */
.post-meta-bar {
  background: var(--cream-deep);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.post-meta-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.post-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--bronze);
}
.post-meta-author {
  font-style: italic;
  color: var(--bronze);
}

/* ─── Sección base del post ───────────────────────────────────── */
.post-section {
  padding: clamp(40px, 5vw, 60px) 0;
}
.post-section p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.post-section p strong { color: var(--bronze); font-weight: 500; }
.post-section p em { color: var(--ink); font-style: italic; }

/* Lede / intro destacada */
.post-lede {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px) !important;
  line-height: 1.5 !important;
  color: var(--ink) !important;
  border-left: 3px solid var(--bronze);
  padding-left: clamp(20px, 3vw, 32px);
  margin: 20px 0 30px;
}

/* ─── Section head con número grande estilizado ───────────────── */
.post-section-head {
  margin-bottom: 30px;
  position: relative;
}
.post-section-head.post-section-head-center {
  text-align: center;
}
.post-section-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(60px, 8vw, 100px);
  line-height: 0.9;
  color: var(--sand-warm);
  opacity: 0.65;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.post-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.post-section-head h2 .ital { font-style: italic; color: var(--bronze); }
.post-section-sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 !important;
}

/* ─── Quick facts (chips inline) ──────────────────────────────── */
.post-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.fact-chip svg {
  width: 15px;
  height: 15px;
  color: var(--bronze);
  flex-shrink: 0;
}

/* ─── Image wide (full-width dentro del flujo) ────────────────── */
.post-image-wide {
  margin: clamp(36px, 5vw, 60px) 0;
}
.post-image-wide img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}
.post-image-caption {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: var(--ink-soft) !important;
  text-align: center;
  margin: 14px auto 0 !important;
  max-width: 720px;
  padding: 0 20px;
}

/* ─── Tip box ─────────────────────────────────────────────────── */
.post-tip {
  background: var(--cream-deep);
  border-left: 3px solid var(--bronze);
  padding: 22px 26px;
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.post-tip-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--bronze);
  margin-top: 2px;
}
.post-tip-icon svg { width: 100%; height: 100%; }
.post-tip-content h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 8px;
}
.post-tip-content p {
  font-family: var(--serif) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  color: var(--ink) !important;
}

/* ─── Pull quote (cita destacada) ─────────────────────────────── */
.post-pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
  max-width: 760px;
  margin: clamp(50px, 7vw, 80px) auto;
  padding: 0;
  border: none;
  position: relative;
}
.post-pullquote::before,
.post-pullquote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--bronze);
  margin: 28px auto;
}
.post-pullquote-attr {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 12px;
}

/* ─── Gallery (2 fotos lado a lado) ───────────────────────────── */
.post-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: clamp(30px, 4vw, 50px) 0;
}
.post-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
@media (max-width: 640px) {
  .post-gallery { grid-template-columns: 1fr; }
}

/* ─── Route grid (días de viaje en columnas) ──────────────────── */
.post-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 20px;
}
.route-day {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  padding: 28px 24px;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.route-day:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20,18,15,0.07);
}
.route-day-num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}
.route-day h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.route-day p {
  font-family: var(--sans) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--ink-soft) !important;
  margin: 0 !important;
}
@media (max-width: 860px) {
  .post-route-grid { grid-template-columns: 1fr; }
}

/* ─── CTA final del post ──────────────────────────────────────── */
.post-cta-final {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center;
  margin-top: clamp(40px, 6vw, 80px);
}
.post-cta-content {
  position: relative;
  z-index: 2;
}
.post-cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin: 18px auto 22px;
  max-width: 800px;
}
.post-cta-final h2 .ital { font-style: italic; color: #E2BB8B; }
.post-cta-final > .container > p,
.post-cta-content > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(250,246,240,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.post-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn-primary-lg, .btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn-primary-lg {
  background: var(--cream);
  color: var(--ink);
}
.btn-primary-lg:hover {
  background: var(--bronze);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost-lg {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,246,240,0.5);
}
.btn-ghost-lg:hover {
  background: rgba(250,246,240,0.1);
  border-color: var(--cream);
}

/* ══════════════════════════════════════════════════════════════════
 *  BLOG INDEX · Featured post + grid de cards profesional
 * ══════════════════════════════════════════════════════════════════ */

/* ─── Hero del index ──────────────────────────────────────────── */
.blog-index-hero {
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(50px, 7vw, 90px);
  background: var(--cream-deep);
  text-align: center;
}
.blog-index-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 22px auto 22px;
  max-width: 900px;
}
.blog-index-hero h1 .ital { font-style: italic; color: var(--bronze); }
.blog-index-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Featured post (post destacado grande) ───────────────────── */
.blog-featured {
  padding: clamp(50px, 7vw, 90px) 0;
  background: var(--cream);
}
.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  text-decoration: none;
  color: inherit;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform .35s ease;
}
.featured-card:hover { transform: translateY(-3px); }
.featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.featured-card:hover .featured-image img { transform: scale(1.04); }
.featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.featured-body { padding: 10px 0; }
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.featured-category {
  font-weight: 500;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.featured-sep { color: var(--sand-warm); }
.featured-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.featured-title .ital { font-style: italic; color: var(--bronze); }
.featured-excerpt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.featured-more {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  position: relative;
  display: inline-block;
}
.featured-more::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0.6);
  transform-origin: left;
  transition: transform .3s ease;
}
.featured-card:hover .featured-more::after { transform: scaleX(1); }
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
}

/* ─── Lista de posts (resto) ──────────────────────────────────── */
.blog-list {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
  background: var(--cream-deep);
}
.blog-list-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.blog-list-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 14px;
}
.blog-list-head h2 .ital { font-style: italic; color: var(--bronze); }

.blog-grid-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card-pro {
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.blog-card-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20,18,15,0.08);
}
.blog-card-pro-img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card-pro:hover .blog-card-pro-img img { transform: scale(1.05); }
.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20,18,15,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 6px 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.blog-card-pro-body { padding: 26px 28px 30px; }
.blog-card-pro-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.blog-card-pro-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-card-pro-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease;
}
.blog-card-pro-title a:hover { color: var(--bronze); }
.blog-card-pro-title .ital { font-style: italic; color: var(--bronze); }
.blog-card-pro-excerpt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-card-pro-more {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
}
.blog-card-pro-more:hover { color: var(--ink); }

@media (max-width: 760px) {
  .blog-grid-pro { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
 *  AÑADIDOS · Cómo llegar + Vale regalo
 *  Pegar al FINAL de tu /assets/css/style.css
 * ══════════════════════════════════════════════════════════════════ */


/* ─── NAV · Botón "Cómo llegar" dentro de .nav-right ────────────── */
.nav-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 13px;
  border: 1px solid rgba(250, 246, 240, 0.45);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease;
  white-space: nowrap;
}
.nav-pin:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-1px);
}
.nav-pin-icon { width: 15px; height: 15px; flex-shrink: 0; }

/* Cuando se hace scroll, igual que el resto: pasa a tinta */
.nav.scrolled .nav-pin {
  color: var(--ink);
  border-color: rgba(42, 38, 32, 0.25);
}
.nav.scrolled .nav-pin:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Cuando el menú overlay está abierto, ocultar el pin para que no pise */
body.menu-open .nav-pin { opacity: 0; pointer-events: none; }

/* Móvil: sólo icono para no saturar el nav-right */
@media (max-width: 720px) {
  .nav-pin {
    padding: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }
  .nav-pin-text { display: none; }
  .nav-pin-icon { width: 16px; height: 16px; }
}


/* ─── SECCIÓN · Cómo llegar ─────────────────────────────────────── */
.como-llegar {
  background: var(--cream-deep);
  padding-block: clamp(70px, 10vw, 130px);
}
.cl-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}
.cl-head .section-title { margin-top: 18px; margin-bottom: 22px; }
.cl-lede { font-size: clamp(17px, 1.6vw, 21px); }

.cl-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
}

.cl-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.08);
  min-height: 460px;
  background: var(--sand);
}
.cl-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.cl-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(28px, 3vw, 38px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.cl-info-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cl-info-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.cl-info-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.cl-info-text em { font-style: italic; color: var(--bronze); }

.cl-distances {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
}
.cl-distances li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--line);
}
.cl-distances li:last-child { border-bottom: none; padding-bottom: 0; }
.cl-distances li span:last-child {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 15px;
}

.cl-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .25s ease, border-color .3s ease;
  border: 1px solid transparent;
}
.cl-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cl-btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.cl-btn-primary:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}
.cl-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.cl-btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cl-tip {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.cl-tip span { color: var(--tan); margin-right: 6px; }

@media (max-width: 920px) {
  .cl-grid { grid-template-columns: 1fr; }
  .cl-map-wrap {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}


/* ─── Hero compacto y CTA final de la PÁGINA Cómo llegar ───────── */
.cl-page { background: var(--cream); }

.cl-hero {
  background: var(--cream-deep);
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(50px, 7vw, 90px);
  text-align: center;
}
.cl-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 22px auto 22px;
  max-width: 900px;
}
.cl-hero h1 .ital { font-style: italic; color: var(--bronze); }
.cl-hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* La sección del mapa, cuando vive en la página propia, lleva
   menos padding-top porque ya hay un hero arriba.                */
.como-llegar-page { padding-top: clamp(50px, 7vw, 90px); }

/* CTA final con WhatsApp */
.cl-cta {
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cl-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cl-cta::after {
  content: "✦";
  position: absolute;
  bottom: -60px;
  right: 40px;
  font-family: var(--serif);
  font-size: 280px;
  color: var(--cream);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cl-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cl-cta .eyebrow {
  color: var(--tan);
  margin-bottom: 18px;
}
.cl-cta .eyebrow::before { background: var(--tan); }
.cl-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
}
.cl-cta h2 .ital { font-style: italic; color: #E2BB8B; }
.cl-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(250, 246, 240, 0.78);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cl-cta-btn {
  background: var(--cream);
  color: var(--ink);
  padding: 17px 30px;
}
.cl-cta-btn:hover {
  background: var(--bronze);
  color: var(--cream);
  transform: translateY(-2px);
}
.cl-cta-btn svg { width: 18px; height: 18px; }


/* ══════════════════════════════════════════════════════════════════
 *  AÑADIDOS · Cómo llegar + Vale regalo
 *  Pegar al FINAL de tu /assets/css/style.css
 *  (sobrescribe la versión anterior por completo)
 * ══════════════════════════════════════════════════════════════════ */


/* ─── NAV · Botón "Cómo llegar" dentro de .nav-right ────────────── */
.nav-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 13px;
  border: 1px solid rgba(250, 246, 240, 0.45);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease;
  white-space: nowrap;
}
.nav-pin:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-1px);
}
.nav-pin-icon { width: 15px; height: 15px; flex-shrink: 0; }

.nav.scrolled .nav-pin {
  color: var(--ink);
  border-color: rgba(42, 38, 32, 0.25);
}
.nav.scrolled .nav-pin:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

body.menu-open .nav-pin { opacity: 0; pointer-events: none; }

.nav-pin.is-active {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.nav.scrolled .nav-pin.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

@media (max-width: 720px) {
  .nav-pin {
    padding: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }
  .nav-pin-text { display: none; }
  .nav-pin-icon { width: 16px; height: 16px; }
}


/* ─── SECCIÓN · Cómo llegar (mapa + info) ───────────────────────── */
.como-llegar {
  background: var(--cream-deep);
  padding-block: clamp(70px, 10vw, 130px);
}
.cl-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}
.cl-head .section-title { margin-top: 18px; margin-bottom: 22px; }
.cl-lede { font-size: clamp(17px, 1.6vw, 21px); }

.cl-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
}

.cl-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.08);
  min-height: 460px;
  background: var(--sand);
}
.cl-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.cl-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(28px, 3vw, 38px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.cl-info-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cl-info-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.cl-info-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.cl-info-text em { font-style: italic; color: var(--bronze); }

.cl-distances {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
}
.cl-distances li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--line);
}
.cl-distances li:last-child { border-bottom: none; padding-bottom: 0; }
.cl-distances li span:last-child {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 15px;
}

.cl-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .25s ease, border-color .3s ease;
  border: 1px solid transparent;
}
.cl-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cl-btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.cl-btn-primary:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}
.cl-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.cl-btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cl-tip {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.cl-tip span { color: var(--tan); margin-right: 6px; }

@media (max-width: 920px) {
  .cl-grid { grid-template-columns: 1fr; }
  .cl-map-wrap {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}


/* ─── Hero + CTA de la PÁGINA cómo-llegar.php ──────────────────── */
.cl-page { background: var(--cream); }

.cl-hero {
  background: var(--cream-deep);
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(50px, 7vw, 90px);
  text-align: center;
}
.cl-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 22px auto 22px;
  max-width: 900px;
}
.cl-hero h1 .ital { font-style: italic; color: var(--bronze); }
.cl-hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.como-llegar-page { padding-top: clamp(50px, 7vw, 90px); }

.cl-cta {
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cl-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cl-cta::after {
  content: "Doble-R";
  position: absolute;
  bottom: -30px;
  right: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 18vw, 220px);
  color: var(--cream);
  opacity: 0.05;
  line-height: 0.85;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.cl-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cl-cta .eyebrow {
  color: var(--tan);
  margin-bottom: 18px;
}
.cl-cta .eyebrow::before { background: var(--tan); }
.cl-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
}
.cl-cta h2 .ital { font-style: italic; color: #E2BB8B; }
.cl-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(250, 246, 240, 0.78);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cl-cta-btn {
  background: var(--cream);
  color: var(--ink);
  padding: 17px 30px;
}
.cl-cta-btn:hover {
  background: var(--bronze);
  color: var(--cream);
  transform: translateY(-2px);
}
.cl-cta-btn svg { width: 18px; height: 18px; }


/* ══════════════════════════════════════════════════════════════════
 *  VALE REGALO · Sección editorial light en disponibilidad.php
 * ══════════════════════════════════════════════════════════════════ */
.gift-section {
  position: relative;
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--cream-deep);
  overflow: hidden;
  isolation: isolate;
}

/* Marca de agua "Doble-R" — mismo lenguaje visual que .menu-watermark */
.gift-watermark {
  position: absolute;
  bottom: -8%;
  right: -3%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(180px, 28vw, 380px);
  color: var(--ink);
  opacity: 0.045;
  line-height: 0.85;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* Cabecera editorial */
.gift-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(45px, 6vw, 70px);
}
.gift-head .eyebrow { margin-bottom: 18px; }
.gift-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
}
.gift-title .ital {
  font-style: italic;
  color: var(--bronze);
}
.gift-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* Grid de tarjetas */
.gift-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(40px, 5vw, 60px);
  align-items: stretch;
}

.gift-option {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 38px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}
.gift-option::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--tan) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gift-option:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(20, 18, 15, 0.10);
  border-color: rgba(184, 149, 106, 0.35);
}
.gift-option:hover::after { opacity: 1; }

/* Tarjeta destacada (la del medio) */
.gift-option-featured {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-color: rgba(184, 149, 106, 0.3);
}
.gift-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--bronze);
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 3;
}

/* Icono */
.gift-option-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  background: var(--cream-deep);
  border-radius: 50%;
  transition: background .4s ease, transform .4s ease;
}
.gift-option-icon svg { width: 28px; height: 28px; }
.gift-option:hover .gift-option-icon {
  background: var(--sand);
  transform: scale(1.05);
}
.gift-option-featured .gift-option-icon { background: #fff; }

/* Label + título + descripción */
.gift-option-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gift-option-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--bronze);
}
.gift-option-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
}
.gift-option-title .ital {
  font-style: italic;
  color: var(--bronze);
}
.gift-option-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

/* CTA WhatsApp dentro de cada tarjeta */
.gift-option-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .25s ease, border-color .3s ease;
}
.gift-option-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.gift-option-cta:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.gift-option-featured .gift-option-cta {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.gift-option-featured .gift-option-cta:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

/* Nota inferior */
.gift-foot {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.gift-foot-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 10px;
}
.gift-foot-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .gift-options { grid-template-columns: 1fr; }
  .gift-watermark {
    font-size: clamp(140px, 38vw, 220px);
    bottom: -4%;
  }
}

/* ══════════════════════════════════════════════════════════════════
 *  PATCH · nav-pin en páginas con fondo claro
 *  ────────────────────────────────────────────────────────────────
 *  En páginas como disponibilidad, cómo llegar, blog… (sin hero
 *  oscuro), el nav-pin debe arrancar directamente en color tinta
 *  para que sea visible sin tener que hacer scroll.
 *
 *  Pegar al FINAL de /assets/css/style.css
 * ══════════════════════════════════════════════════════════════════ */
 
.avail-page .nav-pin,
.cl-page .nav-pin,
.blog-page .nav-pin,
.blog .nav-pin {
  color: var(--ink);
  border-color: rgba(42, 38, 32, 0.25);
}
 
.avail-page .nav-pin:hover,
.cl-page .nav-pin:hover,
.blog-page .nav-pin:hover,
.blog .nav-pin:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
 
/* Estado activo (cuando estás dentro de la página Cómo llegar) */
.avail-page .nav-pin.is-active,
.cl-page .nav-pin.is-active,
.blog-page .nav-pin.is-active,
.blog .nav-pin.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ================ FIXES DE MÓVIL (MÁXIMO 768PX) ================ */
@media (max-width: 768px) {
  /* 1. Forzamos a que el fondo del Hero tape cualquier color inferior */
  .hero {
    background-color: var(--cream) !important;
  }

  /* 2. Anulamos por completo el pseudoelemento en móvil para asegurar transparencia limpia */
  .hero::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  /* 3. Estabilizamos la imagen de fondo sin efectos raros de escala del navegador */
  .hero-img {
    transform: none !important;
    animation: none !important;
    background-attachment: scroll !important; /* Evita fallos de repintado en iOS */
  }
}

@media (max-width: 576px) {
  .avail-page .price-chips {
    display: block;
    width: 100%;
    padding: 0 8px;
  }
  
  .avail-page .price-chip-info {
    display: block !important;
    height: auto !important;
    padding: 12px 16px !important;
    text-align: center;
    line-height: 1.4;
  }
  
  .avail-page .price-chip-info .price-chip-sep {
    display: none; /* Escondemos el punto separador en móvil */
  }
  
  .avail-page .price-chip-info .price-chip-season {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
  }
  
  .avail-page .price-chip-info .price-chip-amount {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════════════
 *  TEST · NAV en negro sobre hero limpio (sin gradiente)
 * ══════════════════════════════════════════════════════════════════ */

/* Nav en estado hero (no scrolled): todo en tinta */
.nav:not(.scrolled) .brand,
.nav:not(.scrolled) .menu-btn,
.nav:not(.scrolled) .nav-pin,
.nav:not(.scrolled) .lang-current {
  color: var(--ink);
}

/* Bordes oscuros para el pin "Cómo llegar" y el selector de idioma */
.nav:not(.scrolled) .nav-pin {
  border-color: rgba(42, 38, 32, 0.45);
}
.nav:not(.scrolled) .lang-current {
  border-color: rgba(42, 38, 32, 0.45);
}

/* Hover coherente con el estado oscuro */
.nav:not(.scrolled) .nav-pin:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.nav:not(.scrolled) .lang-current:hover {
  background: rgba(42, 38, 32, 0.08);
}

/* Sin text-shadow */
.nav:not(.scrolled) .brand,
.nav:not(.scrolled) .menu-btn,
.nav:not(.scrolled) .nav-pin,
.nav:not(.scrolled) .lang-current {
  text-shadow: none;
}

/* ─── Página Cómo llegar (sigue necesitando su body class) ──────── */
body.cl-page .nav:not(.scrolled) {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
/* En la página Cómo llegar: nav arranca sólido como en avail/blog/faq/legal */
body.cl-page .nav:not(.scrolled) {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
body.cl-page .brand,
body.cl-page .menu-btn { color: var(--ink); }

body.cl-page .lang-current,
body.cl-page .nav-pin {
  color: var(--ink);
  border-color: var(--line);
}
body.cl-page .lang-current:hover,
body.cl-page .nav-pin:hover { background: var(--cream-deep); }

/* Y como en cl-page el nav ya es claro, anulamos el text-shadow */
body.cl-page .nav:not(.scrolled) .menu-btn,
body.cl-page .nav:not(.scrolled) .nav-pin,
body.cl-page .nav:not(.scrolled) .lang-current {
  text-shadow: none;
}

/* ─── Hero eyebrow: negro en móvil, cream en desktop ─────────── */
@media (max-width: 768px) {
  .hero-eyebrow {
    color: var(--ink);
    text-shadow: none;
  }
  .hero-eyebrow::before {
    background: var(--ink);
  }
}

/* ─── Fix: nav-pin activo en página Cómo llegar (estado no scrolled) ── */
body.cl-page .nav:not(.scrolled) .nav-pin.is-active {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42, 38, 32, 0.45);
}
body.cl-page .nav:not(.scrolled) .nav-pin.is-active:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ─── Mismo fix pero para estado scrolled en Cómo llegar ── */
body.cl-page .nav.scrolled .nav-pin.is-active {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42, 38, 32, 0.45);
}
body.cl-page .nav.scrolled .nav-pin.is-active:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ══════════════════════════════════════════════════════════════════
 *  404 · Página de error estilizada minimalista
 * ══════════════════════════════════════════════════════════════════ */

.error404-page {
  background: var(--cream);
}

.error404 {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(100px, 14vh, 160px) 0 clamp(80px, 10vh, 120px);
}

/* Imagen de fondo · muy desaturada y oscurecida */
.error404-bg {
  position: absolute;
  inset: 0;
  background: url('../../images/dobler15.jpeg') center/cover no-repeat;
  filter: grayscale(45%) brightness(0.55) contrast(0.95);
  z-index: 0;
}

.error404-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20,18,15,0.35) 0%, rgba(20,18,15,0.78) 75%, rgba(20,18,15,0.92) 100%);
  z-index: 1;
}

.error404-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  color: var(--cream);
}

.error404-content .eyebrow {
  color: var(--bronze);
  margin-bottom: 32px;
  justify-content: center;
}
.error404-content .eyebrow::before {
  background: var(--bronze);
}

.error404-num {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: rgba(250, 246, 240, 0.18);
  font-style: italic;
}

.error404-content h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 32px;
  color: var(--cream);
}
.error404-content h1 .ital {
  font-style: italic;
  color: var(--bronze);
}

.error404-text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 19px);
  font-style: italic;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 48px;
  color: rgba(250, 246, 240, 0.85);
}

/* Acciones */
.error404-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.error404-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.error404-btn .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.error404-btn:hover .arrow { transform: translateX(5px); }

.error404-btn-line {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.4);
}
.error404-btn-line:hover {
  background: rgba(250, 246, 240, 0.08);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.error404-btn-solid {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.error404-btn-solid:hover {
  background: var(--bronze);
  color: var(--cream);
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.30);
}

.error404-fineprint {
  font-size: 13px;
  color: rgba(250, 246, 240, 0.55);
  line-height: 1.6;
}
.error404-fineprint a {
  color: var(--cream);
  border-bottom: 1px solid rgba(250, 246, 240, 0.3);
  transition: border-color 0.3s ease;
}
.error404-fineprint a:hover {
  border-color: var(--bronze);
}

/* Responsive */
@media (max-width: 600px) {
  .error404 {
    min-height: calc(100vh - 64px);
    padding: 80px 0 60px;
  }
  .error404-num { font-size: 72px; }
  .error404-content h1 { font-size: 36px; }
  .error404-text { font-size: 16px; margin-bottom: 36px; }
  .error404-actions { flex-direction: column; gap: 12px; }
  .error404-btn { width: 100%; justify-content: center; }
}

/* ─── Nav sobre la 404 ─────────────────────────────────────────── */

body.error404-page .nav,
body.error404-page .nav.scrolled {
  background: transparent !important;
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.error404-page .nav,
body.error404-page .nav *,
body.error404-page .nav.scrolled,
body.error404-page .nav.scrolled * {
  color: var(--cream) !important;
}

body.error404-page .nav .nav-pin,
body.error404-page .nav.scrolled .nav-pin,
body.error404-page .nav .lang-current,
body.error404-page .nav.scrolled .lang-current {
  border-color: rgba(250, 246, 240, 0.45) !important;
  background: transparent !important;
}

body.error404-page .nav .nav-pin:hover,
body.error404-page .nav .lang-current:hover {
  background: rgba(250, 246, 240, 0.10) !important;
  border-color: var(--cream) !important;
}

body.error404-page .nav .menu-icon span,
body.error404-page .nav.scrolled .menu-icon span {
  background: var(--cream) !important;
}

body.error404-page main.error404 {
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════════════════
 *  TESTIMONIOS · Tira deslizante con scroll infinito (v2 limpia)
 * ══════════════════════════════════════════════════════════════════ */

section.testimonials {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--cream);
  overflow: hidden;
}

section.testimonials .testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 7vh, 80px);
}

section.testimonials .testimonials-head .eyebrow {
  justify-content: center;
  color: var(--bronze);
  margin-bottom: 28px;
}
section.testimonials .testimonials-head .eyebrow::before {
  background: var(--bronze);
}

section.testimonials .testimonials-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
section.testimonials .testimonials-head h2 .ital {
  font-style: italic;
  color: var(--bronze);
}

section.testimonials .testimonials-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft, #5a5246);
  line-height: 1.6;
  margin: 0;
}

/* ─── Tira deslizante ──────────────────────────────────────────── */
section.testimonials .testimonials-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

section.testimonials .testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: tmove 90s linear infinite;
  will-change: transform;
}

@keyframes tmove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

section.testimonials .testimonials-track-wrap:hover .testimonials-track {
  animation-play-state: paused;
}

/* ─── Card · MÁXIMA ESPECIFICIDAD ──────────────────────────────── */
section.testimonials article.testimonial-card {
  flex: 0 0 380px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: var(--ink) !important;
  border: 1px solid rgba(42, 38, 32, 0.10) !important;
  border-radius: 16px !important;
  padding: 32px 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.04) !important;
  opacity: 1 !important;
  filter: none !important;
  backdrop-filter: none !important;
}

section.testimonials article.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 18, 15, 0.10) !important;
}

section.testimonials article.testimonial-card .testimonial-rating {
  color: var(--bronze) !important;
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 1;
}

section.testimonials article.testimonial-card .testimonial-quote {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink) !important;
  margin: 0;
  font-style: italic;
  font-weight: 300;
  position: relative;
  flex: 1;
  opacity: 1 !important;
  background: transparent !important;
}
section.testimonials article.testimonial-card .testimonial-quote .quote-mark {
  font-size: 28px;
  color: var(--bronze) !important;
  font-style: normal;
  margin-right: 4px;
  vertical-align: -4px;
  font-family: var(--serif);
  line-height: 0;
}

section.testimonials article.testimonial-card .testimonial-foot {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  gap: 16px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 38, 32, 0.10) !important;
  background: transparent !important;
}

section.testimonials article.testimonial-card .testimonial-author {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px;
}
section.testimonials article.testimonial-card .t-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink) !important;
  letter-spacing: 0.02em;
  opacity: 1 !important;
}
section.testimonials article.testimonial-card .t-meta {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft, #5a5246) !important;
  opacity: 0.75 !important;
  letter-spacing: 0.04em;
}

section.testimonials article.testimonial-card .testimonial-source {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-end;
}
section.testimonials article.testimonial-card .testimonial-source-booking {
  background: rgba(0, 53, 128, 0.10) !important;
  color: #003580 !important;
}
section.testimonials article.testimonial-card .testimonial-source-google {
  background: rgba(66, 133, 244, 0.10) !important;
  color: #1a73e8 !important;
}

/* ─── CTA Dejar reseña ─────────────────────────────────────────── */
section.testimonials .testimonials-cta {
  text-align: center;
  margin-top: clamp(50px, 7vh, 80px);
}

section.testimonials .testimonials-cta-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink);
  margin: 0 0 28px;
  line-height: 1.5;
}

section.testimonials .testimonials-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

section.testimonials .review-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px;
  padding: 14px 24px;
  background: #ffffff !important;
  border: 1px solid rgba(42, 38, 32, 0.18) !important;
  border-radius: 999px;
  font-family: var(--sans);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.05);
  min-width: 230px;
}
section.testimonials .review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 18, 15, 0.12);
  border-color: var(--ink) !important;
}

section.testimonials .review-logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

section.testimonials .review-btn-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1.15;
  flex: 1;
  text-align: left;
}
section.testimonials .review-btn-line1 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft, #5a5246) !important;
  opacity: 0.7;
}
section.testimonials .review-btn-line2 {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink) !important;
  letter-spacing: 0.01em;
}

section.testimonials .review-btn-arrow {
  font-size: 16px;
  color: var(--bronze) !important;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
section.testimonials .review-btn:hover .review-btn-arrow { transform: translateX(4px); }

section.testimonials .testimonials-cta-foot {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft, #5a5246);
  margin: 0;
}
section.testimonials .see-all-link {
  color: var(--ink) !important;
  border-bottom: 1px solid rgba(42, 38, 32, 0.18);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}
section.testimonials .see-all-link:hover { border-color: var(--bronze) !important; }
section.testimonials .dot-sep {
  margin: 0 12px;
  opacity: 0.4;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  section.testimonials .testimonials-track {
    gap: 18px;
    animation-duration: 120s;
  }
  section.testimonials article.testimonial-card {
    flex: 0 0 300px !important;
    padding: 26px 22px 20px !important;
  }
  section.testimonials article.testimonial-card .testimonial-quote { font-size: 15px; }
  section.testimonials .testimonials-cta-buttons { flex-direction: column; align-items: center; }
  section.testimonials .review-btn { width: 100%; max-width: 280px; }
  section.testimonials .testimonials-cta-foot { font-size: 11px; }
  section.testimonials .dot-sep { display: block; margin: 8px 0; }
}

/* ─── Accesibilidad · reducir movimiento ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  section.testimonials .testimonials-track { animation: none; }
  section.testimonials .testimonials-track-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  section.testimonials article.testimonial-card { scroll-snap-align: start; }
}

/* ─── Botones de reseña: tercera línea con puntuaciones ──────────── */

section.testimonials .review-btn {
  padding: 16px 26px;
  min-width: 260px;
}

section.testimonials .review-btn-line3 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft, #5a5246);
  opacity: 0.85;
  letter-spacing: 0.02em;
}

section.testimonials .rb-stars {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1;
}
section.testimonials .rb-value {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

section.testimonials .rb-booking-pill {
  display: inline-flex;
  align-items: baseline;
  background: #003580;
  color: #ffffff !important;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
section.testimonials .rb-booking-slash {
  opacity: 0.7;
  margin: 0 1px;
  font-weight: 400;
}
section.testimonials .rb-booking-max {
  opacity: 0.85;
  font-weight: 400;
  font-size: 10px;
}

section.testimonials .rb-dot {
  opacity: 0.4;
  margin: 0 1px;
}
section.testimonials .rb-count {
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* Responsive: en móvil que respire un poco */
@media (max-width: 768px) {
  section.testimonials .review-btn {
    padding: 14px 22px;
    min-width: unset;
  }
  section.testimonials .review-btn-line3 {
    font-size: 10px;
  }
}

/* Accesibilidad: texto visible solo para lectores de pantalla y Google */
.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;
}