/* ================================================================
   HOTEL VIÑAS DE LÁRREDE — STYLES UNIFICADOS
   Home + Restaurante + Rooms&Suite + Hotel + Contacto + Experiencias
   + Servicios + Multimedia + Legales + Mapa web + Footer

   ────────────────────────────────────────────────────────────────
   ÍNDICE
   ────────────────────────────────────────────────────────────────
    1.  VARIABLES Y BASE
    2.  TIPOGRAFÍA Y HELPERS
    3.  NAVBAR (compartido)
    4.  HERO INTERIOR (compartido + variantes)
    5.  BLOQUE OSCURO (compartido)
    6.  CTA FINAL (compartido)
    7.  ENTRADILLA INTERIOR GRIS (compartido)
    8.  HOME PAGE
    9.  RESTAURANTE INTERIOR
   10.  ROOMS & SUITE
   11.  HOTEL PAGE
   12.  CONTACTO
   13.  EXPERIENCIAS — LISTADO
   14.  EXPERIENCIAS — DETALLE (packs)
   15.  PÁGINAS DE SERVICIOS (recarga, piscina, spa, eventos, empleo)
   16.  MULTIMEDIA (galería masonry)
   17.  PÁGINAS LEGALES + MAPA WEB
   18.  FOOTER
   19.  ANIMACIONES
   20.  RESPONSIVE
   ================================================================ */


/* ================================================================
   1. VARIABLES Y BASE
   ================================================================ */
:root {
    --gold: #c89534;
    --gold-light: #dfb14a;
    --gold-dark: #8a661c;
    --dark-bg: #1d1813;
    --dark-bg-light: #2c241d;
    --cream: #faf6ec;
    --text-light: #f0e6cc;
    --text-muted: #b8a784;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 0;
}


/* ================================================================
   2. TIPOGRAFÍA Y HELPERS
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.section-title-gold {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    text-align: center;
    font-style: italic;
    font-weight: 300;
}

.section-description {
    color: var(--text-light);
    max-width: 850px;
    margin: 2rem auto 0;
    text-align: center;
    line-height: 1.8;
    font-size: 0.95rem;
}

.small-tag {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.intro-tag {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.intro-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1d1813;
    line-height: 1.1;
    margin-bottom: 2rem;
}

    .intro-display em {
        color: var(--gold);
        font-style: italic;
        font-weight: 300;
    }

.intro-body {
    padding-left: 2rem;
    border-left: 1px solid rgba(200, 149, 52, 0.35);
}

.intro-lead {
    font-size: 1.15rem;
    color: #1d1813;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-body p {
    color: #666;
}

.intro-body strong {
    color: #1d1813;
    font-weight: 600;
}


/* ================================================================
   3. NAVBAR (compartido)
   ================================================================ */
.custom-navbar {
    background: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .custom-navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
        padding: 0.5rem 0;
    }

.brand-wrapper {
    text-align: center;
    line-height: 1;
}

.brand-hotel {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 2px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1813;
    margin: 0;
    letter-spacing: 2px;
}

.brand-de {
    font-size: 0.7rem;
    vertical-align: middle;
}

.brand-family {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: #999;
    margin-top: 2px;
}

.navbar {
    --bs-navbar-padding-y: 0 !important
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--gold) !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 60%;
    }

.reservation-widget-top {
    display: none;
}

    .reservation-widget-top.open {
        display: block;
    }

.btn-reservar {
    background: #1d1813;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-reservar:hover {
        background: var(--gold);
        color: #fff;
    }

.nav-3col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-left,
.nav-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
    gap: 1rem;
}

.logo-ah {
    height: 70px;
    width: auto;
}

.nav-center .navbar-brand img {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
}

/* Hamburguesa visible siempre (también en escritorio) */
.navbar-toggler {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(29, 24, 19, 0.2);
    padding: 0.4rem 0.6rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* El menú desplegable ocupa el ancho completo bajo la barra */
#navbarMenu.navbar-collapse {
    flex-basis: 100%;
    background: #fff;
    margin-top: 1rem;
    padding: 1rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(200, 149, 52, 0.18);
}

#navbarMenu .navbar-nav {
    align-items: center;
    gap: 0.5rem;
}
/* El menú desplegable ocupa el ancho completo bajo la barra */
#navbarMenu.navbar-collapse {
    flex-basis: 100%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(200, 149, 52, 0.18);
}

/* Estado cerrado: invisible y ligeramente desplazado hacia arriba */
#navbarMenu .navbar-nav {
    align-items: center;
    gap: 0.25rem;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Estado abierto: Bootstrap añade .show al terminar de expandir */
#navbarMenu.show .navbar-nav,
#navbarMenu.collapsing .navbar-nav {
    opacity: 1;
    transform: translateY(0);
}

/* Suaviza la propia animación de altura de Bootstrap */
#navbarMenu.collapsing {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Entrada escalonada de cada ítem */
#navbarMenu .nav-item {
    opacity: 0;
    transform: translateY(8px);
}

#navbarMenu.show .nav-item {
    animation: navItemIn 0.5s ease forwards;
    animation-delay: calc(0.12s + var(--i, 0) * 0.07s);
}

@keyframes navItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ---- Botón hamburguesa propio (3 líneas) ---- */
.menu-toggle {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

    .menu-toggle span {
        display: block;
        height: 1.5px;
        background: #1d1813;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        transform-origin: right center;
    }

        .menu-toggle span:nth-child(1) {
            width: 28px;
        }

        .menu-toggle span:nth-child(2) {
            width: 20px;
        }

        .menu-toggle span:nth-child(3) {
            width: 24px;
        }

    .menu-toggle:hover span {
        background: var(--gold);
        width: 28px;
    }

/* Transformación a X cuando el menú está abierto */
body.menu-open .menu-toggle span {
    width: 28px;
    background: var(--gold);
}

    body.menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    body.menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

/* ---- Overlay oscuro ---- */
.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 24, 19, 0);
    backdrop-filter: blur(0px);
    visibility: hidden;
    z-index: 1040;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, visibility 0s linear 0.5s;
}

body.menu-open .side-overlay {
    background: rgba(29, 24, 19, 0.55);
    backdrop-filter: blur(3px);
    visibility: visible;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, visibility 0s;
}

/* ---- Panel lateral ---- */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 85vw;
    height: 100%;
    background: var(--dark-bg);
    z-index: 1050;
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
}

body.menu-open .side-menu {
    transform: translateX(0);
}

.side-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .side-close:hover {
        color: var(--gold);
        transform: rotate(90deg);
    }

.side-menu-brand {
    text-align: center;
    padding: 1.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.5rem;
}

    .side-menu-brand img {
        filter: brightness(0) invert(1);
        opacity: 0.92;
    }

/* ---- Navegación ---- */
.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li {
    opacity: 0;
    transform: translateX(30px);
}

body.menu-open .side-nav li {
    animation: sideItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.25s + var(--i, 0) * 0.08s);
}

@keyframes sideItemIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.side-nav a {
    display: block;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

    .side-nav a:hover {
        color: var(--gold);
        padding-left: 0.8rem;
    }

/* ---- Footer del panel ---- */
.side-menu-footer {
    margin-top: auto;
    padding-top: 2.5rem;
}

.btn-side-reservar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-side-reservar:hover {
        background: var(--gold-light);
        color: #fff;
        transform: translateY(-2px);
    }

.side-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .side-social a {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .side-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
        }

/* Bloquea el scroll del fondo cuando el panel está abierto */
body.menu-open {
    overflow: hidden;
}

/* Línea dorada bajo cada enlace, ya la tienes; refuerzo del hover en el desplegable */
#navbarMenu .nav-link {
    padding: 0.7rem 1.2rem !important;
}
/* ================================================================
   4. HERO INTERIOR (compartido) + VARIANTES
   ================================================================ */
.hero-restaurante {
    position: relative;
    height: 320px;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.hero-rest-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

    .hero-rest-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hero-rest-overlay {
    position: absolute;
    inset: 0;
}

.hero-rest-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 1.5rem 2.5rem
}

.hero-rest-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 6px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 24px rgba(0, 0, 0, 0.6);
}

.hero-rest-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    letter-spacing: 1px;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* ---- Variantes por página ---- */
.hero-rest-image-rooms {
    background-image: url("../img/HABITACIONES.jpg") !important;
}

.hero-rest-image-hotel {
    background-image: url("../img/HOTEL.jpg") !important;
}

.hero-rest-image-contacto {
    background-image: url("../img/CONTACTO.jpg") !important;
}

.hero-rest-image-experiencias {
    background-image: url("../img/EXPERIENCIAS.jpg") !important;
}

.hero-rest-image-eventos {
    background-image: url("../img/headers/eventos.jpg");
}

.hero-rest-image-multimedia {
    background-image: url("../img/Larrede_Salon69410ALTA.jpg") !important;
}

.hero-rest-image-empleo {
    background-image: url("../img/EMPLEO.jpg") !important;
}

.hero-rest-image-recarga {
    background-image: url("../img/headers/recargaelectrica.jpg") !important;
}

.hero-rest-image-piscina {
    background-image: url("../img/headers/piscinaexterior.jpg") !important;
}

.hero-rest-image-spa {
    background-image: url("../img/headers/spa.jpg") !important;
}

/* ---- Variantes de hero para packs (experiencia detalle) ---- */
.hero-rest-image-pack-premium {
    background-image: url("../img/experiencias/pack_premium_3noches.jpg") !important;
}

.hero-rest-image-pack-relax {
    background-image: url("../img/experiencias/pack_relax_2noches.jpg") !important;
}

.hero-rest-image-pack-desconexion5 {
    background-image: url("../img/experiencias/pack_desconexion_5noches.jpg") !important;
}

