*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --negro: #2C1A0E;
    --negro-soft: #4A2C1A;
    --terracota: #7A4A28;
    --dorado: #C9A84C;
    --dorado-claro: #D4B86A;
    --crema: #F5E8D0;
    --crema-soft: #EDD9B8;
    --blanco: #FFFFFF;
    --bg-image: url('./inicio.jpg');
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background:
        linear-gradient(rgba(44, 26, 14, 0.62), rgba(44, 26, 14, 0.62)),
        var(--bg-image) center / cover no-repeat fixed;
    color: var(--blanco);
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

/* Noise texture */
.noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Líneas de fondo */
.deco-lines { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.line { position: absolute; background: rgba(201,168,76,0.06); }
.line-h { width: 100%; height: 1px; left: 0; }
.line-v { height: 100%; width: 1px; top: 0; }
.line-h1 { top: 30%; }
.line-h2 { top: 70%; }
.line-v1 { left: 15%; }
.line-v2 { right: 15%; }

/* Decoraciones inca */
.deco-inca {
    position: fixed;
    width: 100px;
    height: 100px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.deco-tl { top: 32px; left: 32px; }
.deco-br { bottom: 32px; right: 32px; transform: rotate(180deg); }

/* MAIN */
.main {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 20px;
    width: 100%;
    max-width: 780px;
    text-align: center;
}

/* TOP BAR */
.top-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 480px;
}
.top-bar-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4));
}
.top-bar:last-child .top-bar-line {
    background: linear-gradient(270deg, transparent, rgba(201,168,76,0.4));
}
.top-bar-text {
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--dorado);
    white-space: nowrap;
}

/* BRAND */
.brand { margin-bottom: 24px; }
.brand-eyebrow {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    margin-bottom: 12px;
}
.brand-logo {
    display: block;
    width: min(1160px, 80vw);
    height: auto;
    margin: 0 auto;
    opacity: 0.94;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}
.brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 18vw, 180px);
    line-height: 0.88;
    letter-spacing: 10px;
    color: var(--blanco);
    display: block;
}
.brand-title-suite {
    color: var(--dorado);
    display: block;
}

/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 24px;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(201,168,76,0.25);
}

/* TAGLINE */
.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    margin-bottom: 48px;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}
.countdown-item { text-align: center; }
.countdown-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    letter-spacing: 4px;
    color: var(--dorado);
    line-height: 1;
    min-width: 80px;
    display: block;
}
.countdown-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 6px;
}
.countdown-sep {
    font-size: 32px;
    color: rgba(201,168,76,0.3);
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
}

/* HOTEL ADDRESS */
.hotel-address {
    width: 100%;
    max-width: 640px;
    margin-bottom: 36px;
}
.hotel-address-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hotel-address-link {
    display: inline-block;
    text-decoration: none;
}
.hotel-address-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid rgba(201,168,76,0.35);
    background: linear-gradient(90deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
    backdrop-filter: blur(3px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.hotel-address-link:hover .hotel-address-card {
    transform: translateY(-2px);
    border-color: rgba(201,168,76,0.7);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.hotel-address-icon {
    color: var(--dorado);
    flex-shrink: 0;
}
.hotel-address-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: 1px;
    color: var(--blanco);
    line-height: 1.1;
}
.hotel-address-note {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.75);
}

.contact-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

/* CONTACT */
.contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item:hover { color: var(--dorado); }
.contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.contact-sep { color: rgba(201,168,76,0.2); font-size: 20px; }

/* BOTTOM BAR */
.bottom-bar {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.18);
    text-transform: uppercase;
}
.dev-credit {
    display: block;
    margin-top: 8px;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    text-transform: none;
}
.dev-credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    transition: color 0.3s, border-color 0.3s;
}
.dev-credit a:hover {
    color: var(--dorado);
    border-color: var(--dorado);
}

/* ANIMACIONES */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    html, body { overflow: auto; }
    .deco-inca { width: 60px; height: 60px; }
    .deco-tl { top: 16px; left: 16px; }
    .deco-br { bottom: 16px; right: 16px; }
    .countdown { gap: 12px; }
    .countdown-num { min-width: 56px; }
    .countdown-sep { display: none; }
    .notify-form { flex-direction: column; }
    .notify-btn { padding: 14px; width: 100%; }
    .line-v1, .line-v2 { display: none; }
    .contact-item {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    .contact-item svg {
        width: 17px;
        height: 17px;
    }
    .hotel-address-card {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
    }
    .hotel-address-text {
        font-size: clamp(18px, 6vw, 22px);
    }
}