:root {
--bg: #f5f2ec;
--surface: #fffdf9;
--surface-soft: #f8f3ea;
--surface-alt: #f1eadf;
--text: #1f1d1a;
--muted: #5e5650;
--primary: #4f7a62;
--primary-2: #3f644f;
--accent: #c8b89f;
--border: #e8dfd3;
--ring: rgba(79, 122, 98, 0.22);
--whatsapp: #25d366;
--whatsapp-dark: #1fb85a;
--shadow-sm: 0 8px 24px rgba(42, 35, 27, 0.06);
--shadow-md: 0 14px 34px rgba(42, 35, 27, 0.1);
--shadow-lg: 0 20px 48px rgba(42, 35, 27, 0.14);
--radius-sm: 12px;
--radius-md: 18px;
--radius-lg: 24px;
--container: 1280px;
--space-1: 8px;
--space-2: 16px;
--space-3: 24px;
--space-4: 32px;
--space-5: 40px;
--space-6: 48px;
--space-7: 56px;
--space-8: 64px;
--space-9: 72px;
--space-10: 80px;
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p {
margin: 0;
}

img {
max-width: 100%;
display: block;
}

section {
padding: var(--space-10) 0;
position: relative;
}

.section-soft {
background: var(--surface-soft);
}

.section-alt {
background: linear-gradient(180deg, #f3ece1 0%, #efe6d8 100%);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.eyebrow {
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.72rem;
color: var(--muted);
margin-bottom: var(--space-2);
font-weight: 700;
}

.section-title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(1.85rem, 2.8vw, 2.8rem);
font-weight: 600;
line-height: 1.16;
letter-spacing: -0.01em;
margin-bottom: var(--space-2);
}

.section-title--sm {
font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.section-desc {
color: var(--muted);
max-width: 62ch;
font-size: 1rem;
}

.section-head {
margin-bottom: var(--space-5);
}

.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
position: relative;
}

.card--interactive:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: #decfbb;
}

/* NAVBAR */
.navbar {
position: sticky;
top: 0;
z-index: 1200;
background: rgba(255, 253, 249, 0.82);
border-bottom: 1px solid rgba(230, 219, 203, 0.9);
backdrop-filter: blur(12px);
}

.nav-inner {
min-height: 76px;
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-2);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

/* Ocultar el botón de menú en escritorio */
.menu-toggle {
  display: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo span {
color: var(--primary);
}

.menu {
display: flex;
align-items: center;
gap: var(--space-1);
flex-wrap: wrap;
}

.menu a {
text-decoration: none;
color: #2a2621;
font-size: 0.92rem;
font-weight: 600;
padding: 10px 12px;
border-radius: 999px;
transition: 0.26s ease;
}

.menu a:hover {
background: #f2ebdf;
color: var(--primary-2);
}

.menu a.active {
background: linear-gradient(135deg, #e9dfd0, #efe7da);
color: #2e5040;
box-shadow: inset 0 0 0 1px #ddcfbb;
}

.btn-nav-reserve {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px !important;
}

.btn-nav-reserve:hover {
    background: var(--primary-2) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 122, 98, 0.25);
}


.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 680px;
margin-left: clamp(0px, 3vw, 36px);
padding: 112px 0 96px;
animation: heroReveal 0.85s ease both;
}

