/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FBF5F2;
    --blush-mid: #EEDDD5;
    --cream: #FDF8F5;
    --white: #FFFFFF;
    --text-dark: #1A1214;
    --text-mid: #4A3538;
    --text-light: #8A7074;
    --text-muted: #B09A9C;
    --line: rgba(123, 45, 59, 0.12);
    --line-strong: rgba(123, 45, 59, 0.25);
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease-out);
    padding: 20px 0;
}

.nav.scrolled {
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.4s var(--ease-smooth);
    letter-spacing: -0.01em;
}

.nav.scrolled .nav-logo {
    color: var(--text-dark);
}

.nav-logo-icon {
    color: currentColor;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text-mid);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--white);
}

.nav.scrolled .nav-links a:hover {
    color: var(--burgundy);
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--burgundy) !important;
    border-color: var(--white) !important;
}

.nav.scrolled .nav-cta {
    border-color: var(--burgundy) !important;
    color: var(--burgundy) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--burgundy);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    transition: color 0.3s;
}

.nav.scrolled .nav-toggle {
    color: var(--text-dark);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 18, 20, 0.45) 0%,
        rgba(26, 18, 20, 0.35) 40%,
        rgba(26, 18, 20, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
    margin-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    border: 1.5px solid transparent;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 59, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Stat Cards ── */
.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    padding: 0 24px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-card:first-child {
    border-radius: 16px 0 0 16px;
}

.stat-card:last-child {
    border-radius: 0 16px 16px 0;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ── Section Base ── */
.section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 520px;
}

/* ── Alojamiento ── */
.alojamiento {
    background: var(--white);
}

.alojamiento .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.room-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
    background: var(--cream);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.1);
    border-color: var(--line-strong);
}

.room-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-card-body {
    padding: 28px;
}

.room-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.room-card-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-mid);
}

.room-features li svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ── Experiencia ── */
.experiencia {
    background: var(--cream);
}

.exp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exp-images {
    position: relative;
    height: 600px;
}

.exp-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(123, 45, 59, 0.12);
}

.exp-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.1);
}

.exp-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exp-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 12px;
}

.exp-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.exp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.exp-feature strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.exp-feature span {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ── Ubicación ── */
.ubicacion {
    background: var(--white);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 20px;
}

.location-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-mid);
}

.location-detail svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.08);
}

/* ── Contacto ── */
.contacto {
    background: var(--blush-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    transition: all 0.3s var(--ease-smooth);
}

.contact-method:hover {
    border-color: var(--burgundy);
    box-shadow: 0 4px 20px rgba(123, 45, 59, 0.08);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-method-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ── Form ── */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--cream);
    color: var(--text-dark);
    transition: all 0.3s var(--ease-smooth);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    background: var(--blush);
    color: var(--burgundy);
    font-size: 0.9375rem;
    font-weight: 400;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

/* ── Footer ── */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Mobile Menu ── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu-overlay a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s;
}

.mobile-menu-overlay a:hover {
    color: var(--burgundy);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 2;
    }
    
    .exp-layout {
        gap: 48px;
    }
    
    .exp-images {
        height: 450px;
    }
    
    .contact-layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 48px;
        flex-direction: column;
        gap: 2px;
        max-width: 400px;
    }
    
    .stat-card {
        border-radius: 0 !important;
    }
    
    .stat-card:first-child {
        border-radius: 12px 12px 0 0 !important;
    }
    
    .stat-card:last-child {
        border-radius: 0 0 12px 12px !important;
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    .hero {
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 1;
    }
    
    .exp-layout {
        grid-template-columns: 1fr;
    }
    
    .exp-images {
        height: 400px;
        order: -1;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .exp-images {
        height: 300px;
    }
}
