:root {
    --bg-dark: #121816; --bg-darker: #0d1110; --accent: #C9A86C;
    --text-light: #F4F4F0; --text-muted: #A0A8A3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.8; font-weight: 300; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 0.05em; }

/* NAVEGACIÓN */
nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 1.5rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 1000; 
    transition: all 0.5s ease; 
    background: transparent; 
}
nav.scrolled { 
    background: rgba(18, 24, 22, 0.95); 
    backdrop-filter: blur(10px); 
    padding: 1rem 5%; 
    border-bottom: 1px solid rgba(201, 168, 108, 0.1); 
}

.nav-links { display: flex; gap: 2rem; list-style: none; flex: 1; }
.nav-links-left { justify-content: flex-start; }
.nav-links-right { justify-content: flex-end; }

.logo { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 2.8rem; 
    color: var(--accent); 
    text-decoration: none; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    transition: all 0.3s ease; 
    z-index: 1001;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}
.logo:hover { 
    transform: translateX(-50%) scale(1.05); 
    text-shadow: 0 2px 12px rgba(201, 168, 108, 0.6);
}

.nav-links a { 
    color: var(--text-light); 
    text-decoration: none; 
    font-size: 0.75rem; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    transition: all 0.3s ease; 
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}
.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 0; 
    height: 1px; 
    background: var(--accent); 
    transition: width 0.3s ease; 
}
.nav-links a:hover { 
    color: var(--accent); 
    text-shadow: 0 1px 5px rgba(201, 168, 108, 0.5);
}
.nav-links a:hover::after { width: 100%; }

/* HAMBURGUESA */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 20px; cursor: pointer; z-index: 1002; background: transparent; border: none; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--accent); transition: all 0.4s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* MENÚ MÓVIL */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(13, 17, 16, 0.98); backdrop-filter: blur(20px); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: right 0.5s ease; }
.mobile-menu.active { right: 0; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.5rem 0; opacity: 0; transform: translateX(30px); transition: all 0.4s ease; }
.mobile-menu.active li { opacity: 1; transform: translateX(0); }
.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active li:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu a { color: var(--text-light); text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 2rem; letter-spacing: 0.15em; }
.mobile-menu a:hover { color: var(--accent); }

/* ===== HERO CON VIDEO DE YOUTUBE (PROPORCIÓN FIJA 16:9) ===== */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-dark);
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 17, 16, 0.75) 0%,
        rgba(13, 17, 16, 0.45) 12%,
        rgba(13, 17, 16, 0) 35%,
        rgba(13, 17, 16, 0) 75%,
        rgba(13, 17, 16, 0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Botón de sonido del video hero (solo aparece si hay video) */
.hero-sound-btn {
    position: absolute;
    bottom: 4.5rem;
    right: 1.5rem;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 17, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-sound-btn:hover,
.hero-sound-btn:focus-visible {
    background: rgba(13, 17, 16, 0.85);
    border-color: var(--accent);
    outline: none;
}
.hero-sound-btn svg { width: 20px; height: 20px; }
.hero-sound-btn .icon-sound-on { display: none; }
.hero-sound-btn.sound-on .icon-sound-off { display: none; }
.hero-sound-btn.sound-on .icon-sound-on { display: block; }

/* ===== BOTÓN RESERVAR DESTACADO (SIEMPRE SÓLIDO) ===== */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 4rem;
    text-align: center;
    z-index: 2;
}
/*
.btn-hero {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
    padding: 1.5rem 5rem;
    font-size: 1.05rem;
    letter-spacing: 0.3em;
    margin-top: 0;
    border: 1px solid var(--accent);
    box-shadow: 0 6px 30px rgba(201, 168, 108, 0.45);
    animation: glowPulse 2.8s ease-in-out infinite;
}
.btn-hero:hover {
    background: #e2c68d;
    border-color: #e2c68d;
    color: var(--bg-dark);
    transform: translateY(-3px);
}*/
/* ===== BOTÓN RESERVAR 100% SÓLIDO (prioridad máxima) ===== */

.btn.btn-hero {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
    padding: 1.5rem 5rem;
    font-size: 1.05rem;
    letter-spacing: 0.3em;
    margin-top: 0;
    border: 1px solid var(--accent);
    opacity: 1;
    box-shadow: 0 6px 30px rgba(201, 168, 108, 0.45);
    animation: glowPulse 2.8s ease-in-out infinite;
}
.btn.btn-hero:hover {
    background: #e2c68d;
    border-color: #e2c68d;
    color: var(--bg-dark);
    transform: translateY(-3px);
}



@keyframes glowPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(201, 168, 108, 0.35); }
    50% { box-shadow: 0 8px 45px rgba(201, 168, 108, 0.75); }
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s, bounce 3s infinite 2s;
    cursor: pointer;
    z-index: 10;
}
.scroll-hint span {
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto;
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } from { transform: translateY(30px); } }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* SECCIONES */
section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
#menu { padding: 60px 5% 70px; }
.section-title { font-size: 2.8rem; color: var(--accent); margin-bottom: 2rem; text-align: center; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.section-title.visible { opacity: 1; transform: translateY(0); }
.section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--accent); margin: 1rem auto 0; }
/* ===== TIKILAND: FONDO SUTIL CON IMAGEN (imagen editable desde el panel: hero_slides page='index_tikiland') ===== */
#tikiland {
    max-width: 100%;
}