.hero-panel {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

@keyframes heroReveal {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: var(--space-3);
  white-space: nowrap;
}

.hero p {
  color: #f8f8f8;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 60ch;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.hero .eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.hero-stars {
  color: #f5c842;
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-reviews {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
border: none;
border-radius: 999px;
min-height: 48px;
padding: 0 22px;
font-size: 0.96rem;
font-weight: 700;
letter-spacing: 0.01em;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
color: #fff;
background: linear-gradient(135deg, #5f8a70 0%, #3f654f 100%);
box-shadow: 0 12px 28px rgba(61, 97, 77, 0.32);
}

.btn-primary:hover {
transform: translateY(-2px) scale(1.015);
box-shadow: 0 18px 34px rgba(61, 97, 77, 0.38);
}

.btn-whatsapp {
color: #fff;
background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
transform: translateY(-2px) scale(1.015);
box-shadow: 0 18px 34px rgba(37, 211, 102, 0.4);
}

/* --- CONTACT BUTTONS GRID --- */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  white-space: nowrap;
}

.contact-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-btn:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.contact-btn--whatsapp  { background: linear-gradient(135deg, #25d366, #1fb85a); box-shadow: 0 8px 20px rgba(37,211,102,0.30); }
.contact-btn--booking   { background: linear-gradient(135deg, #003580, #0057b8); box-shadow: 0 8px 20px rgba(0,53,128,0.30); }
.contact-btn--airbnb    { background: linear-gradient(135deg, #ff5a5f, #e0484d); box-shadow: 0 8px 20px rgba(255,90,95,0.30); }
.contact-btn--instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 8px 20px rgba(220,39,67,0.30); }
.contact-btn--facebook  { background: linear-gradient(135deg, #1877f2, #0c5ccc); box-shadow: 0 8px 20px rgba(24,119,242,0.30); }
.contact-btn--gmail     { background: linear-gradient(135deg, #ea4335, #c5221f); box-shadow: 0 8px 20px rgba(234,67,53,0.30); }

/* --- NUEVA GALERÍA DE MOSAICO FIJO MINIMALISTA --- */
#galeria {
  padding: var(--space-6) 0;
  background-color: var(--surface);
}

.gallery-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    gap: var(--space-2);
    width: 100%;
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 0.9;
}

.gallery-overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay-text {
  opacity: 1;
}

/* --- MODAL / LIGHTBOX UNIFICADO --- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: min(100%, 1100px);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: #000;
}

.modal-image-wrap img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.modal-close {
  position: absolute;
  top: -55px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

.modal .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal .arrow.left { left: -70px; }
.modal .arrow.right { right: -70px; }

@media (max-width: 1200px) {
  .modal .arrow.left { left: 10px; }
  .modal .arrow.right { right: 10px; }
  .modal-close { right: 10px; }
}

/* EXPERIENCE + LOCATION DYNAMIC */
.experience-location-grid {
    margin-top: var(--space-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: stretch;
}

.exp-col {
display: grid;
gap: var(--space-2);
}

.experience-info {
padding: var(--space-5);
}

.exp-cards {
display: grid;
gap: var(--space-2);
}

.exp-card {
padding: var(--space-3);
}

.exp-card h4 {
margin-bottom: var(--space-1);
font-size: 1.08rem;
}

.exp-card p {
color: var(--muted);
}

.loc-col {
display: grid;
gap: var(--space-2);
}


.loc-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-2);
}

.loc-card {
padding: var(--space-3);
}

.loc-card h4 {
margin-bottom: var(--space-1);
}

.loc-card p {
color: var(--muted);
}

/* SERVICES WITH ICONS */
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-2);
}

.service-card {
padding: var(--space-3);
min-height: 168px;
}

.service-top {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}

.service-icon {
width: 34px;
height: 34px;
border-radius: 10px;
border: 1px solid #e7dccf;
background: #f8f3ea;
display: grid;
place-items: center;
color: #5a7c66;
}

.service-card h4 {
font-size: 1.03rem;
}

.service-card p {
color: var(--muted);
}

.service-icon svg {
width: 18px;
height: 18px;
stroke: currentColor;
fill: none;
stroke-width: 1.9;
stroke-linecap: round;
stroke-linejoin: round;
}

/* REVIEWS */
.reviews-wrap {
position: relative;
}

.reviews-wrap::before, .reviews-wrap::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 48px;
pointer-events: none;
z-index: 2;
}

.reviews-wrap::before {
left: 0;
background: linear-gradient(90deg, #f8f3ea 0%, rgba(248, 243, 234, 0) 100%);
}

.reviews-wrap::after {
right: 0;
background: linear-gradient(270deg, #f8f3ea 0%, rgba(248, 243, 234, 0) 100%);
}

.reviews-track {
display: flex;
gap: var(--space-2);
overflow-x: auto;
scroll-behavior: smooth;
padding: 2px 2px 8px;
cursor: grab;
user-select: none;
}

.reviews-track:active {
cursor: grabbing;
}

.reviews-track::-webkit-scrollbar {
height: 7px;
}

.reviews-track::-webkit-scrollbar-thumb {
background: #ccbda8;
border-radius: 999px;
}

.review-card {
min-width: min(100%, 360px);
padding: var(--space-3);
}

.review-content {
color: var(--muted);
margin-bottom: 16px;
}

.review-user {
display: flex;
align-items: center;
gap: 10px;
}

.avatar {
width: 36px;
height: 36px;
border-radius: 50%;
background: linear-gradient(135deg, #d8c9b4, #c7b398);
color: #fff;
font-size: 0.84rem;
font-weight: 700;
display: grid;
place-items: center;
flex: 0 0 auto;
}

.review-meta h4 {
font-size: 0.95rem;
margin-bottom: 2px;
}

.review-meta span {
color: var(--muted);
font-size: 0.82rem;
}

/* RESERVATION */
.reservation-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-3);
}

.res-info, .res-form-wrap {
padding: var(--space-5);
}

.res-info {
display: flex;
flex-direction: column;
}

.res-info .contact-buttons {
margin-top: auto;
}

.res-info p {
color: var(--muted);
margin: var(--space-2) 0 var(--space-4);
max-width: 42ch;
}

form {
display: grid;
gap: 14px;
}

input, textarea, select {
width: 100%;
min-height: 48px;
border-radius: var(--radius-sm);
border: 1px solid var(--border);
background: #fff;
color: var(--text);
font: inherit;
padding: 0 14px;
transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
min-height: 96px;
resize: vertical;
padding: 10px 14px;
background: #fcf9f4;
}

input:focus, textarea:focus, select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 4px var(--ring);
background: #fffefc;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}

.field-note {
font-size: 0.8rem;
color: var(--muted);
margin-top: -4px;
}

.form-submit {
margin-top: 4px;
}

/* FOOTER + BACK TO TOP */
.footer {
border-top: 1px solid var(--border);
background: #f2eadf;
padding: 24px 0;
}

.footer-inner {
display: flex;
justify-content: space-between;
gap: var(--space-2);
flex-wrap: wrap;
color: #6f675f;
font-size: 0.92rem;
}

.back-to-top {
position: fixed;
right: 18px;
bottom: 18px;
width: 46px;
height: 46px;
border-radius: 50%;
border: 1px solid #dfd1bc;
background: rgba(255, 253, 248, 0.95);
color: #2f2a24;
box-shadow: var(--shadow-md);
display: grid;
place-items: center;
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(12px);
transition: 0.25s ease;
z-index: 1300;
}

.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.back-to-top:hover {
transform: translateY(-2px);
background: #fff;
}

.back-to-top svg {
width: 20px;
height: 20px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

@media (max-width: 1120px) {
.experience-location-grid {
grid-template-columns: 1fr;
}

.loc-cards {
grid-template-columns: 1fr;
}

.map-placeholder {
order: -1;
}
}

@media (max-width: 1024px) {
section {
    padding: var(--space-6) 0; 
    position: relative;
}

.reservation-grid {
grid-template-columns: 1fr;
}

.services-grid {
grid-template-columns: repeat(2, 1fr);
}

}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  body { overflow-x: clip; }
  
  :root { --space-10: 48px; }

  section { padding: var(--space-10) 0 !important; }

  .container { padding: 0 20px !important; }

  /* 1. Navigation */
  .nav-inner { 
    flex-direction: row !important; 
    flex-wrap: nowrap !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    padding: 10px 0 !important;
    min-height: 70px !important;
  }

  .logo { 
    margin-left: 15px; 
  }

  /* Aumentamos el tamaño del logo en movil */
  .logo img { height: 44px !important; width: auto !important; }

  /* Icono de Hamburguesa (3 barras) */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1300;
    margin-right: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: 0.3s ease;
  }

  /* Animación de las barras a X */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu {
    display: none; /* Se oculta por defecto */
    position: fixed; /* Cambiado a fixed para asegurar visibilidad */
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 249, 0.98);
    flex-direction: column !important;
    padding: 20px !important;
    gap: 8px !important;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    margin: 0 !important;
    z-index: 1100;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .menu.active { display: flex !important; }
  .menu a { 
    width: 100%; 
    text-align: center; 
    padding: 12px !important; 
    background: var(--surface-alt); 
    font-size: 0.95rem !important; 
    border-radius: var(--radius-sm);
  }

  /* 2. Hero Section */
  /* --- ELEMENTOS FLOTANTES PREMIUM (CLIMA E IDIOMA) --- */
.hero-floating-meta {
    position: absolute;
    top: 100px; /* Debajo de la navbar */
    right: 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Clima en forma de tubo traslúcido */
.weather-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px; /* Forma de tubo */
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#weather-temp {
    color: #fff;
    font-family: 'Inter', sans-serif;
}

#weather-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Botón de Idioma Marrón Mini */
.lang-switch-mini {
    background: #8b7355; /* Marrón tierra */
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
    text-transform: uppercase;
}

.lang-switch-mini:hover {
    background: #6f5d45;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 115, 85, 0.4);
}

@media (max-width: 768px) {
    .hero-floating-meta { top: 90px; right: 15px; }
    .weather-pill { padding: 4px 12px; font-size: 0.75rem; }
}

.hero { min-height: auto !important; padding: 60px 0 !important; }
  .hero h1 { white-space: nowrap !important; font-size: clamp(1.4rem, 6vw, 2.4rem) !important; text-align: center; line-height: 1.2; margin-bottom: 16px !important; }
  .hero-content { padding: 40px 20px; margin: 0; text-align: center; align-items: center; display: flex; flex-direction: column; }
  .hero p { font-size: 1.1rem !important; margin-bottom: 24px !important; text-align: center; line-height: 1.5; }
  .hero-actions { display: flex; flex-direction: column; width: 100%; max-width: 280px; gap: 12px !important; margin-left: auto !important; margin-right: auto !important; }
  .btn { width: 100%; min-height: 52px !important; }
  .btn-whatsapp { margin-left: 0 !important; }

  /* 3. Forms & Grid Adjustments */
  .section-head { margin-bottom: var(--space-4); text-align: center; }
  input, select, textarea { font-size: 16px !important; padding: 14px !important; }

  .experience-location-grid,
  .services-grid,
  .reservation-grid,
  .loc-cards,
  .form-row {
    grid-template-columns: 1fr !important; gap: 16px !important;
  }

  .service-card { min-width: 0; overflow: hidden; }

  .gallery-mosaic { grid-template-columns: 1fr !important; grid-template-rows: auto !important; gap: 10px !important; }
  .gallery-item { min-height: 220px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }

  .res-info, .res-form-wrap, .experience-info { padding: 24px !important; }
  
  .review-card { min-width: 85vw; }

  .contact-btn span { display: none; }
  .contact-btn { padding: 10px 12px; }
  .contact-btn svg { width: 22px; height: 22px; }
  
  .modal .arrow { width: 44px; height: 44px; }
  .modal .arrow.left { left: 8px; }
  .modal .arrow.right { right: 8px; }

  .back-to-top { width: 44px; height: 44px; right: 16px; bottom: 16px; }
}

.service-slider-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 18px;
}

.service-slider-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    overflow-x: auto; 
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.service-thumb {
    flex: 0 0 auto; 
    width: 120px;   
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-thumb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    aspect-ratio: 2 / 3;
}

.service-slider-track::-webkit-scrollbar {
    height: 4px;
}
.service-slider-track::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--surface-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* --- PRICING SUMMARY --- */
.pricing-summary {
  margin: var(--space-3) 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(135deg, var(--surface-alt), var(--surface-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  width: fit-content;
}

.price-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-amount {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  font-size: 0.85rem;
  color: var(--muted);
}

.cap-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cap-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
}

.cap-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  flex-shrink: 0;
}

/* --- CONTACT GROUPS --- */
.contact-group {
  margin-bottom: var(--space-2);
}

.contact-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 8px 2px !important;
}

/* --- FAQ --- */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  cursor: pointer;
  border-radius: 14px !important;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s !important;
  transform: none !important;
}

.faq-item:hover {
  transform: none !important;
  box-shadow: var(--shadow-sm) !important;
}

.faq-item summary {
  font-weight: 600;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--text);
  padding: 20px 22px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after { display: none; }

.faq-item p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.faq-item[open] {
  border-color: rgba(79,122,98,0.45) !important;
  box-shadow: 0 4px 20px rgba(79,122,98,0.10) !important;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-summary { margin: var(--space-2) 0 var(--space-3); }
  .price-amount { font-size: 1.4rem; }
}

/* --- NUEVAS CLASES UTILITARIAS --- */

.section-head--center {
  text-align: center;
}

.gallery-header {
  text-align: center;
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
  padding: 0 var(--space-4);
}

.gallery-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* Form labels */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.label-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: -4px 0 4px;
  line-height: 1.5;
}

.res-form-intro {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Reviews CTA */
.reviews-cta {
  text-align: center;
  margin-top: var(--space-5);
}

/* Gallery keyboard focus */
.gallery-item:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Focus visible global */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* --- TOAST NOTIFICATIONS --- */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: calc(100vw - 40px);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.toast--error   { background: #c0392b; }
.toast--success { background: var(--primary); }
.toast--warning { background: #e67e22; }

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- FLATPICKR OVERRIDES — integra el calendario con el diseño del sitio --- */

/* Fix: evitar que el calendario quede cortado por el contenedor padre */
.flatpickr-calendar {
  z-index: 99999 !important;
}

#dateRange {
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234f7a62' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E") no-repeat right 14px center;
}

.flatpickr-calendar {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--border) !important;
  font-family: inherit !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.flatpickr-day.inRange {
  background: rgba(79, 122, 98, 0.15) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.flatpickr-day:hover {
  background: rgba(79, 122, 98, 0.12) !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 4px,
    rgba(200, 184, 159, 0.3) 4px,
    rgba(200, 184, 159, 0.3) 5px
  ) !important;
  color: #ccc !important;
  cursor: not-allowed !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--primary) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-weight: 700 !important;
}

.full-width-map {
    width: 100%;
    max-width: var(--container);
    margin: var(--space-8) auto;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#experiencia-ubicacion {
    padding-top: 0;
}


.gallery-mosaic {
    margin-bottom: 0 !important;
}

.menu a[href="#reservar"] {
    color: #ffffff;
    background-color: var(--primary);
    padding: 10px 18px;
    border: 1px solid var(--primary-2);
}

.menu a[href="#reservar"]:hover {
    background-color: var(--primary-2);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(63, 100, 79, 0.3);
}

.menu a[href="#reservar"].active {
    background: var(--primary-2) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(95, 138, 112, 1);
}

p.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}

@media (max-width: 768px) {
  p.hero-subtitle { font-size: 1.15rem !important; }
}
/* ════════════════════════════════════════════════════
   REDESIGN v2 — ORGANIC EDITORIAL ENHANCEMENT LAYER
   ════════════════════════════════════════════════════ */

/* NAVBAR SCROLLED */
.navbar.scrolled {
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 4px 24px rgba(42, 35, 27, 0.09);
  border-bottom-color: rgba(200, 184, 159, 0.65);
}

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"] { transition-delay: 0.10s; }
[data-reveal-delay="200"] { transition-delay: 0.20s; }
[data-reveal-delay="300"] { transition-delay: 0.30s; }
[data-reveal-delay="400"] { transition-delay: 0.40s; }
[data-reveal-delay="500"] { transition-delay: 0.50s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; }
  .hero-scroll-indicator { animation: none !important; }
  .float-wa::after { animation: none !important; }
}

