/* =========================================
   RESET
========================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;

    background: var(--ivory);

    color: var(--text);

    overflow-x: hidden;
}


a {
    color: inherit;

    text-decoration: none;
}


/* =========================================
   COLOR PALETTE
========================================= */

:root {

    --ivory: #F4F2ED;

    --navy: #101820;

    --blue: #3157D5;

    --silver: #AEB6C2;

    --text: #101820;

}


/* =========================================
   HOMEPAGE
========================================= */

.new-welcome {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background: #111111;

    color: #F4F2ED;

    padding:
        30px
        5%
        35px;

}


/* =========================================
   BACKGROUND
========================================= */

.home-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    background-image:

        linear-gradient(
            rgba(244, 242, 237, 0.8)
            1px,
            transparent
            1px
        ),

        linear-gradient(
            90deg,
            rgba(244, 242, 237, 0.8)
            1px,
            transparent
            1px
        );

    background-size:
        70px 70px;

}


.home-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.home-orb-one {

    width: 420px;

    height: 420px;

    top: -250px;

    right: 8%;

    background:
        radial-gradient(
            circle,
            rgba(49, 87, 213, 0.28),
            transparent 70%
        );

}


.home-orb-two {

    width: 500px;

    height: 500px;

    bottom: -350px;

    left: -120px;

    background:
        radial-gradient(
            circle,
            rgba(108, 140, 255, 0.13),
            transparent 70%
        );

}


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

.home-header {

    position: relative;

    z-index: 5;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.55);

}


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

.home-hero {

    position: relative;

    z-index: 3;

    padding-top: 35px;

}


/* =========================================
   NAME + GALLERY ROW
========================================= */

.home-main-row {

    position: relative;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 35px;

}


/* =========================================
   NAME
========================================= */

.home-name {

    margin: 0;

    flex-shrink: 0;

    font-family:
        "Bungee",
        sans-serif;

    font-size:
        clamp(80px, 11vw, 175px);

    line-height: 0.85;

    font-weight: 400;

    letter-spacing:
        -3px;

    color: #F4F2ED;

    position: relative;

    z-index: 2;

}


.home-name::after {

    content: "";

    position: absolute;

    left: 1%;

    bottom: -22px;

    width: 125px;

    height: 4px;

    background: #3157D5;

}


/* =========================================
   PHOTO GALLERY
========================================= */

.home-gallery-section {

    position: absolute;

    top: 50%;

    right: 0;

    transform: translateY(-50%);

    width: min(460px, 40vw);

    display: flex;

    justify-content: flex-end;

    z-index: 4;

}


.home-gallery {

    position: relative;

    width: min(460px, 40vw);

    height: 300px;

}


.home-photo {

    position: absolute;

    width: 190px;

    height: 255px;

    overflow: hidden;

    border-radius: 6px;

    background: #222222;

    box-shadow:
        0
        20px
        50px
        rgba(0, 0, 0, 0.35);

    transition:

        transform 0.6s
        cubic-bezier(0.22, 1, 0.36, 1),

        box-shadow 0.6s ease;

}


.home-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* PHOTO 5 */

.photo-5 {

    top: 25px;

    left: 0;

    transform:
        rotate(-13deg);

    z-index: 1;

}


/* PHOTO 4 */

.photo-4 {

    top: 5px;

    left: 50px;

    transform:
        rotate(-7deg);

    z-index: 2;

}


/* PHOTO 3 */

.photo-3 {

    top: 0;

    left: 125px;

    transform:
        rotate(2deg);

    z-index: 3;

}


/* PHOTO 2 */

.photo-2 {

    top: 12px;

    right: 45px;

    transform:
        rotate(8deg);

    z-index: 4;

}


/* MAIN PHOTO */

.photo-1 {

    top: 30px;

    right: 0;

    transform:
        rotate(14deg);

    z-index: 5;

}


/* GALLERY HOVER */

.home-gallery:hover .photo-5 {

    transform:
        translateX(-45px)
        translateY(15px)
        rotate(-18deg);

}


.home-gallery:hover .photo-4 {

    transform:
        translateX(-20px)
        translateY(-5px)
        rotate(-10deg);

}


.home-gallery:hover .photo-3 {

    transform:
        translateY(-18px)
        rotate(0deg);

}


.home-gallery:hover .photo-2 {

    transform:
        translateX(20px)
        translateY(-5px)
        rotate(10deg);

}


.home-gallery:hover .photo-1 {

    transform:
        translateX(45px)
        translateY(15px)
        rotate(18deg);

}


/* =========================================
   GREETING
========================================= */

.home-greeting {

    margin:
        35px
        0
        0
        7%;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        clamp(22px, 3vw, 42px);

    font-weight: 500;

    letter-spacing: -1px;

    color:
        rgba(244, 242, 237, 0.72);

}


.home-greeting span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        1.15em;

    font-style: italic;

    font-weight: 700;

    color: #3157D5;

}


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

.home-intro-line {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #6C8CFF;

}


.home-intro-line div {

    width: 140px;

    height: 1px;

    background:
        rgba(49, 87, 213, 0.6);

}


/* =========================================
   WHERE SHALL WE BEGIN
========================================= */

.home-begin {

    position: relative;

    z-index: 3;

    margin-top: 55px;

}


.begin-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 18px;

}


.begin-heading p {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(30px, 3.5vw, 52px);

    font-style: italic;

    font-weight: 600;

}


.begin-heading span {

    margin-bottom: 7px;

    font-size: 8px;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.45);

}


/* =========================================
   CHOICES
========================================= */

.home-choices {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.25);

}


.home-choice {

    position: relative;

    min-height: 250px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: #F4F2ED;

    text-decoration: none;

    overflow: hidden;

    transition:

        background 0.45s ease,
        color 0.45s ease,
        padding 0.45s ease;

}


.home-choice + .home-choice {

    border-left:
        1px solid
        rgba(244, 242, 237, 0.25);

}


.home-choice::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #3157D5;

    transform:
        translateY(101%);

    transition:
        transform 0.45s
        cubic-bezier(0.22, 1, 0.36, 1);

    z-index: -1;

}


.home-choice:hover::before {

    transform:
        translateY(0);

}


.home-choice:hover {

    color: #111111;

    padding-top: 35px;

}


.home-choice-number {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #6C8CFF;

    transition:
        color 0.45s ease;

}


.home-choice:hover .home-choice-number {

    color: #111111;

}


.home-choice-content {

    position: relative;

    z-index: 1;

}


.home-choice-label {

    display: block;

    margin-bottom: 12px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    opacity: 0.65;

}


.home-choice h2 {

    margin: 0 0 12px;

    font-size:
        clamp(50px, 6vw, 90px);

    line-height: 0.85;

    letter-spacing: -5px;

}


.home-choice p {

    max-width: 270px;

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    opacity: 0.65;

}


.home-choice-arrow {

    position: absolute;

    right: 28px;

    bottom: 25px;

    font-size: 30px;

    transition:
        transform 0.45s ease;

}


.home-choice:hover .home-choice-arrow {

    transform:
        translate(6px, -6px);

}


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

.new-welcome-footer {

    position: relative;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.15);

    font-size: 9px;

    letter-spacing: 1.5px;

    color:
        rgba(244, 242, 237, 0.4);

}


/* =========================================
   HOMEPAGE ANIMATION
========================================= */

.new-welcome .reveal {

    opacity: 0;

    transform:
        translateY(25px);

    animation:
        newHomeReveal
        1s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;

}


.new-welcome .home-header {

    animation-delay:
        0.05s;

}


.new-welcome .home-name {

    animation-delay:
        0.18s;

}


.new-welcome .home-gallery-section {

    animation-delay:
        0.28s;

}


.new-welcome .home-greeting {

    animation-delay:
        0.42s;

}


.new-welcome .home-intro-line {

    animation-delay:
        0.52s;

}


.new-welcome .home-begin {

    animation-delay:
        0.65s;

}


.new-welcome .new-welcome-footer {

    animation-delay:
        0.8s;

}


