/* VOLGA HOTEL - MAIN STYLES */

/* ============================================
   FONT FACES
   ============================================ */
@font-face {
    font-family: 'TradeGothic';
    src: url('../assets/fonts/TradeGothicLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TradeGothic';
    src: url('../assets/fonts/TradeGothicLTStd-BoldExt.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TradeGothicCondensed';
    src: url('../assets/fonts/TradeGothicLTStd-BdCn20.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../assets/fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TradeGothicExtended';
    src: url('../assets/fonts/TradeGothicLTStd-Extended.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from PDF design */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-beige: #F5F1E8;
    --color-coral: #E89A88;
    --color-dark-green: #2C3E2F;
    --color-gray: #4A4A4A;

    /* Typography */
    --font-primary: 'TradeGothic', 'Helvetica Neue', 'Arial', sans-serif;
    --font-display: 'TradeGothic', 'Helvetica Neue', 'Arial', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100%;
}

/* Asegurar que todos los elementos usen TradeGothic */
* {
    font-family: var(--font-primary);
}

/* Excepciones para elementos que no deben heredar la fuente */
.logo img {
    font-family: inherit;
}

/* ============================================
   HEADER & NAVIGATION - FLOTANTE
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 2rem 3rem;
    background: transparent;
    transition: all 0.3s ease;
}

/* Color blanco por defecto (para secciones oscuras) */
.header.white-text .hamburger span,
.header.white-text .btn-book {
    color: var(--color-white);
    border-color: var(--color-white);
}

.header.white-text .hamburger span {
    background-color: var(--color-white);
}

/* Color negro para secciones claras */
.header.black-text .hamburger span,
.header.black-text .btn-book {
    color: var(--color-black);
    border-color: var(--color-black);
}

.header.black-text .hamburger span {
    background-color: var(--color-black);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 35px;
    justify-self: start;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    transition: opacity 0.3s ease;
    justify-self: center;
}

.logo img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    display: block;
}

.btn-book {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    /* FIX: Centrado vertical perfecto para fuentes TradeGothic con métricas asimétricas */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* Padding en px para control preciso - compensación para baseline de TradeGothic */
    padding: 12px 20px 8px 20px;
    justify-self: end;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.header.white-text .btn-book:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.header.black-text .btn-book:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Header para ecosystem-team - cambiar logo y botón a negro (fondo claro) */
.header.ecosystem-team-header .hamburger span {
    background-color: var(--color-black);
}

.header.ecosystem-team-header .btn-book {
    border-color: var(--color-black);
    color: var(--color-black);
}

.header.ecosystem-team-header .btn-book:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Header para secciones de rooms - hamburguesa y logo blancos, botón negro */
.header.rooms-header .hamburger span {
    background-color: var(--color-white);
}

.header.rooms-header .btn-book {
    border-color: var(--color-black);
    color: var(--color-black);
}

.header.rooms-header .btn-book:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ============================================
   SIDEBAR MENU
   ============================================ */
.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background-color: var(--color-black);
    color: var(--color-white);
    z-index: 999;
    padding: 3rem;
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar.active {
    left: 0;
}

.sidebar-top {
    margin-bottom: 2rem;
}

.sidebar-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
    opacity: 0.7;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
    overflow-y: visible;
    margin-top: 3rem;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 1.2rem;
}

.sidebar-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    display: block;
}

.sidebar-menu a:hover {
    opacity: 0.7;
}

.sidebar-book {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    align-self: center;
}

.sidebar-book:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.sidebar-language {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
}

.language-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    opacity: 0.5;
}

.language-link:hover {
    opacity: 0.8;
}

.language-link.active {
    opacity: 1;
    color: var(--color-white);
}

.language-separator {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    opacity: 0.5;
}

/* ============================================
   MAIN CONTENT & SECTIONS - SCROLL SNAP
   ============================================ */
.main-content {
    width: 100%;
    height: 100vh;
    height: 100svh; /* Small viewport height - más confiable en móviles */
    height: -webkit-fill-available; /* Fallback para iOS */
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.section {
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: -webkit-fill-available;
    min-height: 100vh;
    min-height: 100svh;
    min-height: -webkit-fill-available;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section.restaurant {
    overflow: hidden;
    /* Flexbox columna para que el contenido y carrusel se apilen verticalmente */
    /* Esto sobrescribe el display: flex del .section base */
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

/* Las secciones dentro del contenedor mantienen su scroll-snap individual */

.content-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-label {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.5;
    font-family: 'TradeGothicExtended', var(--font-primary);
    font-weight: 400;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background-color: #1a1a1a;
    position: relative;
}

/* Poster del hero - carga instantánea como placeholder */
.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.8s ease-out;
}

.hero-poster picture,
.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ocultar poster cuando el video está listo */
.hero-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

/* Mostrar video cuando está cargado y reproduciendo */
.hero-video.loaded {
    opacity: 1;
}

.hero-content {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 14rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Botón de activación de audio en hero */
.hero-audio-toggle {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 300;
    font-family: 'TradeGothicExtended', var(--font-primary);
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 8px 16px 6px 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    opacity: 0.7;
    white-space: nowrap;
}

.hero-audio-toggle:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.hero-audio-toggle:active {
    transform: translateX(-50%) scale(0.98);
}

.audio-toggle-text {
    display: inline-block;
}

/* Ocultar botón cuando el audio está activado */
.hero-audio-toggle.audio-enabled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Botón de silenciar audio en hero */
.hero-audio-mute {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-white);
    color: var(--color-white);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    backdrop-filter: blur(4px);
}

.hero-audio-mute:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border-color: var(--color-white);
}

.hero-audio-mute:active {
    transform: translateX(-50%) scale(0.95);
}

.hero-audio-mute svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ============================================
   HOME SECTION - BRAND ESSENCE
   ============================================ */
.home {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Lazy load: imagen se carga solo cuando está cerca del viewport */
.home.bg-loaded {
    background-image: 
                /* linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), */
                url('../assets/images/volga_2.webp');
}

.home .content-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 6rem;
    padding-top: 12rem;
}

.text-content {
    max-width: 700px;
    color: var(--color-white);
    text-align: right;
}

.home .text-content {
    text-align: left;
    font-family: var(--font-primary);
}

.home .section-label {
    font-family: var(--font-primary);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.lead-text {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 300;
    font-family: var(--font-primary);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: normal;
    font-family: 'TradeGothicCondensed', var(--font-primary);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    background-color: #f9ecd8;
}

.location-wrapper {
    flex-direction: column;
    padding: 7rem 10rem 4rem;
    justify-content: flex-start;
    height: 100%;
    max-width: 1600px;
    position: relative;
}

.location-members {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 8rem;
    left: 10rem;
    z-index: 10;
}

.location-members-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-black);
    font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 0.5rem;
    text-align: left;
}

.location-members-logo {
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.location-map {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 6rem;
}

.location-map-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.location-content {
    display: flex;
}

.location-description {
    flex: 1;
    margin-right: 1rem;
}

.location-description p {
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--color-black);
    margin: 0;
    font-family: 'TradeGothic', 'Helvetica Neue', 'Arial', sans-serif;
}

.location-list-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-list-column:last-child {
    margin-right: 0;
}

.location-walk-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.02em;
    font-family: 'TradeGothicCondensed', 'Helvetica Neue', 'Arial', sans-serif;
    padding-left: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.location-item {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-black);
    /* letter-spacing: 0.02em; */
    font-family: 'TradeGothic', 'Helvetica Neue', 'Arial', sans-serif;
    padding-left: 2.5rem;
}

/* ============================================
   ECOSYSTEM SECTIONS
   ============================================ */
