/* Roomlyz · premium.css — Plantilla PREMIUM (parte del diseño de la básica).
   Depende de base.css (reset + tokens + lang-switch). */

.plan-premium {
  --b-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --b-ink: #20232a;          /* texto principal oscuro */
  --b-mute: #5e6157;         /* enlaces del nav */
  --b-navy: #1f2d4d;         /* botón "Reservar" del header */
  --b-green: #6d7b43;        /* botón primario, nav activo, iconos de tarjetas */
  --b-gold: #c8b78a;         /* iconos destacados del hero */
  --b-cream: #f6f5f1;        /* fondo de la sección de características */
  --b-line: #ece9e1;         /* bordes suaves */
  --b-header-h: 74px;

  font-family: var(--font-sans);
  color: var(--b-ink);
  background: #fff;
}

/* ============================ SUB-CABECERA ============================ */
.b-topbar {
  background: #1f2d4d;
  color: #fff;
  font-size: 0.82rem;
}
.b-topbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.5rem clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
  flex-wrap: wrap;
}
.b-topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.b-topbar__item {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.88); font-weight: 500;
  transition: color 160ms ease;
}
.b-topbar__item:hover { color: #fff; }
.b-topbar__item svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 600px) {
  .b-topbar__inner { justify-content: center; gap: 0.6rem 1.2rem; }
  .b-topbar__social .b-topbar__item span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

/* ============================ HEADER ============================ */
.b-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.b-header.is-scrolled {
  border-color: var(--b-line);
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.35);
}
.b-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 clamp(24px, 5vw, 48px);
  height: var(--b-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;   /* marca a la izquierda, acciones a la derecha */
  gap: 1.5rem;
}

/* --- Marca --- */
.b-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.b-brand__img { height: auto; max-height: 52px; width: auto; }
.b-brand__icon {
  display: inline-flex;
  color: #bf6a3a;            /* terracota por defecto; configurable */
}
.b-brand__icon svg { width: 30px; height: 30px; }
.b-brand__name {
  font-family: var(--b-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--b-ink);
  line-height: 1;
}

/* --- Navegación --- */
.b-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  margin-inline: auto;          /* centra el nav entre marca y acciones */
}
.b-nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--b-mute);
  white-space: nowrap;
  padding: 0.4rem 0;
  transition: color 160ms ease;
}
.b-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--b-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.b-nav__link:hover { color: var(--b-ink); }
.b-nav__link.is-active { color: var(--b-ink); }
.b-nav__link.is-active::after,
.b-nav__link:hover::after { transform: scaleX(1); }

/* Submenú de "La casa" (desktop: desplegable al pasar el ratón) */
.b-nav__item { position: relative; display: inline-flex; align-items: center; }
.b-nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border-radius: 12px; box-shadow: 0 24px 50px -24px rgba(0,0,0,.35);
  padding: 0.5rem; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60;
}
.b-nav__item--has-sub:hover .b-nav__sub,
.b-nav__item--has-sub:focus-within .b-nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.b-nav__sublink { padding: 0.55rem 0.85rem; border-radius: 8px; color: var(--b-ink); text-decoration: none; font-size: 0.9rem; font-weight: 500; white-space: nowrap; transition: background .15s ease; }
.b-nav__sublink:hover { background: #f3f0ea; }

/* --- Acciones derecha --- */
.b-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ============================ BOTONES ============================ */
.b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.78rem 1.4rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.b-btn--lg { padding: 1rem 1.9rem; font-size: 0.98rem; }

/* Header: navy sólido */
.b-btn--book { background: var(--b-navy); color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; }
.b-btn--book:hover { background: #18233c; transform: translateY(-1px); }
.b-btn--book__icon { display: inline-flex; width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.b-hero__cta .b-btn { display: inline-flex; align-items: center; gap: 0.55rem; }

/* Hero: verde oliva sólido */
/* Premium: el botón "Reservar" del hero va en azul marino (más claro que la sub-cabecera) */
.b-btn--primary { background: #34507e; color: #fff; }
.b-btn--primary:hover { background: #2a4068; transform: translateY(-1px); box-shadow: 0 16px 32px -18px rgba(0,0,0,0.5); }

/* Hero: contorno claro */
.b-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.65); }
.b-btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ============================ HERO ============================ */
.b-hero {
  position: relative;
  min-height: clamp(520px, 76vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.b-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.b-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,18,16,0.82) 0%, rgba(12,18,16,0.55) 38%, rgba(12,18,16,0.12) 70%, rgba(12,18,16,0) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.28), rgba(0,0,0,0) 45%);
}
.b-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(18px, 4vw, 48px);
}
.b-hero__title {
  font-family: var(--b-serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  max-width: 500px;
  margin: 0;
}
.b-hero__sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 300;
  line-height: 1.45;
  max-width: 500px;
  margin: 1.1rem 0 0;
}

