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

body {
    font-family: 'Inter', sans-serif;
    background: #050505;
    color: white;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform:translateY(-50px);
    align-items: center;
    text-align: center;
    padding: 24px;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.85;
}

h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem,9vw,8rem);

    font-weight:500;

    letter-spacing:0.07em;
}

.subtitle {
    margin-top: 18px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    opacity: 0.9;
}

html {
    scroll-behavior: smooth;
}

.scroll-link {
    margin-top: 32px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}

.section {
    min-height: 100vh;
    padding: 120px 10vw;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 24px;
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 24px;
}

.section p {
    max-width: 650px;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.82;
}


.about {
    background: linear-gradient(180deg, #050505 0%, #0f1412 100%);
}

.films {
    background: linear-gradient(180deg, #0f1412 0%, #1c1917 100%);
}

.gallery {
    background: linear-gradient(180deg, #1c1917 0%, #20221e 100%);
}

.stories {
    background: linear-gradient(180deg, #20221e 0%, #26211b 100%);
}

.contact {
    background: linear-gradient(180deg, #26211b 0%, #050505 100%);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    padding: 28px 48px;
    transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.nav-shell {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: white;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 32px;
}

.site-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}

.site-nav a:hover {
    opacity: 1;
}

.site-header.scrolled {
    padding: 18px 48px;
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(14px);
}

.section {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {

    .hero-video{
        object-position: 60% center;
    }

    .site-header {
        padding: 18px 22px;
    }

    .site-header.scrolled {
        padding: 14px 22px;
    }

    .site-logo {
        font-size: 1.35rem;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    .hero-content {
        padding: 20px;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    h1 {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }

    .subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 100px 24px;
    }

    .section h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .section p {
        font-size: 1rem;
    }
}


.site-footer {
    padding: 60px 10vw;
    background: #050505;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.75;
}

.profile-wrapper{
    width:200px;
    height:200px;

    border-radius:50%;
    overflow:hidden;

    border:2px solid rgba(255,255,255,0.2);

    margin-bottom:32px;
}

.profile-image{
    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(2.7) translateY(17px) translateX(5px);
    transform-origin:center center;
}

.about p {
    max-width: 450px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-size: 1.08rem;
}
.about h2 {
    margin-bottom: 20px;
}