@keyframes newHomeReveal {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {


    .new-welcome {

        padding:
            25px
            5%
            30px;

    }


    .home-role {

        display: none;

    }


    /* NAME + GALLERY */

    .home-main-row {

        flex-direction: column;

        align-items: flex-start;

        min-height: auto;

        gap: 25px;

    }


    .home-name {

        font-size:
            23vw;

        letter-spacing:
            -2px;

    }


    .home-name::after {

        bottom:
            -13px;

        height:
            3px;

        width:
            80px;

    }


    /* GALLERY */

    .home-gallery-section {

        width: 100%;

        justify-content: center;

    }


    .home-gallery {

        width: 330px;

        height: 245px;

    }


    .home-photo {

        width: 145px;

        height: 205px;

    }


    .photo-5 {

        top:
            25px;

        left:
            0;

    }


    .photo-4 {

        top:
            5px;

        left:
            30px;

    }


    .photo-3 {

        top:
            0;

        left:
            95px;

    }


    .photo-2 {

        top:
            12px;

        right:
            30px;

    }


    .photo-1 {

        top:
            30px;

        right:
            0;

    }


    /* GREETING */

    .home-greeting {

        margin:

            25px
            0
            0
            3%;

        font-size:
            5.5vw;

    }


    .home-intro-line {

        margin-top:
            35px;

    }


    .home-intro-line div {

        width:
            60px;

    }


    /* BEGIN */

    .home-begin {

        margin-top:
            50px;

    }


    .begin-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            8px;

    }


    .begin-heading span {

        margin-bottom:
            0;

    }


    /* CHOICES */

    .home-choices {

        grid-template-columns:
            1fr;

    }


    .home-choice {

        min-height:
            200px;

        padding:
            24px;

    }


    .home-choice + .home-choice {

        border-left:
            none;

        border-top:
            1px solid
            rgba(244, 242, 237, 0.25);

    }


    .home-choice h2 {

        font-size:
            20vw;

        letter-spacing:
            -6px;

    }


    .home-choice p {

        max-width:
            230px;

        font-size:
            12px;

    }


    .new-welcome-footer {

        margin-top:
            30px;

    }

}


/* =========================================
   WORK PAGE
========================================= */

.work-page {

    min-height:
        100vh;

    padding:
        30px 5% 40px;

    background:
        var(--ivory);
}


/* Navigation */

.page-nav {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    padding-bottom:
        30px;

    border-bottom:
        1px solid rgba(16, 24, 32, 0.25);
}


.back-home {

    font-size:
        12px;

    font-weight:
        600;

    letter-spacing:
        1px;

    transition:
        color 0.3s ease;
}


.back-home:hover {

    color:
        var(--blue);
}


.page-label {

    font-size:
        10px;

    letter-spacing:
        2px;

    opacity:
        0.55;
}


/* =========================================
   WORK HERO
========================================= */

.work-hero {

    min-height:
        75vh;

    max-width:
        1500px;

    margin:
        auto;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    position:
        relative;
}


.work-hero-text {

    max-width:
        1100px;
}


.eyebrow {

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        2.5px;

    color:
        var(--blue);

    margin-bottom:
        30px;
}


.work-hero h1 {

    font-size:
        clamp(60px, 10vw, 150px);

    font-weight:
        600;

    letter-spacing:
        -7px;

    line-height:
        0.85;
}


.work-hero h1 span {

    display:
        block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style:
        italic;

    font-weight:
        600;

    color:
        var(--blue);

    letter-spacing:
        -3px;
}


.hero-intro {

    max-width:
        500px;

    margin-top:
        70px;

    margin-left:
        auto;
}


.hero-intro p {

    font-size:
        18px;

    line-height:
        1.6;

    opacity:
        0.75;
}


/* =========================================
   PROFESSIONAL PHOTO GALLERY
========================================= */

.professional-gallery {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    display:
        grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap:
        20px;

    align-items:
        start;
}


.professional-photo {

    overflow:
        hidden;

    background:
        var(--navy);

    position:
        relative;
}


.professional-photo img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.professional-photo:hover img {

    transform:
        scale(1.03);
}


.photo-one {

    height:
        650px;
}


.photo-two {

    height:
        500px;

    margin-top:
        120px;
}


/* =========================================
   GENERAL WORK SECTIONS
========================================= */

.work-section {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;

    padding-top:
        40px;

    border-top:
        1px solid rgba(16, 24, 32, 0.25);
}


.section-number {

    font-size:
        12px;

    color:
        var(--blue);

    font-weight:
        600;
}


.section-content {

    max-width:
        900px;
}


.section-label {

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        2.5px;

    color:
        var(--blue);

    margin-bottom:
        30px;
}


.section-content h2 {

    font-size:
        clamp(45px, 6vw, 90px);

    font-weight:
        600;

    letter-spacing:
        -4px;

    line-height:
        0.95;

    margin-bottom:
        50px;
}


.body-text {

    max-width:
        650px;

    font-size:
        18px;

    line-height:
        1.7;

    opacity:
        0.7;
}


/* =========================================
   EDUCATION
========================================= */

.education-details {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        30px;

    padding-top:
        30px;

    border-top:
        1px solid rgba(16, 24, 32, 0.2);
}


.education-details h3 {

    font-size:
        18px;

    font-weight:
        600;

    margin-bottom:
        8px;
}


.education-details p {

    font-size:
        14px;

    opacity:
        0.6;

    margin-top:
        4px;
}


.education-details > span {

    font-size:
        12px;

    white-space:
        nowrap;

    opacity:
        0.55;
}


/* =========================================
   EXPERIENCE
========================================= */

.experience-item {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        30px;

    padding:
        30px 0;

    border-top:
        1px solid rgba(16, 24, 32, 0.2);
}


.experience-item:last-child {

    border-bottom:
        1px solid rgba(16, 24, 32, 0.2);
}


.experience-item h3 {

    font-size:
        24px;

    font-weight:
        600;

    margin-bottom:
        8px;
}


.experience-item p {

    font-size:
        14px;

    opacity:
        0.6;
}


.experience-item .experience-location {

    font-size:
        12px;

    margin-top:
        5px;

    opacity:
        0.45;
}


.experience-item > span {

    font-size:
        12px;

    white-space:
        nowrap;

    opacity:
        0.55;
}


/* =========================================
   FEATURED PROJECT
========================================= */

.project-section {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding:
        70px 6%;

    background:
        var(--navy);

    color:
        var(--ivory);

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;
}


.project-number {

    font-size:
        12px;

    color:
        var(--blue);

    font-weight:
        600;
}


.project-content {

    max-width:
        1000px;
}


.project-content .section-label {

    color:
        var(--blue);
}


.project-heading {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        40px;

    margin-bottom:
        70px;
}


.project-heading h2 {

    font-size:
        clamp(55px, 8vw, 115px);

    font-weight:
        600;

    letter-spacing:
        -5px;

    line-height:
        0.85;
}


.project-heading h2 span {

    display:
        block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style:
        italic;

    font-weight:
        600;

    color:
        var(--blue);

    letter-spacing:
        -2px;
}


.project-heading > p {

    font-size:
        11px;

    letter-spacing:
        2px;

    opacity:
        0.6;

    white-space:
        nowrap;
}


.project-details {

    display:
        grid;

    grid-template-columns:
        180px 1fr;

    gap:
        60px;

    padding-top:
        30px;

    border-top:
        1px solid rgba(244, 242, 237, 0.25);
}


.project-date {

    font-size:
        10px;

    letter-spacing:
        2px;

    color:
        var(--blue);
}


.project-description {

    max-width:
        650px;
}


.project-description p {

    font-size:
        16px;

    line-height:
        1.7;

    opacity:
        0.75;

    margin-bottom:
        20px;
}


.project-tags {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin-top:
        50px;
}


.project-tags span {

    font-size:
        9px;

    letter-spacing:
        1.5px;

    padding:
        10px 14px;

    border:
        1px solid rgba(244, 242, 237, 0.25);

    opacity:
        0.65;
}


/* =========================================
   SKILLS
========================================= */

.skills-section {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding:
        60px 6%;

    background:
        var(--ivory);

    color:
        var(--navy);

    border:
        1px solid rgba(16, 24, 32, 0.2);
}


.skills-section .section-label {

    color:
        var(--blue);
}


.skills-section h2 {

    font-size:
        clamp(50px, 7vw, 100px);

    letter-spacing:
        -5px;

    line-height:
        0.9;

    margin-bottom:
        80px;
}


.skills-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid rgba(16, 24, 32, 0.25);
}


.skills-grid span {

    padding:
        25px 0;

    font-size:
        18px;

    border-bottom:
        1px solid rgba(16, 24, 32, 0.25);

    opacity:
        0.8;

    transition:
        color 0.3s ease;
}


.skills-grid span:hover {

    color:
        var(--blue);
}


/* =========================================
   ORGANIZATIONS
========================================= */

.organization-item {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    padding:
        30px 0;

    border-top:
        1px solid rgba(16, 24, 32, 0.2);

    border-bottom:
        1px solid rgba(16, 24, 32, 0.2);
}


.organization-item h3 {

    font-size:
        24px;

    font-weight:
        600;

    margin-bottom:
        7px;
}


.organization-item p {

    font-size:
        14px;

    opacity:
        0.6;
}


.organization-item > span {

    font-size:
        12px;

    opacity:
        0.55;
}


.organization-description {

    margin-top:
        30px;
}


/* =========================================
   CONTACT
========================================= */