/* Destacados del hero (3-5) */
.b-highlights {
  list-style: none;
  margin: 2.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.b-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  max-width: 70px;
}
.b-highlight__icon { color: var(--b-gold); }
.b-highlight__icon svg { width: 30px; height: 30px; }
.b-highlight__text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
}

/* Botones del hero */
.b-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

/* ===================== CARACTERÍSTICAS (tarjetas) ===================== */
.b-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 48px);
}
.b-features {
  background: var(--b-cream);
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}
.b-features__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.1rem);
}
.b-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--b-line);
  border-radius: 14px;
  padding: 1.6rem 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.b-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.4);
}
.b-feature-card__icon { color: var(--b-green); }
.b-feature-card__icon svg { width: 34px; height: 34px; }
.b-feature-card__text {
  color: var(--b-ink);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ===================== TÍTULOS DE SECCIÓN ===================== */
.b-section-title {
  font-family: var(--b-serif);
  font-weight: 600;
  color: var(--b-ink);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 1.4rem;
}
.b-section-title::after {
  content: "";
  display: block;
  width: 54px; height: 3px;
  margin-top: 0.7rem;
  background: var(--b-green);
  border-radius: 2px;
}
.b-section-title--center { text-align: center; }
.b-section-title--center::after { margin-inline: auto; }

/* ===================== ACERCA DE ESTE ESPACIO ===================== */
.b-about { padding: clamp(2.8rem, 6vw, 5rem) 0; background: #fff; }
.b-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.b-about__grid--solo { grid-template-columns: 1fr; max-width: 760px; }
.b-about__media { margin: 0; }
.b-about__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 14px;
}
.b-prose { color: var(--b-mute); font-size: 1.02rem; line-height: 1.7; }
.b-prose p { margin: 0 0 1rem; }
.b-prose p:last-child { margin-bottom: 0; }
.b-prose strong { color: var(--b-ink); font-weight: 600; }
.b-prose em { font-style: italic; }
.b-prose a { color: var(--b-green); text-decoration: underline; }
.b-prose ul, .b-prose ol { margin: 0 0 1rem; padding-left: 1.2rem; }

@media (max-width: 760px) {
  .b-about__grid { grid-template-columns: 1fr; }
  .b-about__media { order: -1; }
}

/* ===================== GALERÍA (mosaico editorial) ===================== */
.b-gallery { padding: clamp(2.8rem, 6vw, 5rem) 0; background: var(--b-cream); }
.b-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(115px, 14vw, 200px);
  grid-auto-flow: dense;             /* rellena los huecos que dejan las fotos grandes */
  gap: clamp(0.5rem, 1vw, 0.9rem);
  margin-top: 2rem;
}
.b-gallery__item {
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: 12px; overflow: hidden;
  position: relative;
}
.b-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 400ms ease;
}
.b-gallery__item:hover img { transform: scale(1.06); }

/* Tamaños variados: una grande y una ancha cada 8 fotos; el resto 1x1.
   Con grid-auto-flow:dense queda compacto sea cual sea el nº de fotos. */
.b-gallery__item:nth-child(8n + 1) { grid-column: span 2; grid-row: span 2; }
.b-gallery__item:nth-child(8n + 5) { grid-column: span 2; }
/* Las dos últimas siempre 1x1: cierra el mosaico sin huecos sea cual sea el nº de fotos */
.b-gallery__item:nth-last-child(-n + 2) { grid-column: span 1; grid-row: span 1; }

@media (max-width: 900px) {
  .b-gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(110px, 22vw, 170px); }
}
@media (max-width: 520px) {
  .b-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .b-gallery__item:nth-child(8n + 5) { grid-column: span 1; }   /* la ancha vuelve a 1x1 */
  .b-gallery__item:nth-child(8n + 1) { grid-column: span 2; grid-row: span 2; } /* destacada a todo el ancho */
}