/* HERO SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* MARQUEE STRIP */
.marquee-strip {
  background: #2a231b;
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  background: rgba(200, 184, 159, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STATS BAR */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-item {
  background: var(--surface);
  padding: 30px 20px;
  text-align: center;
  transition: background 0.2s ease;
}
.stat-item:hover { background: var(--surface-soft); }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 7px;
}
.stat-suffix { font-size: 1.4rem; color: #c9933a; }
.stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* GALLERY ZOOM OVERLAY */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 35, 27, 0);
  transition: background 0.35s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}
.gallery-item:hover::after { background: rgba(42, 35, 27, 0.22); }
.gallery-item:hover img { transform: scale(1.05); opacity: 1; }
.gallery-zoom-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}
.gallery-zoom-icon svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  padding: 10px;
  backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* FLOATING WHATSAPP BUTTON */
.float-wa {
  position: fixed;
  bottom: 76px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28d367, #1cb857);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
  z-index: 1199;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.52);
}
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-wa::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.28);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* FOOTER REDESIGN */
.footer {
  background: linear-gradient(175deg, #231e18 0%, #181310 100%);
  border-top: none;
  padding: 72px 0 36px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-inner { display: none !important; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}
.footer-brand .footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.75;
  max-width: 30ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.42);
}
.footer-col h5 {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.28);
  margin: 0 0 18px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255, 255, 255, 0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer-stars { color: #f5c842; letter-spacing: 2px; }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-bar { padding: 36px 0; }
  .stat-item { padding: 22px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer { padding: 52px 0 28px; }
  .float-wa { bottom: 70px; right: 14px; width: 48px; height: 48px; }
  .float-wa svg { width: 24px; height: 24px; }
  .hero-scroll-indicator { display: none; }
}

/* ════════════════════════════════════════════════════
   SECTION DETAIL ENHANCEMENT — ALL SECTIONS
   ════════════════════════════════════════════════════ */

/* ── GALLERY: Full-bleed light editorial ── */
#galeria {
  padding: 0 0 var(--space-6) !important;
  background: #f0ece5 !important;
}
.gallery-header {
  padding: 64px var(--space-4) 48px;
  max-width: var(--container);
  margin: 0 auto;
  background: transparent;
}
.gallery-title { color: var(--text) !important; }
.gallery-header .section-divider { background: var(--primary) !important; }
.gallery-container { max-width: 100% !important; padding: 0 !important; }
.mosaic-grid { padding: 0 !important; }
.gallery-mosaic {
  grid-template-columns: 3fr 2fr 2fr !important;
  grid-template-rows: 340px 340px 270px !important;
  gap: 4px !important;
  border-radius: 0 !important;
}
.gallery-item { border-radius: 6px !important; }