.work-contact {

    max-width:
        1500px;

    margin:
        0 auto 150px;

    padding:
        100px 0;

    border-top:
        1px solid rgba(16, 24, 32, 0.25);
}


.work-contact h2 {

    max-width:
        800px;

    font-size:
        clamp(50px, 7vw, 110px);

    letter-spacing:
        -5px;

    line-height:
        0.9;

    margin-bottom:
        70px;
}


.contact-links {

    display:
        flex;

    gap:
        40px;

    flex-wrap:
        wrap;
}


.contact-links a {

    font-size:
        13px;

    font-weight:
        600;

    letter-spacing:
        1px;

    padding-bottom:
        8px;

    border-bottom:
        2px solid var(--blue);

    transition:
        color 0.3s ease;
}


.contact-links a:hover {

    color:
        var(--blue);
}


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

.page-footer {

    max-width:
        1500px;

    margin:
        auto;

    padding-top:
        30px;

    border-top:
        1px solid rgba(16, 24, 32, 0.25);

    display:
        flex;

    justify-content:
        space-between;

    font-size:
        11px;

    opacity:
        0.55;
}


.page-footer a:hover {

    color:
        var(--blue);
}


/* =========================================
   SCROLL ANIMATIONS
========================================= */

.reveal {

    opacity:
        0;

    transform:
        translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}


