@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500&display=swap');

:root {
    --gold: #BD221F;
    --gold-light: #D63B38;
    --gold-pale: #F2AFAE;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #242424;
    --cream: #F8F2E6;
    --text-light: #D4C5A9;
    --text-muted: #8A7A6A;
    --white: #FFFFFF;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background: var(--dark);
    color: var(--text-light);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(189,34,31,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

    .cursor-follower.expanded {
        width: 56px;
        height: 56px;
        border-color: var(--gold);
    }

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
}

    nav.scrolled {
        background: rgba(10,10,10,0.95);
        backdrop-filter: blur(20px);
        padding: 16px 60px;
        border-bottom: 1px solid rgba(189,34,31,0.2);
    }

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.nav-logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    line-height: 1;
}

.nav-logo-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
}

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

    .nav-links a {
        font-family: 'Jost', sans-serif;
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
        position: relative;
    }

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

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

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

.nav-cta {
    font-family: 'Cinzel', serif !important;
    font-size: 0.65rem !important;
    color: var(--gold) !important;
    border: 1px solid rgba(189,34,31,0.5);
    padding: 10px 24px;
    letter-spacing: 0.2em !important;
    transition: all 0.3s ease !important;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s;
}

    .mobile-menu.open {
        display: flex;
        opacity: 1;
    }

    .mobile-menu a {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        letter-spacing: 0.2em;
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s;
    }

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

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(189,34,31,0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(189,34,31,0.04) 0%, transparent 50%), linear-gradient(135deg, var(--dark) 0%, #0D0808 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(189,34,31,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(189,34,31,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-ornament {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border: 1px solid rgba(189,34,31,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-ornament::before {
        content: '';
        width: 340px;
        height: 340px;
        border: 1px solid rgba(189,34,31,0.08);
        border-radius: 50%;
        position: absolute;
    }

    .hero-ornament::after {
        content: '';
        width: 240px;
        height: 240px;
        border: 1px solid rgba(189,34,31,0.15);
        border-radius: 50%;
        position: absolute;
    }

.hero-ornament-inner {
    width: 140px;
    height: 140px;
    border: 1px solid rgba(189,34,31,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(189,34,31,0.08) 0%, transparent 70%);
}

    .hero-ornament-inner svg {
        width: 60px;
        height: 60px;
        opacity: 0.6;
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

    .hero-label::before {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

    .hero-title em {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-weight: 300;
        color: var(--gold-light);
        font-size: 1.1em;
    }

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.85s forwards;
}

.btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 16px 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(189,34,31,0.35);
    }

    .btn-primary span {
        position: relative;
        z-index: 1;
    }

.btn-secondary {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

    .btn-secondary svg {
        transition: transform 0.3s;
    }

    .btn-secondary:hover {
        color: var(--gold);
    }

        .btn-secondary:hover svg {
            transform: translateX(5px);
        }

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 50px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    background: rgba(189,34,31,0.2);
    align-self: stretch;
}

/* ===== DIVIDER ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 0 0;
}

    .section-divider::before, .section-divider::after {
        content: '';
        flex: 1;
        max-width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(189,34,31,0.4));
    }

    .section-divider::after {
        background: linear-gradient(90deg, rgba(189,34,31,0.4), transparent);
    }

.divider-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(189,34,31,0.5);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
}

    .divider-icon::after {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        transform: rotate(-45deg);
    }

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 20px;
}

    .section-title em {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-weight: 300;
        color: var(--gold-light);
    }

.section-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}

.section-desc {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
#about {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--dark-3);
    border: 1px solid rgba(189,34,31,0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-inner {
    width: 80%;
    height: 80%;
    border: 1px solid rgba(189,34,31,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

    .about-img-inner svg {
        opacity: 0.2;
    }

    .about-img-inner p {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 0.85rem;
        color: var(--text-muted);
        letter-spacing: 0.1em;
    }

.about-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.5;
}

    .about-corner.tl {
        top: -12px;
        left: -12px;
        border-width: 1px 0 0 1px;
    }

    .about-corner.tr {
        top: -12px;
        right: -12px;
        border-width: 1px 1px 0 0;
    }

    .about-corner.bl {
        bottom: -12px;
        left: -12px;
        border-width: 0 0 1px 1px;
    }

    .about-corner.br {
        bottom: -12px;
        right: -12px;
        border-width: 0 1px 1px 0;
    }

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-badge-num {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
    font-weight: 600;
}

.about-badge-text {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.about-content .section-header {
    text-align: left;
}

.about-content .section-line {
    margin-left: 0;
}

.about-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid rgba(189,34,31,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.about-feature-text h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SERVICES ===== */
#services {
    background: var(--dark);
}