/* Gallery stagger reveal (scale instead of translateY) */
.gallery-mosaic [data-reveal] {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.gallery-mosaic [data-reveal].revealed { opacity: 1; transform: scale(1); }
.gallery-mosaic [data-reveal]:nth-child(1) { transition-delay: 0.00s; }
.gallery-mosaic [data-reveal]:nth-child(2) { transition-delay: 0.10s; }
.gallery-mosaic [data-reveal]:nth-child(3) { transition-delay: 0.18s; }
.gallery-mosaic [data-reveal]:nth-child(4) { transition-delay: 0.26s; }
.gallery-mosaic [data-reveal]:nth-child(5) { transition-delay: 0.34s; }
.gallery-mosaic [data-reveal]:nth-child(6) { transition-delay: 0.42s; }
.gallery-mosaic [data-reveal]:nth-child(7) { transition-delay: 0.50s; }
.gallery-mosaic [data-reveal]:nth-child(8) { transition-delay: 0.58s; }

/* Gallery slide-up caption */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 18px 18px;
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, transparent 100%);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Gallery CTA bar */
.gallery-cta-bar {
  background: #e8e2d9;
  padding: 18px var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #d4ccbf;
}
.gallery-count {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-ghost-light {
  border: 1px solid #b8ad9f;
  color: var(--text);
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-family: inherit;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* ── EXPERIENCE + LOCATION ── */
#experiencia-ubicacion {
  background: linear-gradient(155deg, #f2ece2 0%, #ece4d6 100%);
}
.experience-info {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #57504a, #453e38) !important;
  border: none !important;
  box-shadow: var(--shadow-lg) !important;
}
.experience-info .eyebrow { color: rgba(201,147,58,0.85) !important; }
.experience-info .section-title--sm { color: #fff !important; }
.experience-info .section-desc { color: rgba(255,255,255,0.62) !important; }

.exp-card {
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.exp-card h4 { display: flex; align-items: center; gap: 8px; }
.exp-card h4::before {
  content: "";
  display: inline-block; width: 5px; height: 5px;
  background: var(--primary); border-radius: 50%; flex-shrink: 0;
}

.loc-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.loc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid; place-items: center; margin-bottom: 10px;
}
.loc-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

.full-width-map {
  border: 2px solid rgba(79,122,98,0.35) !important;
  box-shadow: 0 20px 52px rgba(79,122,98,0.18) !important;
  position: relative; overflow: hidden;
}
.map-badge {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 10; background: var(--primary); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-md); pointer-events: none;
}
.map-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

.exp-cards [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.exp-cards [data-reveal]:nth-child(2) { transition-delay: 0.18s; }
.exp-cards [data-reveal]:nth-child(3) { transition-delay: 0.31s; }
.loc-cards [data-reveal]:nth-child(1) { transition-delay: 0.08s; }
.loc-cards [data-reveal]:nth-child(2) { transition-delay: 0.20s; }
.loc-cards [data-reveal]:nth-child(3) { transition-delay: 0.32s; }

/* ── SERVICES: Premium ── */
.amenities-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: var(--space-5);
}
.amenity-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 15px;
  font-size: 0.79rem; font-weight: 600; color: var(--text);
  cursor: default;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.amenity-pill:hover {
  background: var(--surface-alt); border-color: var(--primary);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.amenity-pill svg {
  width: 14px; height: 14px; stroke: var(--primary);
  fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0;
}

.service-card {
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: #c8b89f; }
.service-icon {
  width: 44px !important; height: 44px !important; border-radius: 12px !important;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #daeae0, #bcd5c7) !important;
  border-color: var(--primary) !important;
  transform: scale(1.18) rotate(-4deg);
}
.service-icon svg { width: 22px !important; height: 22px !important; }

.services-grid [data-reveal]:nth-child(1) { transition-delay: 0.04s; }
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.13s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.22s; }
.services-grid [data-reveal]:nth-child(4) { transition-delay: 0.31s; }
.services-grid [data-reveal]:nth-child(5) { transition-delay: 0.40s; }
.services-grid [data-reveal]:nth-child(6) { transition-delay: 0.49s; }

/* ── REVIEWS: Warm brown light ── */
#resenas {
  background: linear-gradient(160deg, #f0e8dc 0%, #e8ddd0 100%);
  position: relative;
}
#resenas .eyebrow { color: var(--primary) !important; }
#resenas .section-title { color: #2a1e12 !important; }

.reviews-rating-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: var(--space-5); position: relative;
}
.rrb-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rrb-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem; font-weight: 600; color: #2a1e12; line-height: 1;
}
.rrb-stars { color: #c9933a; font-size: 0.88rem; letter-spacing: 3px; }
.rrb-platform {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: #7a6550;
}
.rrb-divider { width: 1px; height: 56px; background: #cfc0ad; }
.rrb-total .rrb-score { font-size: 1.3rem; color: #5e4a33; }

.elfsight-wrapper {
  border-radius: var(--radius-md); overflow: hidden;
  background: rgba(255,255,255,0.5);
  border: 1px solid #d8c9b4;
  padding: 2px;
}
.reviews-cta { margin-top: var(--space-6); position: relative; }

/* ── FAQ: Smooth accordion ── */
.faq-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.44s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body p { margin-top: 0; padding: 0 22px 20px; }

.faq-item summary::after { display: none !important; }
.faq-summary-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface-alt); display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  color: var(--primary);
}
.faq-summary-icon svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.faq-item[open] .faq-summary-icon { background: var(--primary); color: #fff; }
.faq-item[open] .faq-summary-icon svg { transform: rotate(45deg); }

.faq-grid [data-reveal]:nth-child(1) { transition-delay: 0.04s; }
.faq-grid [data-reveal]:nth-child(2) { transition-delay: 0.10s; }
.faq-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.faq-grid [data-reveal]:nth-child(4) { transition-delay: 0.22s; }
.faq-grid [data-reveal]:nth-child(5) { transition-delay: 0.28s; }
.faq-grid [data-reveal]:nth-child(6) { transition-delay: 0.34s; }
.faq-grid [data-reveal]:nth-child(7) { transition-delay: 0.40s; }
.faq-grid [data-reveal]:nth-child(8) { transition-delay: 0.46s; }

/* ── RESERVATION: Urgency ── */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #fef3e8, #fde6c8);
  border: 1px solid #f0c89a; border-radius: 999px;
  padding: 6px 14px; font-size: 0.74rem; font-weight: 700;
  color: #8b5a1e; letter-spacing: 0.05em; margin-bottom: var(--space-2);
}
.urgency-dot {
  width: 7px; height: 7px; background: #d4620a; border-radius: 50%;
  animation: urgencyPulse 1.6s ease-in-out infinite; flex-shrink: 0;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.65); }
}
.response-time-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.79rem; color: var(--primary); font-weight: 600;
  margin: -4px 0 8px;
}
.response-time-note svg {
  width: 14px; height: 14px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0;
}

