/* RESET & VARIABLES */
:root {
    --bg-color: #121212;
    --text-color: #F0EAD6; /* Eggshell Cream */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden; 
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    /* Pushes content slightly down from very top edge, but keeps it tight */
    padding: 4rem 3rem 1rem 3rem; 
    height: 100%;
    display: flex;
    flex-direction: column;
    /* This ensures footer stays at bottom, but main content floats to top */
    justify-content: space-between; 
}

/* MAIN SECTION */
main {
    display: flex;
    flex-direction: column;
    /* Aligns everything to the left */
    align-items: flex-start; 
}

/* BRAND NAME - The "Label" Look */
.brand-wrapper {
    margin-bottom: 0.5rem; /* Very tight spacing to the headline */
}

.brand-name {
    font-family: var(--font-body);
    font-weight: 500; /* Bold */
    text-transform: uppercase;
    font-size: 1.3rem;
    color: var(--text-color);
    /* No underline, just pure text */
    opacity: 0.6; /* Slight fade makes the headline pop more */
}

/* HERO HEADLINE */
.hero-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    /* Massive size */
    font-size: 15vw; 
    line-height: 0.85; /* Tighter line height */
    letter-spacing: -0.04em;
    margin-top: 1rem;
    margin-left: -0.5vw; /* Visual optical alignment to the left */
    margin-bottom: 2rem;
    mix-blend-mode: exclusion;
    cursor: default;
}

/* DESCRIPTION & SERVICES BLOCK */
.content-block {
    /* We push this to the right using margin-left */
    align-self: flex-end; 
    max-width: 500px;
    text-align: left;
    margin-right: 5vw; /* Keeps it from hitting the edge */
}

.description {
    font-size: 1.3rem;
    line-height: 1.4;
    color: rgba(240, 234, 214, 0.9);
    margin-bottom: 1.5rem;
}

/* SERVICES */
.services-line {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.services-line span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.services-line span:hover {
    transform: translateY(-3px);
    color: #fff;
    cursor: pointer;
}

/* FOOTER */
footer {
    font-size: 0.75rem;
    color: #444;
    text-align: left;
}

/* CUSTOM CURSOR STYLING */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }

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

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

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    body {
        overflow: auto;
        height: auto;
        cursor: auto;
    }
    .container {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: 90vh;
    }
    .hero-text {
        font-size: 19vw;
        margin-bottom: 3rem;
    }
    .content-block {
        align-self: flex-start; /* Reset to left on mobile */
        margin-right: 0;
        max-width: 100%;
    }
    .cursor {
        display: none;
    }
}