/* ===== SECCIÓN NOSOTROS (COMPACTA PARA PORTÁTIL) ===== */
#nosotros { padding: 50px 5% 60px; }

.nosotros-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-light);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
     margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.nosotros-title.visible { opacity: 1; transform: translateY(0); }

/* FRASE APILADA Y CENTRADA */
.nosotros-phrase {
    max-width: 720px;
    margin: 0 auto 1.3rem;
    text-align: center;
}

.nosotros-subtitle {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    color: var(--text-light);
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.15s;
}
.nosotros-subtitle.visible { opacity: 1; transform: translateY(0); }
.nosotros-subtitle strong { font-weight: 600; color: var(--text-light); }

.nosotros-experience {
    display: block;
    text-align: center;
    font-family: 'Pinyon Script', 'Great Vibes', cursive;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    line-height: 0.85;
    color: var(--text-light);
    margin: -0.2rem 0 -0.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}
.nosotros-experience.visible { opacity: 1; transform: translateY(0); }

.nosotros-different {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    color: var(--text-light);
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.45s;
}
.nosotros-different.visible { opacity: 1; transform: translateY(0); }

/* Descripción en dos párrafos con palabras clave */
.nosotros-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    color: var(--text-muted);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 1.2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}
.nosotros-description.visible { opacity: 1; transform: translateY(0); }
.nosotros-description strong {
    color: var(--accent);
    font-weight: 500;
}

.nosotros-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    color: var(--text-muted);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}
.nosotros-description.visible { opacity: 1; transform: translateY(0); }

/* ===== CARDS (COMPACTAS) ===== */
.features, .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.feature-card, .info-card { padding: 1.5rem 1.3rem; border: 1px solid rgba(201, 168, 108, 0.2); background: rgba(201, 168, 108, 0.03); transition: all 0.4s ease; opacity: 0; transform: translateY(30px); }
.feature-card.visible, .info-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover, .info-card:hover { border-color: var(--accent); transform: translateY(-5px); }

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.feature-card p { font-size: 0.85rem; line-height: 1.6; }
.feature-card p strong {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.90rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== INFORMACIÓN - LAYOUT EDITORIAL (CENTRADO) ===== */
.info-editorial {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.12);
    align-items: start;
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }

.info-divider {
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 108, 0.4), transparent);
    height: 100%;
}

.info-block { text-align: center; }
.info-block h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.info-block p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.02em;
}
.info-block p + p { margin-top: 0.3rem; }

/* Contacto */
.info-block .contact-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--text-light);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.6rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
}
.info-block .contact-phone:hover { color: var(--accent); }

.info-block .contact-email {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}
.info-block .contact-email:hover { color: var(--accent); }