.hero-rest-image-pack-desconexion3 {
    background-image: url("../img/experiencias/pack_3desconexion.jpg") !important;
}

.hero-rest-image-pack-esqui5 {
    background-image: url("../img/experiencias/esqui_alacarta5.jpg") !important;
}

.hero-rest-image-pack-esqui4 {
    background-image: url("../img/experiencias/esqui_alacarta4.jpg") !important;
}

.hero-rest-image-pack-esqui-finde {
    background-image: url("../img/experiencias/esqui_alacartafinde.jpg") !important;
}

/* ---- Hero variante legal (fondo oscuro plano) ---- */
.hero-restaurante-legal {
    background-image: none;
    background-color: var(--dark-bg);
}

    .hero-restaurante-legal .hero-rest-overlay {
        background: linear-gradient(180deg, rgba(29,24,19,0.55) 0%, rgba(29,24,19,0.92) 100%);
    }

/* ---- Breadcrumb dentro del hero ---- */
.exp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
}

    .exp-breadcrumb a {
        color: var(--gold);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .exp-breadcrumb a:hover {
            color: var(--gold-light);
        }

    .exp-breadcrumb i {
        font-size: 0.55rem;
        color: rgba(255,255,255,0.5);
    }

    .exp-breadcrumb span {
        color: rgba(255,255,255,0.9);
    }


/* ================================================================
   5. BLOQUE OSCURO (compartido en interiores)
   ================================================================ */
.dark-block {
    background: var(--dark-bg);
    color: #fff;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.dark-block-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 92, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(201, 168, 92, 0.05) 0%, transparent 40%);
}

.dark-block .container-fluid {
    position: relative;
    z-index: 2;
    padding: 0 5vw;
}

.dark-block-content {
    padding: 0 4rem 0 0;
}

.dark-block-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dark-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.dark-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

.dark-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -2px;
}

    .dark-block-title em {
        color: var(--gold);
        font-style: italic;
        font-weight: 400;
    }

.dark-block-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 480px;
}

    .dark-block-lead strong {
        color: var(--gold);
        font-weight: 500;
    }

.dark-block-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dark-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
}

    .feature-num sup {
        font-size: 1rem;
        vertical-align: super;
        margin-left: 2px;
    }

.feature-label {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    font-weight: 400;
}

.dark-block-amenities {
    margin-bottom: 3rem;
}

