* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* SMOOTH ENTRANCE ADDITION */
    opacity: 0;
    animation: fadeInSite 2s ease-in forwards;
}

@keyframes fadeInSite {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    background: rgba(255, 255, 255, 0.98);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.navbar.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.nav-spacer { width: 120px; }
.nav-logo { font-size: 1.6rem; letter-spacing: 18px; text-decoration: none; color: #1a1a1a; text-transform: uppercase; }
.nav-link { font-size: 0.65rem; letter-spacing: 4px; text-decoration: none; color: #1a1a1a; text-transform: uppercase; }
.nav-book { border: 1px solid #1a1a1a; padding: 12px 25px; transition: 0.4s ease; }
.nav-book:hover { background: #1a1a1a; color: #fff; }

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-center-box {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.hero-tagline {
    color: #fff;
    letter-spacing: 0.8em;
    text-transform: uppercase;
    font-size: 1rem;
    display: inline-block;
}

/* SECTIONS */
.philosophy-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #fff; padding: 80px 15%; }
.philosophy-text { font-size: 1.4rem; line-height: 2; color: #1a1a1a; text-align: center; max-width: 900px; }

.services-section { min-height: 100vh; padding: 160px 80px; display: flex; align-items: center; }
.services-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 300; font-size: 2rem; letter-spacing: 25px; text-align: center; text-transform: uppercase; margin-bottom: 120px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 100px; }
.service-cat h3 { font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase; border-bottom: 1px solid #1a1a1a; padding-bottom: 15px; margin-bottom: 50px; font-weight: 600; }
.service-item p { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 40px; color: #333; }
.service-item span { font-size: 0.7rem; color: #999; letter-spacing: 1px; }

.experience-section { height: 60vh; display: flex; align-items: center; justify-content: center; background: #fafafa; text-align: center; padding: 0 40px; }
.experience-quote { font-size: 2rem; font-style: italic; margin-bottom: 40px; opacity: 0.85; }
.experience-link { font-size: 0.7rem; letter-spacing: 5px; text-decoration: none; color: #1a1a1a; border-bottom: 1px solid #1a1a1a; padding-bottom: 5px; }

/* FOOTER */
.lv-footer { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 80px; border-top: 1px solid #f2f2f2; background: #ffffff; }
.footer-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-logo { font-size: 1.4rem; letter-spacing: 20px; text-transform: uppercase; text-align: center; margin-bottom: 100px; font-weight: 300; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 100px; }
.column-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 4px; font-weight: 600; color: #999; margin-bottom: 25px; display: block; }
.footer-column p, .footer-column a { font-size: 0.85rem; line-height: 2.2; text-decoration: none; color: #1a1a1a; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px solid #f2f2f2; }
.copyright, .top-link { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.4; text-decoration: none; color: #1a1a1a; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* MOBILE BLOCKER */
#mobile-blocker { display: none; }

@media (max-width: 1024px) {
    #mobile-blocker {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        z-index: 10000; 
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px;
    }
    body > *:not(#mobile-blocker) { display: none !important; }
    .blocker-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 15px; margin-bottom: 25px; text-transform: uppercase; }
    .blocker-message { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; line-height: 1.6; color: #1a1a1a; max-width: 320px; }
}