:root {
    color-scheme: dark;
}

@import url('https://fonts.googleapis.com/css2?family=Neue+Haas+Grotesk+Display:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #e7e7e7;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f5f5f5;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.loading-screen.fade-out {
    animation: fadeOutLoading 1s ease-out forwards;
    pointer-events: none;
}

@keyframes fadeOutLoading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.loading-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0%);
    animation: saturateFilter 1.8s linear forwards;
}

@keyframes saturateFilter {
    0% {
        filter: saturate(0%);
    }

    100% {
        filter: saturate(100%);
    }
}

.loading-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.loading-logo {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    min-height: 64px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-navbar .nav-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.top-navbar .logo-slot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0b0b0f;
    font-weight: 700;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.top-navbar .logo-slot img {
    display: block;
    height: 40px;
    width: auto;
    filter: brightness(0);
}

.menu-button {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background: #e7e7e7;
    color: #2c2c2c;
    border: 2px solid #0b0b0f;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: #e7e7e7;
    border-color: #f5f5f5;
    opacity: 1;
}

.hero-section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    color: #ffffff;
    font-family: 'Gestura Headline Regular', serif;
    mix-blend-mode: screen;
}

.hero-text h1 {
    font-size: 7.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Gestura Headline Regular', serif;
}

.hero-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.placeholder-section {
    width: 100%;
    padding: 6rem 2rem;
    background: #e7e7e7;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 150vh;
}

.placeholder-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.placeholder-text {
    flex: 1;
    background: #1a1a20;
    padding: 2rem;
    border-radius: 1rem;
}

.placeholder-image {
    flex: 0 0 300px;
    height: 450px;
    object-fit: cover;
    border-radius: 1rem;
}

.placeholder-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Gestura Headline Regular', serif;
}

.placeholder-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d0d0d0;
}