@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000;
    --white: #FFF;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--black) var(--white);
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--black);
    cursor: none;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    transform: rotate(-90deg);
}

.preloader-circle-track,
.preloader-circle-progress {
    fill: none;
    stroke-width: 2;
}

.preloader-circle-track {
    stroke: #f0f0f0;
}

.preloader-circle-progress {
    stroke: var(--black);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.3s linear;
}

.preloader-logo {
    width: 150px;
    max-width: 50vw;
    filter: invert(1);
    margin-bottom: 20px;
}

.preloader-counter {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--black);
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: difference;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor-dot {
    width: 15px;
    height: 15px;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.cursor-arrow {
    font-size: 24px;
    color: var(--white);
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: background-color 0.4s ease-in-out;
}

.header.scrolled {
    background-color: var(--white);
}

.logo {
    display: block;
    width: 160px;
}
.logo img {
    width: 100%;
    height: auto;
    display: block; /* Початковий стан для інших сторінок: білий логотип */
    filter: invert(1);
    transition: filter 0.4s ease-in-out, transform 0.5s ease;
}

/* Правила тільки для головної сторінки */
.home .logo img {
    filter: invert(0); /* Початковий стан на головній: чорний логотип */
}

.home .header.scrolled a.logo img {
    filter: invert(1); /* Стан при скролі на головній: білий логотип */
}

.header.menu-open a.logo img {
    filter: invert(1); /* Стан при відкритому меню (для всіх сторінок): білий логотип */
}

.burger-menu-toggle {
    width: 40px;
    height: 40px;
    
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.burger-lines-container {
    width: 28px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.4s ease-in-out, background-color 0.8s ease;
}

/* Правила тільки для головної сторінки */
.home .burger-line {
    background-color: var(--white); /* Початковий стан на головній: білий */
}

.header.scrolled .burger-line {
    background-color: var(--black);
}

.header.menu-open .burger-line {
    background-color: var(--black) !important;
}

/* Початковий стан для інших сторінок: чорний */
body:not(.home) .burger-line {
    background-color: var(--black);
}

.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    visibility: hidden;
    pointer-events: none;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255);
    transform: scaleY(0);
    transform-origin: bottom center;
    --blur-amount: 0px;
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
}

.menu-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.menu-item {
    margin: 15px 0;
    overflow: hidden;
}

.menu-link {
    text-decoration: none;
    color: var(--black);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 7px;
    transform: translateY(100%);
}

.menu-link .underline-wrapper {
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.menu-link .underline {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transform: translateX(-101%);
}

.fighting-demons {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 30px;
}

.showcase-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 0px;
    overflow: hidden;
}

.showcase-section + .showcase-section {
    padding-top: 20px;
}

.showcase-content {
    display: grid;
    align-items: center;
    width: 100%;
    position: relative;
}

.showcase-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    text-align: left;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 2;
    padding: 0 30px;
    color: var(--white);
}


