:root {
    --navy: #050B14;
    --navy-soft: #0A1220;
    --navy-panel: #0F1825;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --blue-dark: #1E40AF;
    --cream: #F8F6F0;
    --white: #FFFFFF;
    --gray: #B8B8B8;
    --gray-dark: #4A4A4A;
    --border: rgba(248, 246, 240, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: min(92%, 1400px);
    margin: 0 auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 12px 18px;
    background: #2563EB;
    color: white;
    z-index: 9999;
    text-decoration: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(5, 11, 20, 0.75);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--blue-light);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 15, 0.92) 0%,
            rgba(2, 6, 15, 0.82) 30%,
            rgba(2, 6, 15, 0.45) 55%,
            rgba(2, 6, 15, 0.75) 100%
        ),
        url("images/hero_shot.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.04),
            transparent 55%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    padding-left: 7vw;
    padding-right: 2rem;
    transform: translateY(-2%);
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #3B82F6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: clamp(4.5rem, 9vw, 8rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: #F8F6F0;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-statement {
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-statement span {
    color: #3B82F6;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #050B14;
    border-radius: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    background: transparent;
    border-radius: 0;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.03);
}


/* Section Styles */
section {
    padding: 8rem 0;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: var(--navy-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-copy p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skills-list span {
    padding: 0.75rem 1.4rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--cream);
    transition: all 0.3s ease;
}

.skills-list span:hover {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.15);
}

/* Work Section */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.work-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--navy-panel);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.work-item:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.4);
}

.work-featured {
    grid-column: span 2;
}

.work-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.work-featured .work-image {
    height: 500px;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    padding-left: 3px;
}

.work-content {
    padding: 2rem;
}

.work-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.work-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.cta-link {
    text-align: center;
    margin-top: 3rem;
}

.text-link {
    font-size: 1rem;
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--white);
}

/* Films Section */
.films {
    background: var(--navy-soft);
}

.films-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.film-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--navy-panel);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.film-item:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.4);
}

.film-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.film-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.film-item:hover .film-image img {
    transform: scale(1.05);
}

.film-content {
    padding: 2rem;
}

.film-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.film-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--cream);
}

.film-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.watch-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.film-item:hover .watch-btn {
    background: var(--blue-light);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Contact Section */
.contact {
    background: var(--navy-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 3rem 2rem;
    background: var(--navy-panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--cream);
    font-weight: 400;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gray);
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy-soft);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        align-items: flex-end;
        background-position: 65% 30%;
    }

    .hero-content {
        padding: 0 1.5rem 3rem;
        transform: translateY(0);
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-statement {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-grid,
    .films-grid {
        grid-template-columns: 1fr;
    }

    .work-featured {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .work-image {
        height: 280px;
    }

    .work-featured .work-image {
        height: 320px;
    }
}

/* Lazy Loading Fade */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