/* Stats stagger */
.stats-grid [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.stats-grid [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.stats-grid [data-reveal]:nth-child(3) { transition-delay: 0.25s; }
.stats-grid [data-reveal]:nth-child(4) { transition-delay: 0.35s; }

/* Flatpickr month label fix */
.flatpickr-current-month {
  font-size: 1rem !important;
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  max-width: none !important;
  overflow: visible !important;
}
.flatpickr-current-month input.cur-year {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}
.flatpickr-calendar.hasTime .flatpickr-time { display: none !important; }

/* Mobile */
@media (max-width: 768px) {
  .gallery-mosaic { grid-template-columns: 1fr !important; grid-template-rows: auto !important; gap: 2px !important; }
  .gallery-item:nth-child(1) { grid-row: span 1 !important; min-height: 260px; }
  .gallery-item { min-height: 200px; }
  .gallery-mosaic [data-reveal] { transition-delay: 0s !important; }
  .services-grid [data-reveal] { transition-delay: 0s !important; }
  .reviews-rating-bar { gap: 20px; }
  .rrb-divider { display: none; }
  .rrb-score { font-size: 2rem; }
  .gallery-cta-bar { flex-direction: column; text-align: center; gap: 12px; }
}

/* ══════════════════════════════════════════
   SERVICES REDESIGN — Feature + Amenity Grid
   ══════════════════════════════════════════ */

/* Hide old grid */
.services-grid { display: none !important; }

/* Feature grid — 2 large editorial cards */
.services-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.service-feature-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(42,35,27,0.13);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.38s;
}

.service-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(42,35,27,0.22);
}

.sfc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.service-feature-card:hover .sfc-bg {
  transform: scale(1.05);
}

/* Warm gradient overlay — not black/harsh, warm dark brown */
.service-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 20, 12, 0.85) 0%,
    rgba(30, 20, 12, 0.35) 50%,
    rgba(30, 20, 12, 0.0) 100%
  );
  transition: background 0.38s;
}

.service-feature-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(30, 20, 12, 0.88) 0%,
    rgba(30, 20, 12, 0.45) 60%,
    rgba(30, 20, 12, 0.05) 100%
  );
}

.sfc-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
}

.sfc-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}

.sfc-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sfc-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 30ch;
}

.sfc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background 0.25s;
}

.service-feature-card:hover .sfc-btn {
  opacity: 1;
  transform: translateY(0);
}

.sfc-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sfc-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
}

/* Hidden slider track for modal compatibility */
.service-feature-card .service-slider-track {
  display: none;
}

/* Amenity grid — 4 clean cards */
.services-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-amenity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.service-amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,35,27,0.10);
  border-color: var(--primary);
}

.sac-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef4f0, #ddeee5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sac-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-amenity-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.service-amenity-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-feature-grid {
    grid-template-columns: 1fr;
  }
  .service-feature-card {
    height: 340px;
  }
  .services-amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sfc-btn {
    opacity: 1;
    transform: translateY(0);
  }
  .services-amenity-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service-amenity-card {
    padding: 18px 14px;
  }
}