.showcase-text h1 {
    font-size: clamp(0.7rem, 3.7vw, 2.5rem);
    font-weight: 800;
    color: inherit;
    margin-bottom: 10px;
    line-height: 1.1;
}
#heropromovideo .showcase-text p {
    width: 32%;
}
.showcase-text p {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
    margin-bottom: 30px;
    width: 50%;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid currentColor;
    border-radius: 50px; /* Note: This was not changed as it's a button, not an image/video */
    color: inherit;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.showcase-text {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: var(--white);
    padding-left: 90px;
}

.hero-intro-text {
    text-align: center;
    padding: 0 20px 50px;
    max-width: 80ch;
    margin: 0 auto;
}

.hero-intro-text p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
}
.anim-fade-up {
    opacity: 0;
    transform: translateY(50px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    background-color: var(--white);
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.cta-button:hover {
    color: var(--black);
    border-color: var(--white);
}

.cta-button:hover::before {
    transform: translateX(0);
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.showcase-media {
    width: 100%;
    aspect-ratio: 16 / 7;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.showcase-media video,
.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#a-small-mistake .showcase-media {
    order: 1;
}
#a-small-mistake .showcase-text {
    order: 2;
}

.showcase-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.video-sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.video-sound-toggle:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.video-sound-toggle .icon-sound-on {
    display: none;
}
.video-sound-toggle .icon-sound-off {
    display: block;
}
.video-sound-toggle.sound-on .icon-sound-on {
    display: block;
}
.video-sound-toggle.sound-on .icon-sound-off {
    display: none;
}

.about-us-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    background-color: var(--white);
    overflow: hidden;
}

body:not(.home) .about-us-section {
    padding-top: 0;
    padding-bottom: 100px;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.about-us-text {
    font-size: clamp(1.05rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--black);
}

.about-us-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 40px 0 20px;
}

.about-us-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.about-us-text li {
    margin-bottom: 10px;
}

.about-us-text .call-to-action {
    font-weight: 600;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.team-member {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.2;
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-member-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.contact-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;    
    padding: 150px 50px;
}

.contact-section.full-height {
    height: 100dvh;
    padding: 100px 50px;
}

.contact-content .company-name {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.contact-section.full-height .contact-content .company-name {
    font-size: clamp(2rem, 5vw, 4rem);
}

.contact-content .address {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--black);
}

.contact-email .material-icons {
    font-size: 1.1em;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .showcase-text p  {
        width: 100%;
    }
    .cursor-dot, .cursor-outline {
        display: none;
    }
    .header {
        padding: 10px 10px;
    }
    .logo {
        width: 135px;
    }
    .header.menu-open {
        background-color: transparent;
    }
    #fighting-demons .showcase-text p {
        width: 100%;
    }
    .menu-link {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .fighting-demons {
        padding: 100px 25px;
        text-align: center;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text { order: 2; align-items: center; }
    .hero-video { order: 1; }

    .showcase-section {
        padding: 70px 5px 0px;
        text-align: center;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-text h1 {
        font-size: clamp(0.7rem, 3.5vw, 4rem);
    }
    .showcase-text p {
        font-size: 12px;
    }
    .showcase-section + .showcase-section {
        padding-top: 5px;
    }


    #dragon-img .showcase-media img {
        object-position: 30%; /* Зміщено на 20% від лівого краю */
    }

    #a-small-mistake .showcase-media,
    #a-small-mistake .showcase-text {
        order: initial;
    }
    .showcase-text {
        padding: 0 30px;
        width: 70%;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    .video-sound-toggle {
        bottom: 15px;
        right: 15px;
    }

    .about-us-section {
         padding: 30px 10px;
    }

    .about-us-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-us-grid {
        gap: 35px;
    }

    .about-us-text {
        text-align: center;
    }

    .about-us-text p:first-of-type {
        text-align: justify;
    }

    .about-us-text h2 {
        text-align: left;
    }

    .about-us-text ul {
        text-align: left;
    }

    .contact-section {
        padding: 100px 25px;
    }

    .contact-content .company-name {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .contact-content .address {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        text-align: center;
    }
}
.about-us-section-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    text-align: center;
    margin: auto;
    justify-content: center;
    height: 50vh;
}
@media (max-width: 1068px) {
    .showcase-media {
        order: 1;
        aspect-ratio: unset;
        height: 45vh;
    }

    #heropromovideo .showcase-text p {
        width: 65%;
    }

    .cta-button {
        padding: 7px 20px;
        font-size: 14px;
    }
    #dragon-img .showcase-media {
        height: 40vh;
    }    
    .about-us-section-main {
        width: 90%;
    }
    
}
@media (max-width: 568px) {
    .showcase-media {
        order: 1;
        aspect-ratio: unset;
        height: 65vh;
    }
    .cta-button {
        padding: 10px 20px;
    }
    #dragon-img .showcase-media {
        height: 65vh;
    }
    .about-us-section-main {
        width: 90%;
        height: 50vh;
}
}
.project-hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 50px 50px;
}

.project-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.project-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.project-hero-content .quote {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    max-width: 80ch;
    margin: 0 0 15px 0;
    font-style: italic;
    position: relative;
    padding: 0;
}

