/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
html {
    font-size: 13px;
}

body {
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

em {
    font-style: italic;
}

/* ─── Navigation ─── */
nav {
    padding: 18px 28px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 0;
}

.nav-home {
    margin-right: 52px;
    white-space: nowrap;
}

.nav-films {
    margin-right: 56px;
    white-space: nowrap;
}

.nav-films a {
    color: #000;
    text-decoration: none;
}

.nav-films a:hover {
    text-decoration: underline;
}

.nav-link {
    margin-right: 56px;
    white-space: nowrap;
}

.nav-link:last-child {
    margin-right: 0;
}

/* ─── Main content ─── */
main {
    padding: 0 28px 80px;
}

/* ─── Film page ─── */
.film-page {
    margin-top: 50px;
}

.hero-media {
    width: 680px;
    max-width: 100%;
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

/* Film info block */
.film-info {
    margin-top: 16px;
    max-width: 460px;
}

.film-info p {
    margin-bottom: 13px;
}

.film-info p:last-child {
    margin-bottom: 0;
}

/* Section list */
.film-sections {
    margin-top: 26px;
    max-width: 460px;
}

.section {
    line-height: 1.45;
}

/* Clickable section label */
.section-label {
    display: block;
    cursor: pointer;
    user-select: none;
    color: #000;
    text-decoration: none;
    padding: 0;
    background: none;
    border: none;
    font: inherit;
    text-align: left;
}

.section-label:hover {
    text-decoration: underline;
}

/* Collapsible content — hidden by default on desktop */
.section-content {
    display: none;
    padding-left: 16px;
    margin-bottom: 8px;
}

.section-content.open {
    display: block;
}

/* Images inside sections */
.section-img-wrap {
    margin-bottom: 8px;
    margin-left: -16px;
}

.section-img-wrap:last-of-type {
    margin-bottom: 0;
}

.section-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Press links */
.press-list a {
    color: #000;
}

/* Additional Material */
.additional-material .material-title {
    margin-bottom: 4px;
}

.additional-material p + p {
    margin-top: 4px;
}

.additional-material .material-specs {
    margin-top: 4px;
}

/* Press Kit — plain link */
.press-kit-section {
    line-height: 1.45;
}

.press-kit-link {
    display: block;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.press-kit-link:hover {
    text-decoration: underline;
}

/* ─── Archive page ─── */
.archive-page {
    margin-top: 50px;
    max-width: 460px;
}

.archive-intro {
    margin-bottom: 28px;
}

.archive-item {
    margin-bottom: 20px;
}

.archive-item p + p {
    margin-top: 2px;
}

.archive-links a {
    color: #000;
}

.archive-live {
    margin-top: 8px;
}

.archive-live-heading {
    margin-bottom: 0;
}

/* ─── Information page ─── */
.info-page {
    margin-top: 50px;
}

.bio-photo {
    max-width: 100%;
    margin-bottom: 20px;
}

.bio-photo img {
    height: 400px;
    width: auto;
    max-width: 100%;
    display: block;
}

.bio-text {
    max-width: 460px;
    margin-bottom: 13px;
    line-height: 1.5;
}

.bio-text p {
    margin-bottom: 13px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-contact {
    margin-top: 13px;
    max-width: 460px;
}

.bio-links {
    margin-top: 13px;
}

.bio-links a {
    color: #000;
    text-decoration: none;
}

.bio-links a:hover {
    text-decoration: underline;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    nav {
        padding: 14px 16px;
    }

    .nav-home {
        margin-right: 24px;
    }

    .nav-films {
        margin-right: 24px;
        white-space: normal;
    }

    .nav-link {
        margin-right: 24px;
    }

    main {
        padding: 0 16px 60px;
    }

    .hero-media {
        width: 100%;
    }

    .film-info {
        max-width: 100%;
    }

    .film-sections {
        max-width: 100%;
    }

    .archive-page {
        max-width: 100%;
    }

    .bio-photo img {
        height: auto;
        width: 100%;
    }

    .bio-text {
        max-width: 100%;
    }

    .bio-contact {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    nav {
        font-size: 12px;
    }
}
