:root {
    --bg: #FAF9F6;
    --bg-white: #FFFFFF;
    --bg-dark: #161616;
    --maroon: #D4AF37;
    --maroon-dark: #b5952f;
    --gold: #B89768;
    --gold-light: #c9aa80;
    --text-dark: #2C2C2C;
    --text-muted: #6B6B6B;
    --border: #E5E0D8;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Inter', sans-serif;
    --tr: 0.3s ease;
    --container: 1200px;
    --nav-h: 90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all var(--tr);
}
.header.scrolled {
    background: rgba(255,255,255,0.99);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img { height: 64px; width: auto; }
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color var(--tr);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--maroon);
    transition: width var(--tr);
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { width: 100%; }

.btn-reservar {
    background: var(--maroon);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background var(--tr) !important;
}
.btn-reservar::after { display: none !important; }
.btn-reservar:hover { background: var(--maroon-dark) !important; color: #fff !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--tr);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    animation: fadeUp 1s ease-out both;
}
.hero-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 0.4rem;
    color: #fff;
}
.hero-city {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.hero-sub {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--maroon);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background var(--tr);
}
.btn-hero-primary:hover { background: var(--maroon-dark); color: #fff; }
.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
    padding: 1rem 2.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--tr);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Schedule Ticker */
.hero-schedule-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(22, 22, 22, 0.88);
    backdrop-filter: blur(4px);
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
}
.ticker-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: tickerScroll 28s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 3rem;
}
.ticker-item span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}
.ticker-dot {
    color: var(--gold-light);
    font-size: 0.6rem;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMONS ─── */
.section { padding: 6rem 0; }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--maroon);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.section-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }

/* Divider */
.divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
}
.divider.centered { margin: 1.5rem auto; }

/* ─── INTRO (cuidar cada detalle) ─── */
.intro-section { background: var(--bg-white); }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.intro-img {
    position: relative;
}
.intro-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}
.intro-badges {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--bg-white);
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--maroon);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.intro-badges p { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--maroon); }

/* ─── SERVICES CARDS ─── */
.services-section { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.3rem;
}
.service-card-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}
.btn-ver-mas {
    display: inline-block;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    width: fit-content;
    transition: all var(--tr);
}
.btn-ver-mas:hover { background: var(--maroon); border-color: var(--maroon); }

/* Specials 2-col */
.specials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ─── FEATURES STRIP ─── */
.features-section { background: var(--bg-dark); padding: 5rem 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.feature-item { padding: 1.5rem; }
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}
.feature-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.feature-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ─── ANFITRIONAS ─── */
.anfitrionas-section { background: var(--bg-white); }
.anfitrionas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.anfitriona-card {
    background: var(--bg);
    border-left: 3px solid var(--gold);
    padding: 2rem;
}
.anfitriona-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 0.25rem;
}
.anfitriona-role {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.anfitriona-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── RESERVAS ─── */
.reservas-section { background: var(--bg); }
.reservas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.reserva-info-list { margin-top: 2rem; }
.reserva-info-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.reserva-info-list li::before {
    content: '✓';
    color: var(--maroon);
    font-weight: 700;
    flex-shrink: 0;
}
.privacy-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--maroon);
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.privacy-box strong { color: var(--maroon); display: block; margin-bottom: 0.5rem; font-size: 0.95rem; }

.reserva-cta-box {
    background: var(--bg-dark);
    padding: 3rem 2.5rem;
    text-align: center;
}
.reserva-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}
.reserva-cta-box p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.btn-wp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid var(--maroon);
    color: var(--maroon);
    padding: 1rem 2rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background var(--tr), color var(--tr);
}
.btn-wp:hover { background: var(--maroon); color: var(--bg-dark); }
.btn-wp svg { flex-shrink: 0; }
.reserva-cta-box .precio-texto {
    color: var(--gold-light);
    font-size: 0.82rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    max-width: 260px;
}
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--tr);
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* ─── FLOATING WP BUTTON ─── */
.float-wp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform var(--tr), box-shadow var(--tr);
}
.float-wp:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}
.float-wp svg { width: 30px; height: 30px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PLAN CARD (FULL WIDTH) ─── */
.plan-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
    margin-bottom: 3rem;
    transition: transform var(--tr), box-shadow var(--tr);
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.plan-card.reverse {
    grid-template-columns: 1fr 1fr;
}
.plan-card.reverse .plan-card-img {
    order: 2;
}
.plan-card-img { overflow: hidden; }
.plan-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plan-card-body {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.plan-badge {
    display: inline-block;
    background: var(--maroon);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    width: fit-content;
}
.plan-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.plan-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.plan-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.plan-features li {
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.plan-features li:last-child { border-bottom: none; }
.pf-icon { font-size: 1.1rem; flex-shrink: 0; }
.btn-plan {
    display: inline-block;
    background: var(--maroon);
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background var(--tr);
    width: fit-content;
}
.btn-plan:hover { background: var(--maroon-dark); color: #fff; }

/* ─── STEPS LIST ─── */
.steps-list { margin-top: 1.5rem; }
.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--maroon);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}
.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 70px; }
    .services-grid { grid-template-columns: 1fr; }
    .specials-grid { grid-template-columns: 1fr; }
    .intro-grid { grid-template-columns: 1fr; }
    .plan-card { grid-template-columns: 1fr; }
    .plan-card-img { height: 280px; }
    .anfitrionas-grid { grid-template-columns: 1fr; }
    .reservas-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--tr);
        border-top: 1px solid var(--border);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .section { padding: 4rem 0; }

    .intro-badges { left: 0; }
}