/* Enlace Google Maps con icono SVG */
.map-link {
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.map-link:hover { color: var(--text-light); }
.map-link svg { width: 18px; height: 18px; }

/* Redes sociales CENTRADAS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.social-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201, 168, 108, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
}
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }

.info-social-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-social-wrap .social-icons { justify-content: center; margin-top: 1rem; }
.info-social-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ===== CARRUSEL MENÚ ===== */
/* Título sin línea y botón en su lugar */
#menu .section-title { margin-bottom: 1.2rem; }
#menu .section-title::after { display: none; }
.btn-carta { margin-top: 0; margin-bottom: 1.5rem; }

/* Carrusel 2:1 - fotos menos cortadas */
.menu-carousel {
    position: relative;
    margin: 2rem auto 0;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    max-width: 880px;
    border: 1px solid rgba(201, 168, 108, 0.15);
    background: var(--bg-darker);
}
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
}
.carousel-slide.active { opacity: 1; z-index: 2; }
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 6s ease-out;
    filter: brightness(0.9);
}
.carousel-slide.active img { transform: scale(1); }
.slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem 1.5rem 1.2rem;
    background: linear-gradient(transparent, rgba(13, 17, 16, 0.9));
    text-align: center;
}
.slide-caption span {
    display: block;
    color: var(--accent);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.slide-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-light);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px; height: 48px;
    background: rgba(13, 17, 16, 0.5);
    border: 1px solid rgba(201, 168, 108, 0.4);
    color: var(--accent);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    font-family: 'Montserrat', sans-serif;
}
.carousel-arrow:hover { background: var(--accent); color: var(--bg-dark); }
.carousel-arrow.prev { left: 1.5rem; }
.carousel-arrow.next { right: 1.5rem; }
.carousel-counter {
    position: absolute;
    bottom: 1.5rem; right: 2rem;
    z-index: 5;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
}
.carousel-counter .current { color: var(--accent); font-size: 1rem; }
.carousel-lines {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.carousel-lines button {
    width: 30px; height: 2px;
    border: none; padding: 0;
    cursor: pointer;
    background: rgba(244, 244, 240, 0.25);
    transition: background 0.3s ease;
}
.carousel-lines button.active { background: var(--accent); }
@media (max-width: 700px) {
    .menu-carousel { aspect-ratio: 3 / 2; max-width: 100%; }
    .carousel-arrow { width: 40px; height: 40px; }
    .carousel-arrow.prev { left: 0.75rem; }
    .carousel-arrow.next { right: 0.75rem; }
    .carousel-lines { display: none; }
    .slide-caption { padding: 3rem 1.2rem 1.2rem; }
}

/* BOTONES */
.btn { display: inline-block; margin-top: 2rem; padding: 1rem 3rem; border: 1px solid var(--accent); color: var(--accent); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.4s ease; cursor: pointer; background: transparent; font-family: 'Montserrat', sans-serif; }
.btn:hover { background: var(--accent); color: var(--bg-dark); transform: translateY(-3px); }

/* MODAL */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13, 17, 16, 0.95); z-index: 2000; justify-content: center; align-items: center; padding: 20px; }
.modal.active { display: flex; }
.modal-content { background: var(--bg-dark); padding: 3rem; border-radius: 4px; width: 100%; max-width: 500px; position: relative; border: 1px solid rgba(201, 168, 108, 0.2); }
.close-modal { position: absolute; top: 1rem; right: 1.5rem; color: var(--text-muted); font-size: 2rem; cursor: pointer; transition: color 0.3s; line-height: 1; }
.close-modal:hover { color: var(--accent); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.05em; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] { width: 100%; padding: 0.8rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(201, 168, 108, 0.2); color: var(--text-light); border-radius: 2px; font-family: 'Montserrat', sans-serif; }
.form-group input:focus { outline: none; border-color: var(--accent); }

.file-upload-wrapper { position: relative; width: 100%; }
.file-upload-input { display: none; }
.file-upload-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 0.9rem 1.5rem; border: 1px solid rgba(201, 168, 108, 0.3); background: rgba(201, 168, 108, 0.05); color: var(--accent); border-radius: 2px; cursor: pointer; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.file-upload-btn:hover { border-color: var(--accent); background: rgba(201, 168, 108, 0.1); }
.file-upload-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.file-upload-name { display: block; margin-top: 0.6rem; font-size: 0.8rem; color: var(--text-muted); font-style: italic; word-break: break-all; }
.file-upload-name.has-file { color: var(--accent); font-style: normal; }

.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-top: 1rem; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.checkbox-group label { margin-bottom: 0; font-size: 0.85rem; line-height: 1.4; cursor: pointer; color: var(--text-muted); }
.checkbox-group label a { color: var(--accent); text-decoration: underline; transition: opacity 0.3s; }
.checkbox-group label a:hover { opacity: 0.8; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .logo { position: static; transform: none; font-size: 1.7rem; }
    .logo:hover { transform: scale(1.05); }
    nav { justify-content: space-between; }
}
@media (max-width: 700px) {
    .info-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2rem 0;
    }
    .info-divider {
        height: 1px;
        width: 100%;
        background: linear-gradient(to right, transparent, rgba(201, 168, 108, 0.4), transparent);
        order: 2;
    }
    .info-row .info-block:nth-of-type(2) { order: 3; }
}
@media (max-width: 480px) {
    .modal-content { padding: 2rem 1.5rem; }
    .btn-hero { padding: 1.2rem 3rem; font-size: 0.95rem; }
}

/* Móvil: si el hero del index es VIDEO, ocupa toda la pantalla (las imágenes siguen 16:9) */
@media (max-width: 700px) {
    .hero:has(video.hero-video) {
        height: 100vh;
        aspect-ratio: auto;
    }
    .hero:has(video.hero-video) .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* LOADER */
.page-loader { position: fixed; inset: 0; background: var(--bg-dark); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--accent); letter-spacing: 0.3em; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }