/* ==========================================
   FROM PAGE TO SCREEN
   Zara K. Reed
========================================== */


/* ==========================================
   BASE
========================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0d0d0d;
    color: #e0e6ed;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.8;
}

a {
    transition: .25s ease;
}


/* ==========================================
   HEADER / HERO
========================================== */

.cinematic-header {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 30px 100px;
    border-bottom: 1px solid #1a1a1a;
}

.header-inner {
    max-width: 1050px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: #ffb703;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 85px;
}

.back-link:hover {
    opacity: .75;
}

.hero-content {
    max-width: 900px;
}

.eyebrow,
.section-label {
    display: block;
    color: #ffb703;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
}

.hero-content h1 {
    margin: 18px 0 12px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .95;
    font-weight: 700;
    letter-spacing: -3px;
}

.hero-subtitle {
    margin: 0 0 30px;
    color: #c4ccd6;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
}

.hero-intro {
    max-width: 760px;
    margin: 0;
    color: #9da8b5;
    font-size: 1rem;
    line-height: 1.9;
}


/* ==========================================
   MAIN
========================================== */

.screen-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 30px 20px;
}


/* ==========================================
   INTRO
========================================== */

.intro-section {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

.intro-section h2 {
    margin: 18px 0 22px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.15;
    border: none;
    padding: 0;
}

.intro-section p {
    margin: 0;
    color: #929eac;
    line-height: 1.9;
}


/* ==========================================
   CRAFT GRID
========================================== */

.craft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* ==========================================
   CRAFT CARDS
========================================== */

.craft-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid #242424;
    background:
        linear-gradient(
            145deg,
            #151515 0%,
            #0f0f0f 55%,
            #11151d 100%
        );
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.craft-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background:
        linear-gradient(
            135deg,
            transparent 35%,
            #ffb703 35%,
            #ffb703 36%,
            transparent 36%
        );
    transition: opacity .35s ease;
}

.craft-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 183, 3, .65);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.craft-card:hover::before {
    opacity: .2;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 183, 3, .12),
            transparent 35%
        );
    pointer-events: none;
}

.craft-content {
    position: relative;
    z-index: 2;
    min-height: 420px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.craft-number {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #3a3a3a;
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1;
}

.craft-category {
    margin-bottom: 12px;
    color: #ffb703;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.craft-content h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    border: none;
    padding: 0;
}

.craft-content p {
    max-width: 580px;
    margin: 0 0 28px;
    color: #9da8b5;
    line-height: 1.8;
}

.craft-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #ffb703;
    text-decoration: none;
    font-weight: bold;
    font-size: .9rem;
    letter-spacing: .3px;
}

.craft-link span {
    font-size: 1.2rem;
    transition: transform .25s ease;
}

.craft-link:hover {
    color: #ffffff;
}

.craft-link:hover span {
    transform: translateX(5px);
}


/* ==========================================
   SUBTLE CARD DIFFERENTIATION
========================================== */

.screenwriting-card {
    background:
        linear-gradient(
            145deg,
            #161616 0%,
            #101010 65%,
            #17130b 100%
        );
}

.directing-card {
    background:
        linear-gradient(
            145deg,
            #121518 0%,
            #0e1012 65%,
            #17150f 100%
        );
}

.filmmaking-card {
    background:
        linear-gradient(
            145deg,
            #141414 0%,
            #101010 65%,
            #151515 100%
        );
}

.adaptation-card {
    background:
        linear-gradient(
            145deg,
            #171414 0%,
            #101010 65%,
            #17130b 100%
        );
}


/* ==========================================
   JOURNEY SECTION
========================================== */

.journey-section {
    margin: 110px auto 0;
    padding: 80px 0;
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020;
}

.journey-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.journey-content h2 {
    margin: 18px 0 28px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    border: none;
    padding: 0;
}

.journey-content p {
    margin: 0 0 22px;
    color: #929eac;
    line-height: 1.9;
}

.journey-content p:last-child {
    margin-bottom: 0;
}

.journey-content strong {
    color: #dfe4ea;
}


/* ==========================================
   CLOSING SECTION
========================================== */

.closing-section {
    max-width: 800px;
    margin: 110px auto 80px;
    text-align: center;
}

.closing-line {
    width: 55px;
    height: 2px;
    margin: 0 auto 35px;
    background: #ffb703;
}

.closing-section h2 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    border: none;
    padding: 0;
}

.closing-section p {
    margin: 0;
    color: #8f9aa8;
    line-height: 1.9;
}


/* ==========================================
   FOOTER
========================================== */

.screen-footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 30px 35px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-inner {
    max-width: 760px;
    margin: 0 auto;
}

.footer-statement {
    margin: 0;
    color: #6f7885;
    font-size: .95rem;
    line-height: 1.8;
}

.copyright {
    margin: 25px 0 0;
    color: #555d68;
    font-size: .85rem;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 800px) {

    .cinematic-header {
        padding: 30px 22px 75px;
    }

    .back-link {
        margin-bottom: 60px;
    }

    .screen-section {
        padding: 70px 22px 10px;
    }

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

    .craft-card,
    .craft-content {
        min-height: 380px;
    }

    .craft-content {
        padding: 32px;
    }

    .journey-section {
        margin-top: 80px;
        padding: 65px 0;
    }

    .closing-section {
        margin: 80px auto 65px;
    }

    .screen-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

}


@media (max-width: 500px) {

    .cinematic-header {
        padding-top: 25px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .craft-content {
        padding: 28px;
    }

    .craft-number {
        top: 22px;
        right: 25px;
        font-size: 3.5rem;
    }

    .craft-card,
    .craft-content {
        min-height: 400px;
    }

}