.reveal.visible {

    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================
   HOMEPAGE LOAD ANIMATION
========================================= */

.welcome .reveal {

    animation:
        revealContent
        1s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


.top-row {
    animation-delay:
        0.1s;
}


.welcome-message {
    animation-delay:
        0.25s;
}


.question-block {
    animation-delay:
        0.4s;
}


.choices {
    animation-delay:
        0.55s;
}


.welcome-footer {
    animation-delay:
        0.75s;
}


@keyframes revealContent {

    to {

        opacity:
            1;

        transform:
            translateY(0);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {


    /* Homepage */

    .welcome {

        padding:
            25px 5%;
    }


    .background-shape {

        width:
            300px;

        height:
            300px;

        right:
            -150px;

        top:
            -100px;
    }


    .welcome-name {

        font-size:
            22vw;

        letter-spacing:
            -5px;
    }


    .location {

        display:
            none;
    }


    .welcome-message {

        margin-top:
            80px;
    }


    .welcome-message h1 {

        letter-spacing:
            -2px;
    }


    .question-block {

        margin-top:
            60px;
    }


    .choices {

        grid-template-columns:
            1fr;
    }


    .choice {

        min-height:
            180px;
    }


    .choice + .choice {

        border-left:
            none;
    }


    .choice-title {

        letter-spacing:
            -3px;
    }


    .welcome-footer {

        margin-top:
            45px;
    }


    /* Work page */

    .work-page {

        padding:
            20px 5% 30px;
    }


    .page-nav {

        padding-bottom:
            20px;
    }


    .work-hero {

        min-height:
            70vh;
    }


    .work-hero h1 {

        font-size:
            18vw;

        letter-spacing:
            -4px;
    }


    .work-hero h1 span {

        letter-spacing:
            -2px;
    }


    .hero-intro {

        margin-top:
            50px;

        margin-left:
            0;
    }


    .hero-intro p {

        font-size:
            16px;
    }


    /* Photos */

    .professional-gallery {

        grid-template-columns:
            1fr;

        gap:
            15px;

        margin-bottom:
            100px;
    }


    .photo-one {

        height:
            500px;
    }


    .photo-two {

        height:
            400px;

        margin-top:
            0;
    }


    /* Sections */

    .work-section {

        grid-template-columns:
            1fr;

        gap:
            30px;

        margin-bottom:
            100px;
    }


    .section-content h2 {

        font-size:
            14vw;

        letter-spacing:
            -3px;

        margin-bottom:
            35px;
    }


    .body-text {

        font-size:
            16px;
    }


    /* Education */

    .education-details {

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    /* Experience */

    .experience-item {

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    /* Project */

    .project-section {

        grid-template-columns:
            1fr;

        gap:
            30px;

        padding:
            50px 7%;

        margin-bottom:
            100px;
    }


    .project-heading {

        flex-direction:
            column;

        align-items:
            flex-start;

        margin-bottom:
            50px;
    }


    .project-heading h2 {

        font-size:
            14vw;

        letter-spacing:
            -3px;
    }


    .project-details {

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    /* Skills */

    .skills-section {

        margin-bottom:
            100px;

        padding:
            50px 7%;
    }


    .skills-section h2 {

        font-size:
            14vw;

        margin-bottom:
            50px;
    }


    .skills-grid {

        grid-template-columns:
            1fr;
    }


    /* Organization */

    .organization-item {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;
    }


    /* Contact */

    .work-contact {

        padding:
            70px 0;

        margin-bottom:
            80px;
    }


    .work-contact h2 {

        font-size:
            14vw;

        letter-spacing:
            -3px;

        margin-bottom:
            50px;
    }


    .contact-links {

        flex-direction:
            column;

        gap:
            25px;

        align-items:
            flex-start;
    }


    /* Footer */

    .page-footer {

        flex-direction:
            column;

        gap:
            15px;
    }

}

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

.personal-intro {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    display:
        grid;

    grid-template-columns:
        minmax(300px, 0.8fr) minmax(400px, 1.2fr);

    gap:
        clamp(50px, 8vw, 130px);

    align-items:
        center;

    padding-top:
        30px;
}


.personal-photo {

    width:
        100%;

    max-width:
        500px;

    aspect-ratio:
        4 / 5;

    overflow:
        hidden;

    background:
        var(--navy);
}


.personal-photo img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.personal-photo:hover img {

    transform:
        scale(1.03);
}


.personal-intro-text {

    max-width:
        700px;
}


.personal-intro-text h2 {

    font-size:
        clamp(45px, 5.5vw, 82px);

    font-weight:
        600;

    letter-spacing:
        -4px;

    line-height:
        0.9;

    margin-bottom:
        45px;
}


.personal-intro-text h2 span {

    display:
        block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style:
        italic;

    color:
        var(--blue);

    letter-spacing:
        -2px;
}


.personal-intro-text .body-text {

    margin-bottom:
        22px;
}


/* =========================================
   PERSONAL INTRO MOBILE
========================================= */

@media (max-width: 800px) {

    .personal-intro {

        grid-template-columns:
            1fr;

        gap:
            55px;

        margin-bottom:
            110px;
    }


    .personal-photo {

        max-width:
            100%;

        aspect-ratio:
            4 / 5;
    }


    .personal-intro-text h2 {

        font-size:
            14vw;

        letter-spacing:
            -3px;
    }

}

/* =========================================
   ACTING PAGE
========================================= */

.acting-body {

    background:
        #111111;

    color:
        #F4F2ED;
}


.acting-page {

    min-height:
        100vh;

    padding:
        30px 5% 40px;

    background:
        #111111;

    overflow:
        hidden;
}


/* =========================================
   NAVIGATION
========================================= */

.acting-nav {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    padding-bottom:
        30px;

    border-bottom:
        1px solid rgba(244, 242, 237, 0.2);
}


.acting-home {

    font-size:
        12px;

    font-weight:
        600;

    letter-spacing:
        1px;

    transition:
        color 0.3s ease;
}


.acting-home:hover {

    color:
        #6C8CFF;
}


.acting-page-number {

    font-size:
        10px;

    letter-spacing:
        2px;

    opacity:
        0.5;
}


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

.acting-hero {

    min-height:
        65vh;

    max-width:
        1500px;

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    position:
        relative;
}


.acting-hero::before {

    content:
        "";

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    border-radius:
        50%;

    background:
        #3157D5;

    opacity:
        0.12;

    filter:
        blur(80px);

    right:
        -150px;

    top:
        50%;

    transform:
        translateY(-50%);
}


.acting-hero-title {

    position:
        relative;

    z-index:
        2;
}


.acting-eyebrow {

    font-size:
        10px;

    letter-spacing:
        3px;

    color:
        #6C8CFF;

    margin-bottom:
        25px;
}


.acting-hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(120px, 22vw, 330px);

    font-weight:
        600;

    font-style:
        italic;

    line-height:
        0.65;

    letter-spacing:
        -10px;

    color:
        #F4F2ED;
}


.acting-location {

    margin-top:
        45px;

    font-size:
        10px;

    letter-spacing:
        3px;

    opacity:
        0.45;
}


/* =========================================
   GALLERY
========================================= */

.acting-gallery {

    max-width:
        1100px;

    margin:
        0 auto 180px;

    position:
        relative;
}


.gallery-counter {

    display:
        flex;

    gap:
        7px;

    font-size:
        10px;

    letter-spacing:
        2px;

    color:
        #6C8CFF;

    margin-bottom:
        20px;
}


.gallery-frame {

    display:
        grid;

    grid-template-columns:
        70px 1fr 70px;

    align-items:
        center;

    gap:
        20px;
}


.gallery-image-wrapper {

    width:
        100%;

    aspect-ratio:
        4 / 5;

    max-height:
        750px;

    overflow:
        hidden;

    background:
        #1b1b1b;
}


.gallery-image-wrapper img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        opacity 0.25s ease,
        transform 0.8s ease;
}


.gallery-image-wrapper:hover img {

    transform:
        scale(1.02);
}


.gallery-arrow {

    width:
        60px;

    height:
        60px;

    border:
        1px solid
        rgba(244, 242, 237, 0.3);

    background:
        transparent;

    color:
        #F4F2ED;

    border-radius:
        50%;

    font-size:
        22px;

    cursor:
        pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.gallery-arrow:hover {

    background:
        #F4F2ED;

    color:
        #111111;

    transform:
        scale(1.08);
}


.gallery-caption {

    text-align:
        center;

    font-size:
        9px;

    letter-spacing:
        3px;

    opacity:
        0.4;

    margin-top:
        20px;
}


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

.acting-intro {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding-top:
        40px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;
}


.acting-section-number {

    font-size:
        12px;

    color:
        #6C8CFF;

    font-weight:
        600;
}


.acting-intro-content {

    max-width:
        850px;
}


.acting-section-label {

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        2.5px;

    color:
        #6C8CFF;

    margin-bottom:
        30px;
}


.acting-intro h2,
.acting-credits h2,
.reels-section h2,
.representation-section h2,
.acting-links-section h2,
.acting-contact h2 {

    font-size:
        clamp(55px, 7vw, 105px);

    font-weight:
        600;

    letter-spacing:
        -5px;

    line-height:
        0.88;

    margin-bottom:
        50px;
}


.acting-intro h2 span,
.acting-credits h2 span,
.reels-section h2 span,
.representation-section h2 span,
.acting-links-section h2 span,
.acting-contact h2 span {

    display:
        block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style:
        italic;

    font-weight:
        600;

    color:
        #6C8CFF;

    letter-spacing:
        -2px;
}


.acting-body-text {

    max-width:
        700px;

    font-size:
        18px;

    line-height:
        1.75;

    color:
        rgba(244, 242, 237, 0.7);

    margin-bottom:
        22px;
}


/* =========================================
   CREDITS
========================================= */

.acting-credits {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding:
        70px 6%;

    background:
        #F4F2ED;

    color:
        #111111;

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;
}


.acting-credits .acting-section-label {

    color:
        #3157D5;
}


.acting-content-wide {

    max-width:
        1000px;
}


.acting-credits h2 {

    margin-bottom:
        70px;
}


.credit-item {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        30px;

    padding:
        30px 0;

    border-top:
        1px solid
        rgba(17, 17, 17, 0.2);
}


.credit-item:last-child {

    border-bottom:
        1px solid
        rgba(17, 17, 17, 0.2);
}


.credit-title h3 {

    font-size:
        27px;

    font-weight:
        600;

    margin-bottom:
        8px;
}


.credit-title p {

    font-size:
        13px;

    opacity:
        0.55;
}


.credit-role {

    text-align:
        right;

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;
}


.credit-role strong {

    font-size:
        14px;

    color:
        #3157D5;
}


.credit-role span {

    font-size:
        11px;

    opacity:
        0.5;
}


.credit-future {

    opacity:
        0.4;
}


/* =========================================
   REELS
========================================= */

.reels-section {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding-top:
        40px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;
}


.reels-content {

    max-width:
        1100px;
}


.reels-heading-row {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        40px;
}


.reels-heading-row h2 {

    margin-bottom:
        70px;
}


.reel-counter {

    font-size:
        11px;

    letter-spacing:
        2px;

    color:
        #6C8CFF;

    padding-bottom:
        75px;
}


.reel-player {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        65px 1fr 65px;

    gap:
        15px;

    align-items:
        center;
}


.reel-player video {

    width:
        100%;

    aspect-ratio:
        16 / 9;

    display:
        block;

    background:
        #000000;

    transition:
        opacity 0.25s ease;
}


.reel-arrow {

    width:
        55px;

    height:
        55px;

    border:
        1px solid
        rgba(244, 242, 237, 0.3);

    border-radius:
        50%;

    background:
        transparent;

    color:
        #F4F2ED;

    font-size:
        20px;

    cursor:
        pointer;

    transition:
        all 0.3s ease;
}


.reel-arrow:hover {

    background:
        #F4F2ED;

    color:
        #111111;

    transform:
        scale(1.08);
}


.reel-info {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        40px;

    padding-top:
        25px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    margin-top:
        20px;
}


.reel-number-label {

    font-size:
        9px;

    letter-spacing:
        2px;

    color:
        #6C8CFF;

    margin-bottom:
        7px;
}


.reel-info h3 {

    font-size:
        22px;

    font-weight:
        600;
}


.reel-info > p {

    max-width:
        300px;

    font-size:
        13px;

    opacity:
        0.5;

    line-height:
        1.5;
}


/* =========================================
   REPRESENTATION
========================================= */

.representation-section {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding-top:
        40px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;
}


.representation-content {

    max-width:
        950px;
}


.representation-details {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        40px;

    padding:
        30px 0;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    border-bottom:
        1px solid
        rgba(244, 242, 237, 0.2);
}


.representation-details h3 {

    font-size:
        25px;

    margin-bottom:
        8px;
}


.representation-details p {

    font-size:
        13px;

    opacity:
        0.5;

    margin-top:
        4px;
}


.acting-link {

    font-size:
        12px;

    font-weight:
        600;

    letter-spacing:
        1px;

    color:
        #6C8CFF;

    border-bottom:
        1px solid
        #6C8CFF;

    padding-bottom:
        6px;
}


/* =========================================
   ONLINE PROFILES
========================================= */

.acting-links-section {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding:
        70px 6%;

    background:
        #3157D5;

    color:
        #F4F2ED;

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap:
        70px;
}


.acting-links-section .acting-section-label {

    color:
        #111111;
}


.acting-profile-links {

    border-top:
        1px solid
        rgba(244, 242, 237, 0.35);
}


.acting-profile-link {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    padding:
        25px 0;

    border-bottom:
        1px solid
        rgba(244, 242, 237, 0.35);

    font-size:
        20px;

    transition:
        padding-left 0.3s ease;
}


.acting-profile-link strong {

    font-size:
        25px;

    font-weight:
        400;
}


.acting-profile-link:hover {

    padding-left:
        15px;
}


/* =========================================
   CONTACT
========================================= */

.acting-contact {

    max-width:
        1500px;

    margin:
        0 auto 150px;

    padding:
        100px 0;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);
}


.acting-contact h2 {

    max-width:
        900px;
}


.acting-contact-links {

    display:
        flex;

    gap:
        40px;

    flex-wrap:
        wrap;
}


.acting-contact-links a {

    font-size:
        13px;

    font-weight:
        600;

    letter-spacing:
        1px;

    padding-bottom:
        8px;

    border-bottom:
        2px solid
        #6C8CFF;

    transition:
        color 0.3s ease;
}


.acting-contact-links a:hover {

    color:
        #6C8CFF;
}


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

.acting-footer {

    max-width:
        1500px;

    margin:
        auto;

    padding-top:
        30px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    display:
        flex;

    justify-content:
        space-between;

    font-size:
        11px;

    opacity:
        0.5;
}


.acting-footer a:hover {

    color:
        #6C8CFF;
}


/* =========================================
   ACTING PAGE MOBILE
========================================= */

@media (max-width: 750px) {


    .acting-page {

        padding:
            20px 5% 30px;
    }


    .acting-nav {

        padding-bottom:
            20px;
    }


    .acting-hero {

        min-height:
            60vh;
    }


    .acting-hero h1 {

        font-size:
            40vw;

        letter-spacing:
            -7px;
    }


    .acting-eyebrow {

        font-size:
            8px;

        letter-spacing:
            2px;
    }


    .gallery-frame {

        grid-template-columns:
            45px 1fr 45px;

        gap:
            8px;
    }


    .gallery-arrow {

        width:
            42px;

        height:
            42px;

        font-size:
            16px;
    }


    .acting-gallery {

        margin-bottom:
            100px;
    }


    .acting-intro,
    .acting-credits,
    .reels-section,
    .representation-section,
    .acting-links-section {

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .acting-intro,
    .reels-section,
    .representation-section {

        margin-bottom:
            110px;
    }


    .acting-intro h2,
    .acting-credits h2,
    .reels-section h2,
    .representation-section h2,
    .acting-links-section h2,
    .acting-contact h2 {

        font-size:
            14vw;

        letter-spacing:
            -3px;
    }


    .acting-body-text {

        font-size:
            16px;
    }


    .acting-credits,
    .acting-links-section {

        padding:
            50px 7%;
    }


    .credit-item {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;
    }


    .credit-role {

        text-align:
            left;
    }


    .reels-heading-row {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            0;
    }


    .reel-counter {

        padding-bottom:
            30px;
    }


    .reel-player {

        grid-template-columns:
            40px 1fr 40px;

        gap:
            5px;
    }


    .reel-arrow {

        width:
            38px;

        height:
            38px;

        font-size:
            15px;
    }


    .reel-info {

        flex-direction:
            column;

        gap:
            15px;
    }


    .representation-details {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;
    }


    .acting-contact {

        padding:
            70px 0;

        margin-bottom:
            80px;
    }


    .acting-contact-links {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;
    }


    .acting-footer {

        flex-direction:
            column;

        gap:
            15px;
    }

}

/* =========================================
   WORK PAGE UPGRADES
========================================= */

.work-body {

    background: #111111;

    color: #F4F2ED;
}


.work-page {

    background: #111111;

    color: #F4F2ED;
}


/* =========================================
   HERO SUBTEXT
========================================= */

.hero-subtext {

    margin-top: 35px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #6C8CFF;

    opacity: 0.85;
}


/* =========================================
   PERSONAL PHOTO
========================================= */

.personal-photo {

    overflow: hidden;

    background: #1b1b1b;
}


.personal-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s ease;
}


.personal-photo:hover img {

    transform: scale(1.025);
}


/* =========================================
   FOCUS TAGS
========================================= */

.focus-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 45px;
}


.focus-tags span {

    border: 1px solid
        rgba(244, 242, 237, 0.25);

    padding: 11px 15px;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: rgba(244, 242, 237, 0.65);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.focus-tags span:hover {

    background: #F4F2ED;

    color: #111111;

    border-color: #F4F2ED;
}


/* =========================================
   LOGO CONTAINERS
========================================= */

.institution-logo,
.company-logo {

    width: 58px;

    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    overflow: hidden;
}


.institution-logo img,
.company-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =========================================
   EDUCATION
========================================= */

.education-main {

    display: flex;

    align-items: center;

    gap: 22px;
}


/* =========================================
   EXPERIENCE
========================================= */

.experience-company {

    display: flex;

    align-items: center;

    gap: 22px;
}


.experience-company > div:last-child {

    min-width: 0;
}


.experience-company h3 {

    margin-bottom: 5px;
}


.experience-company p {

    margin-bottom: 4px;
}


/* =========================================
   PROJECT
========================================= */

.project-section {

    background: #F4F2ED;

    color: #111111;

    position: relative;
}


.project-section .section-label {

    color: #3157D5;
}


.project-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    margin-bottom: 50px;
}


.project-heading h2 {

    margin-bottom: 18px;
}


.project-tool {

    font-size: 13px;

    opacity: 0.55;
}


.project-date {

    font-size: 10px;

    letter-spacing: 2px;

    color: #3157D5;

    white-space: nowrap;

    padding-bottom: 10px;
}


/* =========================================
   DASHBOARD IMAGE
========================================= */

.dashboard-wrapper {

    width: 100%;

    background: #ffffff;

    padding: 12px;

    margin-bottom: 45px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


.dashboard-wrapper img {

    width: 100%;

    height: auto;

    display: block;

    transition:
        transform 0.8s ease;
}


.dashboard-wrapper:hover img {

    transform: scale(1.01);
}


/* =========================================
   PROJECT STATS
========================================= */

.project-overview {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid
        rgba(17, 17, 17, 0.18);

    border-bottom:
        1px solid
        rgba(17, 17, 17, 0.18);

    margin-bottom: 65px;
}


.project-stat {

    padding: 30px 25px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    border-right:
        1px solid
        rgba(17, 17, 17, 0.18);
}


.project-stat:last-child {

    border-right: none;
}


.project-stat strong {

    font-size: 28px;

    font-weight: 600;

    letter-spacing: -1px;

    color: #3157D5;
}


.project-stat span {

    font-size: 9px;

    letter-spacing: 1.8px;

    opacity: 0.5;
}


/* =========================================
   PROJECT DETAILS
========================================= */

.project-details {

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 50px;

    margin-bottom: 65px;
}


.project-detail-label,
.analysis-label {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #3157D5;
}


.project-description {

    max-width: 720px;
}


.project-description p {

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 22px;

    color: rgba(17, 17, 17, 0.7);
}


/* =========================================
   ANALYSIS
========================================= */

.analysis-grid {

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 50px;

    padding:
        35px 0;

    border-top:
        1px solid
        rgba(17, 17, 17, 0.18);

    border-bottom:
        1px solid
        rgba(17, 17, 17, 0.18);

    margin-bottom: 35px;
}


.analysis-items {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.analysis-items span {

    padding: 10px 14px;

    border: 1px solid
        rgba(17, 17, 17, 0.18);

    font-size: 11px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.analysis-items span:hover {

    background: #111111;

    color: #F4F2ED;
}


/* =========================================
   PROJECT TAGS
========================================= */

.project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.project-tags span {

    padding: 10px 14px;

    background: #111111;

    color: #F4F2ED;

    font-size: 9px;

    letter-spacing: 1.5px;
}


/* =========================================
   SKILLS
========================================= */

.skills-section {

    background: #3157D5;

    color: #F4F2ED;

    position: relative;

    overflow: hidden;
}


.skills-section::after {

    content: "SKILLS";

    position: absolute;

    right: -20px;

    bottom: -70px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 220px;

    font-style: italic;

    opacity: 0.07;

    pointer-events: none;
}


.skills-section .section-label {

    color: #111111;
}


.skills-section h2 span {

    color: #111111;
}


.skills-grid {

    position: relative;

    z-index: 2;
}


/* =========================================
   ORGANIZATION
========================================= */

.organization-main {

    display: flex;

    align-items: center;

    gap: 22px;
}


/* =========================================
   PROFESSIONAL LINKS
========================================= */

.professional-links-section {

    max-width: 1500px;

    margin: 0 auto 180px;

    padding: 80px 6%;

    background: #F4F2ED;

    color: #111111;
}


.professional-links-inner {

    max-width: 1000px;
}


.professional-links-section .section-label {

    color: #3157D5;
}


.professional-links-section h2 {

    font-size:
        clamp(55px, 7vw, 105px);

    line-height: 0.88;

    letter-spacing: -5px;

    margin-bottom: 70px;
}


.professional-links-section h2 span {

    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style: italic;

    font-weight: 600;

    color: #3157D5;
}


.professional-links {

    border-top:
        1px solid
        rgba(17, 17, 17, 0.2);
}


.professional-links a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px 0;

    border-bottom:
        1px solid
        rgba(17, 17, 17, 0.2);

    transition:
        padding-left 0.3s ease;
}


.professional-links a:hover {

    padding-left: 15px;
}


.professional-links strong {

    display: block;

    font-size: 24px;

    margin-top: 5px;
}


.link-small {

    display: block;

    font-size: 9px;

    letter-spacing: 2px;

    color: #3157D5;
}


.link-arrow {

    font-size: 25px;
}


/* =========================================
   WORK CONTACT
========================================= */

.work-contact h2 span {

    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style: italic;

    color: #6C8CFF;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 750px) {


    .hero-subtext {

        font-size: 8px;

        letter-spacing: 2px;

        line-height: 1.6;
    }


    .focus-tags {

        margin-top: 30px;
    }


    .education-details {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .education-main {

        align-items: flex-start;
    }


    .experience-item {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .experience-company {

        width: 100%;
    }


    .project-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .project-date {

        padding-bottom: 0;
    }


    .project-overview {

        grid-template-columns: 1fr;
    }


    .project-stat {

        border-right: none;

        border-bottom:
            1px solid
            rgba(17, 17, 17, 0.18);
    }


    .project-stat:last-child {

        border-bottom: none;
    }


    .project-details,
    .analysis-grid {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .project-description p {

        font-size: 15px;
    }


    .professional-links-section {

        padding:
            55px 7%;

        margin-bottom:
            100px;
    }


    .professional-links-section h2 {

        font-size:
            14vw;

        letter-spacing:
            -3px;

        margin-bottom:
            50px;
    }


    .skills-section::after {

        font-size:
            130px;

        bottom:
            -30px;
    }

}

.skills-grid span {

    transition:
        color 0.3s ease;
}


.skills-grid span:hover {

    color: #111111;
}

/* =========================================
   HOMEPAGE
========================================= */

.new-welcome {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background: #111111;

    color: #F4F2ED;

    padding:
        30px
        5%
        35px;

}


/* =========================================
   BACKGROUND
========================================= */

.home-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    background-image:

        linear-gradient(
            rgba(244, 242, 237, 0.8)
            1px,
            transparent
            1px
        ),

        linear-gradient(
            90deg,
            rgba(244, 242, 237, 0.8)
            1px,
            transparent
            1px
        );

    background-size:
        70px 70px;

}


.home-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.home-orb-one {

    width: 420px;

    height: 420px;

    top: -250px;

    right: 8%;

    background:
        radial-gradient(
            circle,
            rgba(49, 87, 213, 0.28),
            transparent 70%
        );

}


.home-orb-two {

    width: 500px;

    height: 500px;

    bottom: -350px;

    left: -120px;

    background:
        radial-gradient(
            circle,
            rgba(108, 140, 255, 0.13),
            transparent 70%
        );

}


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

.home-header {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.55);

}


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

.home-hero {

    position: relative;

    z-index: 2;

    min-height: 52vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-top: 40px;

}


/* =========================================
   NAME
========================================= */

.home-name {

    margin: 0;

    font-family:
        "Bungee",
        sans-serif;

    font-size:
        clamp(95px, 15vw, 220px);

    line-height: 0.85;

    font-weight: 400;

    letter-spacing:
        -3px;

    color: #F4F2ED;

    position: relative;

    z-index: 2;

}


.home-name::after {

    content: "";

    position: absolute;

    left: 1%;

    bottom: -22px;

    width: 125px;

    height: 4px;

    background: #3157D5;

}


/* =========================================
   GREETING
========================================= */

.home-greeting {

    margin:

        48px
        0
        0
        7%;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        clamp(22px, 3vw, 42px);

    font-weight: 500;

    letter-spacing:
        -1px;

    color:
        rgba(244, 242, 237, 0.72);

}


.home-greeting span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        1.15em;

    font-style: italic;

    font-weight: 700;

    color: #3157D5;

}


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

.home-intro-line {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 45px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #6C8CFF;

}


.home-intro-line div {

    width: 140px;

    height: 1px;

    background:
        rgba(49, 87, 213, 0.6);

}


/* =========================================
   WHERE SHALL WE BEGIN
========================================= */

.home-begin {

    position: relative;

    z-index: 2;

    margin-top: 30px;

}


.begin-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 18px;

}


.begin-heading p {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(30px, 3.5vw, 52px);

    font-style: italic;

    font-weight: 600;

}


.begin-heading span {

    margin-bottom: 7px;

    font-size: 8px;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.45);

}


/* =========================================
   CHOICES
========================================= */

.home-choices {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.25);

}


.home-choice {

    position: relative;

    min-height: 250px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: #F4F2ED;

    text-decoration: none;

    overflow: hidden;

    transition:

        background 0.45s ease,
        color 0.45s ease,
        padding 0.45s ease;

}


.home-choice + .home-choice {

    border-left:
        1px solid
        rgba(244, 242, 237, 0.25);

}


.home-choice::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #3157D5;

    transform:
        translateY(101%);

    transition:
        transform 0.45s
        cubic-bezier(0.22, 1, 0.36, 1);

    z-index: -1;

}


.home-choice:hover::before {

    transform:
        translateY(0);

}


.home-choice:hover {

    color: #111111;

    padding-top: 35px;

}


.home-choice-number {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #6C8CFF;

    transition:
        color 0.45s ease;

}


.home-choice:hover .home-choice-number {

    color: #111111;

}


.home-choice-content {

    position: relative;

    z-index: 1;

}


.home-choice-label {

    display: block;

    margin-bottom: 12px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    opacity: 0.65;

}


.home-choice h2 {

    margin: 0 0 12px;

    font-size:
        clamp(50px, 6vw, 90px);

    line-height: 0.85;

    letter-spacing: -5px;

}


.home-choice p {

    max-width: 270px;

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    opacity: 0.65;

}


.home-choice-arrow {

    position: absolute;

    right: 28px;

    bottom: 25px;

    font-size: 30px;

    transition:
        transform 0.45s ease;

}


.home-choice:hover .home-choice-arrow {

    transform:
        translate(6px, -6px);

}


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

.new-welcome-footer {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.15);

    font-size: 9px;

    letter-spacing: 1.5px;

    color:
        rgba(244, 242, 237, 0.4);

}


/* =========================================
   HOMEPAGE ANIMATION
========================================= */

.new-welcome .reveal {

    opacity: 0;

    transform:
        translateY(25px);

    animation:
        newHomeReveal
        1s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;

}


.new-welcome .home-header {

    animation-delay:
        0.05s;

}


.new-welcome .home-name {

    animation-delay:
        0.18s;

}


.new-welcome .home-greeting {

    animation-delay:
        0.32s;

}


.new-welcome .home-intro-line {

    animation-delay:
        0.45s;

}


.new-welcome .home-begin {

    animation-delay:
        0.6s;

}


.new-welcome .new-welcome-footer {

    animation-delay:
        0.75s;

}


@keyframes newHomeReveal {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {


    .new-welcome {

        padding:
            25px
            5%
            30px;

    }


    .home-role {

        display: none;

    }


    .home-hero {

        min-height:
            48vh;

        padding-top:
            20px;

    }


    .home-name {

        font-size:
            23vw;

        letter-spacing:
            -2px;

    }


    .home-name::after {

        bottom:
            -13px;

        height:
            3px;

        width:
            80px;

    }


    .home-greeting {

        margin:

            38px
            0
            0
            3%;

        font-size:
            5.5vw;

    }


    .home-intro-line {

        margin-top:
            35px;

    }


    .home-intro-line div {

        width:
            60px;

    }


    .home-begin {

        margin-top:
            35px;

    }


    .begin-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            8px;

    }


    .begin-heading span {

        margin-bottom:
            0;

    }


    .home-choices {

        grid-template-columns:
            1fr;

    }


    .home-choice {

        min-height:
            200px;

        padding:
            24px;

    }


    .home-choice + .home-choice {

        border-left:
            none;

        border-top:
            1px solid
            rgba(244, 242, 237, 0.25);

    }


    .home-choice h2 {

        font-size:
            20vw;

        letter-spacing:
            -6px;

    }


    .home-choice p {

        max-width:
            230px;

        font-size:
            12px;

    }


    .new-welcome-footer {

        margin-top:
            30px;

    }

}

/* =========================================
   NEW HOMEPAGE IDENTITY
========================================= */

.home-identity {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    margin-left: 7%;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #6C8CFF;

}


.home-identity .identity-divider {

    color: rgba(244, 242, 237, 0.25);

}


/* =========================================
   HOMEPAGE SMALL CAROUSEL
========================================= */

.home-main-row {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.home-carousel {

    position: absolute;

    top: 50%;

    right: 0;

    transform: translateY(-50%);

    width: min(390px, 34vw);

    flex-shrink: 0;

    z-index: 5;

}


.home-carousel-track {

    position: relative;

    width: 100%;

    height: 245px;

}


.home-carousel-photo {

    position: absolute;

    top: 0;

    left: 50%;

    width: 150px;

    height: 210px;

    padding: 0;

    border: none;

    border-radius: 7px;

    overflow: hidden;

    background: #222222;

    cursor: pointer;

    transform-origin: center;

    opacity: 0;

    pointer-events: none;

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, 0.35);

    transition:

        transform 0.55s
        cubic-bezier(0.22, 1, 0.36, 1),

        opacity 0.4s ease,

        filter 0.4s ease,

        box-shadow 0.4s ease;

}


.home-carousel-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* ACTIVE / CENTER PHOTO */

.home-carousel-photo.is-active {

    transform:
        translateX(-50%)
        scale(1);

    opacity: 1;

    z-index: 3;

    pointer-events: auto;

}


/* LEFT PEEKING PHOTO */

.home-carousel-photo.is-left {

    transform:
        translateX(-150%)
        translateY(14px)
        scale(0.78)
        rotate(-6deg);

    opacity: 0.55;

    z-index: 2;

    pointer-events: auto;

    filter: brightness(0.72);

}


/* RIGHT PEEKING PHOTO */

.home-carousel-photo.is-right {

    transform:
        translateX(50%)
        translateY(14px)
        scale(0.78)
        rotate(6deg);

    opacity: 0.55;

    z-index: 2;

    pointer-events: auto;

    filter: brightness(0.72);

}


/* FARTHER PHOTOS */

.home-carousel-photo.is-hidden {

    transform:
        translateX(-50%)
        scale(0.5);

    opacity: 0;

    z-index: 1;

    pointer-events: none;

}


/* =========================================
   CAROUSEL CONTROLS
========================================= */

.home-carousel-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: -8px;

}


