/* Cinematic Minimalist Styles */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #888;
    --font-heading: 'Oswald', sans-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);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure it stays on top */
    padding: 30px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through to hero if needed */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth cinematic transition */
    background: transparent;
}

.site-header.scrolled {
    padding: 15px 30px;
    /* Compress header */
    background: rgba(0, 0, 0, 0.8);
    /* Darker background when scrolled */
    /* Subtle darkening */
    backdrop-filter: blur(10px);
    /* Glass effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle edge */
}

.logo-container {
    text-align: center;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    mix-blend-mode: normal;
}

.brand-logo {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Larger size for impact */
    font-weight: 700;
    letter-spacing: 0.05em;
    /* Tighter spacing for condensed look */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Make it pop */
}

.sub-brand {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 600;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Scrolled state */
.site-header.scrolled .brand-logo {
    font-size: 2rem;
    /* Shrink on scroll */
}

.site-header.scrolled .sub-brand {
    display: none;
    /* Hide sub-brand on scroll for cleaner look, optional */
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

/* Cinematic Letterbox Container */
.media-container {
    width: 100%;
    max-width: 2560px;
    /* Forces the 21:9 ratio -> creates black bars on taller screens */
    aspect-ratio: 21/9;
    position: relative;
    z-index: 1;
    /* Optional: shadow to separate from black bars if needed */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Overlay */
.text-overlay {
    position: absolute;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 4vw;
    /* Responsive font size */
    font-weight: 400;
    /* Cleaner look */
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
    /* Optional: Subtle shadow or blend mode */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .brand-logo {
        font-size: 1.5rem;
    }
}

/* Contact Section - Balanced Minimal */
.contact-section {
    position: relative;
    width: 100%;
    background-color: #050505;
    color: #fff;
    padding: 80px 20px 60px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Discrete Contact Layout */
.contact-discrete {
    font-family: var(--font-body);
    text-align: center;
    color: #888;
    /* Discrete color */
    font-size: 0.9rem;
    line-height: 1.6;
}

.discrete-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.discrete-title {
    margin-bottom: 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.discrete-info p {
    margin: 5px 0;
}

.discrete-info a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.discrete-info a:hover {
    color: #fff;
}

.dot {
    color: #222;
    font-size: 0.5rem;
}

.legal-footer {
    margin-top: 60px;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .contact-item {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 100px 20px 80px;
    }

    /* Mobile Video Fix */
    .media-container {
        aspect-ratio: unset;
        /* Remove fixed aspect ratio on mobile */
        height: 100vh;
        /* Fill the screen */
        max-height: 100vh;
    }

    .hero-section {
        height: 100vh;
        /* Ensure hero section is full height */
    }

    .hero-image {
        object-fit: cover;
        /* Ensure video covers the area without black bars */
    }
}

/* Footer - Hide/Minimal */
.site-footer {
    display: none;
}

```