/* ── Price estimate block ── */
#price-estimate {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 16px;
  animation: fadeSlideIn 0.3s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pe-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.5;
}

.pe-row + .pe-row {
  margin-top: 6px;
}

.pe-row.pe-total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.pe-row .pe-val {
  font-weight: 600;
  color: var(--text);
}

.pe-row.pe-total .pe-val {
  color: var(--primary);
  font-size: 1.05rem;
}

.pe-label-tag {
  display: inline-block;
  font-size: 0.7rem;
  background: rgba(79,122,98,0.12);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 6px;
  vertical-align: middle;
}

.pe-loading {
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

.pe-error {
  font-size: 0.84rem;
  color: #b45309;
  text-align: center;
  padding: 4px 0;
}

.pe-usd {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
  padding: 1px 7px;
  margin-left: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
  vertical-align: middle;
  white-space: nowrap;
}

.pe-rate-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  margin-top: 6px;
  opacity: 0.75;
}

/* ── MAP SHOWCASE — Rediseño inmersivo ── */

.exp-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: start;
}

.exp-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

/* Override the old 2-col grid */
.experience-location-grid { display: block !important; }

/* Map container — hero sizing */
.map-showcase {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  margin-bottom: var(--space-4);
  isolation: isolate;
}

.map-showcase iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gradient overlay: dark left, fades to transparent right */
.map-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(18,14,11,0.72) 0%,
      rgba(18,14,11,0.48) 30%,
      rgba(18,14,11,0.10) 54%,
      transparent 70%),
    linear-gradient(to top,
      rgba(18,14,11,0.28) 0%,
      transparent 30%);
  pointer-events: none;
  z-index: 1;
}