.home-carousel-arrow {

    width: 34px;

    height: 34px;

    border:

        1px solid
        rgba(244, 242, 237, 0.28);

    border-radius: 50%;

    background: transparent;

    color: #F4F2ED;

    font-size: 14px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:

        background 0.3s ease,

        color 0.3s ease,

        transform 0.3s ease,

        border-color 0.3s ease;

}


.home-carousel-arrow:hover {

    background: #3157D5;

    border-color: #3157D5;

    color: #F4F2ED;

    transform: scale(1.08);

}


.home-carousel-counter {

    min-width: 48px;

    text-align: center;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    color:
        rgba(244, 242, 237, 0.48);

}


/* =========================================
   SMALL CAROUSEL HOVER
========================================= */

.home-carousel:hover
.home-carousel-photo.is-active {

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.48);

}


.home-carousel-photo.is-left:hover {

    opacity: 0.8;

    filter: brightness(0.9);

}


.home-carousel-photo.is-right:hover {

    opacity: 0.8;

    filter: brightness(0.9);

}


/* =========================================
   HOMEPAGE MOBILE CAROUSEL
========================================= */

@media (max-width: 700px) {


    .home-main-row {

        flex-direction: column;

        align-items: flex-start;

        gap: 28px;

    }


    .home-carousel {

        width: 100%;

        max-width: 340px;

        align-self: center;

    }


    .home-carousel-track {

        height: 255px;

    }


    .home-carousel-photo {

        width: 165px;

        height: 225px;

    }


    .home-carousel-photo.is-left {

        transform:
            translateX(-135%)
            translateY(12px)
            scale(0.72)
            rotate(-5deg);

    }


    .home-carousel-photo.is-right {

        transform:
            translateX(35%)
            translateY(12px)
            scale(0.72)
            rotate(5deg);

    }


    .home-carousel-controls {

        margin-top: -5px;

    }


}