/* ===================== LIGHTBOX ===================== */
.b-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,12,14,0.92);
  padding: 4vw;
}
.b-lightbox[hidden] { display: none; }
.b-lightbox__img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.b-lightbox__close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 1.6rem; line-height: 1;
}
.b-lightbox__close:hover { background: rgba(255,255,255,0.25); }
.b-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 2rem; line-height: 1;
}
.b-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.b-lightbox__nav--prev { left: 18px; }
.b-lightbox__nav--next { right: 18px; }
@media (max-width: 560px) {
  .b-lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .b-lightbox__nav--prev { left: 8px; }
  .b-lightbox__nav--next { right: 8px; }
}

/* ===================== BANNER ROOMLYZ ===================== */
.b-promo {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(135deg, #243456 0%, #161f37 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.b-promo::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,183,138,0.18), rgba(200,183,138,0) 70%);
  pointer-events: none;
}
.b-promo__inner { position: relative; max-width: 720px; margin-inline: auto; text-align: center; }
.b-promo__eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--b-gold); margin-bottom: 1rem;
}
.b-promo__eyebrow svg { width: 16px; height: 16px; }
.b-promo__title {
  font-family: var(--b-serif); font-weight: 600; color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.12; margin: 0 0 1rem;
}
.b-promo__text {
  color: rgba(255,255,255,0.82); font-size: 1.02rem; line-height: 1.65;
  margin: 0 auto 1.9rem; max-width: 600px;
}
.b-promo__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem; border-radius: 6px;
  background: var(--b-gold); color: #1f2d4d; font-weight: 700; font-size: 0.98rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.b-promo__btn:hover { background: #d6c596; transform: translateY(-2px); box-shadow: 0 18px 38px -18px rgba(0,0,0,0.6); }

/* ===================== ALOJAMIENTO, SERVICIOS Y ZONAS COMUNES ===================== */
.b-services { padding: clamp(2.8rem, 6vw, 5rem) 0; background: #eef2e6; }
.b-amenities {
  list-style: none; margin: 2.2rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem;
}
.b-amenity {
  flex: 0 0 auto;
  width: calc((100% - 5 * 1.5rem) / 6);   /* 6 por fila; la última fila queda centrada */
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.85rem;
}
.b-amenity__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 78px; height: 78px; border-radius: 50%;
  background: #fff; color: var(--b-green);
  box-shadow: 0 12px 28px -18px rgba(0,0,0,0.4);
}
.b-amenity__icon svg { width: 34px; height: 34px; }
.b-amenity__text { color: var(--b-ink); font-size: 0.92rem; font-weight: 500; line-height: 1.3; }
@media (max-width: 1000px) { .b-amenity { width: calc((100% - 3 * 1.5rem) / 4); } }
@media (max-width: 700px) { .b-amenity { width: calc((100% - 2 * 1.5rem) / 3); } }
@media (max-width: 460px) { .b-amenity { width: calc((100% - 1 * 1.5rem) / 2); } }

/* ===================== RESEÑAS ===================== */
.b-reviews { padding: clamp(2.8rem, 6vw, 5rem) 0; background: var(--b-cream); }
.b-stars-defs { position: absolute; width: 0; height: 0; }