/* Info panel: floating over the gradient */
.map-info-panel {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 310px;
}

/* Pulsing pin */
.map-pin-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.map-pin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(138,180,154,0.55);
  animation: pinPulse 2.4s ease-in-out infinite;
}

.map-pin-ring--2 {
  inset: -8px;
  border-color: rgba(138,180,154,0.25);
  animation-delay: 0.6s;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  60%       { transform: scale(1.35); opacity: 0; }
}

.map-pin-icon {
  width: 26px;
  height: 26px;
  fill: #8ab49a;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(138,180,154,0.6));
}

/* Title */
.map-info-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  animation: mapInfoIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}

.map-info-title span {
  display: block;
  font-size: 0.48em;
  font-weight: 400;
  opacity: 0.65;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes mapInfoIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Info list */
.map-info-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  animation: mapListIn 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

.map-info-list li:nth-child(1) { animation-delay: 0.40s; }
.map-info-list li:nth-child(2) { animation-delay: 0.56s; }
.map-info-list li:nth-child(3) { animation-delay: 0.72s; }

@keyframes mapListIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.map-info-list svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: #8ab49a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* "Cómo llegar" CTA */
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s, border-color 0.25s, transform 0.22s;
  animation: mapListIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.88s both;
}

.map-directions-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateX(4px);
}

.map-directions-btn svg {
  width: 14px;
  height: 14px;
  fill: #8ab49a;
  stroke: none;
}

/* Location cards strip below map */
.loc-cards-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.loc-cards-strip .loc-card:nth-child(1) { animation-delay: 0.05s; }
.loc-cards-strip .loc-card:nth-child(2) { animation-delay: 0.18s; }
.loc-cards-strip .loc-card:nth-child(3) { animation-delay: 0.31s; }

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
  .exp-strip {
    grid-template-columns: 1fr;
  }
  .exp-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .map-showcase {
    height: 460px;
  }
}

@media (max-width: 720px) {
  .exp-cards-row {
    grid-template-columns: 1fr;
  }
  .map-showcase {
    height: 420px;
    border-radius: var(--radius-md);
  }
  .map-info-panel {
    left: 24px;
    max-width: 260px;
  }
  .map-info-title {
    font-size: 1.7rem;
  }
  .loc-cards-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .map-showcase {
    height: 360px;
  }
  .map-info-panel {
    left: 18px;
    top: auto;
    bottom: 22px;
    transform: none;
    max-width: calc(100% - 36px);
  }
  .map-info-title {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }
  .map-info-list {
    gap: 8px;
    margin-bottom: 18px;
  }
  .map-info-list li { font-size: 0.8rem; }
  .map-directions-btn { font-size: 0.8rem; padding: 9px 18px; }
}