/* =========================================
   HOMEPAGE PHOTO LIGHTBOX
========================================= */

.home-lightbox {

    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    background:
        rgba(10, 10, 10, 0.94);

    z-index: 9999;

}


.home-lightbox.is-open {

    display: flex;

}


.home-lightbox-content {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    max-width: min(75vw, 650px);

    max-height: 85vh;

}


.home-lightbox-image {

    display: block;

    max-width: 100%;

    max-height: 75vh;

    object-fit: contain;

    border-radius: 8px;

}


.home-lightbox-close {

    position: absolute;

    top: 25px;

    right: 30px;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    color: #F4F2ED;

    font-size: 35px;

    cursor: pointer;

    z-index: 2;

}


.home-lightbox-prev,
.home-lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;

    height: 45px;

    border:

        1px solid
        rgba(244, 242, 237, 0.35);

    border-radius: 50%;

    background: transparent;

    color: #F4F2ED;

    font-size: 20px;

    cursor: pointer;

}


.home-lightbox-prev {

    left: 6%;

}


.home-lightbox-next {

    right: 6%;

}


.home-lightbox-counter {

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.6);

}


/* MOBILE */

@media (max-width: 700px) {

    .home-lightbox-content {

        max-width: 78vw;

    }


    .home-lightbox-close {

        top: 15px;

        right: 15px;

    }


    .home-lightbox-prev {

        left: 15px;

    }


    .home-lightbox-next {

        right: 15px;

    }

}

