/* =========================
   ABOUT ALEKSANDR
   ========================= */

.about-page {
    display: block;
    min-height: 100vh;
    margin: 0;
    background: #111;
    color: #f2f2f2;
}

.about-header {
    min-height: 560px;
    padding: 40px 7vw 60px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.90) 0%,
            rgba(10, 10, 10, 0.68) 38%,
            rgba(10, 10, 10, 0.30) 72%,
            rgba(10, 10, 10, 0.16) 100%
        ),
        url("images/foto_studio_v2.jpg");

    background-size: cover;
    background-position: center 88%;
    background-repeat: no-repeat;
    background-color: #111;
}
.about-back {
    color: #b5b0a8;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 0.2em;

    transition: color 0.2s;
}

.about-back:hover {
    color: #ffffff;
}

.about-heading {
    padding-top: 70px;
}

.about-surname {
    margin-bottom: 8px;

    font-size: clamp(22px, 3vw, 42px);
    font-weight: 300;
    letter-spacing: 0.28em;

    color: #d0d0d0;

    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.about-name {
    margin: 0;

    font-size: clamp(68px, 13vw, 190px);
    line-height: 0.82;

    font-weight: 700;
    letter-spacing: 0.08em;

    color: #f5f5f5;

    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.75);
}

.about-role {
    margin-top: 35px;

    font-size: clamp(16px, 2.2vw, 28px);
    font-weight: 300;

    color: #e0e0e0;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.about-role span {
    padding: 0 10px;
    color: #d31f2b;
}

.about-imdb,
.about-imdb:link,
.about-imdb:visited,
.about-imdb:active {
    display: inline-block;

    margin-top: 20px;

    color: #e6c34a !important;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    border-bottom: 2px solid #e6c34a;
    padding-bottom: 4px;

    transition: 0.2s;
}

.about-imdb:hover {
    color: #ffffff !important;
    border-color: #ffffff;
}


/* CONTENT */

.about-content {
    width: min(1200px, 86vw);
    margin: 0 auto;

    padding: 100px 0;
}

.about-intro {
    display: grid;

    grid-template-columns: 220px 1fr;
    gap: 60px;

    margin-bottom: 120px;
}

.section-title {
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.18em;
    color: #f2f2f2;
}

.intro-text {
    max-width: 800px;
}

.intro-text p,
.about-block p,
.wide-text {
    color: #aaa;

    font-size: 17px;
    line-height: 1.7;
}

.intro-text .lead {
    margin-top: 0;

    color: #ddd;

    font-size: clamp(22px, 2.4vw, 33px);
    line-height: 1.4;
}

.intro-text strong {
    color: #fff;
}


/* TWO COLUMNS */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    margin-bottom: 120px;
}

.about-block {
    border-top: 1px solid #444;
    padding-top: 25px;
}


/* RED SKILL BARS */

.skill {
    margin-top: 28px;
}

.skill span {
    display: block;

    padding-bottom: 10px;

    border-bottom: 4px solid #c81d29;

    font-size: 16px;
    font-weight: 600;
}


/* NUMBERS */

.fact {
    display: flex;
    align-items: baseline;
    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #333;
}

.fact strong {
    min-width: 100px;

    font-size: clamp(38px, 5vw, 70px);
    line-height: 1;

    color: #fff;
}

.fact span {
    color: #999;

    font-size: 15px;
}


/* SECTIONS */

.about-section {
    margin-bottom: 110px;

    padding-top: 25px;

    border-top: 1px solid #444;
}

.large-list {
    margin-top: 35px;

    max-width: 1000px;

    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.55;
}

.large-list span {
    color: #c81d29;
    padding: 0 7px;
}

.section-note {
    margin-top: 20px;

    color: #666;

    font-size: 12px;
    letter-spacing: 0.2em;

    text-transform: uppercase;
}
/* Selected Sound Design Works */

.selected-work-section {
    width: 100%;
    padding: 70px 6% 100px;
    box-sizing: border-box;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.selected-work-title {
    max-width: 1000px;
    margin: 0 auto 30px;

    font-size: 20px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    text-align: center;
}

.selected-work-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    gap: 36px;

    max-width: 1000px;
    margin: 0 auto;

    align-items: center;
}

.selected-work-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.selected-work-horizontal {
    width: 100%;
}

.selected-work-horizontal video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.selected-work-vertical {
    width: 100%;
    max-width: 300px;
    justify-self: center;
}

.selected-work-vertical video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}
/* CONTACT */

.about-contact {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    margin-top: 150px;
    padding-top: 35px;

    border-top: 4px solid #c81d29;
}

.about-contact a {
    display: inline-block;

    margin-top: 25px;

    color: #eee;
    text-decoration: none;

    font-size: clamp(20px, 3vw, 38px);
}

.about-contact a:hover {
    color: #c81d29;
}

.contact-location {
    color: #777;

    font-size: 14px;
    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 750px) {

    .about-header {
        min-height: 420px;
        padding: 28px 24px 40px;

        background-position: center 55%;
    }

    .about-heading {
        padding-top: 45px;
    }

    .about-name {
        font-size: clamp(58px, 19vw, 100px);
    }

    .about-role {
        line-height: 1.6;
    }

    .about-role span {
        display: none;
    }

    .about-content {
        width: auto;
        margin: 0 24px;

        padding: 70px 0;
    }

    .about-intro,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-intro,
    .about-grid,
    .about-section {
        margin-bottom: 80px;
    }

    .about-contact {
        flex-direction: column;
        align-items: flex-start;

        gap: 40px;
    }
}

/* SHOWREEL */

.showreel-section {
    width: min(980px, 82vw);
    margin: 0 auto;
    padding: 80px 0 70px;
}

.showreel-label {
    margin-bottom: 30px;

    font-size: 20px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    text-align: center;
}
.showreel-video {
    width: 100%;
    background: #000;
}

.showreel-video video {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 2px;
}
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    margin-top: 25px;
}

.contact-links a {
    margin-top: 0;
}
@media (max-width: 900px) {

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

    .selected-work-left {
        grid-template-rows: auto;
    }

    .selected-work-vertical {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }
}