.ecosystem-container {
    width: 200vw;
    height: 100vh;
    display: flex;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    will-change: transform;
    /* El contenedor debe comportarse como una sección normal para scroll vertical */
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    overflow: hidden;
    /* Asegurar que el contenedor no cause problemas con el layout */
    box-sizing: border-box;
}

.ecosystem-container.slide-left {
    transform: translateX(-50%);
}

.ecosystem {
    background-color: #2a2a2a;
    color: var(--color-white);
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    /* Las secciones dentro del contenedor no necesitan scroll-snap individual */
    scroll-snap-align: none;
    scroll-snap-stop: normal;
}

.ecosystem.dark {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ecosystem.dark.bg-loaded {
    background-image: 
                /* linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), */
                url('../assets/images/volga_4.webp');
}

.ecosystem-team {
    background-color: #f9ecd8 !important;
    color: var(--color-black);
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.back-text {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
    z-index: 100;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 400;
    font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.back-text:hover {
    opacity: 0.7;
}

.ecosystem-team .content-wrapper {
    padding: 0 6rem;
    max-width: none;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
}

/* ============================================
   CONSISTENT TEXT POSITIONING FOR DESKTOP
   Variables para mantener consistencia entre secciones:
   - Padding izquierdo: 6rem
   - Max-width del texto: 480px
   - Padding superior: 28vh para posición Y consistente
   ============================================ */
:root {
    --section-text-padding-left: 6rem;
    --section-text-max-width: 480px;
    --section-text-padding-top: 28vh;
}

/* Ecosystem fullwidth layout with background */
.ecosystem-fullwidth {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: var(--section-text-padding-left);
    padding-right: 6rem;
    padding-top: var(--section-text-padding-top);
    max-width: 100%;
}

.ecosystem-fullwidth .text-side {
    padding: 0;
}

.ecosystem-text {
    color: var(--color-white);
    max-width: var(--section-text-max-width);
}

/* Estilos consistentes para títulos y texto en secciones con overlay de texto */
.ecosystem-text .section-title,
.ecosystem-music-text .section-title,
.pets-title,
.minos .section-title,
.experience-detail .section-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'TradeGothicCondensed', var(--font-primary);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.ecosystem-text p,
.ecosystem-music-text p,
.pets-description,
.minos p,
.experience-detail p {
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 300;
    font-family: 'TradeGothic', var(--font-primary);
    letter-spacing: 0.01em;
}

.ecosystem-text .learn-more {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.ecosystem-text .learn-more:hover {
    opacity: 0.7;
}

/* Ocultar versión móvil en desktop */
.ecosystem-text .learn-more-mobile {
    display: none !important;
}

/* Mostrar versión desktop por defecto */
.learn-more-desktop {
    display: inline-block;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-side {
    width: 100%;
    height: 100vh;
    background-color: #555;
    background-size: cover;
    background-position: center;
}

.text-side {
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-side h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.text-side p {
    font-size: 1.15rem;
    line-height: 1.3;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0;
    width: 100%;
    max-width: 1600px;
    margin: auto 0;
    align-items: start;
    height: fit-content;
    max-height: 90vh;
    box-sizing: border-box;
    min-width: 0;
}

.team-member {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 100%;
    overflow: visible;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    align-items: stretch;
}

.member-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    max-height: 50vh;
    background-color: transparent;
    margin: 0 0 1rem 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0;
    border: none;
    outline: none;
    display: block;
    min-width: 0;
    position: relative;
}

/* Lazy load para fotos del equipo */
.ecosystem-team.bg-loaded .team-member:nth-child(1) .member-photo {
    background-image: url('../assets/images/volga_5_1.webp');
}

.ecosystem-team.bg-loaded .team-member:nth-child(2) .member-photo {
    background-image: url('../assets/images/volga_5_2.webp');
}

.ecosystem-team.bg-loaded .team-member:nth-child(3) .member-photo {
    background-image: url('../assets/images/volga_5_3.webp');
}

.team-member h3 {
    font-size: 1.8rem;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'TradeGothicCondensed', var(--font-primary);
    color: var(--color-black);
    padding: 0 0 0.5rem 0;
    flex-shrink: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    display: block;
}

.team-member p {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
    font-family: 'TradeGothic', var(--font-primary);
    color: var(--color-black);
    flex: 1;
    overflow: visible;
    word-wrap: break-word;
    min-height: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    display: block;
}

/* Music section */
.ecosystem-music {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ecosystem-music.bg-loaded {
    background-image: url('../assets/images/volga_6.webp');
}

.ecosystem-music-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: var(--section-text-padding-left);
    padding-right: 6rem;
    padding-top: var(--section-text-padding-top);
    max-width: 100%;
}

.ecosystem-music-text {
    color: var(--color-white);
    max-width: var(--section-text-max-width);
}

/* Estilos de ecosystem-music-text ahora están consolidados arriba */

/* ============================================
   SUITES CONTAINER - HORIZONTAL SLIDES
   ============================================ */
.suites-container {
    width: 600vw; /* 6 slides: 1 intro + 5 rooms */
    height: 100vh;
    display: flex;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    will-change: transform;
    /* El contenedor debe comportarse como una sección normal para scroll vertical */
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    overflow: hidden;
    /* Asegurar que el contenedor no cause problemas con el layout */
    box-sizing: border-box;
}

/* Posiciones para cada slide */
.suites-container.slide-0 {
    transform: translateX(0);
}

.suites-container.slide-1 {
    transform: translateX(-16.666%);
}

.suites-container.slide-2 {
    transform: translateX(-33.333%);
}

.suites-container.slide-3 {
    transform: translateX(-50%);
}

.suites-container.slide-4 {
    transform: translateX(-66.666%);
}

.suites-container.slide-5 {
    transform: translateX(-83.333%);
}

.suites-intro {
    background-image: url('../assets/images/suites_main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: var(--section-text-padding-left);
    padding-top: var(--section-text-padding-top);
}

.suites-intro .ecosystem-music-text {
    max-width: var(--section-text-max-width);
}

.suites-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    z-index: 1;
}

.suites-intro .ecosystem-music-content,
.suites-intro .content-wrapper {
    position: relative;
    z-index: 2;
    padding-left: 0; /* El padding ya está en .suites-intro */
    padding-top: 0; /* El padding-top ya está en .suites-intro */
}

.suites-intro .ecosystem-music-text {
    color: var(--color-white);
}

.suites-intro .ecosystem-music-text .section-title {
    color: var(--color-white);
}

/* Estilos para learn-more en suites-intro */
.suites-intro .learn-more {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
    padding-top: 30px;
}

/* Ocultar versión móvil en desktop */
.suites-intro .learn-more-mobile {
    display: none !important;
}

/* Mostrar versión desktop por defecto */
.suites-intro .learn-more-desktop {
    display: inline-block;
}

/* Las secciones de rooms dentro del contenedor mantienen su estilo pero con width fijo */
.suites-container .room {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
}

/* ============================================
   ROOMS SECTIONS
   ============================================ */
.room {
    background-color: #EDE8DC;
}

.room .content-wrapper {
    padding: 0;
    max-width: 100%;
}

.room .split-layout {
    grid-template-columns: 55% 45%;
    gap: 0;
    height: 100vh;
}

.room .image-side {
    height: 100%;
    background-color: #c4c0b8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Lazy load para imágenes de habitaciones */
#rooms.bg-loaded .image-side {
    background-image: url('../assets/images/volga_7.webp');
}

#room-queen.bg-loaded .image-side {
    background-image: url('../assets/images/volga_8.webp');
}

#room-double.bg-loaded .image-side {
    background-image: url('../assets/images/volga_9.webp');
}

#room-suite.bg-loaded .image-side {
    background-image: url('../assets/images/Volga-DoubleDeluxe-4.webp');
}

#room-grand-suite.bg-loaded .image-side {
    background-image: url('../assets/images/volga_11.webp');
}

.room .text-side {
    padding: 6rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.room .text-side h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-family: 'TradeGothicExtended', var(--font-primary);
}

.room .text-side p {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #2a2a2a;
    font-family: 'TradeGothic', var(--font-primary);
}

.room-size {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    letter-spacing: 0.15em;
    font-family: 'TradeGothicCondensed', var(--font-primary);
}

.room-size::before,
.room-size::after {
    content: '';
    flex: 1;
    height: 10px;
    background: linear-gradient(to bottom, 
        transparent calc(50% - 0.5px), 
        #2a2a2a calc(50% - 0.5px), 
        #2a2a2a calc(50% + 0.5px), 
        transparent calc(50% + 0.5px)
    );
}

.room-size::before {
    margin-right: 2rem;
    border-left: 1px solid #2a2a2a;
}

.room-size::after {
    margin-left: 2rem;
    border-right: 1px solid #2a2a2a;
}

/* Room Pets Section - Full Background */
.room-pets {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* Usar flexbox para consistencia con otras secciones */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: var(--section-text-padding-left);
    padding-top: var(--section-text-padding-top);
}

.room-pets.bg-loaded {
    background-image: url('../assets/images/volga_12.webp');
}

.pets-content {
    /* Cambio de posición absoluta a estática para consistencia */
    position: static;
    left: auto;
    top: auto;
    transform: none;
    max-width: var(--section-text-max-width);
    color: var(--color-white);
}

.pets-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    color: var(--color-white);
    font-family: 'TradeGothicCondensed', var(--font-primary);
    text-transform: none;
}

.pets-description {
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 300;
    color: var(--color-white);
    font-family: 'TradeGothic', var(--font-primary);
}

/* ============================================
   RESTAURANT SECTION - CARRUSEL AUTOMÁTICO
   ============================================ */
/* Clase para forzar repaint en navegadores problemáticos */
.force-repaint {
    transform: translateZ(0);
}

/* NUEVO ENFOQUE: Flexbox sin posicionamiento absoluto
   Esto evita bugs de cálculo de viewport en navegadores móviles embebidos */
.restaurant {
    background-color: var(--color-beige);
    padding: 0;
    /* Flexbox columna: contenido arriba, carrusel abajo - sin absolute */
    display: flex;
    flex-direction: column;
    /* Altura fija del carrusel - valores seguros que no dependen de vh */
    /* Reducido para crear más espacio entre texto e imágenes */
    --restaurant-gallery-height: clamp(200px, 22vw, 280px);
}

.restaurant .content-wrapper {
    flex-direction: column;
    padding: 8rem 6rem 5rem;
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    /* Flex: 1 permite que ocupe todo el espacio disponible automáticamente */
    flex: 1;
    /* min-height: 0 es crucial para que flex funcione correctamente */
    min-height: 0;
    gap: 0;
}

.restaurant .section-label {
    color: var(--color-white);
}

.restaurant-header {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 4rem;
    margin-bottom: 4rem;
    width: 100%;
    align-items: center;
    flex-shrink: 0;
}

.restaurant-info-side {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-info-side h2 {
    font-size: 3rem; /* Mucho más pequeño que los 4rem anteriores */
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1;
    /* margin-bottom: 0.5rem; */
    font-family: 'TradeGothicExtended', var(--font-primary);
    text-transform: uppercase;
}

.restaurant-info-side .subtitle {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-family: 'TradeGothic', var(--font-primary);
    margin-bottom: 2.5rem;
    color: var(--color-black);
}

.restaurant-info-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-family: 'TradeGothicCondensed', var(--font-primary);
    text-transform: none; /* Según diseño parece Title Case o Sentence case, no full caps */
}

.restaurant-info-side p {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 300;
    max-width: 95%;
    font-family: 'TradeGothic', var(--font-primary);
}

.restaurant-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.michelin-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

/* Mantener compatibilidad con estilos antiguos si algo queda */
.restaurant-logo, .restaurant-text, .elora-icon {
    display: none;
}

/* Carrusel container - En flujo normal (no absolute) para evitar bugs en móviles */
.restaurant-gallery {
    /* Sin position absolute - está en el flujo normal del flexbox */
    width: 100%;
    height: var(--restaurant-gallery-height);
    /* flex-shrink: 0 asegura que el carrusel no se comprima */
    flex-shrink: 0;
    overflow: hidden;
}