/* Resumen: logo de la fuente + media + nº de valoraciones */
.b-reviews__summary { text-align: center; margin: 1.6rem 0 2.4rem; }
.b-reviews__source { margin-bottom: 0.75rem; }
.b-glogo { font-family: Arial, Helvetica, sans-serif; font-weight: 600; font-size: 1.65rem; letter-spacing: -0.5px; }
.b-blogo { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 1.5rem; color: #003580; letter-spacing: -0.3px; }
.b-reviews__score { display: inline-flex; align-items: center; gap: 0.6rem; }
.b-reviews__num { font-family: var(--b-serif); font-size: 2rem; font-weight: 700; color: var(--b-ink); line-height: 1; }
.b-reviews__count { margin: 0.55rem 0 0; color: var(--b-mute); font-size: 0.92rem; }

/* Estrellas 3D: degradado amarillo-naranja + sombra; relleno proporcional */
.b-stars { position: relative; display: inline-flex; line-height: 0; }
.b-stars__bg, .b-stars__fg { display: inline-flex; }
.b-stars svg { width: 1.25em; height: 1.25em; }
.b-stars__bg svg { fill: #d8d3c4; }
.b-stars__fg { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; }
.b-stars__fg svg { fill: url(#starGrad); }

/* Carrusel: 3 tarjetas por vista, scroll horizontal con snap (autoplay en JS) */
.b-reviews__track {
  display: flex; gap: 1.4rem; align-items: flex-start;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 0.6rem;
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab;
}
.b-reviews__track::-webkit-scrollbar { display: none; }
/* Mientras se arrastra con el ratón: sin imán ni animación, y sin seleccionar texto */
.b-reviews__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.b-review {
  flex: 0 0 calc((100% - 2 * 1.4rem) / 3);
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--b-line); border-radius: 16px;
  padding: 1.5rem 1.5rem 1.7rem;
  box-shadow: 0 6px 22px rgba(31, 45, 77, 0.05);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.b-review__head { display: flex; align-items: center; gap: 0.8rem; }
.b-review__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--b-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1.15rem; overflow: hidden;
}
.b-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.b-review__meta { display: flex; flex-direction: column; line-height: 1.3; }
.b-review__name { font-weight: 600; color: var(--b-ink); }
.b-review__date { font-size: 0.82rem; color: var(--b-mute); }
.b-review__text {
  margin: 0; color: #44473e; line-height: 1.6; font-size: 0.96rem;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.b-review.is-expanded .b-review__text { -webkit-line-clamp: unset; display: block; overflow: visible; }
.b-review__more {
  align-self: flex-start; margin-top: 0.1rem; padding: 0;
  background: none; border: 0; cursor: pointer;
  color: var(--b-navy); font-weight: 600; font-size: 0.9rem;
}
.b-review__more:hover { text-decoration: underline; }
.b-review .b-stars svg { width: 1.05em; height: 1.05em; }
@media (max-width: 880px) { .b-review { flex-basis: calc((100% - 1.4rem) / 2); } }
@media (max-width: 560px) { .b-review { flex-basis: 86%; } }

/* ===================== PREGUNTAS FRECUENTES ===================== */
.b-faq { padding: clamp(2.8rem, 6vw, 5rem) 0; background: #fff; }
.b-faq__list { margin-top: 2rem; border-top: 1px solid var(--b-line); }
.b-faq__item { border-bottom: 1px solid var(--b-line); }
.b-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0.2rem; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.02rem; color: var(--b-ink);
}
.b-faq__q::-webkit-details-marker { display: none; }
.b-faq__q::marker { content: ""; }
.b-faq__chevron { flex-shrink: 0; color: var(--b-green); transition: transform 220ms ease; }
.b-faq__item[open] .b-faq__chevron { transform: rotate(180deg); }
.b-faq__a { padding: 0 0.2rem 1.25rem; color: var(--b-mute); line-height: 1.65; max-width: 64ch; }

/* ===================== CONTACTO Y RESERVAS ===================== */
.b-contact { padding: clamp(2.8rem, 6vw, 5rem) 0; background: var(--b-cream); }
.b-contact__list {
  list-style: none; margin: 2rem auto 0; padding: 0;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
.b-contact__item { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 1.02rem; color: var(--b-ink); }
.b-contact__item a:hover { color: var(--b-green); }
.b-contact__icon { display: inline-flex; color: var(--b-green); flex-shrink: 0; }
.b-contact__icon svg { width: 22px; height: 22px; }
.b-contact__cta { margin-top: 2.2rem; text-align: center; }

/* ===================== PÁGINAS LEGALES ===================== */
.b-container--narrow { max-width: 820px; }
.b-legal__top { border-bottom: 1px solid var(--b-line); background: #fff; }
.b-legal__topinner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.b-legal__brand { font-family: var(--b-serif); font-size: 1.3rem; font-weight: 600; color: var(--b-ink); }
.b-legal__back { color: var(--b-mute); font-size: 0.9rem; font-weight: 500; }
.b-legal__back:hover { color: var(--b-ink); }
.b-legal { padding: clamp(2.2rem, 5vw, 4rem) 0; }
.b-legal__body { font-size: 0.98rem; }
.b-legal__body ul { margin: 0 0 1.2rem; padding-left: 1.1rem; }
.b-legal__body li { margin-bottom: 0.35rem; }
.b-legal__by { margin-top: 2rem; font-size: 0.85rem; color: var(--b-mute); }

/* ============================ FOOTER ============================ */
.b-footer {
  background: var(--b-navy);
  padding: 3.2rem 0 1.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.b-footer__inner { display: flex; flex-direction: column; gap: 2rem; }

/* Top: 3 columnas (marca · explorar · contacto) */
.b-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 2.5rem;
}
.b-footer__col { display: flex; flex-direction: column; gap: 0.85rem; }
.b-footer__brand {
  font-family: var(--b-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
.b-footer__address {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
}
.b-footer__title {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}
.b-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.b-footer__list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color .15s ease;
}
.b-footer__list a:hover { color: #fff; }
.b-footer__list--contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.b-footer__list--contact svg { width: 16px; height: 16px; opacity: 0.65; }

/* Redes sociales */
.b-footer__socials { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.b-footer__social {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.b-footer__social:hover { background: rgba(255, 255, 255, 0.18); color: #fff; transform: translateY(-1px); }
.b-footer__social svg { width: 17px; height: 17px; }

/* Divisor */
.b-footer__divider { height: 1px; background: rgba(255, 255, 255, 0.12); }

/* Pie inferior */
.b-footer__bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.b-footer__credit { color: rgba(255, 255, 255, 0.55); }
.b-footer__credit a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-left: 4px;
}
.b-footer__credit a:hover { color: #fff; text-decoration: underline; }
.b-footer__bottom-right { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.b-footer__copy { color: rgba(255, 255, 255, 0.55); }
.b-footer__legal { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.b-footer__legal a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-decoration: none;
}
.b-footer__legal a:hover { color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .b-footer__cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .b-footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .b-footer { padding: 2.4rem 0 1.4rem; }
  .b-footer__cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .b-footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .b-footer__bottom-right { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ============================ MENÚ MÓVIL ============================ */
.b-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}
.b-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--b-ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.is-nav-open .b-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-nav-open .b-burger span:nth-child(2) { opacity: 0; }
.is-nav-open .b-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1150px) {
  .b-nav {
    position: absolute;
    top: var(--b-header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--b-line);
    box-shadow: 0 20px 40px -28px rgba(0,0,0,0.4);
    padding: 0.4rem clamp(24px, 5vw, 48px) 1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .is-nav-open .b-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .b-nav__link { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--b-line); }
  .b-nav__link::after { display: none; }
  .b-nav__link:last-child { border-bottom: 0; }
  .b-nav__item { width: 100%; flex-direction: column; align-items: flex-start; }
  .b-nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; min-width: 0; padding: 0 0 0.7rem 1rem; background: transparent; }
  .b-nav__sublink { padding: 0.5rem 0; font-size: 0.85rem; color: var(--b-mute); }
  .b-burger { display: flex; }
}

@media (max-width: 560px) {
  /* El botón de reservar se mantiene pero compacto: solo el icono de calendario */
  .b-header .b-btn--book { padding: 0.6rem; }
  .b-btn--book__text { display: none; }
  .b-header__actions { gap: 0.55rem; }
  .b-brand__name { font-size: 1.3rem; }
  .b-header__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===================== PÁGINA DE CONTACTO ===================== */
.b-contactpage { padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); background: #fff; }
.b-contactpage__intro { text-align: center; max-width: 620px; margin: 0 auto 2.6rem; color: var(--b-mute); line-height: 1.65; }
.b-contactpage__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (max-width: 820px) { .b-contactpage__grid { grid-template-columns: 1fr; } }
.b-contactpage__subtitle { font-family: var(--b-serif); font-size: 1.4rem; margin: 0 0 1.1rem; color: var(--b-ink); }

/* Columna de info */
.b-contact__list--left { margin-left: 0; margin-right: 0; text-align: left; align-items: flex-start; }
.b-contactpage__social { display: flex; gap: 0.6rem; margin: 1.2rem 0 1.6rem; }
.b-contactpage__social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--b-navy); color: #fff; transition: opacity 160ms ease;
}
.b-contactpage__social a:hover { opacity: 0.85; }
.b-contactpage__social svg { width: 19px; height: 19px; }
.b-cmap { border-radius: 14px; overflow: hidden; border: 1px solid var(--b-line); box-shadow: 0 6px 22px rgba(31, 45, 77, 0.05); }
.b-cmap iframe { display: block; }

/* Formulario */
.b-cform { display: flex; flex-direction: column; gap: 1rem; }
.b-cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.b-cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .b-cform__row { grid-template-columns: 1fr; } }
.b-cform__field { display: flex; flex-direction: column; gap: 0.35rem; }
.b-cform__field > span { font-size: 0.86rem; font-weight: 600; color: var(--b-ink); }
.b-cform__field input, .b-cform__field textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1px solid #d9d4c5; border-radius: 9px; background: #fdfcfa;
  font: inherit; color: var(--b-ink); resize: vertical;
}
.b-cform__field input:focus, .b-cform__field textarea:focus {
  outline: none; border-color: var(--b-navy); box-shadow: 0 0 0 3px rgba(52, 80, 126, 0.12);
}
.b-cform__check { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--b-mute); line-height: 1.5; }
.b-cform__check input { margin-top: 0.2rem; flex-shrink: 0; }
.b-cform__check a { color: var(--b-navy); text-decoration: underline; }
.b-cform__err { display: block; color: #b3261e; font-size: 0.82rem; font-style: normal; }
.b-cform button.b-btn { align-self: flex-start; margin-top: 0.3rem; border: 0; cursor: pointer; }

/* Avisos de éxito / error */
.b-cform__alert { max-width: 720px; margin: 0 auto 2rem; padding: 0.95rem 1.15rem; border-radius: 10px; font-size: 0.95rem; text-align: center; }
.b-cform__alert--ok { background: #e9f4ec; color: #246b3a; border: 1px solid #bfe0c8; }
.b-cform__alert--err { background: #fbeae8; color: #9a3b3b; border: 1px solid #f0c8c2; }

/* Subtítulo "Redes sociales" + iconos */
.b-contactpage__socialhead { font-size: 0.86rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--b-mute); margin: 1.6rem 0 0.6rem; }

/* Hero de cabecera de página (contacto): foto de fondo al 50% + título y subtítulo */
.b-pagehero { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 320px; padding: 3.2rem 1rem; color: #fff; background: var(--b-navy); overflow: hidden; }
.b-pagehero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.b-pagehero__inner { position: relative; z-index: 1; max-width: 720px; }
.b-pagehero__title { font-family: var(--b-serif); font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 0.7rem; color: #fff; line-height: 1.1; }
.b-pagehero__sub { font-size: 1.05rem; line-height: 1.6; margin: 0; color: rgba(255, 255, 255, 0.92); }

/* Botón flotante de WhatsApp */
.b-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%;   /* el tamaño real lo fija el inline style */
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 160ms ease;
}
.b-whatsapp:hover { transform: scale(1.06); }
.b-whatsapp svg { width: 56%; height: 56%; }
@media (max-width: 560px) { .b-whatsapp { right: 14px; bottom: 14px; } }

/* ===================== PÁGINA DE HABITACIONES ===================== */
.b-rooms { padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5rem); background: #fff; }
.b-room { padding: clamp(1.6rem, 4vw, 2.6rem) 0; border-bottom: 1px solid var(--b-line); }
.b-room:last-child { border-bottom: 0; }
.b-room__name {
  font-family: var(--b-serif); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--b-ink);
  margin: 0; padding-bottom: 0.7rem; border-bottom: 1px solid var(--b-ink);
}
.b-room__sub { margin: 0.7rem 0 0; color: var(--b-mute); font-size: 1rem; }
.b-room__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.4rem, 3vw, 2.6rem); align-items: center; margin-top: 1.6rem; }
@media (max-width: 820px) { .b-room__grid { grid-template-columns: 1fr; } }

.b-room__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.b-room__feature { display: flex; align-items: center; gap: 0.7rem; color: var(--b-ink); font-size: 0.96rem; }
.b-room__icon { flex-shrink: 0; display: inline-flex; color: var(--b-green); }
.b-room__icon svg { width: 20px; height: 20px; }

/* Carrusel de fotos de la habitación */
.b-room__gallery { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.4); }
.b-room__slides { position: relative; aspect-ratio: 16 / 10; background: var(--b-cream); }
.b-room__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 400ms ease; }
.b-room__slide.is-active { opacity: 1; }
.b-room__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.b-room__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, 0.85); color: var(--b-ink); cursor: pointer;
  font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18); transition: background 150ms ease;
}
.b-room__nav:hover { background: #fff; }
.b-room__nav--prev { left: 12px; }
.b-room__nav--next { right: 12px; }
.b-room__dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 7px; }
.b-room__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.55); cursor: pointer; padding: 0; }
.b-room__dot.is-active { background: #fff; }
.b-room__desc { margin-top: 1.5rem; color: #44473e; line-height: 1.75; }
.b-room__desc p { margin: 0 0 0.85rem; }
.b-room__desc p:last-child { margin-bottom: 0; }
.b-room__desc strong { color: var(--b-ink); }
.b-room__desc ul, .b-room__desc ol { margin: 0 0 0.85rem; padding-left: 1.3rem; }

/* Contacto: card flotante con datos + mapa (home) */
.b-contact { padding: 4rem 0; }
.b-contact__card { display: grid; grid-template-columns: 1fr 1.15fr; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 90px -40px rgba(20,22,28,.45); }
.b-contact__info { padding: clamp(1.6rem, 4vw, 3rem); }
.b-contact__eyebrow { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--b-accent, #c9a25a); margin-bottom: .6rem; }
.b-contact__title { font-family: var(--b-serif, 'Playfair Display', serif); font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 0 0 1.6rem; color: var(--b-ink, #20232a); }
.b-contact__row { display: flex; gap: .9rem; margin-bottom: 1.1rem; align-items: flex-start; }
.b-contact__ic { flex: 0 0 auto; color: var(--b-accent, #c9a25a); line-height: 0; }
.b-contact__ic svg { width: 22px; height: 22px; }
.b-contact__row strong { display: block; font-size: .95rem; color: var(--b-ink, #20232a); margin-bottom: .15rem; }
.b-contact__row span, .b-contact__row a { color: #5b6371; font-size: .95rem; text-decoration: none; }
.b-contact__row a:hover { text-decoration: underline; }
.b-contact__note { margin: 1.4rem 0 0; padding-top: 1.2rem; border-top: 1px solid #ece8df; color: #8a8270; font-style: italic; font-size: .92rem; }
.b-contact__cta { display: flex; justify-content: center; margin-top: 1.6rem; }
/* Los servicios (en "La casa") sirven de ancla del índice: que el sticky no los tape */
.b-services { scroll-margin-top: 70px; }
.b-contact__map { min-height: 360px; }
.b-contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
@media (max-width: 820px) {
  .b-contact__card { grid-template-columns: 1fr; }
  .b-contact__map { min-height: 300px; }
}

/* Opiniones: subtítulo + badge de fuente (Google/Booking) sobre la foto */
.b-reviews__subtitle { text-align: center; max-width: 640px; margin: 0.4rem auto 2.4rem; color: #6b7280; font-size: 1rem; }
.b-review__avatar { position: relative; overflow: visible; }
.b-review__avatar img { border-radius: 50%; }
.b-review__src {
  position: absolute; right: -3px; bottom: -3px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 5px rgba(0,0,0,.28);
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.b-review__src svg { width: 13px; height: 13px; }
.b-review__src--booking { background: #003580; color: #fff; font-weight: 800; font-size: 10px; }

/* El entorno: tarjetas en 2 columnas, imagen 16:9, descripción con "leer más" */
.b-entorno { padding: 4.5rem 0; }
.b-entorno__subtitle { text-align: center; max-width: 640px; margin: 0.4rem auto 2.8rem; color: #6b7280; font-size: 1.05rem; }
.b-entorno__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; }
.b-entorno__item { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px -30px rgba(20,22,28,.45); transition: transform .35s ease, box-shadow .35s ease; }
.b-entorno__item:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -28px rgba(20,22,28,.5); }
.b-entorno__media { aspect-ratio: 16 / 9; overflow: hidden; }
.b-entorno__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.b-entorno__item:hover .b-entorno__media img { transform: scale(1.06); }
.b-entorno__body { padding: 1.5rem 1.6rem 1.7rem; }
.b-entorno__title { font-family: var(--b-serif, 'Playfair Display', serif); font-size: 1.45rem; margin: 0 0 0.7rem; color: var(--b-ink, #20232a); position: relative; padding-bottom: 0.6rem; }
.b-entorno__title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; border-radius: 3px; background: var(--b-accent, #c9a25a); }
.b-entorno__text { color: #5b6371; line-height: 1.75; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.b-entorno__item.is-expanded .b-entorno__text { -webkit-line-clamp: unset; overflow: visible; }
.b-entorno__more { margin-top: 0.7rem; background: none; border: 0; color: var(--b-accent, #c9a25a); font-weight: 600; cursor: pointer; padding: 0; font-size: 0.9rem; }
.b-entorno__more:hover { text-decoration: underline; }
@media (max-width: 720px) { .b-entorno__grid { grid-template-columns: 1fr; } }

/* La casa: botón "Ver alojamiento" en la home */
.b-about__more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.3rem; font-weight: 600; color: var(--b-navy, #20232a); text-decoration: none; border-bottom: 2px solid var(--b-accent, #c9a25a); padding-bottom: 2px; }
.b-about__more:hover { color: var(--b-accent, #c9a25a); }

/* La casa: tabla de contenidos (anclas) */
.b-lctoc { border-bottom: 1px solid #ece8df; position: sticky; top: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); z-index: 40; }
.b-lctoc__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; padding-top: 1rem; padding-bottom: 1rem; }
.b-lctoc__btn { padding: 0.55rem 1.1rem; border-radius: 999px; background: #f4f1ea; color: var(--b-ink, #20232a); font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: background .2s, color .2s; }
.b-lctoc__btn:hover { background: var(--b-accent, #c9a25a); color: #fff; }

/* La casa: secciones */
.b-lcsection { padding: 3.5rem 0; scroll-margin-top: 70px; }
.b-lcsection--alt { background: #faf8f3; }

/* La casa: habitaciones en 2 columnas */
.b-lcrooms { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.4rem; margin-top: 1.5rem; }
.b-lcroom { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px -30px rgba(0,0,0,.4); }
.b-lcroom__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #ece8df; }
.b-lcroom__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s ease; }
.b-lcroom__slide.is-active { opacity: 1; }
.b-lcroom__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: #20232a; font-size: 1.4rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; box-shadow: 0 4px 12px rgba(0,0,0,.2); z-index: 2; }
.b-lcroom:hover .b-lcroom__nav { opacity: 1; }
@media (hover: none) { .b-lcroom__nav { opacity: .92; } }
.b-lcroom__nav--prev { left: 10px; }
.b-lcroom__nav--next { right: 10px; }
.b-lcroom__dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.b-lcroom__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; border: 0; padding: 0; }
.b-lcroom__dot.is-active { background: #fff; }
.b-lcroom__body { padding: 1.4rem 1.5rem 1.6rem; }
.b-lcroom__name { font-family: var(--b-serif, 'Playfair Display', serif); font-size: 1.45rem; margin: 0 0 0.7rem; color: var(--b-ink, #20232a); position: relative; padding-bottom: 0.6rem; }
.b-lcroom__name::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; border-radius: 3px; background: var(--b-accent, #c9a25a); }
.b-lcroom__sub { margin: 0; color: #5b6371; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.b-lcroom.is-expanded .b-lcroom__sub { -webkit-line-clamp: unset; overflow: visible; }
.b-lcroom__more { margin-top: 0.7rem; background: none; border: 0; color: var(--b-accent, #c9a25a); font-weight: 600; cursor: pointer; padding: 0; font-size: 0.9rem; }
.b-lcroom__more:hover { text-decoration: underline; }
@media (max-width: 720px) { .b-lcrooms { grid-template-columns: 1fr; } }

/* Restauración: cabecera limpia (sin foto) + tarjetas */
.b-resthead { padding: 4.5rem 0 0; text-align: center; }
.b-resthead__title { font-family: var(--b-serif, 'Playfair Display', serif); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--b-ink, #20232a); margin: 0 0 1rem; }
.b-resthead__sub { max-width: 680px; margin: 0 auto; color: #6b7280; font-size: 1.1rem; line-height: 1.75; }
.b-resthead__sep { display: block; width: 60px; height: 3px; border-radius: 3px; background: var(--b-accent, #c9a25a); margin: 2.4rem auto 0; }
.b-rest { padding: 2.8rem 0 4.5rem; }
.b-rest__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; }
.b-rest__item { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px -30px rgba(20,22,28,.45); transition: transform .35s ease, box-shadow .35s ease; }
.b-rest__item:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -28px rgba(20,22,28,.5); }
.b-rest__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.b-rest__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.b-rest__item:hover .b-rest__media img { transform: scale(1.06); }
.b-rest__tag { position: absolute; top: 12px; left: 12px; background: var(--b-navy, #20232a); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.b-rest__body { padding: 1.5rem 1.6rem 1.7rem; }
.b-rest__title { font-family: var(--b-serif, 'Playfair Display', serif); font-size: 1.45rem; margin: 0 0 .6rem; color: var(--b-ink, #20232a); }
.b-rest__meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin: 0 0 .8rem; }
.b-rest__metaitem { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; color: #6b7280; }
.b-rest__metaitem svg { width: 15px; height: 15px; color: var(--b-accent, #c9a25a); flex: 0 0 auto; }
.b-rest__text { color: #5b6371; line-height: 1.7; margin: 0; }
.b-rest__link { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--b-navy, #20232a); text-decoration: none; border-bottom: 2px solid var(--b-accent, #c9a25a); padding-bottom: 2px; }
.b-rest__link:hover { color: var(--b-accent, #c9a25a); }
@media (max-width: 720px) { .b-rest__grid { grid-template-columns: 1fr; } }