/* =========================================
   SECTION NAVIGATION BAR
========================================= */

html {

    scroll-behavior: smooth;

}


/* =========================================
   FIX STICKY BEHAVIOUR
========================================= */

.work-page,
.acting-page {

    overflow: visible;

}


.work-body,
.acting-body {

    overflow-x: hidden;

}


/* =========================================
   BASE NAVIGATION BAR
========================================= */

.section-nav {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    padding:
        16px
        5%;

    box-sizing: border-box;

    overflow: visible;

    background:
        rgba(16, 24, 32, 0.55);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-top:
        1px solid
        rgba(244, 242, 237, 0.08);

    border-bottom:
        1px solid
        rgba(244, 242, 237, 0.10);

}


/* =========================================
   NAVIGATION CONTENT
========================================= */

.section-nav-inner {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 26px;

    width: 100%;

    overflow-x: auto;

    scrollbar-width: none;

    opacity: 0;

    animation:
        navLinksAppear
        0.45s
        ease
        0.45s
        forwards;

}


.section-nav-inner::-webkit-scrollbar {

    display: none;

}


/* =========================================
   NAVIGATION LINKS
========================================= */

.section-nav a {

    position: relative;

    flex-shrink: 0;

    padding:
        5px
        0
        8px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    text-decoration: none;

    color:
        rgba(244, 242, 237, 0.55);

    transition:
        color 0.25s ease;

}


.section-nav a:hover {

    color: #F4F2ED;

}


.section-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 1px;

    width: 100%;

    height: 2px;

    background: #3157D5;

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;

}


.section-nav a:hover::after {

    transform: scaleX(1);

}


/* =========================================
   OPENING ANIMATION
========================================= */

.section-nav::before {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -1px;

    width: 0;

    height: 1px;

    background:
        rgba(244, 242, 237, 0.25);

    transform:
        translateX(-50%);

    animation:
        navOpen
        0.7s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.1s
        forwards;

}


@keyframes navOpen {

    from {

        width: 0;

    }

    to {

        width: 100%;

    }

}


@keyframes navLinksAppear {

    from {

        opacity: 0;

        transform:
            translateY(6px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================
   WORK NAV
========================================= */

.work-section-nav {

    position: sticky;

    top: 0;

    background: transparent;

}


/* =========================================
   ACTING NAV
========================================= */

.acting-section-nav {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: transparent;

}


/* =========================================
   SCROLL POSITION
========================================= */

#about,
#headshots,
#focus,
#education,
#experience,
#credits,
#reels,
#representation,
#projects,
#skills,
#organizations,
#profiles,
#contact {

    scroll-margin-top: 70px;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .section-nav {

        padding:
            13px
            5%;

    }


    .section-nav-inner {

        justify-content: flex-start;

        gap: 22px;

        padding-bottom: 2px;

    }


    .section-nav a {

        font-size: 8px;

        letter-spacing: 1.2px;

    }

}

/* =========================================
   ACTING ABOUT + HEADSHOTS
========================================= */

.acting-about-headshots {

    max-width:
        1500px;

    margin:
        0 auto 180px;

    padding-top:
        40px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.2);

    display:
        grid;

    grid-template-columns:
        minmax(320px, 0.8fr)
        minmax(0, 1.2fr);

    gap:
        clamp(60px, 9vw, 150px);

    align-items:
        center;

}


/* =========================================
   HEADSHOTS SIDE
========================================= */

.acting-headshots-side {

    min-width: 0;

}


.headshots-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;

}


.headshots-heading
.acting-section-label {

    margin-bottom: 0;

}


.headshots-counter {

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.45);

}


/* =========================================
   HEADSHOT STACK
========================================= */

.headshots-stack {

    position: relative;

    width: min(100%, 380px);

    height: 450px;

    margin: 0 auto;

}


.headshot-button {

    position: absolute;

    width: 230px;

    height: 340px;

    padding: 0;

    border: none;

    border-radius: 10px;

    overflow: hidden;

    background: #111111;

    cursor: pointer;

    box-shadow:
        0
        20px
        55px
        rgba(0, 0, 0, 0.35);

    transition:
        transform 0.5s
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;

}


.headshot-button img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;

}


/* BACK HEADSHOT */

.headshot-button:nth-child(1) {

    left: 0;

    top: 45px;

    z-index: 1;

    transform:
        rotate(-10deg);

}


/* MIDDLE HEADSHOT */

.headshot-button:nth-child(2) {

    left: 50%;

    top: 0;

    z-index: 2;

    transform:
        translateX(-50%)
        rotate(2deg);

}


/* FRONT HEADSHOT */

.headshot-button:nth-child(3) {

    right: 0;

    top: 45px;

    z-index: 3;

    transform:
        rotate(10deg);

}


/* =========================================
   HEADSHOT HOVER
========================================= */

.headshots-stack:hover
.headshot-button:nth-child(1) {

    transform:
        translateX(-35px)
        translateY(15px)
        rotate(-16deg);

}


.headshots-stack:hover
.headshot-button:nth-child(2) {

    transform:
        translateX(-50%)
        translateY(-20px)
        rotate(0deg);

}


.headshots-stack:hover
.headshot-button:nth-child(3) {

    transform:
        translateX(35px)
        translateY(15px)
        rotate(16deg);

}


.headshot-button:hover {

    z-index: 10 !important;

}


.headshot-button:hover img {

    transform:
        scale(1.05);

}


.headshot-button:focus-visible {

    outline:
        2px solid
        #6C8CFF;

    outline-offset:
        5px;

}


.headshots-hint {

    margin-top: 18px;

    text-align: center;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color:
        rgba(244, 242, 237, 0.4);

}