/* Track que contiene todas las imágenes */
.restaurant-carousel-track {
    display: flex;
    gap: 1rem;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.restaurant-gallery-item {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: calc(25% - 0.75rem);
    height: 100%;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

.restaurant-gallery-item:last-child {
    margin-right: 0;
}

/* Lazy load para galería del restaurante */
.restaurant.bg-loaded .restaurant-gallery-item:nth-child(1),
.restaurant.bg-loaded .restaurant-gallery-item:nth-child(5) {
    background-image: url('../assets/images/volga_13_1.webp');
}

.restaurant.bg-loaded .restaurant-gallery-item:nth-child(2),
.restaurant.bg-loaded .restaurant-gallery-item:nth-child(6) {
    background-image: url('../assets/images/volga_13_2.webp');
}

.restaurant.bg-loaded .restaurant-gallery-item:nth-child(3),
.restaurant.bg-loaded .restaurant-gallery-item:nth-child(7) {
    background-image: url('../assets/images/elora_new.webp');
}

.restaurant.bg-loaded .restaurant-gallery-item:nth-child(4),
.restaurant.bg-loaded .restaurant-gallery-item:nth-child(8) {
    background-image: url('../assets/images/volga_13_4.webp');
}

/* Botón BOOK YOUR TABLE para restaurant - Oculto por defecto (solo visible en móvil) */
.btn-book-restaurant {
    display: none;
}

/* Botón BOOK AT MINOS - Oculto por defecto (solo visible en móvil) */
.btn-book-minos {
    display: none;
    text-decoration: none;
}

/* ============================================
   MINOS SECTION
   ============================================ */
.minos {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.minos.bg-loaded {
    background-image:
        /* linear-gradient(90deg,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.78) 36%,
            rgba(0,0,0,0.38) 62%,
            rgba(0,0,0,0.12) 100%), */
        url('../assets/images/volga_14.webp');
}

.minos::before {
    content: "";
    position: absolute;
    inset: -20vh -20vw -20vh -20vw;
    /* Curva/“corte” oscuro como en el diseño de referencia */
    /* background: radial-gradient(120% 120% at 56% 48%,
        rgba(0,0,0,0) 0 44%,
        rgba(0,0,0,0.88) 46% 100%); */
    pointer-events: none;
    z-index: 0;
}

.minos .content-wrapper {
    position: relative;
    z-index: 2;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: var(--section-text-padding-left);
    padding-top: var(--section-text-padding-top);
}

.minos .section-label {
    /* Mantener la etiqueta en bottom-right como el estilo global */
    position: absolute;
    right: 3rem;
    bottom: 2rem;
    z-index: 2;
}

.minos .text-content {
    max-width: var(--section-text-max-width);
    margin: 0;
    text-align: left;
}

/* Estilos de minos .section-title y p ahora están consolidados arriba */

.minos .emphasis {
    font-style: normal;
    margin-bottom: 0;
    opacity: 0.92;
}

.minos-logo {
    display: block;
    width: 190px;
    height: auto;
    margin-bottom: 2rem;
    margin-top: -6rem; /* Subir el logo para que el título quede alineado con otras secciones */
    opacity: 0.85;
}

/* ============================================
   EXPERIENCES SECTIONS - CARRUSEL AUTOMÁTICO
   ============================================ */
.experiences {
    background-color: var(--color-beige);
    padding: 0;
    overflow: hidden;
    /* Flexbox columna: contenido arriba, carrusel abajo - sin absolute */
    display: flex;
    flex-direction: column;
    /* Altura fija del carrusel - valores seguros que no dependen de vh */
    --experiences-gallery-height: clamp(240px, 30vw, 340px);
}

.experiences .content-wrapper {
    flex-direction: column;
    padding: 8rem 6rem 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
    /* Flex: 1 permite que ocupe todo el espacio disponible automáticamente */
    flex: 1;
    min-height: 0;
    gap: 0;
}

.large-title {
    font-family: 'TradeGothicExtended', var(--font-primary);
    font-size: 1.5rem; /* Reducido 20% (de 8vw a 6.4vw) */
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.intro-text {
    font-family: 'TradeGothic', var(--font-primary);
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 900px;
    font-weight: 300;
    text-align: left;
    color: var(--color-black);
}

/* Botón BOOK YOUR EXPERIENCE - Oculto por defecto en desktop */
.btn-book-experience {
    display: none;
    background: transparent;
    border: 2px solid var(--color-black);
    color: var(--color-black);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    padding: 12px 20px 8px 20px;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
    margin-left: 1rem;
    text-transform: uppercase;
    text-decoration: none;
}

/* Carrusel container - BOTTOM */
.experiences-gallery {
    /* Sin position absolute - está en el flujo normal del flexbox */
    width: 100%;
    height: var(--experiences-gallery-height);
    /* flex-shrink: 0 asegura que el carrusel no se comprima */
    flex-shrink: 0;
    overflow: hidden;
}

/* Track que contiene todas las imágenes */
.experiences-carousel-track {
    display: flex;
    gap: 1rem;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

@media (max-width: 768px) {
    .experiences-carousel-track {
        gap: 0.5rem;
    }
}

.experiences-grid-item {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: calc(25% - 0.75rem);
    height: 100%;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

.experiences-grid-item:last-child {
    margin-right: 0;
}

/* Lazy load para galería de experiencias */
.experiences.bg-loaded .experiences-grid-item:nth-child(1),
.experiences.bg-loaded .experiences-grid-item:nth-child(6) {
    background-image: url('../assets/images/volga_15_1.webp');
}

.experiences.bg-loaded .experiences-grid-item:nth-child(2),
.experiences.bg-loaded .experiences-grid-item:nth-child(7) {
    background-image: url('../assets/images/volga_15_2.webp');
}

.experiences.bg-loaded .experiences-grid-item:nth-child(3),
.experiences.bg-loaded .experiences-grid-item:nth-child(8) {
    background-image: url('../assets/images/volga_15_3.webp');
}

.experiences.bg-loaded .experiences-grid-item:nth-child(4),
.experiences.bg-loaded .experiences-grid-item:nth-child(9) {
    background-image: url('../assets/images/volga_15_4.webp');
}

.experiences.bg-loaded .experiences-grid-item:nth-child(5),
.experiences.bg-loaded .experiences-grid-item:nth-child(10) {
    background-image: url('../assets/images/volga_experiences_7.webp');
}

.experience-detail {
    background-color: #2a2a2a;
    color: var(--color-white);
}

.experience-detail.dark {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
}

/* Mezcaleria - volga_16.webp */
#mezcaleria.experience-detail.bg-loaded {
    background-image: url('../assets/images/volga_16.webp');
}

/* Rooftop - volga_17.webp */
#rooftop.experience-detail {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
}

#rooftop.experience-detail.bg-loaded {
    background-image: url('../assets/images/volga_17.webp');
}

/* Gym - volga_18.webp */
#gym.experience-detail.bg-loaded {
    background-image: url('../assets/images/volga_18.webp');
}

.experience-detail:nth-child(18) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.experience-detail .content-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: var(--section-text-padding-left);
    padding-top: var(--section-text-padding-top);
}

.experience-detail .text-content {
    max-width: var(--section-text-max-width);
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Estilos de experience-detail .section-title y p ahora están consolidados arriba */

/* ============================================
   PRESS & MEDIA SECTION - GRID
   ============================================ */
.press {
    background-color: var(--color-beige);
}

.press .content-wrapper {
    padding: 6rem 6rem 3rem; /* Reducido padding vertical para dar más espacio al grid */
    align-items: center;
    justify-content: center;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto); /* Cambiado a auto para que se ajuste al contenido */
    gap: 2rem;
    padding: 0;
    width: 100%;
    height: auto; /* Cambiado a auto para que se ajuste al contenido */
    max-height: none; /* Eliminado max-height para permitir que el texto se muestre completo */
}

.press-item {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    height: auto; /* Cambiado a auto para que se ajuste al contenido */
    min-height: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Inherit text color */
    cursor: pointer;
}

.press-item:hover {
    transform: translateY(-5px);
}

.press-image {
    width: 100%;
    height: 120px; /* Reducido significativamente para dar más espacio al texto */
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.press-content {
    padding: 1.25rem 1.5rem 1.5rem; /* Aumentado padding bottom para más espacio */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Eliminado flex: 1 para que el contenido se ajuste naturalmente al texto */
}

/* Lazy load para imágenes de prensa */
.press.bg-loaded .press-image.vogue {
    background-image: url('../assets/images/press_1.webp');
}

.press.bg-loaded .press-image.lifestyle {
    background-image: url('../assets/images/press_2.webp');
}

.press.bg-loaded .press-image.traveler {
    background-image: url('../assets/images/press_3.webp');
}

.press.bg-loaded .press-image.designmilk {
    background-image: url('../assets/images/press_4.webp');
}

.press.bg-loaded .press-image.reforma {
    background-image: url('../assets/images/press_5.webp');
}

.press.bg-loaded .press-image.ad {
    background-image: url('../assets/images/press_6.webp');
}

.press-date {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-family: 'TradeGothicCondensed', var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-black);
}

.press-excerpt {
    font-size: 0.95rem;
    line-height: 1.5; /* Aumentado para mejor legibilidad */
    font-family: 'TradeGothic', var(--font-primary);
    font-weight: 300;
    color: var(--color-gray);
    margin: 0;
    /* Eliminado line-clamp y overflow hidden para mostrar el texto completo */
    /* El texto ahora se mostrará completamente sin truncar */
}

/* ============================================
   GALLERY SECTION - CARRUSEL AUTOMÁTICO
   ============================================ */
.gallery {
    background-color: var(--color-beige);
}

.gallery .content-wrapper {
    padding: 4rem 2rem;
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-track-container {
    overflow: hidden;
    width: 100%;
    max-width: 1100px; /* Limit width to show approx 3 items */
    flex: 0 1 auto; /* Allow shrinking but not growing beyond max-width */
    padding: 30px 0; /* Add padding to allow for scaling without cutting off */
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: center; /* Center items vertically */
}

.gallery-item {
    min-width: 350px;
    width: 350px;
    height: 450px;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    transform: scale(0.85);
    opacity: 0.8;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.gallery-item:hover:not(.active) {
    transform: scale(0.9);
    opacity: 0.9;
}

.gallery-item:active {
    transform: scale(0.88);
}

.gallery-item.active {
    transform: scale(1.1);
    opacity: 1;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Lazy load para galería */
.gallery.bg-loaded .gallery-img-1 {
    background-image: url('../assets/images/last_1.webp');
    
}

.gallery.bg-loaded .gallery-img-2 {
    background-image: url('../assets/images/gallery_new_1.webp');
    background-position: left;
}

.gallery.bg-loaded .gallery-img-3 {
    background-image: url('../assets/images/last_3.webp');
}

.gallery.bg-loaded .gallery-img-4 {
    background-image: url('../assets/images/gallery_new_2.webp');
}

.gallery.bg-loaded .gallery-img-5 {
    background-image: url('../assets/images/last_5.webp');
}

.gallery.bg-loaded .gallery-img-6 {
    background-image: url('../assets/images/gallery_new_5.webp');
}

.gallery.bg-loaded .gallery-img-7 {
    background-image: url('../assets/images/last_7.webp');
}

.gallery.bg-loaded .gallery-img-8 {
    background-image: url('../assets/images/last_8.webp');
}

.gallery.bg-loaded .gallery-img-9 {
    background-image: url('../assets/images/last_9.webp');
}

.gallery.bg-loaded .gallery-img-10 {
    background-image: url('../assets/images/last_10.webp');
}

/* .gallery.bg-loaded .gallery-img-6 {
    background-image: url('../assets/images/gallery_6.webp');
} */

.carousel-prev,
.carousel-next {
    font-size: 4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-black);
    padding: 1rem;
    transition: opacity 0.3s ease;
    font-weight: 200;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    opacity: 0.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background-color: var(--color-beige);
}

.contact .content-wrapper {
    align-items: flex-start;
    padding-top: 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
}

.contact-form h2 {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.contact-form textarea {
    resize: none;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.btn-send {
    padding: 1rem 4rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #333;
}

.contact-info {
    padding-top: 0;
}

.hotel-logos {
    margin-bottom: 4rem;
    height: 60px;
    background: url('https://via.placeholder.com/400x60/cccccc/666666?text=Hotel+Logos') no-repeat left center;
    background-size: contain;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   LIGHT/DARK VARIANTS
   ============================================ */
.light {
    background-color: #f9ecd8;
    color: var(--color-black);
}

.dark {
    background-color: #1a1a1a;
    color: var(--color-white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideExperiences {
    0%, 20% { opacity: 1; }
    25%, 95% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ============================================
   SUITES NAVIGATION ARROWS
   ============================================ */
.suites-nav-arrow {
    position: absolute;
    bottom: 4.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-black);
    padding: 10px;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suites-nav-arrow:hover {
    opacity: 1;
    transform: scale(1.05);
}

.suites-nav-arrow.prev {
    left: 3rem;
    color: var(--color-white);
}

.suites-nav-arrow.next {
    right: 3rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr !important;
    }
    
    /* Mantener layout de 2 columnas para contact-slide en tablet */
    .contact-slide .content-wrapper.split-layout {
        grid-template-columns: 50% 50% !important;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .restaurant .content-wrapper {
        padding: 6rem 3rem 0;
    }

    .restaurant-header {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .restaurant-info-side h2 {
        font-size: 3.5rem;
    }
    
    .restaurant-info-side .subtitle {
        font-size: 1.2rem;
    }
    
    .restaurant-image-side {
        justify-content: flex-start;
    }
    
    .michelin-logo {
        max-width: 180px;
    }

    .restaurant {
        /* Altura del carrusel en tablets - valor fijo */
        --restaurant-gallery-height: 260px;
    }

    .restaurant-gallery-item {
        width: calc((100vw - 4.5rem) / 2);
    }

    .minos .content-wrapper {
        padding-left: 3rem;
    }

    .minos .section-title {
        font-size: 2.45rem;
    }

    .experiences .content-wrapper {
        padding: 4rem 3rem 0;
    }

    .experiences {
        /* Altura del carrusel en tablets - valor fijo */
        --experiences-gallery-height: 260px;
    }

    .experiences-grid-item {
        width: calc((100vw - 4.5rem) / 2);
    }

    /* Press Section Responsive */
    .press .content-wrapper {
        display: block;
        overflow-y: auto;
        height: 100%;
        padding-top: 7rem;
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        max-height: none;
        height: auto;
        padding-bottom: 6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-track-container {
        max-width: 950px;
    }

    .gallery-item {
        min-width: 300px;
        width: 300px;
        height: 400px;
    }

    .carousel-prev,
    .carousel-next {
        font-size: 3rem;
        padding: 0.5rem;
    }

    /* Room Sections Tablet - Corregir layout y espaciado */
    .room {
        overflow-y: auto;
    }

    .room .content-wrapper.split-layout {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .room .image-side {
        height: 45vh;
        min-height: 350px;
        flex-shrink: 0;
    }

    .room .text-side {
        padding: 3rem 4rem 5rem;
        flex: 1;
        justify-content: flex-start;
    }

    .room .text-side h2 {
        margin-bottom: 2rem;
    }

    .room .text-side p {
        margin-bottom: 2.5rem;
    }

    .room-size {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    /* Ajuste para flechas en móvil */
    .suites-nav-arrow {
        bottom: 1.5rem;
        padding: 8px;
    }
    .suites-nav-arrow.prev {
        left: 1rem;
    }
    .suites-nav-arrow.next {
        right: 6rem;
    }
    .suites-nav-arrow svg {
        width: 40px;
        height: 14px;
    }

    /* Header Mobile - Mejor distribución del espacio */
    .header {
        padding: 1.5rem 1rem;
        display: flex;
        justify-content: space-between;
        grid-template-columns: none;
    }

    .hamburger {
        flex: 0 0 auto;
        margin-left: 0;
        order: 1;
        justify-self: auto;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
        flex: 0 0 auto;
        justify-self: auto;
    }

    .btn-book {
        flex: 0 0 auto;
        margin-right: 0;
        order: 3;
        /* Padding asimétrico para compensar baseline de TradeGothic en móvil */
        padding: 9px 12px 6px 12px;
        font-size: 0.65rem;
        white-space: nowrap;
        max-width: 120px;
        text-overflow: ellipsis;
        overflow: hidden;
        justify-self: auto;
    }
    
    /* Ocultar botón BOOK en header cuando está en experiences (solo móvil) */
    .header.experiences-active .btn-book {
        display: none;
    }
    
    /* Ocultar botón BOOK en header cuando está en restaurant (solo móvil) */
    .header.restaurant-active .btn-book {
        display: none;
    }
    
    /* Ocultar botón BOOK en header cuando está en minos (solo móvil) */
    .header.minos-active .btn-book {
        display: none;
    }
    
    /* Ajuste especial cuando el botón dice "BOOK YOUR TABLE" */
    .btn-book[data-section="restaurant"] {
        font-size: 0.6rem;
        padding: 9px 10px 6px 10px;
        max-width: 110px;
        letter-spacing: 0.05em;
    }

    /* Home Section Mobile - Texto a la izquierda */
    .home {
        align-items: flex-start;
    }

    .home .content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        /* FIX: Asegurar alineación vertical correcta en iOS */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100%;
    }

    .home .text-content {
        text-align: left;
        max-width: 100%;
    }

    /* Location Section Mobile - FIJO a 100vh sin scroll interno */
    .location {
        /* CRÍTICO: NO usar overflow-y: auto - causa conflictos con scroll-snap */
        overflow: hidden !important;
        align-items: flex-start;
        padding-top: 0;
        /* Altura fija exacta - igual que otras secciones */
        height: 100vh !important;
        height: 100svh !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        max-height: 100vh !important;
        max-height: 100svh !important;
    }

    .location .location-wrapper,
    .location-wrapper {
        padding: 5.5rem 1.5rem 4rem !important;
        margin-top: 0;
        height: 100% !important;
        max-height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 0;
    }

    .location-members {
        position: static;
        align-items: flex-start;
        margin-bottom: 0.5rem;
        width: 100%;
        flex-shrink: 0;
    }

    .location-members-text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-align: left;
        letter-spacing: 0.05em;
    }

    .location-members-logo {
        max-width: 200px;
        height: auto;
    }

    .location-map {
        margin-top: 0;
        margin-bottom: 1.75rem;
        padding-top: 0 !important;
        width: 100%;
        flex: 0 0 auto !important;
        display: flex;
        align-items: flex-start !important;
        justify-content: center;
        height: auto !important;
    }

    .location-map-image {
        max-width: 100%;
        max-height: 18vh;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .location-content {
        flex-direction: column;
        gap: 1.75rem;
        flex: 0 0 auto;
    }

    .location-description {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .location-description p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .location-list-column {
        width: 100%;
    }

    .location-list-column:first-of-type {
        margin-bottom: 0.75rem;
    }

    .location-walk-title {
        padding-left: 0;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .location-item {
        padding-left: 0;
        font-size: 0.9rem;
        margin-bottom: 0.45rem;
        line-height: 1.45;
    }

    /* Ecosystem Section Mobile - Texto a la izquierda (igual que home) */
    .ecosystem .content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .ecosystem .ecosystem-fullwidth {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        align-items: flex-start;
    }

    .ecosystem .ecosystem-text {
        text-align: left;
        max-width: 100%;
        padding-left: 0;
        padding-right: 2rem;
    }

    /* Ecosystem Music Section Mobile - Texto a la izquierda */
    .ecosystem-music {
        align-items: flex-start;
    }

    .ecosystem-music .content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        justify-content: flex-start;
        align-items: flex-start;
        /* FIX: Asegurar alineación vertical correcta en iOS */
        flex-direction: column;
        height: 100%;
    }

    .ecosystem-music .ecosystem-music-content {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        align-items: flex-start;
    }

    .ecosystem-music .ecosystem-music-text {
        text-align: left;
        max-width: 100%;
    }

    .hero-title {
        font-size: 6rem;
    }

    /* Botón de audio en hero - ajustes para móvil */
    .hero-audio-toggle {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.6rem;
        padding: 6px 12px 5px 12px;
        letter-spacing: 0.05em;
    }

    .hero-audio-mute {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .hero-audio-mute svg {
        width: 18px;
        height: 18px;
    }

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

    .large-title {
        font-size: 3rem;
    }

    .content-wrapper {
        padding: 0 2rem;
    }

    /* Fix para sección Minos en móvil - Texto a la izquierda */
    .minos {
        align-items: flex-start;
    }

    .minos .content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        /* FIX: Asegurar alineación vertical correcta en iOS */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100%;
        display: flex;
    }

    .minos .section-title {
        font-size: 2.1rem;
    }

    .minos p,
    .minos .emphasis {
        font-size: 1rem;
    }

    /* Botón BOOK AT MINOS para minos (solo móvil) */
    .btn-book-minos {
        display: inline-block;
        background: transparent;
        border: 2px solid var(--color-white);
        color: var(--color-white);
        font-size: 0.9rem;
        font-weight: 700;
        font-family: var(--font-primary);
        letter-spacing: 0.1em;
        cursor: pointer;
        border-radius: 25px;
        transition: all 0.3s ease;
        padding: 12px 20px 8px 20px;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        text-transform: uppercase;
        align-self: flex-start;
        text-decoration: none;
    }

    .btn-book-minos:hover {
        background-color: var(--color-white);
        color: var(--color-black);
    }

    .minos-logo {
        width: 145px;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

    .restaurant .content-wrapper {
        padding: 7rem 2rem 2rem;
        /* Con flexbox, flex: 1 hace que ocupe el espacio restante automáticamente */
        /* No necesitamos calcular alturas */
        flex: 1;
        min-height: 0;
        box-sizing: border-box;
    }

    .restaurant-header {
        margin-bottom: 2rem;
        margin-top: 1rem;
        /* Asegurar que el grid funcione correctamente en móvil */
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .restaurant-info-side h2 {
        font-size: 2.5rem;
    }
    
    .restaurant-info-side .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .restaurant-info-side h3 {
        font-size: 1.4rem;
    }
    
    .restaurant-info-side p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .restaurant-image-side {
        justify-content: flex-start;
        width: 100%;
    }
    
    .michelin-logo {
        max-width: 140px;
    }

    /* Estilos antiguos desactivados/reemplazados */
    .restaurant-logo h2, .restaurant-logo .subtitle, .elora-icon, .restaurant-text, .restaurant-text h3, .restaurant-text p {
        /* display: none; ya está en global */
    }

    /* Botón BOOK YOUR TABLE para restaurant (solo móvil) */
    .btn-book-restaurant {
        display: inline-block;
        background: transparent;
        border: 2px solid var(--color-black);
        color: var(--color-black);
        font-size: 0.9rem;
        font-weight: 700;
        font-family: var(--font-primary);
        letter-spacing: 0.1em;
        cursor: pointer;
        border-radius: 25px;
        transition: all 0.3s ease;
        padding: 12px 20px 8px 20px;
        /* margin-top: 1.5rem; */
        /* margin-bottom: 2rem; */
        text-transform: uppercase;
        align-self: flex-start;
    }

    .btn-book-restaurant:hover {
        background-color: var(--color-black);
        color: var(--color-white);
    }

    .restaurant {
        /* Altura del carrusel en móvil - valor FIJO absoluto */
        --restaurant-gallery-height: 220px;
        /* Mantener display: flex del estilo base */
        display: flex;
        flex-direction: column;
        /* Altura fija de la sección - NO usar vh en móvil */
        height: auto !important;
        min-height: 100vh;
        min-height: 100svh;
        min-height: -webkit-fill-available;
    }

    .restaurant-gallery {
        /* Altura FIJA absoluta - no depende de nada variable */
        height: 220px !important;
        min-height: 220px !important;
        flex-shrink: 0;
    }
    
    /* FORZAR carga de imágenes en móvil (sin esperar lazy loading) */
    .restaurant .restaurant-gallery-item:nth-child(1),
    .restaurant .restaurant-gallery-item:nth-child(5) {
        background-image: url('../assets/images/volga_13_1.webp');
    }
    .restaurant .restaurant-gallery-item:nth-child(2),
    .restaurant .restaurant-gallery-item:nth-child(6) {
        background-image: url('../assets/images/volga_13_2.webp');
    }
    .restaurant .restaurant-gallery-item:nth-child(3),
    .restaurant .restaurant-gallery-item:nth-child(7) {
        background-image: url('../assets/images/volga_13_3.webp');
    }
    .restaurant .restaurant-gallery-item:nth-child(4),
    .restaurant .restaurant-gallery-item:nth-child(8) {
        background-image: url('../assets/images/volga_13_4.webp');
    }

    .restaurant-carousel-track {
        gap: 0.75rem;
    }

    .restaurant-gallery-item {
        flex: 0 0 40%;
        min-width: 40%;
        width: 40%;
    }

    .experiences .content-wrapper {
        padding: 5rem 0.5rem 0;
        overflow-x: hidden;
    }

    .experiences {
        /* Altura del carrusel en móvil - valor fijo */
        --experiences-gallery-height: 220px;
        /* Mantener flexbox del estilo base */
        display: flex;
        flex-direction: column;
    }

    .large-title {
        font-size: 2.5rem;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.1;
        padding: 0 1rem;
    }

    .intro-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .experiences-grid-item {
        width: calc(100vw - 50vw);
        min-width: calc(100vw - 50vw);
    }
    
    /* Botón BOOK YOUR EXPERIENCE - Mostrar solo en móvil */
    .btn-book-experience {
        display: inline-block;
        text-decoration: none;
    }
    
    .btn-book-experience:hover {
        background-color: var(--color-black);
        color: var(--color-white);
    }

    /* Ajuste adicional para pantallas muy pequeñas */
    @media (max-width: 480px) {
        .large-title {
            font-size: 2rem;
        }
        
        .experiences .content-wrapper {
            padding: 6rem 1.25rem 0;
        }

        .contact-slide .contact-text-side {
            padding: 8.5rem 1.5rem 1.5rem;
        }

        .contact-slide .contact-text-side .section-title {
            font-size: clamp(1rem, 4vw, 1.4rem);
            padding-top: 1.25rem;
            max-width: calc(100% - 3rem);
            line-height: 1.1;
            white-space: nowrap;
        }

        .contact-slide .image-side {
            padding: 1rem;
        }
        
        /* Location Section - Ajustes para pantallas muy pequeñas */
        .location .location-wrapper,
        .location-wrapper {
            padding: 5rem 2rem 1.5rem !important;
        }
        
        .location-members {
            margin-bottom: 1rem;
        }
        
        .location-members-text {
            font-size: 0.8rem;
        }
        
        .location-members-logo {
            max-width: 250px;
        }
        
        .location-map {
            margin-bottom: 1.5rem;
        }
        
        .location-map-image {
            max-height: 18vh;
        }
        
        .location-description p {
            font-size: 1.15rem;
            line-height: 1.45;
        }
        
        .location-walk-title {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }
        
        .location-item {
            font-size: 1.15rem;
            margin-bottom: 0.3rem;
            line-height: 1.35;
        }
        
        .location-content {
            gap: 1rem;
        }
        
        .location-list-column:first-of-type {
            margin-bottom: 0.35rem;
        }
    }

    .gallery .content-wrapper {
        padding: 3rem 1rem;
    }

    .gallery-track-container {
        max-width: 760px;
    }

    .gallery-carousel {
        gap: 1rem;
    }

    .gallery-item {
        min-width: 240px;
        width: 240px;
        height: 500px;
    }

    .carousel-prev,
    .carousel-next {
        font-size: 2.5rem;
        padding: 0.5rem;
    }

    /* Responsive adjustments for experience details */
    .experience-detail {
        align-items: flex-start;
    }

    .experience-detail .content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        /* FIX: Asegurar alineación vertical correcta en iOS */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100%;
        /* Asegurar display flex para que flex-direction y align-items funcionen */
        display: flex;
    }

    .experience-detail .section-title {
        font-size: 2.2rem;
    }
    
    .experience-detail p {
        font-size: 1.1rem;
    }

    /* Ocultar saltos de línea de desktop en móvil para mezcaleria */
    .experience-detail p .br-desktop {
        display: none;
    }

    /* Ajustar imágenes de fondo para móvil: mezcaleria, rooftop y gym */
    #mezcaleria.experience-detail,
    #rooftop.experience-detail,
    #gym.experience-detail {
        background-size: cover !important;
        background-position: center !important;
    }

    /* Press Section Mobile - 2 columnas, 3 filas para mostrar 6 cards sin scroll */
    /* FIX para navegadores embebidos: usar valores FIJOS absolutos */
    .press .content-wrapper {
        padding: 6rem 1rem 2rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Altura FIJA para cada fila - no depende de vh */
        grid-template-rows: repeat(3, minmax(150px, 180px));
        gap: 0.75rem;
        /* Usar altura fija en lugar de calc con vh */
        height: auto !important;
        max-height: none !important;
        padding: 0;
        width: 100%;
    }

    .press-item {
        /* Altura FIJA para cada card */
        height: 100%;
        min-height: 150px !important;
        max-height: 180px;
        display: flex;
        flex-direction: column;
    }

    .press-image {
        height: 80px !important;
        min-height: 80px !important;
        flex-shrink: 0;
    }

    .press-content {
        padding: 0.5rem 0.75rem;
        flex: 1;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .press-date {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        flex-shrink: 0;
    }

    .press-excerpt {
        font-size: 0.75rem;
        line-height: 1.25;
        /* Valores FIJOS para el truncado de texto */
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        /* Altura máxima fija basada en line-height */
        max-height: calc(0.75rem * 1.25 * 3) !important;
        flex: 1;
    }
    
    /* FORZAR carga de imágenes de press en móvil (sin esperar lazy loading) */
    .press .press-image.vogue {
        background-image: url('../assets/images/press_1.webp');
    }
    .press .press-image.lifestyle {
        background-image: url('../assets/images/press_2.webp');
    }
    .press .press-image.traveler {
        background-image: url('../assets/images/press_3.webp');
    }
    .press .press-image.designmilk {
        background-image: url('../assets/images/press_4.webp');
    }
    .press .press-image.reforma {
        background-image: url('../assets/images/press_5.webp');
    }
    .press .press-image.ad {
        background-image: url('../assets/images/press_6.webp');
    }

    /* Suites Container Mobile */
    .suites-container {
        width: 600vw; /* Mantener 6 slides */
    }

    /* Reset de estilos desktop para suites-intro en móvil */
    .suites-intro {
        padding-left: 0;
        padding-top: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .suites-intro .content-wrapper,
    .suites-intro .content-wrapper.ecosystem-music-content {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .suites-intro .ecosystem-music-text {
        text-align: left;
        max-width: 100%;
        padding-left: 0;
    }

    /* Ocultar versión desktop y mostrar versión móvil en suites-intro */
    .suites-intro .learn-more-desktop {
        display: none !important;
    }
    
    .suites-intro .learn-more-mobile {
        display: inline-block !important;
    }

    /* Room Sections Mobile - Corregir layout y espaciado */
    .room {
        overflow-y: auto;
    }

    .room .content-wrapper.split-layout {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .room .image-side {
        height: 45vh;
        min-height: 300px;
        flex-shrink: 0;
    }

    .room .text-side {
        padding: 2.5rem 1.5rem 4rem;
        flex: 1;
        justify-content: flex-start;
    }

    .room .text-side h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .room .text-side p {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 2rem;
    }

    .room-size {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .room-size::before {
        margin-right: 1rem;
    }

    .room-size::after {
        margin-left: 1rem;
    }

    /* Botón BOOK en header para secciones de rooms en móvil - tema light (blanco) */
    .header.rooms-header .btn-book {
        border-color: var(--color-white);
        color: var(--color-white);
    }

    .header.rooms-header .btn-book:hover {
        background-color: var(--color-white);
        color: var(--color-black);
    }

    /* Contact & Collaborations Sections Mobile - Layout de 1 columna */
    .contact-slide {
        overflow: hidden;
        height: 100vh;
    }

    .contact-slide .content-wrapper.split-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        height: 100vh;
        padding: 0;
    }

    .contact-slide .contact-text-side {
        padding: 8rem 2rem 2rem;
        width: 100%;
        height: auto;
        order: 1;
        flex: 0 0 auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .contact-slide .contact-text-side .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
        padding-top: 1.5rem;
        max-width: calc(100% - 4rem);
        line-height: 1.1;
        white-space: nowrap;
    }

    .contact-slide .contact-text-side p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }

    .contact-slide .image-side {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 280px;
        flex: 1 1 auto;
        order: 2;
        padding: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contact-slide .btn-text-arrow {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .contact-slide .section-label {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.7rem;
    }

    /* Room Pets Section Mobile - Texto alineado a la izquierda */
    .room-pets {
        overflow-y: auto;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 0;
        padding-top: 0;
    }

    .pets-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        padding-bottom: 3rem;
        text-align: left;
    }

    .pets-title {
        font-size: 2.1rem;
        text-align: left;
    }

    .pets-description {
        font-size: 1.1rem;
        text-align: left;
    }

    /* Footer Mobile - 100vh para evitar que se vea la imagen de la sección anterior */
    .footer {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden;
        padding-top: 0;
        position: relative;
    }

    .footer-content {
        height: 100% !important;
        min-height: 0;
        padding-top: 8rem !important;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
        overflow-y: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
    }

    .footer-header {
        margin-top: 0;
        margin-bottom: 1.5rem;
        padding-top: 0;
        padding-bottom: 0.75rem;
    }

    .footer-header h3 {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        flex: 1;
        min-height: 0;
    }

    .footer-column {
        gap: 0.5rem;
    }

    .footer-item {
        margin-bottom: 0.75rem;
    }

    .footer-item h4 {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }

    .footer-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .footer-item p a {
        color: inherit;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .footer-item p a:hover {
        opacity: 0.7;
        text-decoration: underline;
    }

    .footer-main-logo {
        max-width: 120px;
        margin-bottom: 0.5rem;
    }

    .footer-partners {
        margin-bottom: 0.5rem;
    }

    .partner-logos {
        height: 40px;
        max-width: 240px;
    }

    .namron-logo {
        height: 35px;
        max-width: 160px;
    }

    .footer-right {
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-address {
        margin-bottom: 0.5rem;
    }

    .footer-address h4 {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }

    .footer-address p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .footer-social {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .social-link svg {
        width: 12px;
        height: 12px;
    }

    .privacy-link {
        font-size: 0.85rem;
    }

    .contact-list {
        align-items: center;
        gap: 0.5rem;
    }

    .footer-center {
        align-items: center;
        gap: 1rem;
    }
}

/* ============================================
   NEW CONTACT SLIDES & FOOTER
   ============================================ */

/* Contact Slides */
.contact-slide {
    background-color: #f9ecd8;
}

.contact-slide .content-wrapper.split-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.contact-text-side {
    padding: 6rem 4rem 6rem 6rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text-side .section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: 'TradeGothicExtended', var(--font-primary);
    font-weight: 400;
}

.contact-text-side p {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 90%;
    font-family: 'MyriadPro', 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
}

.contact-slide .image-side {
    /* Dimensiones FIJAS para que ambas secciones (Press y Collaborations) se vean simétricas */
    width: 100%;
    max-width: 440px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: auto;
}

.contact-image-press {
    background-color: transparent;
    background-size: cover;
    background-position: center;
}

.contact-slide.bg-loaded .contact-image-press {
    background-image: url('../assets/images/press.webp');
}

.contact-image-collab {
    background-color: transparent;
    background-size: cover;
    background-position: center;
}

.contact-slide.bg-loaded .contact-image-collab {
    background-image: url('../assets/images/collaboration.webp');
}

/* Button Text Arrow */
.btn-text-arrow {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: none;
    padding-bottom: 0;
    font-family: 'TradeGothicCondensed', var(--font-primary);
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.btn-text-arrow:hover {
    opacity: 0.7;
}

/* Footer Section */
.footer {
    background-color: #f9ecd8;
    padding: 0;
    align-items: flex-start;
    /* Override default section height - footer should be ~1/3 of viewport */
    height: auto;
    min-height: 38vh;
    max-height: none;
    overflow: visible;
}

.footer-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 5rem 2.5rem;
    height: auto;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 6rem 1.5rem 1.5rem !important;
    }
}

.footer-header {
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

.footer-header h3 {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'TradeGothicExtended', var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    width: 100%;
    gap: 2rem;
    flex: 1;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.contact-list {
    justify-content: flex-start;
    gap: 0.75rem;
}

.footer-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: 'MyriadPro', sans-serif;
}

.footer-item p {
    font-size: 0.9rem;
    line-height: 1.35;
    font-family: 'MyriadPro', sans-serif;
    margin: 0;
}

.footer-item p a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-item p a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-center {
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    gap: 1.5rem;
}

.footer-main-logo {
    width: auto;
    max-width: 140px;
    height: auto;
}

.footer-right {
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
    gap: 1rem;
}

.footer-address {
    margin-bottom: 0.75rem;
}

.footer-address h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: 'MyriadPro', sans-serif;
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.35;
    font-family: 'MyriadPro', sans-serif;
}

.footer-partners {
    margin-bottom: 0;
}

.partner-logos {
    height: 50px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.social-link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1.5px solid var(--color-black);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'TradeGothicCondensed', sans-serif;
}

.social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.social-link:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.privacy-link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-black);
    margin-bottom: 0;
    font-family: 'MyriadPro', sans-serif;
}

.namron-logo-container {
    margin-top: 0;
}

.namron-logo {
    height: 200px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .contact-list {
        align-items: center;
    }
    
    .contact-text-side {
        padding: 4rem 2rem;
    }
    
    .contact-text-side .section-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   ECOSYSTEM TEAM - MOBILE VERSION
   ============================================ */

/* Ocultar versión móvil en desktop */
.team-mobile {
    display: none;
}

/* Ocultar indicador de swipe en desktop */
.swipe-indicator-mobile {
    display: none;
}

/* Mostrar versión desktop por defecto */
.team-desktop {
    display: flex;
}

@media (max-width: 768px) {
    /* Ocultar versión desktop en móvil */
    .ecosystem-team .team-desktop {
        display: none !important;
    }
    
    /* Mostrar y configurar versión móvil */
    .team-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 6rem 1.5rem 4rem;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .team-mobile-scroll {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .team-member-mobile {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        width: 100%;
    }
    
    .member-photo-mobile {
        width: 100%;
        height: 280px;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }
    
    /* Lazy load para fotos del equipo mobile */
    .ecosystem-team.bg-loaded .member-photo-mobile.member-photo-1 {
        background-image: url('../assets/images/volga_5_1.webp');
    }
    
    .ecosystem-team.bg-loaded .member-photo-mobile.member-photo-2 {
        background-image: url('../assets/images/volga_5_2.webp');
    }
    
    .ecosystem-team.bg-loaded .member-photo-mobile.member-photo-3 {
        background-image: url('../assets/images/volga_5_3.webp');
    }
    
    .member-info-mobile {
        padding: 1rem 0;
    }
    
    .member-info-mobile h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-family: 'TradeGothicCondensed', var(--font-primary);
        color: var(--color-black);
    }
    
    .member-info-mobile p {
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 300;
        font-family: 'TradeGothic', var(--font-primary);
        color: var(--color-black);
        margin: 0;
    }
    
    /* Ajustar la sección ecosystem-team para móvil */
    .ecosystem-team {
        height: auto !important;
        min-height: 100vh;
        max-height: none !important;
        overflow-y: auto !important;
    }
    
    /* Ocultar el back text y section label originales en la versión móvil de ecosystem-team */
    .ecosystem-team .back-text,
    .ecosystem-team .section-label {
        display: none;
    }
    
    /* Footer móvil con BACK y label */
    .team-mobile-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
        margin-top: 1rem;
    }
    
    .back-text-mobile {
        color: var(--color-black);
        font-size: 1rem;
        font-weight: 400;
        font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
        text-decoration: none;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    
    .back-text-mobile:hover {
        opacity: 0.7;
    }
    
    .section-label-mobile {
        font-size: 0.75rem;
        text-transform: uppercase;
        opacity: 0.5;
        font-family: 'TradeGothicExtended', var(--font-primary);
        font-weight: 400;
        color: var(--color-black);
    }
    
    /* Cambiar LEARN MORE por indicador de swipe en móvil */
    .ecosystem-text .learn-more-desktop {
        display: none !important;
    }
    
    .ecosystem-text .learn-more-mobile {
        display: inline-block !important;
        margin-top: 2rem;
        font-size: 1rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--color-white);
        font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
        font-weight: 400;
    }
    
    /* Indicador de swipe back en ecosystem-team móvil */
    .swipe-indicator-mobile {
        display: block;
        color: var(--color-black);
        font-size: 0.9rem;
        font-weight: 400;
        font-family: 'TradeGothicExtended', 'Helvetica Neue', 'Arial', sans-serif;
        text-align: left;
        padding: 1rem 0 1.5rem;
        letter-spacing: 0.05em;
        opacity: 0.8;
    }
}