:root {
    --color-charcoal: #1a1a1a;
    --color-plaster: #F7F6F4; /* Light architectural off-white */
    --font-elegant: 'Baskervville', serif;
    --font-meta: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-meta);
    background-color: var(--color-plaster);
    color: var(--color-charcoal);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    /* Smooth fade in for the whole page */
    opacity: 0;
    animation: pageFadeIn 1.5s ease-in-out forwards;
}

@keyframes pageFadeIn {
    to { opacity: 1; }
}

/* Center Content */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-elegant);
    font-size: clamp(4rem, 18vw, 14rem);
    font-weight: 400;
    font-style: italic; /* Italics often provide that high-end studio feel */
    letter-spacing: -0.03em;
    color: var(--color-charcoal);
    
    /* Cinematic reveal animation */
    animation: revealTitle 2s cubic-bezier(0.2, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(15px);
}

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

/* Corner Labels (McLean Quinlan Style) */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 3.5rem; /* Generous luxury spacing */
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.5;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .footer {
        padding: 2rem;
        letter-spacing: 0.2em;
    }
}