.project-hero-content .quote::before {
    content: '“';
    position: absolute;
    left: -5px;
    top: -0.8em;
    font-size: 5em;
    color: rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.project-hero-poster {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.project-hero-poster.parallax-img-wrapper {
    aspect-ratio: auto;
}

.project-hero-poster .parallax-inner-img {
    height: auto;
    transform: scale(1); /* Reset scale to avoid cropping */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 40px;
}

.meta-item {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
}

.meta-item.status {
    background-color: #e6f7ff;
    border-color: #91d5ff;
}

.credits-logline-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 0;
}

.film-credits, .log-line {
    background-color: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
}

.film-credits h2, .log-line h2 {
    font-size: clamp(0.7rem, 3.7vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.film-credits ul {
    list-style: none;
    padding: 0;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.8;
}

.log-line p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 50px;
    margin: 0 auto;
}

.parallax-img-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
}
.project-split-image-section .parallax-img-wrapper {
    aspect-ratio: 16 / 9;
}
.parallax-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.project-overlay-section {
    position: relative;
    display: grid;
    align-items: center;
    padding: 50px;
}

.project-overlay-media {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.project-overlay-media img {
    width: 100%;
    height: 100%;
    display: block;
}


.project-overlay-text {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--white);
    padding: 50px;
}

.project-overlay-text .film-credits,
.project-overlay-text .log-line {
    background-color: transparent;
    border: none;
    padding: 0;
    max-width: 500px;
}


.project-video-section {
    padding: 25px 50px;
    margin: 0 auto;
}

.project-video-section media-theme-sutro {
    overflow: hidden;
    display: block;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.video-headline {
    font-size: clamp(1.7rem, 3.7vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-split-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 50px;
    margin: 0 auto;
}

.project-split-image-section > *:only-child {
    grid-column: 1 / -1;
}

.split-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.split-image-wrapper:hover {
    transform: scale(1.02);
}

.split-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .credits-logline-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
.contact-logo-link img {
    width: 500px;
    padding-bottom: 25px;
}
h3.tales-en {
    font-size: 16px !important;
	line-height: 1.6;
	font-weight: 300;
}
a.contact-logo-link-about img {
    width: 300px;
    display: flex;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .project-hero-section {
        padding: 120px 10px 10px;
        min-height: auto;
    }
	.contact-logo-link img {
		width: 450px;
	}
    .project-gallery-grid,
    .project-video-section,
    .project-split-image-section,
    .project-overlay-section,
    .project-large-image-section {
        padding: 20px 10px;
    }
    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .project-split-image-section {
        grid-template-columns: 1fr;
    }

    .project-overlay-section .parallax-img-wrapper {
        height: 60vh;
    }

    .project-overlay-text {
        padding: 20px;
        padding-left: 50px;
    }
    .project-overlay-text .film-credits, .project-overlay-text .log-line {
        max-width: 100%;
    }
}
@media (max-width: 568px) {
    .project-overlay-text {
        padding-left: 30px; 
        margin: auto;
        text-align: left;
        width: 100%;
    }
	.contact-logo-link img {
		width: 350px;
	}	
    .showcase-text {
        width: 100%;
        padding: 0px 10px;
    }
    
}
.error-404-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 50px;
}

.error-404-content .error-code {
    font-size: clamp(8rem, 25vw, 15rem);
    font-weight: 800;
    line-height: 1;
    color: #f0f0f0;
    position: relative;
    z-index: -1;
    margin-bottom: -0.2em;
}

.error-404-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.error-404-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    max-width: 450px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.film-credits ul {
    font-size: 18px;
}




section#heropromovideo {
    padding: 0;
    padding-bottom: 5px;
}
#heropromovideo .showcase-media {
    height: 100dvh;
}
#heropromovideo .showcase-text {
    padding-top: 170px;
}

#about-us-contact {
    background: #0b0b0b;
}
#contact-content-about {
    color: var(--white);
}

.about-us-section + .contact-section .cta-button:hover {
    color: var(--black);
    border-color: var(--black);
}
.contact-content h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    padding-bottom: 20px;
}

.contact-main {
    background: #0b0b0b;
    color: #fff;
}
.contact-main-text {
    color: #fff !important;
}