.services-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 60px;
    border: 1px solid rgba(189,34,31,0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.tab-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-right: 1px solid rgba(189,34,31,0.2);
    padding: 14px 28px;
    cursor: none;
    transition: all 0.3s;
}

    .tab-btn:last-child {
        border-right: none;
    }

    .tab-btn.active, .tab-btn:hover {
        background: rgba(189,34,31,0.1);
        color: var(--gold);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-3);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    cursor: none;
}

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(189,34,31,0.06) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .service-card:hover {
        border-color: rgba(189,34,31,0.2);
        transform: translateY(-4px);
    }

        .service-card:hover::before {
            opacity: 1;
        }

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(189,34,31,0.08);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
    transition: color 0.4s;
}

.service-card:hover .service-num {
    color: rgba(189,34,31,0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(189,34,31,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.service-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-treatments {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .service-treatments li {
        font-size: 0.75rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .service-treatments li::before {
            content: '';
            width: 16px;
            height: 1px;
            background: var(--gold);
            opacity: 0.5;
        }

/* ===== EXPERIENCE ===== */
#experience {
    background: var(--dark-2);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.exp-visual {
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(189,34,31,0.1) 0%, transparent 70%), var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

    .exp-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(189,34,31,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(189,34,31,0.05) 1px, transparent 1px);
        background-size: 40px 40px;
    }

.exp-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.exp-num-item {
    text-align: center;
}

.exp-num-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}

.exp-num-suffix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
}

.exp-num-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 10px;
}

.exp-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .exp-content .section-header {
        text-align: left;
        margin-bottom: 40px;
    }

    .exp-content .section-line {
        margin-left: 0;
    }

.exp-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.exp-step-num {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    min-width: 28px;
    margin-top: 2px;
}

.exp-step-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 6px;
}

.exp-step-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--dark);
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark-3);
    border: 1px solid rgba(189,34,31,0.1);
    padding: 40px;
    position: relative;
    transition: border-color 0.3s;
}

    .testimonial-card:hover {
        border-color: rgba(189,34,31,0.3);
    }

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(189,34,31,0.15);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: var(--gold);
    font-size: 0.8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--cream);
}

.author-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== GALLERY ===== */
#gallery {
    background: var(--dark-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--dark-4);
    overflow: hidden;
    position: relative;
    cursor: none;
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

.gallery-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-inner {
    transform: scale(1.03);
}

.gallery-inner svg {
    opacity: 0.15;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-inner svg {
    opacity: 0.3;
}

.gallery-inner p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-inner p {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 8px 20px;
}

/* ===== BOOKING ===== */
#booking {
    background: var(--dark);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-3);
    border: 1px solid rgba(189,34,31,0.2);
    padding: 60px;
    position: relative;
}

    .booking-container::before {
        content: '';
        position: absolute;
        inset: 8px;
        border: 1px solid rgba(189,34,31,0.06);
        pointer-events: none;
    }

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

    .booking-grid.full {
        grid-column: span 2;
    }

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

    .form-group.full {
        grid-column: span 2;
    }

.form-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
    background: var(--dark-4);
    border: 1px solid rgba(189,34,31,0.15);
    color: var(--text-light);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    width: 100%;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: rgba(189,34,31,0.5);
    }

    .form-input::placeholder {
        color: var(--text-muted);
        opacity: 0.5;
    }

    .form-select option {
        background: var(--dark-4);
    }

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 16px;
}

    .form-submit .btn-primary {
        border: none;
        cursor: none;
        font-size: 0.7rem;
        letter-spacing: 0.3em;
        padding: 18px 60px;
        width: 100%;
    }

/* ===== CONTACT ===== */
#contact {
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid rgba(189,34,31,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contact-item-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-item-value {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(189,34,31,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

    .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(189,34,31,0.08);
    }

.contact-map-placeholder {
    background: var(--dark-3);
    border: 1px solid rgba(189,34,31,0.15);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

    .contact-map-placeholder svg {
        opacity: 0.3;
    }

    .contact-map-placeholder p {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(189,34,31,0.15);
    padding: 80px 60px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul a {
        font-size: 0.85rem;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-col ul a:hover {
            color: var(--gold-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(189,34,31,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-gold {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 900;
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(37,211,102,0.4);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    nav {
        padding: 20px 30px;
    }

        nav.scrolled {
            padding: 14px 30px;
        }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 80px 30px;
    }

    #hero {
        padding: 120px 30px 80px;
    }

    .hero-ornament {
        display: none;
    }

    .hero-stats {
        right: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #experience {
        grid-template-columns: 1fr;
    }

    .testimonials-track {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .booking-container {
        padding: 40px 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    body {
        cursor: auto;
    }

    .cursor, .cursor-follower {
        display: none;
    }

    .services-tabs {
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }

    #hero {
        flex-direction: column;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

        .booking-grid.full, .form-group.full, .form-submit {
            grid-column: span 1;
        }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .services-tabs {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        padding: 12px 12px;
        font-size: 0.6rem;
    }

    .exp-numbers {
        grid-template-columns: 1fr 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