.dark-amenities-title {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.dark-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.5rem;
}

    .dark-amenities-grid span {
        color: rgba(255,255,255,0.8);
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

        .dark-amenities-grid span i {
            color: var(--gold);
            font-size: 0.85rem;
            width: 18px;
        }

.dark-block-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-dark-reservar {
    background: var(--gold);
    color: #fff;
    padding: 1.1rem 2.2rem;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-dark-reservar:hover {
        background: var(--gold-light);
        color: #fff;
        transform: translateX(4px);
        box-shadow: 0 10px 30px rgba(200, 149, 52, 0.45);
    }

.btn-dark-tour {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

    .btn-dark-tour:hover {
        color: var(--gold);
        border-color: var(--gold);
    }

/* ---- Galería dentro del bloque oscuro ---- */
.dark-block-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.gallery-main {
    position: relative;
    flex: 2;
    overflow: hidden;
    min-height: 380px;
}

    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .gallery-main:hover img {
        transform: scale(1.05);
    }

.gallery-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.gallery-thumb {
    overflow: hidden;
    min-height: 180px;
}

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-thumb:hover img {
        transform: scale(1.08);
    }

/* ---- Variante: cómo llegar (hotel page) ---- */
.dark-block-llegar {
    padding: 6rem 0;
}

    .dark-block-llegar .dark-block-content {
        padding: 0 4rem 0 0;
    }

.llegar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-bottom: 3rem;
}

.llegar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .llegar-item i {
        color: var(--gold);
        font-size: 1.1rem;
        margin-top: 0.3rem;
        width: 24px;
        text-align: center;
    }

    .llegar-item div {
        flex: 1;
    }

    .llegar-item strong {
        display: block;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.2rem;
    }

    .llegar-item span {
        color: rgba(255,255,255,0.6);
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }



.llegar-service {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .llegar-service:last-child {
        border-bottom: none;
    }

    .llegar-service > i {
        color: var(--gold);
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        background: rgba(200, 149, 52, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .llegar-service strong {
        display: block;
        color: var(--gold);
        font-size: 0.8rem;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 0.4rem;
        text-transform: uppercase;
    }

    .llegar-service p {
        color: rgba(255,255,255,0.75);
        font-size: 0.85rem;
        line-height: 1.7;
        margin: 0;
    }

/* ---- Columna derecha del bloque oscuro ---- */
.llegar-coords {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.coords-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 168, 92, 0.2);
    padding: 1.8rem;
}

.coords-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
}

    .coords-header i {
        font-size: 1rem;
    }

.coords-values {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.coords-item {
    flex: 1;
}

    .coords-item small {
        display: block;
        color: rgba(255,255,255,0.5);
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 0.4rem;
    }

    .coords-item strong {
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        font-weight: 400;
        font-style: italic;
    }

.coords-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.coords-altitude {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

    .coords-altitude span {
        color: rgba(255,255,255,0.5);
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .coords-altitude strong {
        color: var(--gold);
        font-size: 0.9rem;
        font-weight: 500;
    }

.region-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 168, 92, 0.2);
    padding: 1.8rem;
}

    .region-card h4 {
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 0.8rem;
    }

    .region-card p {
        color: rgba(255,255,255,0.7);
        font-size: 0.82rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

.region-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .region-stats > div strong {
        display: block;
        font-family: 'Cormorant Garamond', serif;
        color: var(--gold);
        font-size: 1.8rem;
        font-style: italic;
        font-weight: 400;
        line-height: 1;
    }

        .region-stats > div strong small {
            font-size: 0.7rem;
            font-style: normal;
        }

        .region-stats > div strong i {
            font-size: 1.5rem;
            color: var(--gold);
        }

    .region-stats > div span {
        display: block;
        color: rgba(255,255,255,0.5);
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-top: 0.3rem;
    }

.recepcion-card {
    background: var(--gold);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

    .recepcion-card > i {
        color: #fff;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .recepcion-card strong {
        display: block;
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
    }

    .recepcion-card p {
        color: rgba(255,255,255,0.9);
        font-size: 0.78rem;
        line-height: 1.6;
        margin: 0;
    }

/* ---- Variante: contacto (horarios) ---- */
.dark-block-contacto {
    padding: 6rem 0;
}

    .dark-block-contacto .dark-block-content {
        padding: 0 4rem 0 0;
    }

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.horario-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .horario-item > i {
        color: var(--gold);
        font-size: 1.1rem;
        margin-top: 0.3rem;
        width: 24px;
        text-align: center;
    }

    .horario-item div {
        flex: 1;
    }

    .horario-item strong {
        display: block;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.2rem;
    }

    .horario-item span {
        color: rgba(255,255,255,0.6);
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

.address-main {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.address-sub {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.address-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

    .address-link:hover {
        color: var(--gold-light);
        padding-left: 0.5rem;
    }

.social-icons-dark {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .social-icons-dark a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .social-icons-dark a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
            transform: translateY(-3px);
        }

/* ---- Variante: pack experiencia ---- */
.dark-block-pack {
    padding: 6rem 0;
}

    .dark-block-pack .dark-block-content {
        padding: 0 4rem 0 0;
    }

.pack-includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

    .pack-includes-list li {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .pack-includes-list li:last-child {
            border-bottom: none;
        }

.pi-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 92, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pack-includes-list li:hover .pi-icon {
    background: var(--gold);
    color: #fff;
}

.pi-content {
    flex: 1;
}

    .pi-content strong {
        display: block;
        color: #fff;
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
    }

    .pi-content span {
        color: rgba(255,255,255,0.65);
        font-size: 0.8rem;
        line-height: 1.5;
    }

.pack-note {
    background: rgba(201, 168, 92, 0.08);
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .pack-note > i {
        color: var(--gold);
        font-size: 1.1rem;
        margin-top: 0.15rem;
    }

    .pack-note div {
        color: rgba(255,255,255,0.85);
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .pack-note strong {
        color: var(--gold);
        font-weight: 600;
    }

/* ---- Chef en bloque oscuro ---- */
.chef-card-dark .chef-name {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.chef-card-dark .chef-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.chef-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .chef-tags span {
        background: rgba(200, 149, 52, 0.18);
        color: var(--gold);
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
        border-radius: 20px;
        font-weight: 500;
    }

/* ---- Lista de temporadas (bloque oscuro de experiencias) ---- */
.seasons-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.season-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.season-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 149, 52, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.season-item strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.season-item span {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
}


/* ================================================================
   6. CTA FINAL (compartido)
   ================================================================ */
.rooms-final-cta {
    background: #fefcf3;
    padding: 6rem 0;
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #1d1813;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

    .cta-title em {
        color: var(--gold);
        font-style: italic;
    }

.cta-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-call {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-cta-call i {
        margin-right: 0.5rem;
    }

    .btn-cta-call:hover {
        background: var(--gold);
        color: #fff;
    }

.btn-cta-mail {
    background: #1d1813;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-cta-mail:hover {
        background: var(--gold);
        color: #fff;
        transform: translateX(4px);
    }


/* ================================================================
   7. ENTRADILLA INTERIOR GRIS (compartido)
   ================================================================ */
.bloque_interior_gris {
    background: var(--cream);
    padding: 50px 20px;
    position: relative;
}
    /* Líneas finas doradas (comentadas, recuperar si se desea):
.bloque_interior_gris::before,
.bloque_interior_gris::after {
    content: ""; position: absolute; left: 50%; transform: translateX(-50%);
    width: 40px; height: 1px; background: var(--gold); opacity: .55;
}
.bloque_interior_gris::before { top: 30px; }
.bloque_interior_gris::after  { bottom: 30px; }
*/

    .bloque_interior_gris .contenedor_interior {
        max-width: 880px;
        margin: 0 auto;
        text-align: center;
    }

    .bloque_interior_gris .titulo_eventos {
        position: relative;
        margin-bottom: 38px;
    }

        .bloque_interior_gris .titulo_eventos h1 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: clamp(2rem, 3.4vw, 2.8rem);
            line-height: 1.2;
            color: var(--dark-bg);
            letter-spacing: .4px;
            margin: 0;
        }

        .bloque_interior_gris .titulo_eventos::after {
            content: "";
            display: block;
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 24px auto 0;
        }

    .bloque_interior_gris .texto_restaurante {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        font-size: 1rem;
        line-height: 1.85;
        color: #3d362e;
        letter-spacing: .3px;
        max-width: 760px;
        margin: 0 auto;
    }

        .bloque_interior_gris .texto_restaurante b {
            color: var(--dark-bg);
            font-weight: 500;
            letter-spacing: .5px;
        }

        .bloque_interior_gris .texto_restaurante br {
            display: block;
            content: "";
            margin-top: 14px;
        }
    /* Limpiar <br /> sueltos del HTML */
    .bloque_interior_gris > br,
    .bloque_interior_gris .contenedor_interior > br {
        display: none;
    }


/* ================================================================
   8. HOME PAGE
   ================================================================ */

/* ---- Hero principal ---- */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    /* El vídeo del hero siempre rellena su contenedor sin deformarse */
    .hero-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
}

/* ---- Widget de reservas (top) ---- */
.reservation-widget-top {
    position: absolute;
    top: 75px;
    right: 22px;
    background: rgba(255, 255, 255, 0.95);
    width: 320px;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.widget-tabs {
    display: flex;
    background: #faf6ec;
}

.widget-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .widget-tab.active,
    .widget-tab:hover {
        background: var(--gold);
        color: #fff;
    }

    .widget-tab i {
        margin-right: 0.5rem;
    }

.widget-body {
    padding: 1.5rem;
}

.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.reservation-form .form-group {
    margin-bottom: 0.8rem;
}

.reservation-form label {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0.2rem;
    display: block;
    letter-spacing: 0.5px;
}

.reservation-form .form-control,
.reservation-form .form-select {
    border-radius: 0;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
}

    .reservation-form .form-control:focus,
    .reservation-form .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 0.15rem rgba(201, 168, 92, 0.2);
    }

.btn-consultar {
    background: var(--gold);
    color: #fff;
    border: none;
    width: 100%;
    padding: 0.7rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

    .btn-consultar:hover {
        background: var(--gold-dark);
        color: #fff;
    }

/* ---- Barra inferior del hero (Private Collection) ---- */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 60px 5px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 10;
}

.private-collection {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.collection-tag {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.collection-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    position: relative;
}

    .collection-brands::before,
    .collection-brands::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 19%;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
    }

    .collection-brands::before {
        left: 0;
    }

    .collection-brands::after {
        right: 0;
    }

.brand-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

    .brand-link:hover {
        opacity: 0.75;
    }

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-logo img {
        height: 60px;
        width: auto;
    }

.authentic-heritage {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

    .authentic-heritage img {
        height: 85px;
        width: auto;
    }

/* ---- Ventajas exclusivas ---- */
.ventajas-section {
    background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    padding: 5.5rem 0;
    color: #fff;
}

.ventajas-eyebrow {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.ventajas-section .section-title-gold {
    text-align: left;
    font-size: 2.75rem;
    margin-bottom: 0;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.ventaja-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(200, 149, 52, 0.04);
    border: 1px solid rgba(200, 149, 52, 0.18);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

    .ventaja-item:hover {
        border-color: rgba(200, 149, 52, 0.5);
        background: rgba(200, 149, 52, 0.08);
        transform: translateY(-3px);
    }

.ventaja-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--gold);
    background: rgba(200, 149, 52, 0.12);
    border-radius: 50%;
}

.ventaja-item h5 {
    color: var(--gold);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.ventaja-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.ventaja-item > div {
    flex: 1;
}

/* ---- Ventajas: tarjeta lateral ---- */
.ventajas-aside {
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(200, 149, 52, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.ventajas-aside-label {
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.ventajas-aside-pct {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .ventajas-aside-pct span {
        font-size: 1rem;
        font-style: italic;
        color: var(--text-light);
        margin-top: 0.25rem;
    }

.ventajas-aside-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.reservation-widget-dark {
    background: var(--dark-bg-light);
    padding: 2rem;
    border: 1px solid rgba(200, 149, 52, 0.35);
}

    .reservation-widget-dark .widget-title {
        color: var(--gold);
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .reservation-widget-dark label {
        color: var(--text-light);
    }

    .reservation-widget-dark .form-control,
    .reservation-widget-dark .form-select {
        background: rgba(255,255,255,0.05);
        border-color: rgba(200, 149, 52, 0.35);
        color: #fff;
    }

        .reservation-widget-dark .form-control::placeholder {
            color: rgba(255,255,255,0.5);
        }

/* ---- Habitaciones (carrusel home) ---- */
.habitaciones-section {
    background: var(--dark-bg);
    padding: 4rem 0 6rem;
    color: #fff;
}

.rooms-carousel {
    position: relative;
    padding: 0 60px;
}

.room-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .room-card:hover {
        transform: translateY(-5px);
    }

    .room-card img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        flex-shrink: 0;
    }

.room-info {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    color: #333;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .room-info h4 {
        color: #1d1813;
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        font-family: 'Cormorant Garamond', serif;
    }

        .room-info h4.elegant-title {
            font-family: 'Dancing Script', cursive;
            color: var(--gold);
            font-size: 1.8rem;
        }

    .room-info p {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.7;
        margin: 0;
    }

/* ---- Controles de carrusel (compartidos por home/experiencias) ---- */
.custom-control {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 149, 52, 0.45);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    z-index: 5;
}

    .custom-control:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #fff;
        box-shadow: 0 10px 28px rgba(201, 168, 92, 0.45);
    }

.carousel-control-prev.custom-control {
    left: 0;
    transform: translateY(-50%);
}

.carousel-control-next.custom-control {
    right: 0;
    transform: translateY(-50%);
}

.carousel-control-prev.custom-control:hover {
    transform: translateY(-50%) translateX(-3px);
}

.carousel-control-next.custom-control:hover {
    transform: translateY(-50%) translateX(3px);
}

.carousel-counter {
    text-align: center;
    margin-top: 2rem;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

    .carousel-counter #currentSlide,
    .carousel-counter #currentEspacioSlide {
        color: var(--gold);
    }

/* ---- Familia (cita propietarios) ---- */
.familia-section {
    background: #f4f4f0;
    padding: 5rem 0;
}

.familia-image img {
    width: 100%;
    max-width: 500px;
    filter: grayscale(100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.familia-quote {
    padding-left: 2rem;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: #1d1813;
    line-height: 1.4;
    font-weight: 400;
}

.quote-author {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.signatures {
    margin-top: 1.5rem;
    display: flex;
    gap: 3rem;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #1d1813;
}

/* ---- Restaurante (home) ---- */
.restaurante-section {
    position: relative;
    padding: 0;
}

.restaurante-bg {
    background-image: url("../img/RESTAURANTE.jpg");
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
}

    .restaurante-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.3);
    }

.restaurante-card {
    background: #faf6ec;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.restaurante-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #1d1813;
    margin-bottom: 1rem;
    font-weight: 400;
}

.decorative-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.restaurante-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.restaurante-text {
    color: #555;
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.restaurante-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.7rem 1.8rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: #fff;
    }

/* ---- Experiencias (carrusel home) ---- */
.experiencias-section {
    background: #faf6ec;
    padding: 5rem 0;
}

.experiencias-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #666;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.experiences-carousel {
    position: relative;
    padding: 0 60px;
}

.experience-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .experience-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .experience-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        flex-shrink: 0;
    }

.experience-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.experience-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #1d1813;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.experience-info p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-reservar-exp {
    border: 1px solid #999;
    color: #666;
    padding: 0.5rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
    align-self: center;
}

    .btn-reservar-exp:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }


/* ================================================================
   9. RESTAURANTE INTERIOR
   ================================================================ */

/* ---- Gastronomía de proximidad ---- */
.gastronomia-proximidad {
    background: #fefcf3;
    padding: 5rem 0;
    position: relative;
}

.gastronomia-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #1d1813;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}

    .gastronomia-title span {
        font-style: italic;
        font-weight: 400;
    }

.filosofia-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    padding-top: 1rem;
}

    .filosofia-text p {
        margin-bottom: 1rem;
    }

.branch-decoration {
    width: 120px;
    height: 200px;
}

/* ---- Espacios + calendario ---- */
.espacios-section {
    background: #fefcf3;
    padding: 2rem 0 4rem;
    position: relative;
}

.espacios-carousel {
    position: relative;
    padding: 0 60px;
}

.calendario-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.calendario-hotel {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1d1813;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.calendario-direccion {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: #1d1813;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendario-date {
    background: #faf6ec;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.8rem;
    border-radius: 0;
}

    .calendario-date i {
        color: var(--gold);
        margin-right: 0.4rem;
    }

.calendario-wrapper {
    background: #fff;
}

.calendario-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0 0.3rem;
}

    .calendario-header span {
        font-size: 0.75rem;
        letter-spacing: 2px;
        color: #1d1813;
        font-weight: 600;
    }

.cal-arrow {
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cal-arrow:hover {
        background: var(--gold-dark);
    }

.calendario-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

    .calendario-table th {
        text-align: center;
        color: #1d1813;
        font-weight: 600;
        padding: 0.3rem 0;
        font-size: 0.7rem;
        border-bottom: 1px solid #eee;
    }

    .calendario-table td {
        text-align: center;
        padding: 0.35rem 0;
        color: #555;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .calendario-table td:hover:not(.empty):not(.disabled) {
            background: #faf6ec;
            color: var(--gold-dark);
        }

        .calendario-table td.empty {
            color: transparent;
            cursor: default;
        }

        .calendario-table td.disabled {
            color: #ccc;
            cursor: not-allowed;
        }

        .calendario-table td.selected {
            background: var(--gold);
            color: #fff;
            border-radius: 50%;
            font-weight: 600;
        }

.calendario-img {
    margin-top: auto;
    overflow: hidden;
}

    .calendario-img img {
        width: 100%;
        height: 110px;
        object-fit: cover;
    }

.espacio-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

    .espacio-card:hover {
        transform: translateY(-5px);
    }

    .espacio-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.espacio-info {
    padding: 1.5rem;
    flex: 1;
}

    .espacio-info h4 {
        color: #1d1813;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 500;
    }

    .espacio-info p {
        color: #666;
        font-size: 0.82rem;
        line-height: 1.7;
        margin: 0;
    }

/* ---- Platos de autor (sección oscura) ---- */
.platos-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    color: #fff;
}

.la-carta-tag {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.platos-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 1rem;
}

    .platos-title em {
        color: var(--gold);
        font-style: italic;
        font-weight: 400;
    }

.platos-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.platos-grid {
    margin-top: 3rem;
}

.plato-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

    .plato-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .plato-card:hover img {
        transform: scale(1.05);
    }

.plato-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

    .plato-overlay h5 {
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0;
        font-style: italic;
    }

.chef-row {
    margin-top: 5rem;
}

.chef-card {
    position: relative;
    border: 1px solid rgba(200, 149, 52, 0.35);
    padding: 0.8rem;
    max-width: 220px;
}

    .chef-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

.chef-frame {
    text-align: center;
    padding: 0.8rem 0 0.3rem;
    border-top: 1px solid rgba(200, 149, 52, 0.35);
    margin-top: 0.5rem;
}

.chef-label {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.chef-frame small {
    color: var(--text-muted);
    font-size: 0.55rem;
    letter-spacing: 2px;
}

.chef-quote {
    padding: 0 2rem;
    position: relative;
}

.quote-mark {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.chef-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .chef-quote-text .highlight {
        color: var(--gold);
    }

.chef-attribution {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-align: center;
    margin: 0;
}

/* ---- Bodega ---- */
.bodega-section {
    background: #faf6ec;
    padding: 5rem 0;
}

.bodega-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

    .bodega-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.bodega-content {
    background: #faf6ec;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.bodega-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1d1813;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.bodega-text {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

    .bodega-text strong {
        color: var(--gold-dark);
        font-weight: 600;
    }

.bodega-content .btn-outline-gold {
    align-self: flex-start;
}

.branch-decoration-small {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 90px;
    height: 120px;
    opacity: 0.7;
}


/* ================================================================
   10. ROOMS & SUITE
   ================================================================ */
.rooms-intro-modern {
    background: #fefcf3;
    padding: 6rem 0 4rem;
}

.rooms-filters-modern {
    margin-top: 4rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #eee;
}

    .rooms-filters-modern::-webkit-scrollbar {
        height: 4px;
    }

    .rooms-filters-modern::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 2px;
    }

.filters-wrapper {
    display: flex;
    gap: 0.75rem;
    min-width: max-content;
    padding: 0.5rem 0;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 50px;
    padding: 0.7rem 1.2rem 0.7rem 0.8rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

    .filter-pill:hover {
        background: #fefcf3;
        border-color: var(--gold);
        color: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(200, 149, 52, 0.18);
    }

    .filter-pill.active {
        background: var(--gold);
        border-color: var(--gold);
        color: #fff;
    }

        .filter-pill.active .pill-num {
            background: rgba(255,255,255,0.25);
            color: #fff;
        }

.pill-num {
    background: #faf6ec;
    color: var(--gold-dark);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0;
}

.pill-text {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.filter-pill-dark {
    background: var(--dark-bg);
    border-color: var(--dark-bg);
    color: #fff;
}

    .filter-pill-dark .pill-num {
        background: var(--gold);
        color: #fff;
    }

    .filter-pill-dark:hover {
        background: #13100c;
        color: #fff;
        border-color: var(--gold);
    }

    .filter-pill-dark.active {
        background: var(--gold);
        border-color: var(--gold);
    }

.pill-badge {
    color: var(--gold);
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.filter-pill-dark .pill-badge {
    color: #fff;
}

/* ---- Room modern ---- */
.room-modern {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.room-modern-alt {
    background: #fefcf3;
}

.room-modern-gallery {
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

    .room-modern-gallery .carousel-item img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .room-modern-gallery:hover .carousel-item.active img {
        transform: scale(1.03);
    }

.modern-gallery-ctrl {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border: none;
    color: #1d1813;
    font-size: 0.95rem;
    opacity: 1;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

    .modern-gallery-ctrl:hover {
        background: var(--gold);
        color: #fff;
        transform: translateY(-50%) scale(1.1);
    }

.carousel-control-prev.modern-gallery-ctrl {
    left: 1.2rem;
}

.carousel-control-next.modern-gallery-ctrl {
    right: 1.2rem;
}

.room-modern .row {
    align-items: flex-start !important;
}

.room-modern-num {
    position: absolute;
    top: -2rem;
    right: -0rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    z-index: 3;
    opacity: 0.95;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
    pointer-events: none;
}

.room-modern-num-right {
    right: auto;
}

.room-modern-info {
    padding: 0 0 0 4rem;
}

.room-modern-alt .row.flex-lg-row-reverse .room-modern-info {
    padding: 0 4rem 0 0;
}

.room-modern-tag {
    display: inline-block;
    background: #faf6ec;
    color: var(--gold-dark);
    padding: 0.35rem 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.room-modern-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1d1813;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

    .room-modern-title em {
        color: var(--gold);
        font-style: italic;
        font-weight: 300;
    }

.room-modern-desc {
    color: #666;
    font-size: 0.91rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.room-modern-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.room-modern-extra {
    margin: 0 0 2.5rem;
    padding: 1.1rem 1.3rem;
    background: #faf6ec;
    border-left: 2px solid var(--gold);
}

    .room-modern-extra .extra-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin: 0 0 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .room-modern-extra .extra-title i {
            color: var(--gold);
            font-size: 0.8rem;
        }

        .room-modern-extra .extra-title span {
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: none;
            color: #a8946a;
            font-style: italic;
        }

    .room-modern-extra .extra-text {
        font-size: 0.82rem;
        line-height: 1.75;
        color: #666;
        margin: 0;
    }

        .room-modern-extra .extra-text strong {
            color: #1d1813;
            font-weight: 600;
        }

.amenity-chip {
    background: #fff;
    border: 1px solid #e5dfd0;
    color: #555;
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .amenity-chip i {
        color: var(--gold);
        font-size: 0.75rem;
    }

    .amenity-chip:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

        .amenity-chip:hover i {
            color: #fff;
        }

.room-modern-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.room-modern-bed small {
    display: block;
    color: #999;
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.room-modern-bed strong {
    color: #1d1813;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-modern-reservar {
    background: #1d1813;
    color: #fff;
    border: none;
    padding: 0.85rem 1.8rem;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
}

    .btn-modern-reservar:hover {
        background: var(--gold);
        color: #fff;
        transform: translateX(4px);
    }


/* ================================================================
   11. HOTEL PAGE
   ================================================================ */
.hotel-welcome {
    background: #fefcf3;
    padding: 6rem 0;
}

.welcome-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 149, 52, 0.35);
}

    .welcome-signature .signature {
        font-family: 'Dancing Script', cursive;
        font-size: 1.5rem;
        color: var(--gold-dark);
    }

.hotel-timeline {
    padding-top: 4rem;
}

.timeline-title {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-align: center;
}

.timeline-item {
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(200, 149, 52, 0.18);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

    .timeline-item:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

.timeline-item-highlight {
    background: var(--gold);
    border-color: var(--gold);
}

    .timeline-item-highlight .timeline-date,
    .timeline-item-highlight h4,
    .timeline-item-highlight p {
        color: #fff !important;
    }

.timeline-date {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.timeline-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #1d1813;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

.hotel-quote {
    text-align: center;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(201, 168, 92, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hotel-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: #1d1813;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

    .hotel-quote-text em {
        color: var(--gold-dark);
        font-style: italic;
    }

    .hotel-quote-text .quote-mark {
        color: var(--gold);
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        margin: 0 0.3rem;
    }

.hotel-quote-attr {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 500;
}

/* ---- Entorno ---- */
.entorno-section {
    background: #fff;
    padding: 6rem 0;
}

.entorno-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #1d1813;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 2rem;
}

    .entorno-display em {
        color: var(--gold);
        font-style: italic;
        font-weight: 300;
    }

.entorno-card {
    background: #fff;
    border: 1px solid rgba(200, 149, 52, 0.18);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .entorno-card:hover {
        border-color: var(--gold);
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

.entorno-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

    .entorno-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.entorno-card:hover .entorno-img img {
    transform: scale(1.08);
}

.entorno-num {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.entorno-icon {
    position: absolute;
    bottom: 25px;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(200, 149, 52, 0.45);
    z-index: 2;
}

.entorno-info {
    padding: 2.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.entorno-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.entorno-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1d1813;
    font-weight: 400;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

    .entorno-title em {
        color: var(--gold);
        font-style: italic;
        font-weight: 300;
    }

.entorno-info p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.entorno-info strong {
    color: #1d1813;
    font-weight: 600;
}

.entorno-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 92, 0.2);
}

.stat-item {
    text-align: center;
}

    .stat-item strong {
        font-family: 'Cormorant Garamond', serif;
        display: block;
        color: var(--gold-dark);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1;
        margin-bottom: 0.3rem;
    }

        .stat-item strong small {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--gold-dark);
        }

    .stat-item span {
        color: #888;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }


/* ================================================================
   12. CONTACTO
   ================================================================ */

/* ---- Intro + tarjetas rápidas ---- */
.contacto-intro {
    background: #fefcf3;
    padding: 6rem 0 4rem;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.contact-quick-card {
    background: #fff;
    border: 1px solid rgba(201, 168, 92, 0.2);
    padding: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-quick-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(200, 149, 52, 0.18);
    }

.contact-quick-card-dark {
    background: var(--dark-bg);
    border-color: var(--dark-bg);
}

    .contact-quick-card-dark:hover {
        border-color: var(--gold);
    }

.quick-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 149, 52, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-quick-card:hover .quick-icon {
    background: var(--gold);
    color: #fff;
}

.contact-quick-card-dark .quick-icon {
    background: rgba(201, 168, 92, 0.2);
    color: var(--gold);
}

.quick-content {
    flex: 1;
    overflow: hidden;
}

.quick-label {
    display: block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.quick-content strong {
    display: block;
    color: #1d1813;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    word-break: break-all;
}

.contact-quick-card-dark .quick-content strong {
    color: #fff;
}

.quick-content small {
    color: #999;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.contact-quick-card-dark .quick-content small {
    color: rgba(255,255,255,0.6);
}

.quick-arrow {
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.contact-quick-card:hover .quick-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Formulario ASP.NET (.info_contacto) ---- */
.info_contacto {
    max-width: 640px;
    margin: 0 auto;
    overflow: hidden; /* clearfix para los float de email/teléfono */
    font-size: .85rem;
    color: #3d362e;
    line-height: 1.6;
}

    .info_contacto input[type="text"],
    .info_contacto input[type="email"],
    .info_contacto input[type="tel"],
    .info_contacto textarea {
        width: 100%;
        box-sizing: border-box;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(42,36,30,.25);
        padding: 14px 2px;
        margin-bottom: 26px;
        font-family: 'Montserrat', sans-serif;
        font-size: .95rem;
        color: var(--dark-bg);
        letter-spacing: .3px;
        transition: border-color .3s ease;
    }

    .info_contacto textarea {
        resize: vertical;
        min-height: 150px;
        line-height: 1.6;
    }

        .info_contacto input::placeholder,
        .info_contacto textarea::placeholder {
            color: #3d362e;
            font-weight: 300;
            opacity: 1;
        }

        .info_contacto input[type="text"]:focus,
        .info_contacto input[type="email"]:focus,
        .info_contacto input[type="tel"]:focus,
        .info_contacto textarea:focus {
            outline: none;
            border-bottom-color: var(--gold);
        }

    .info_contacto > div[style*="float"] {
        box-sizing: border-box;
    }

    .info_contacto input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 17px;
        height: 17px;
        border: 1px solid rgba(42,36,30,.4);
        margin: 0 8px 0 0;
        vertical-align: -3px;
        cursor: pointer;
        position: relative;
        transition: all .2s ease;
    }

        .info_contacto input[type="checkbox"]:checked {
            background: var(--gold);
            border-color: var(--gold);
        }

            .info_contacto input[type="checkbox"]:checked::after {
                content: "";
                position: absolute;
                left: 5px;
                top: 1px;
                width: 4px;
                height: 9px;
                border: solid #fff;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }

    .info_contacto a.contacto {
        color: var(--dark-bg);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color .2s ease;
    }

        .info_contacto a.contacto:hover {
            color: var(--gold);
        }

/* ---- Resumen de errores (ValidationSummary) ---- */
.lista-errores {
    background: #fbf0ef;
    border-left: 3px solid #b0473d;
    padding: 16px 20px;
    margin: 10px 0 26px;
    color: #8c352d;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    list-style: none;
}

    .lista-errores ul {
        margin: 0;
        padding-left: 18px;
    }

    .lista-errores li {
        margin: 4px 0;
    }

/* ---- Botón Enviar ---- */
.boton_marron {
    text-align: center;
}

    .boton_marron input[type="submit"],
    .boton_marron .wpcf7-submit {
        display: inline-block;
        background: var(--gold);
        color: #fff;
        border: 1px solid var(--gold);
        padding: 15px 56px;
        font-family: 'Montserrat', sans-serif;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all .3s ease;
    }

        .boton_marron input[type="submit"]:hover,
        .boton_marron .wpcf7-submit:hover {
            background: transparent;
            color: #8a661c;
            border-color: #8a661c;
        }

/* ---- Vistas de feedback (ok / error) ----
   Los validadores inline usan .error con Display="None" (quedan ocultos),
   por lo que estas reglas solo afectan a las vistas de mensaje. */
.ok {
    text-align: center;
    padding: 40px 30px;
    background: #f3f8ef;
    border: 1px solid #d6e7c9;
    color: #3f6b2c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.error {
    text-align: center;
    padding: 40px 30px;
    background: #fbf0ef;
    border: 1px solid #ecc9c5;
    color: #8c352d;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

/* ---- Validadores inline (formulario alternativo .contact-form) ---- */
.contact-form .error {
    display: block;
    color: #c0392b;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 6px;
    letter-spacing: 0.5px;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
}

.contact-form input.input-error,
.contact-form textarea.input-error {
    border-bottom-color: #c0392b !important;
}

.contact-form input[type="submit"].btn-form-submit {
    cursor: pointer;
    border: none;
}

.form-check-modern a.contacto {
    color: inherit;
    text-decoration: underline;
}

/* ---- Mensajes de feedback (.contact-form) ---- */
.form-feedback {
    text-align: center;
    padding: 60px 30px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

    .form-feedback i {
        font-size: 3.5rem;
        margin-bottom: 20px;
        display: block;
    }

    .form-feedback h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .form-feedback p {
        color: #6c6c6c;
        font-size: 0.95rem;
        max-width: 420px;
        margin: 0 auto;
    }

.form-feedback-ok {
    background: #f4f9f1;
    border: 1px solid #d4e7cb;
}

    .form-feedback-ok i {
        color: #27ae60;
    }

    .form-feedback-ok h4 {
        color: #1e6b3c;
    }

.form-feedback-error {
    background: #fdecea;
    border: 1px solid #f5c6c0;
}

    .form-feedback-error i {
        color: #c0392b;
    }

    .form-feedback-error h4 {
        color: #922b21;
    }

/* ---- Departamentos ---- */
.departamentos-wrapper {
    padding-left: 1rem;
}

.departamento-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(200, 149, 52, 0.18);
}

    .departamento-item:last-child {
        border-bottom: none;
    }

.dep-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 149, 52, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dep-content {
    flex: 1;
}

    .dep-content h5 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        color: #1d1813;
        margin-bottom: 0.3rem;
        font-weight: 500;
    }

    .dep-content p {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }

    .dep-content a {
        display: block;
        color: var(--gold-dark);
        font-size: 0.82rem;
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 0.2rem;
        transition: color 0.3s ease;
        word-break: break-word;
    }

        .dep-content a:hover {
            color: var(--gold);
        }

    .dep-content span {
        color: #666;
        font-size: 0.82rem;
        letter-spacing: 0.5px;
    }

/* ---- Mapa ---- */
.mapa-section {
    position: relative;
    background: var(--dark-bg);
}

.mapa-wrapper {
    position: relative;
    overflow: hidden;
}

    .mapa-wrapper iframe {
        display: block;
        filter: grayscale(20%) contrast(1.05);
    }

.mapa-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background: rgba(42, 36, 30, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2.5rem;
    max-width: 380px;
    border-left: 3px solid var(--gold);
    z-index: 2;
}

.mapa-tag {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.mapa-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.1;
}

    .mapa-overlay h3 em {
        color: var(--gold);
        font-style: italic;
    }

.mapa-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.mapa-coords {
    padding: 0.7rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

    .mapa-coords small {
        color: var(--gold);
        font-size: 0.72rem;
        letter-spacing: 1px;
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
    }

.btn-mapa {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #fff;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .btn-mapa:hover {
        background: var(--gold-light);
        color: #fff;
        transform: translateX(4px);
    }

/* ---- FAQ ---- */
.faq-section {
    background: #fefcf3;
    padding: 6rem 0;
}

.accordion-modern .accordion-item {
    background: #fff;
    border: 1px solid rgba(200, 149, 52, 0.18);
    margin-bottom: 1rem;
    border-radius: 0 !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-modern .accordion-item:hover {
        border-color: rgba(200, 149, 52, 0.45);
    }

.accordion-modern .accordion-button {
    background: #fff;
    color: #1d1813;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.5rem 2rem;
    box-shadow: none !important;
    border: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .accordion-modern .accordion-button:not(.collapsed) {
        background: #fefcf3;
        color: var(--gold-dark);
        box-shadow: none;
    }

    .accordion-modern .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a85c' stroke-width='1.5'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
        width: 1.2rem;
        height: 1.2rem;
        background-size: 1.2rem;
    }

.faq-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 400;
    min-width: 40px;
}

.accordion-modern .accordion-body {
    padding: 0 2rem 1.8rem 5rem;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.8;
}


/* ================================================================
   13. EXPERIENCIAS — LISTADO
   ================================================================ */
.exp-intro {
    background: #fefcf3;
    padding: 6rem 0 3rem;
}

.exp-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 168, 92, 0.2);
}

.exp-filter {
    background: #fff;
    border: 1px solid rgba(201, 168, 92, 0.2);
    padding: 0.85rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50px;
}

    .exp-filter:hover {
        border-color: var(--gold);
        color: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(200, 149, 52, 0.18);
    }

    .exp-filter.active {
        background: var(--dark-bg);
        border-color: var(--dark-bg);
        color: #fff;
    }

.ef-icon {
    width: 30px;
    height: 30px;
    background: rgba(200, 149, 52, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.exp-filter.active .ef-icon {
    background: var(--gold);
    color: #fff;
}

.ef-text {
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .ef-text small {
        background: rgba(200, 149, 52, 0.18);
        color: var(--gold-dark);
        padding: 0.15rem 0.5rem;
        border-radius: 10px;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0;
    }

.exp-filter.active .ef-text small {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.exp-featured {
    background: #fefcf3;
    padding: 4rem 0 6rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .featured-image:hover img {
        transform: scale(1.05);
    }

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: #fff;
    padding: 0.5rem 1.1rem;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    font-weight: 600;
}

.featured-content {
    background: #fff;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #1d1813;
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

    .featured-title em {
        color: var(--gold);
        font-style: italic;
        font-weight: 300;
    }

.featured-lead {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

    .featured-includes li {
        color: #555;
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0ebe1;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

        .featured-includes li:last-child {
            border-bottom: none;
        }

        .featured-includes li i {
            color: var(--gold);
            font-size: 0.75rem;
            background: rgba(200, 149, 52, 0.12);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.exp-grid-section {
    background: #fff;
    padding: 6rem 0;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exp-card {
    background: #fff;
    border: 1px solid rgba(200, 149, 52, 0.18);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

    .exp-card:hover {
        border-color: var(--gold);
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    }

    .exp-card.is-hidden {
        display: none;
    }

.exp-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

    .exp-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.exp-card:hover .exp-card-img img {
    transform: scale(1.08);
}

.exp-card-num {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.exp-card-category {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #fff;
    color: #1d1813;
    padding: 0.35rem 0.8rem;
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cat-packs {
    background: var(--gold);
    color: #fff;
}

.cat-esqui {
    background: #5b8db8;
    color: #fff;
}

.cat-aventura {
    background: #6b8e4e;
    color: #fff;
}

.cat-caza {
    background: #8b5a3c;
    color: #fff;
}

.exp-card-body {
    padding: 1.8rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

    .exp-card-meta span {
        color: #888;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .exp-card-meta i {
        color: var(--gold);
        font-size: 0.8rem;
    }

.exp-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #1d1813;
    margin-bottom: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.exp-card-desc {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.exp-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 92, 0.2);
    transition: all 0.3s ease;
    align-self: flex-start;
}

    .exp-card-link:hover {
        color: var(--gold);
        padding-left: 0.5rem;
    }

.exp-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #999;
}

    .exp-empty i {
        font-size: 3rem;
        color: var(--gold);
        opacity: 0.5;
        margin-bottom: 1rem;
    }

    .exp-empty p {
        font-size: 1rem;
        color: #666;
    }


/* ================================================================
   14. EXPERIENCIAS — DETALLE (packs)
   ================================================================ */
.exp-detail-intro {
    background: #fefcf3;
    padding: 6rem 0;
}

.intro-body-detail {
    margin-top: 1rem;
}

    .intro-body-detail p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.85;
        margin-bottom: 1rem;
    }

    .intro-body-detail .intro-lead {
        color: #1d1813;
        font-size: 1.15rem;
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        line-height: 1.55;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }

    .intro-body-detail strong {
        color: #1d1813;
        font-weight: 600;
    }

/* ---- Card de precio sticky ---- */
.price-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid rgba(201, 168, 92, 0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    position: sticky;
    top: 110px;
}

.price-tag {
    display: block;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid rgba(201, 168, 92, 0.2);
    padding-bottom: 1rem;
}

.price-from {
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.price-amount strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #1d1813;
    font-weight: 400;
    line-height: 1;
}

    .price-amount strong small {
        font-size: 1.5rem;
        color: var(--gold);
        margin-left: 4px;
        font-weight: 400;
    }

.price-detail {
    display: block;
    color: #888;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    margin: 1rem 0 1.8rem;
}

.price-quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(200, 149, 52, 0.18);
    border-bottom: 1px solid rgba(200, 149, 52, 0.18);
    margin-bottom: 1.5rem;
}

.pqi-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

    .pqi-item > i {
        color: var(--gold);
        font-size: 1rem;
        width: 32px;
        height: 32px;
        background: rgba(200, 149, 52, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pqi-item div {
        flex: 1;
    }

    .pqi-item small {
        display: block;
        color: #999;
        font-size: 0.6rem;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 0.1rem;
    }

    .pqi-item strong {
        color: #1d1813;
        font-size: 0.88rem;
        font-weight: 500;
    }

.btn-price-reservar {
    display: block;
    background: #1d1813;
    color: #fff;
    padding: 1.1rem;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 0.7rem;
}

    .btn-price-reservar:hover {
        background: var(--gold);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(200, 149, 52, 0.35);
    }

.btn-price-call {
    display: block;
    text-align: center;
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.6rem;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

    .btn-price-call:hover {
        background: var(--gold);
        color: #fff;
    }

/* ---- Banner precio por noche ---- */
.price-per-night-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    border: 1px solid rgba(201, 168, 92, 0.2);
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ppn-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 0.5rem 1rem;
}

    .ppn-item > i {
        color: var(--gold);
        font-size: 1.4rem;
        width: 44px;
        height: 44px;
        background: rgba(200, 149, 52, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ppn-item div {
        flex: 1;
    }

    .ppn-item small {
        display: block;
        color: #999;
        font-size: 0.62rem;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .ppn-item strong {
        display: block;
        font-family: 'Cormorant Garamond', serif;
        color: #1d1813;
        font-size: 1.4rem;
        font-weight: 500;
        font-style: italic;
        line-height: 1.2;
    }

        .ppn-item strong span {
            color: var(--gold);
            font-size: 0.9rem;
        }

.ppn-divider {
    width: 1px;
    height: 50px;
    background: rgba(201, 168, 92, 0.2);
    flex-shrink: 0;
}

/* ---- Galería círculos ---- */
.exp-circles-section {
    background: #fff;
    padding: 5rem 0;
}

.circle-feature {
    text-align: center;
    padding: 1rem;
}

.circle-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.4s ease;
}

    .circle-img::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid var(--gold);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.circle-feature:hover .circle-img {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(200, 149, 52, 0.35);
}

    .circle-feature:hover .circle-img::after {
        opacity: 1;
    }

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.circle-feature:hover .circle-img img {
    transform: scale(1.1);
}

.circle-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #1d1813;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.circle-feature p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.related-exp {
    background: #fefcf3;
    padding: 6rem 0;
}


/* ================================================================
   15. PÁGINAS DE SERVICIOS (recarga, piscina, spa, eventos, empleo)
   ================================================================ */
.service-page {
    background: #fefcf3;
    padding: 6rem 0;
}

.service-specs {
    margin-top: 5rem;
    /*padding-top: 4rem;
    border-top: 1px solid rgba(201, 168, 92, 0.2);*/
}

.spec-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid rgba(200, 149, 52, 0.18);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

    .spec-card:hover {
        border-color: var(--gold);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

.spec-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: rgba(200, 149, 52, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.05);
}

.spec-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #1d1813;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.spec-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

.spec-card strong {
    color: #1d1813;
    font-weight: 600;
}

/* ---- Galería pool/spa ---- */
.pool-gallery {
    margin-top: 5rem;
}

.pool-img-big {
    overflow: hidden;
    height: 500px;
}

    .pool-img-big img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .pool-img-big:hover img {
        transform: scale(1.03);
    }

.pool-img-half {
    overflow: hidden;
    height: 300px;
}

    .pool-img-half img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .pool-img-half:hover img {
        transform: scale(1.05);
    }

.pool-img-small {
    overflow: hidden;
    height: calc(50% - 0.5rem);
    flex: 1 1 0;
    min-height: 0;
}

    .pool-img-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .pool-img-small:hover img {
        transform: scale(1.05);
    }

/* ---- Recarga eléctrica (fotografías) ---- */
.recarga-photo {
    overflow: hidden;
}

    .recarga-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .recarga-photo:hover img {
        transform: scale(1.04);
    }

.recarga-photo--tall {
    height: 420px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.recarga-photo--fill {
    height: 100%;
    min-height: 360px;
}


/* ================================================================
   16. MULTIMEDIA (galería masonry)
   ================================================================ */
.gallery-section {
    background: #fff;
    padding: 4rem 0 6rem;
}

.gallery-masonry {
    columns: 3;
    column-gap: 1rem;
}

.gallery-item {
    display: block;
    margin-bottom: 1rem;
    break-inside: avoid;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s ease, filter 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
        filter: brightness(0.9);
    }

    .gallery-item::after {
        content: '\f00e';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        color: #fff;
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .gallery-item:hover::after {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .gallery-item.is-hidden {
        display: none;
    }


/* ================================================================
   17. PÁGINAS LEGALES + MAPA WEB
   ================================================================ */
.legal-section {
    background: #fefcf3;
    padding: 5rem 0;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #1d1813;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(200, 149, 52, 0.35);
}

    .legal-content h2:first-of-type {
        margin-top: 2rem;
    }

.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-dark);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1.5rem 0 0.8rem;
    font-style: italic;
}

.legal-content p {
    color: #555;
    line-height: 1.85;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #555;
    line-height: 1.9;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

    .legal-content ul li {
        margin-bottom: 0.4rem;
    }

.legal-content strong {
    color: #1d1813;
    font-weight: 600;
}

.legal-content a {
    color: var(--gold-dark);
    text-decoration: underline;
}

    .legal-content a:hover {
        color: var(--gold);
    }

.legal-back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 92, 0.2);
    text-align: center;
}

/* ---- Tabla de cookies ---- */
.cookies-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(201, 168, 92, 0.2);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

    .cookies-table thead {
        background: var(--dark-bg);
    }

        .cookies-table thead th {
            color: var(--gold);
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
        }

    .cookies-table tbody tr {
        border-bottom: 1px solid rgba(200, 149, 52, 0.18);
        background: #fff;
    }

        .cookies-table tbody tr:last-child {
            border-bottom: none;
        }

    .cookies-table tbody td {
        padding: 1rem;
        color: #555;
    }

        .cookies-table tbody td:first-child {
            font-family: 'Courier New', monospace;
            font-weight: 600;
            color: #1d1813;
        }

    .cookies-table code {
        background: #faf6ec;
        padding: 0.2rem 0.5rem;
        color: var(--gold-dark);
        font-size: 0.85rem;
    }

/* ---- Mapa web ---- */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.sitemap-col {
    background: #fff;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(200, 149, 52, 0.18);
    transition: all 0.3s ease;
}

    .sitemap-col:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

.sitemap-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 149, 52, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.sitemap-col h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #1d1813;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(201, 168, 92, 0.2);
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sitemap-list li {
        margin-bottom: 0.6rem;
    }

    .sitemap-list a {
        color: #666;
        text-decoration: none;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .sitemap-list a i {
            color: var(--gold);
            font-size: 0.65rem;
            transition: transform 0.3s ease;
        }

        .sitemap-list a:hover {
            color: var(--gold-dark);
        }

            .sitemap-list a:hover i {
                transform: translateX(3px);
            }


/* ================================================================
   18. FOOTER (compartido)
   ================================================================ */
.footer-section {
    background: var(--dark-bg);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-hotel-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 3px;
    margin: 0.3rem 0;
}

    .footer-brand-name span {
        font-size: 0.9rem;
    }

.footer-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin: 0.5rem 0;
    letter-spacing: 3px;
}

.footer-family {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.footer-title {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.footer-list {
    list-style: none;
    padding: 0;
}

    .footer-list li {
        margin-bottom: 0.7rem;
        font-size: 0.8rem;
        color: var(--text-light);
    }

    .footer-list a {
        color: var(--text-light);
        text-decoration: none;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

        .footer-list a:hover {
            color: var(--gold);
        }

.contact-list li {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

    .contact-list li i {
        color: var(--gold);
        margin-right: 0.8rem;
        margin-top: 0.3rem;
        min-width: 16px;
    }

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .social-icons a:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.awards-section {
    padding: 1rem 0 0.5rem;
}

.awards-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.62rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.awards-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem 3rem;
}

.award-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .award-item img {
        height: 60px;
        width: auto;
        max-width: 130px;
        object-fit: contain;
        /* Normaliza todos los logos a blanco translúcido */
        transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
    }

    .award-item:hover img {
        opacity: 1;
        transform: translateY(-2px);
    }

.footer-bottom p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-bottom a:hover {
        color: var(--gold);
    }

.footer-credit {
    text-align: center;
    padding: 1.2rem 0 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

    .footer-credit a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1.5px;
        position: relative;
        transition: color 0.3s ease;
    }

        .footer-credit a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            background: var(--gold-light);
            transition: width 0.3s ease;
        }

        .footer-credit a:hover {
            color: var(--gold-light);
        }

            .footer-credit a:hover::after {
                width: 100%;
            }


/* ================================================================
   19. ANIMACIONES
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.side-menu-footer .btn-side-reservar {
    display: none;
}

@media (max-width: 991px) {
    .side-menu-footer .btn-side-reservar {
        display: flex;
    }
}

/* ================================================================
   20. RESPONSIVE
   ================================================================ */

/* ---- 1199px ---- */
@media (max-width: 1199px) {
    .reservation-widget-top {
        width: 280px;
    }

    .quote-text {
        font-size: 1.6rem;
    }

    .sitemap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- 991px ---- */
@media (max-width: 991px) {
    /* Ocultar el botón RESERVAR en móvil/tablet */
    .btn-reservar.d-none.d-lg-inline-flex {
        display: none !important;
    }

    /* ---- HEADER MÓVIL/TABLET ----
       El layout de 3 columnas con logo central fijo (width="300") no encaja
       en pantallas estrechas: aplastaba el logo Authentic Heritage y empujaba
       la hamburguesa. En móvil pasamos a 2 zonas: logo del hotel (izq., fluido)
       + hamburguesa (der.), en una sola fila. */

    /* Ocultar el logo secundario (Authentic Heritage) en móvil/tablet */
    .nav-left {
        display: flex !important;
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .logo-ah {
        height: 40px;
    }

    /* El nav pasa de 3 columnas a: logo (izquierda) + hamburguesa (derecha) */
    .nav-3col {
        justify-content: space-between;
    }

    .nav-center {
        flex: 1 1 auto;
        justify-content: center;
    }

        .nav-center .navbar-brand img {
            width: 150px;
            max-width: 38vw;
        }

    .nav-right {
        flex: 0 0 auto;
        gap: 0.5rem;
    }



    /* Navbar móvil */
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    /* Home hero */
    .reservation-widget-top {
        position: relative;
        top: auto;
        right: auto;
        width: 90%;
        margin: 2rem auto;
    }

        .reservation-widget-top .widget-tab {
            padding: 1.1rem 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

    .hero-section {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
    }

    /* La imagen/vídeo define la altura; el overlay se superpone (no se apila debajo) */
    .hero-image {
        position: relative;
        height: 55vw;
        max-height: 420px;
        min-height: 240px;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        height: auto;
    }

    .hero-bottom {
        position: relative;
        background: var(--dark-bg);
        color: #fff;
    }

    .hero-restaurante {
        height: 260px;
        margin-top: 80px; /* se mantiene, no depende del navbar reducido */
    }

    .collection-brands {
        flex-direction: column;
        gap: 1rem;
    }

    .ventajas-section .section-title-gold {
        text-align: center;
    }

    .familia-quote {
        padding-left: 0;
        text-align: center;
        margin-top: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .signatures {
        justify-content: center;
        gap: 2rem;
    }

    .restaurante-card {
        padding: 2rem;
    }

    .restaurante-title {
        font-size: 2rem;
    }

    /* Restaurante interior */
    .hero-restaurante {
        height: 260px;
    }

    .hero-rest-title {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    .hero-rest-subtitle {
        font-size: 1rem;
    }

    .gastronomia-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .platos-title {
        font-size: 2.2rem;
    }

    .chef-row {
        text-align: center;
    }

    .chef-card {
        margin: 0 auto 2rem;
    }

    .chef-quote {
        padding: 0;
    }

    .chef-quote-text {
        font-size: 1.2rem;
    }

    .bodega-content {
        padding: 2rem;
    }

    .bodega-title {
        font-size: 1.7rem;
    }

    /* Intro genérico */
    .intro-display {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .intro-body {
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
    }

    /* Rooms modern */
    .room-modern {
        padding: 3rem 0;
    }

    .room-modern-gallery .carousel-item img {
        height: 380px;
    }

    .room-modern-num {
        font-size: 5rem;
        top: -1rem;
        right: 0.5rem;
    }

    .room-modern-num-right {
        right: auto;
        left: 0.5rem;
    }

    .room-modern-info,
    .room-modern-alt .row.flex-lg-row-reverse .room-modern-info {
        padding: 2rem 0 0;
    }

    .room-modern-title {
        font-size: 2.2rem;
    }

    /* Dark block */
    .dark-block {
        padding: 4rem 0;
    }

    .dark-block-content {
        padding: 0 0 3rem;
    }

    .dark-block-features {
        gap: 1rem;
    }

    .feature-num {
        font-size: 2rem;
    }

    .dark-amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        min-height: 280px;
    }

    .gallery-thumb {
        min-height: 140px;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* Hotel page */
    .hotel-welcome {
        padding: 4rem 0;
    }

    .welcome-signature {
        margin-bottom: 2rem;
    }

    .hotel-timeline {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .hotel-quote {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .hotel-quote-text {
        font-size: 1.3rem;
    }

    .entorno-section {
        padding: 4rem 0;
    }

    .entorno-display {
        font-size: 2rem;
    }

    .entorno-card {
        margin-bottom: 1rem;
    }

    .dark-block-llegar {
        padding: 4rem 0;
    }

        .dark-block-llegar .dark-block-content {
            padding: 0 0 3rem;
        }

    .llegar-grid {
        grid-template-columns: 1fr;
    }

    /* Contacto */
    .contacto-intro {
        padding: 4rem 0 3rem;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 3rem;
    }

    .contacto-form-section {
        padding: 4rem 0;
    }

    .form-wrapper, .departamentos-wrapper {
        padding: 0;
    }

    .form-title {
        font-size: 2rem;
    }

    .departamentos-wrapper {
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(201, 168, 92, 0.2);
    }

    .dark-block-contacto {
        padding: 4rem 0;
    }

        .dark-block-contacto .dark-block-content {
            padding: 0 0 3rem;
        }

    .horarios-grid {
        grid-template-columns: 1fr;
    }

    .mapa-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin: -3rem 1rem 0;
    }

    .mapa-wrapper iframe {
        height: 350px;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .accordion-modern .accordion-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .accordion-modern .accordion-body {
        padding: 0 1.5rem 1.5rem 4rem;
        font-size: 0.85rem;
    }

    .faq-num {
        font-size: 1.2rem;
        min-width: 30px;
    }

    /* Experiencias */
    .exp-intro {
        padding: 4rem 0 2rem;
    }

    .exp-filters {
        margin-top: 3rem;
        padding-top: 2rem;
        gap: 0.5rem;
    }

    .exp-filter {
        padding: 0.65rem 1rem;
    }

    .ef-text {
        font-size: 0.7rem;
    }

    .exp-featured {
        padding: 3rem 0 4rem;
    }

    .featured-image {
        min-height: 300px;
    }

    .featured-content {
        padding: 2rem;
    }

    .featured-title {
        font-size: 2rem;
    }

    .exp-grid-section {
        padding: 4rem 0;
    }

    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Experiencia detalle */
    .exp-detail-intro {
        padding: 4rem 0;
    }

    .price-card {
        position: relative;
        top: auto;
        margin-top: 3rem;
        padding: 2rem;
    }

    .price-amount strong {
        font-size: 2.8rem;
    }

    .price-per-night-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .ppn-divider {
        width: 100%;
        height: 1px;
    }

    .ppn-item {
        width: 100%;
        padding: 0.5rem;
    }

    .dark-block-pack {
        padding: 4rem 0;
    }

        .dark-block-pack .dark-block-content {
            padding: 0 0 3rem;
        }

    .circle-img {
        width: 180px;
        height: 180px;
    }

    .related-exp {
        padding: 4rem 0;
    }

    /* Servicios */
    .recarga-photo--tall {
        height: 300px;
    }

    .recarga-photo--fill {
        min-height: 280px;
        margin-top: 2.5rem;
    }

    /* Multimedia */
    .gallery-masonry {
        columns: 2;
    }
}

/* ---- 767px ---- */
@media (max-width: 767px) {
    .custom-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-title-gold {
        font-size: 2rem;
    }

    .info_contacto input[type="text"],
    .info_contacto input[type="email"],
    .info_contacto input[type="tel"],
    .info_contacto textarea,
    .formtastic input[type="text"],
    .formtastic select,
    .formtastic-bar input[type="text"],
    .formtastic-bar select {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    /* Carruseles */
    .rooms-carousel,
    .experiences-carousel,
    .espacios-carousel {
        padding: 0 30px;
    }

    .pool-img-big {
        height: 260px;
    }

    .pool-img-small {
        height: 200px;
        flex: 0 0 auto;
    }

    .pool-gallery {
        margin-top: 2.5rem;
    }

    .custom-control {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .room-card img {
        height: 300px;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .signatures {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-bottom p {
        font-size: 0.6rem;
    }

    .restaurante-buttons {
        flex-direction: column;
    }

    .btn-outline-gold {
        width: 100%;
        text-align: center;
    }

    .calendario-card, .espacio-card {
        margin-bottom: 1rem;
    }

    .platos-title {
        font-size: 1.8rem;
    }

    .platos-section {
        padding: 3rem 0;
    }

    .chef-quote-text {
        font-size: 1.1rem;
    }

    .bodega-image {
        min-height: 250px;
    }

    /* Hero bottom móvil */
    .hero-bottom {
        padding: 20px 20px;
        flex-direction: column;
    }

    .collection-brands {
        gap: 20px;
    }

        .collection-brands::before,
        .collection-brands::after {
            display: none;
        }

    .brand-link {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .brand-logo img {
        height: 40px;
    }

    .authentic-heritage {
        position: static;
        transform: none;
        margin-top: 15px;
    }

    /* Rooms modern móvil */
    .room-modern-title {
        font-size: 1.8rem;
    }

    .room-modern-gallery .carousel-item img {
        height: 280px;
    }

    .room-modern-num {
        font-size: 4rem;
    }

    .modern-gallery-ctrl {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .room-modern-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-modern-reservar {
        text-align: center;
        justify-content: center;
    }

    /* Dark block móvil */
    .dark-block-title {
        font-size: 2.5rem;
    }

    .dark-block-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dark-feature {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .feature-num {
        font-size: 1.8rem;
    }

    .feature-label {
        font-size: 0.65rem;
    }

    .dark-block-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-dark-reservar {
        text-align: center;
        justify-content: center;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-call, .btn-cta-mail {
        text-align: center;
        justify-content: center;
    }

    /* Hotel page móvil */
    .hotel-welcome {
        padding: 3rem 0;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .entorno-section {
        padding: 3rem 0;
    }

    .entorno-display {
        font-size: 1.6rem;
    }

    .entorno-title {
        font-size: 1.6rem;
    }

    .entorno-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }

    .stat-item strong {
        font-size: 1.2rem;
    }

    .coords-values {
        flex-direction: column;
        gap: 1rem;
    }

    .coords-divider {
        width: 100%;
        height: 1px;
    }

    .coords-altitude {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    /* Contacto móvil */
    .contact-quick-card {
        padding: 1.3rem;
    }

    .quick-content strong {
        font-size: 0.85rem;
    }

    .form-title {
        font-size: 1.7rem;
    }

    .mapa-overlay {
        padding: 1.5rem;
    }

        .mapa-overlay h3 {
            font-size: 1.5rem;
        }

    .mapa-wrapper iframe {
        height: 280px;
    }

    .accordion-modern .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .accordion-modern .accordion-body {
        padding-left: 1rem;
    }

    /* Experiencias móvil */
    .exp-filters {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 1rem 0;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .exp-filter {
        flex-shrink: 0;
    }

    .exp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .exp-card-img {
        height: 220px;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .featured-title {
        font-size: 1.7rem;
    }

    .featured-image {
        min-height: 220px;
    }

    /* Detalle experiencia */
    .circle-img {
        width: 150px;
        height: 150px;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price-amount strong {
        font-size: 2.4rem;
    }

    .pack-includes-list li {
        padding: 1rem 0;
    }

    .pi-icon {
        width: 38px;
        height: 38px;
    }

    /* Servicios */
    .pool-img-half {
        height: 240px;
    }

    /* Entradilla gris */
    .bloque_interior_gris {
        padding: 30px 20px;
    }

        .bloque_interior_gris .titulo_eventos {
            margin-bottom: 28px;
        }

            .bloque_interior_gris .titulo_eventos::after {
                margin-top: 18px;
            }

        .bloque_interior_gris .texto_restaurante {
            font-size: .92rem;
            line-height: 1.75;
        }

    /* Mapa web */
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ---- 575px ---- */
@media (max-width: 575px) {
    /* Logo del hotel algo más pequeño en móviles estrechos */
    .nav-center .navbar-brand img {
        width: 180px;
    }

    .logo-ah {
        height: 32px;
    }

    .nav-center .navbar-brand img {
        width: 120px;
        max-width: 34vw;
    }

    .btn-reservar.d-none.d-lg-inline-flex {
        padding: 0.5rem 0.8rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .section-title-gold {
        font-size: 1.6rem;
    }

    .reservation-widget-dark {
        padding: 1.5rem;
    }

    .restaurante-card {
        padding: 1.5rem;
    }

    .restaurante-title {
        font-size: 1.6rem;
    }

    .hero-rest-title {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .gastronomia-proximidad, .bodega-section {
        padding: 3rem 0;
    }

    .gastronomia-title {
        font-size: 1.7rem;
    }

    .bodega-content {
        padding: 1.5rem;
    }

    .platos-title {
        font-size: 1.6rem;
    }

    /* Apila email y teléfono en el formulario de contacto
       (sobreescribe inline style="float:left/right; width:48%") */
    .info_contacto > div[style*="float"] {
        float: none !important;
        width: 100% !important;
    }

    /* Galería masonry: 1 columna en móvil */
    .gallery-masonry {
        columns: 1;
    }
}

@media (max-width: 767.98px) {
    .ventajas-grid {
        grid-template-columns: 1fr;
    }

    .ventajas-aside {
        margin-top: 2rem;
    }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    /* Entradilla gris en pantallas muy pequeñas */
    .bloque_interior_gris {
        padding: 50px 18px;
    }

        .bloque_interior_gris::before {
            top: 18px;
        }

        .bloque_interior_gris::after {
            bottom: 18px;
        }
}
/* ===== FIX NAVBAR + RESERVA MÓVIL ===== */
@media (max-width: 991px) {

    /* Logo Authentic Heritage visible de nuevo */
    .nav-left {
        display: flex !important;
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .logo-ah {
        height: 38px;
    }

    .nav-center {
        flex: 1 1 auto;
        justify-content: center;
    }

        .nav-center .navbar-brand img {
            width: 150px;
            max-width: 40vw;
        }

    .nav-right {
        flex: 0 0 auto;
    }

    /* El botón RESERVAR de la barra sigue oculto: la reserva va en el menú */

    /* Segundo botón (Restaurante) en el menú lateral */
    .btn-side-reservar--rest {
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--gold);
        margin-top: 0.8rem;
    }

        .btn-side-reservar--rest:hover {
            background: var(--gold);
            color: #fff;
        }

    .btn-side-reservar i {
        margin-right: 0.6rem;
    }

    /* Widget de reservas: panel fijo a todo el ancho bajo la barra */
    .reservation-widget-top.open {
        position: fixed;
        top: 80px;
        left: 5%;
        right: 5%;
        width: auto;
        margin: 0;
        z-index: 1060;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }

    .reservation-widget-top .widget-tab {
        padding: 1.1rem 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
    }
}

@media (max-width: 575px) {
    .logo-ah {
        height: 30px;
    }

    .nav-center .navbar-brand img {
        width: 120px;
        max-width: 34vw;
    }
}

@media (max-width: 991px) {
    .logo-ah {
        height: 52px;
    }

    .nav-center .navbar-brand img {
        width: 210px;
        max-width: 50vw;
    }
}

@media (max-width: 575px) {
    .logo-ah {
        height: 44px;
    }

    .nav-center .navbar-brand img {
        width: 175px;
        max-width: 46vw;
    }
}