/* =========================================
   ABOUT SIDE
========================================= */

.acting-about-side {

    min-width: 0;

}


.acting-about-side
.acting-section-number {

    margin-bottom: 35px;

}


.acting-about-side h2 {

    font-size:
        clamp(55px, 6vw, 95px);

    font-weight: 600;

    letter-spacing:
        -5px;

    line-height: 0.88;

    margin-bottom: 45px;

}


.acting-about-side h2 span {

    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-style: italic;

    font-weight: 600;

    color: #6C8CFF;

    letter-spacing:
        -2px;

}


/* =========================================
   HEADSHOT MODAL
========================================= */

.headshot-modal {

    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background:
        rgba(8, 12, 16, 0.92);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.headshot-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.headshot-modal img {

    max-width: min(700px, 90vw);

    max-height: 85vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0
        30px
        100px
        rgba(0, 0, 0, 0.55);

    transform:
        scale(0.96);

    transition:
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1);

}


.headshot-modal.active img {

    transform:
        scale(1);

}


.headshot-modal-close {

    position: fixed;

    top: 25px;

    right: 5%;

    z-index: 10001;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background:
        rgba(244, 242, 237, 0.1);

    color: #F4F2ED;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.headshot-modal-close:hover {

    background:
        rgba(49, 87, 213, 0.8);

    transform:
        rotate(90deg);

}


/* =========================================
   REPRESENTATION BLUE SECTION
========================================= */

.representation-section {

    max-width: none;

    width: 100%;

    margin:
        0
        0
        180px;

    padding:
        100px
        max(6%, calc((100% - 1500px) / 2));

    background: #3157D5;

    color: #F4F2ED;

    border-top: none;

    display:
        grid;

    grid-template-columns:
        120px 1fr;

    gap: 70px;

}


.representation-section
.acting-section-number {

    color: #101820;

}


.representation-section
.acting-section-label {

    color: #101820;

}


.representation-section h2 span {

    color: #F4F2ED;

}


.representation-details {

    max-width: 950px;

    border-top:
        1px solid
        rgba(244, 242, 237, 0.4);

    border-bottom:
        1px solid
        rgba(244, 242, 237, 0.4);

}


.representation-details p {

    color:
        rgba(244, 242, 237, 0.7);

    opacity: 1;

}


.representation-section
.acting-link {

    color: #F4F2ED;

    border-bottom:
        1px solid
        rgba(244, 242, 237, 0.8);

}


/* =========================================
   CONTACT ICONS
========================================= */

.acting-contact-links a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

}


.contact-link-content {

    display: inline-flex;

    align-items: center;

    gap: 8px;

}


.contact-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 18px;

    height: 18px;

    font-size: 11px;

    line-height: 1;

    color: #6C8CFF;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.contact-imdb {

    font-size: 8px;

    font-weight: 700;

    letter-spacing: -0.5px;

}


.acting-contact-links a:hover
.contact-icon {

    color: #F4F2ED;

    transform:
        scale(1.12);

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .acting-about-headshots {

        grid-template-columns:
            1fr;

        gap: 70px;

    }


    .acting-headshots-side {

        max-width: 480px;

        width: 100%;

        margin: 0 auto;

    }


    .acting-about-side {

        max-width: 850px;

    }


    .representation-section {

        grid-template-columns:
            1fr;

        gap: 40px;

        padding:
            80px
            5%;

    }

}


@media (max-width: 600px) {

    .headshots-stack {

        width: 100%;

        height: 390px;

    }


    .headshot-button {

        width: 190px;

        height: 290px;

    }


    .headshot-button:nth-child(1) {

        left: -5px;

    }


    .headshot-button:nth-child(3) {

        right: -5px;

    }


    .acting-about-side h2 {

        font-size: 16vw;

        letter-spacing: -4px;

    }


    .headshot-modal {

        padding: 20px;

    }


    .headshot-modal-close {

        top: 15px;

        right: 5%;

    }


    .contact-link-content {

        gap: 7px;

    }

}

/* =========================================
   FINAL ACTING PAGE LAYOUT FIX
========================================= */

/* ABOUT + HEADSHOTS */

.acting-about-headshots {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: clamp(50px, 7vw, 120px);

}


/* HEADSHOTS */

.acting-headshots-side {

    width: 100%;

    min-width: 0;

}


.headshot-carousel {

    width: 100%;

    max-width: 430px;

    margin: 28px auto 0;

    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr)
        38px;

    align-items: center;

    gap: 14px;

}


.headshot-main {

    width: 100%;

    height: 440px;

    min-width: 0;

    padding: 0;

    border: none;

    border-radius: 8px;

    overflow: hidden;

    background: transparent;

    cursor: pointer;

}


.headshot-main img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;

}


.headshot-main:hover img {

    transform: scale(1.02);

}


.headshot-arrow {

    width: 34px;

    height: 34px;

    padding: 0;

    border:
        1px solid
        rgba(244, 242, 237, 0.35);

    border-radius: 50%;

    background: transparent;

    color: #F4F2ED;

    font-size: 14px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;

}


.headshot-arrow:hover {

    background: #3157D5;

    border-color: #3157D5;

    transform: scale(1.06);

}


.headshots-hint {

    margin-top: 18px;

    text-align: center;

}


/* =========================================
   REMOVE OLD EMPTY NUMBER COLUMN
   THIS FIXES THE SHIFTED SECTIONS
========================================= */

.acting-credits,
.reels-section,
.representation-section {

    display: block;

}


.acting-content-wide,
.reels-content,
.representation-content {

    width: 100%;

    max-width: none;

}


/* CONTACT ICONS */

.contact-custom-icon {

    width: 16px;

    height: 16px;

    object-fit: contain;

    display: block;

    flex: 0 0 16px;

}


/* =========================================
   HEADSHOT MODAL
========================================= */

.headshot-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(10, 10, 10, 0.92);

}


.headshot-modal.active {

    display: flex;

}


.headshot-modal img {

    max-width: 90vw;

    max-height: 88vh;

    object-fit: contain;

}


.headshot-modal-close {

    position: fixed;

    top: 25px;

    right: 30px;

    border: none;

    background: transparent;

    color: #F4F2ED;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .acting-about-headshots {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .acting-headshots-side {

        max-width: 440px;

        margin: 0 auto;

    }

}


@media (max-width: 600px) {

    .headshot-carousel {

        max-width: 350px;

        grid-template-columns:
            30px
            minmax(0, 1fr)
            30px;

        gap: 10px;

    }


    .headshot-main {

        height: 380px;

    }


    .headshot-arrow {

        width: 30px;

        height: 30px;

        font-size: 12px;

    }


    .contact-custom-icon {

        width: 14px;

        height: 14px;

        flex-basis: 14px;

    }

}

/* =========================================
   FINAL HOMEPAGE FIXES
========================================= */

/* Stop the white strip at the bottom */
html,
body {
    margin: 0;
    min-height: 100%;
    background: #111111;
}

body {
    overflow-x: hidden;
}

.new-welcome {
    min-height: 100svh;
    background: #111111;
    overflow-x: hidden;
}


/* =========================================
   DESKTOP: NAME + PHOTOS SIDE BY SIDE
========================================= */

.home-main-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.home-carousel {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(390px, 34vw);
    flex-shrink: 0;
    z-index: 5;
}

.home-carousel-track {
    position: relative;
    width: 100%;
    height: 245px;
}

.home-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: -8px;
}


/* =========================================
   MOBILE: PHOTO UNDER THE IDENTITY
========================================= */

@media (max-width: 700px) {

    .new-welcome {
        min-height: 100svh;
        padding-bottom: 35px;
    }

    .home-main-row {
        display: block;
    }

    .home-name {
        font-size: clamp(72px, 20vw, 110px);
    }

    /* Keep the photos in their own space */
    .home-carousel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;

        width: 100%;
        max-width: 330px;

        margin: 28px auto 0;
    }

    .home-carousel-track {
        height: 225px;
    }

    .home-carousel-photo {
        width: 145px;
        height: 205px;
    }

    .home-carousel-photo.is-left {
        transform:
            translateX(-145%)
            translateY(10px)
            scale(0.72)
            rotate(-5deg);
    }

    .home-carousel-photo.is-right {
        transform:
            translateX(45%)
            translateY(10px)
            scale(0.72)
            rotate(5deg);
    }

    .home-carousel-controls {
        margin-top: -2px;
    }

    .home-carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* Text stays BELOW the carousel */
    .home-identity {
        position: relative;
        z-index: 2;
        margin-top: 18px;
    }

    .home-greeting {
        position: relative;
        z-index: 2;
        margin-top: 28px;
    }

    .home-intro-line {
        position: relative;
        z-index: 2;
    }
}