*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color1: #D90416;
    --color2: #D91438;
    --color3: #023373;
    --color4: #042959;
    --color5: #0d0d0d;

    --card: #161512;
    --border: #252320;
    --text: #ede8df;
    --muted: #7a7265;
    --soft: #3a3630;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(0.6);
    transform: scale(1.05);
    animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 8, 7, 0.2) 0%,
            transparent 30%,
            transparent 55%,
            rgba(8, 8, 7, 0.85) 85%,
            var(--color5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 72px;
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color2);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s 0.3s ease forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    line-height: 0.95;
    color: var(--text);
    opacity: 0;
    animation: fadeUp 0.7s 0.5s ease forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--color1);
}

.hero-sub {
    margin-top: 20px;
    font-size: 15px;
    color: var(--color2);
    letter-spacing: 0.05em;
    max-width: 460px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s ease forwards;
}

.hero-meta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s ease forwards;
}

.hero-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--color1);
    line-height: 1;
}

.hero-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
}

.hero-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    color: var(--color2);
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.7s 1.2s ease forwards;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color2), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.4);
        opacity: 0.4;
    }
}

/* ─── GALLERY ─── */
.gallery-section {
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-label span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color2);
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 220px;
    gap: 4px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.7);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.9) saturate(0.85);
}

.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 7, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--color4);
    letter-spacing: 0.1em;
}

/* ─── MAIN CONTENT ─── */
.content-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

/* ─── LEFT COL ─── */
.info-block {
    margin-bottom: 56px;
}

.info-block h2 {
    font-size: 32px;
    font-weight: 300;
    color: var(--color4);
    margin-bottom: 20px;
}

.info-block p {
    font-size: 15px;
    color: var(--color5);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* amenidades grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

.amenity-item {
    background: var(--card);
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.2s;
}

.amenity-item:hover {
    background: #1c1a16;
}

.amenity-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.amenity-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.4;
}

.amenity-desc {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* horarios */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 1px solid var(--border);
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 16px 0;
    font-size: 14px;
}

.schedule-table td:first-child {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.schedule-table td:last-child {
    color: var(--text);
    text-align: right;
    font-weight: 400;
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.price-tag .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--color4);
}

.price-tag .unit {
    font-size: 11px;
    color: var(--muted);
}

.badge-popular {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--color2);
    color: var(--color4);
    padding: 2px 8px;
    margin-left: 8px;
}

/* políticas */
.policies-list {
    list-style: none;
}

.policies-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--color4);
    line-height: 1.6;
}

.policies-list li:last-child {
    border-bottom: none;
}

.policy-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── RIGHT COL: STICKY CARD ─── */
.reserve-card {
    position: sticky;
    top: 100px;
    background: var(--card);
    border: 1px solid var(--border);
}

.reserve-card-header {
    padding: 28px 28px 24px;
    border-bottom: 1px solid var(--border);
}

.reserve-card-header p {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color2);
    margin-bottom: 8px;
}

.reserve-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
}

.reserve-card-body {
    padding: 24px 28px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.price-row:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
}

.price-row-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.price-row-value {
    font-size: 22px;
    color: #ffffff;
}

.price-row-value small {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
}

.select-hours {
    margin: 20px 0;
}

.select-hours label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.hours-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.hour-btn {
    background: var(--color5);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    padding: 10px 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.hour-btn:hover {
    border-color: var(--color2);
    color: var(--text);
}

.hour-btn.active {
    background: var(--color2);
    border-color: var(--color2);
    color: var(--color4);
}

.total-block {
    background: var(--color5);
    border: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.total-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.total-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--color4);
}

.btn-reserve-main {
    width: 100%;
    background: var(--color2);
    color: var(--color5);
    border: none;
    padding: 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-reserve-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.btn-reserve-main:hover {
    background: var(--color4);
}

.btn-reserve-main:hover::after {
    transform: translateX(100%);
}

.btn-contact {
    width: 100%;
    margin-top: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-contact:hover {
    border-color: var(--muted);
    color: var(--text);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    background: #1a2e1a;
    border: 1px solid #2a4a2a;
    color: #5ecb5e;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1f3a1f;
}

.reserve-card-footer {
    padding: 16px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reserve-card-footer svg {
    color: var(--color2);
    flex-shrink: 0;
}

.reserve-card-footer p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── SIMILAR ROOMS ─── */
.similar-section {
    border-top: 1px solid var(--border);
    padding: 72px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 32px;
}

.similar-card {
    background: var(--card);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s;
}

.similar-card:hover {
    background: #1c1a16;
}

.similar-card:hover .sim-img img {
    transform: scale(1.05);
}

.sim-img {
    height: 180px;
    overflow: hidden;
}

.sim-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.7);
    transition: transform 0.5s ease;
}

.sim-body {
    padding: 20px 22px 24px;
}

.sim-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
}

.sim-body p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.sim-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--color4);
}

.sim-price span {
    font-family: 'DM Sans';
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.85);
}

.lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.lb-nav:hover {
    background: rgba(184, 150, 90, 0.2);
}

.lb-prev {
    left: 24px;
}

.lb-next {
    right: 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
    .content-layout {
        grid-template-columns: 1fr;
        padding: 0 24px 60px;
    }

    .reserve-card {
        position: static;
    }

    .gallery-section {
        padding: 60px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px 180px;
    }

    .gallery-item:first-child {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .similar-section {
        padding: 60px 24px;
    }

    .similar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 16px 20px;
    }

    .hero-content {
        padding: 0 24px 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-meta {
        gap: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }

    .gallery-item:first-child {
        grid-column: 1;
    }
}