/* ==========================================================
   GABRIEL PABLO AXARLIAN, PhD
   PERSONAL WEBSITE
   MASTER STYLESHEET
   ========================================================== */


/* ==========================================================
   1. RESET
   ========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #050607;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* ==========================================================
   2. HEADER
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    padding: 28px 6%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.58) 55%,
            rgba(0, 0, 0, 0) 100%
        );
}

.actor-page .site-header {
    background: rgba(3, 4, 5, 0.96);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(8px);
}

.logo {
    font-size: 1rem;
    font-weight: 700;

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

    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav a {
    position: relative;

    font-size: 0.78rem;
    font-weight: 500;

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

    opacity: 0.8;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active-nav {
    opacity: 1;
}

.main-nav a:hover {
    transform: translateY(-2px);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #ffffff;

    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active-nav::after {
    width: 100%;
}




/* ==========================================================
   INSTAGRAM NAV LINK
   ========================================================== */

.main-nav .instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    width: 22px;
    height: 22px;

    opacity: 0.8;
}

.main-nav .instagram-link:hover {
    opacity: 1;
}

.main-nav .instagram-link::after {
    display: none;
}

.instagram-icon {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   3. GENERAL HERO
   ========================================================== */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 8% 70px;

    overflow: hidden;
}

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 760px;
}

.hero h1 {
    margin: 0;

    font-size: clamp(3.8rem, 6vw, 7rem);
    font-weight: 700;

    line-height: 0.9;
    letter-spacing: -0.05em;

    text-transform: uppercase;

    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero p {
    margin-top: 28px;

    max-width: 760px;

    font-size: 0.94rem;
    line-height: 1.8;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.82);
}


/* ==========================================================
   4. HOMEPAGE
   ========================================================== */

.home-page {
    background: #050607;
}

.home-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 700px;

    padding-left: 9%;
    padding-right: 6%;

    background: #050607;

    overflow: hidden;
}


/* HOMEPAGE PORTRAIT */

.home-portrait {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 58%;

    overflow: hidden;

    z-index: 1;

    background-image: url("../images/home-hero.jpg");
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
}


/* PORTRAIT / TEXT TRANSITION */

.portrait-fade {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            rgba(5, 6, 7, 1) 0%,
            rgba(5, 6, 7, 0.99) 10%,
            rgba(5, 6, 7, 0.91) 22%,
            rgba(5, 6, 7, 0.67) 35%,
            rgba(5, 6, 7, 0.34) 48%,
            rgba(5, 6, 7, 0.10) 61%,
            rgba(5, 6, 7, 0) 75%
        );
}


/* HOMEPAGE TEXT */

.home-hero-content {
    position: relative;

    z-index: 10;

    width: 56%;
    max-width: 760px;

    transform: translateY(18px);
}

.home-hero h1 {
    font-size: clamp(3.8rem, 5.8vw, 6.6rem);

    line-height: 0.88;

    letter-spacing: -0.055em;
}

.home-roles {
    margin-top: 30px;

    max-width: 660px;

    font-size: 0.88rem;

    line-height: 1.8;

    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.82);
}

.home-roles span {
    margin-left: 5px;
    margin-right: 5px;

    opacity: 0.45;
}


/* ==========================================================
   5. GENERAL SECTION STYLES
   ========================================================== */

.section {
    padding: 110px 8%;
}

.section.light {
    background: #f0f0ee;
    color: #111111;
}

.section h2 {
    margin-bottom: 30px;

    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 700;

    line-height: 0.98;
    letter-spacing: -0.04em;
}

.section-heading {
    margin-bottom: 50px;
}

.section-intro {
    max-width: 760px;

    margin-top: 12px;

    font-size: 1rem;

    color: rgba(255, 255, 255, 0.56);
}

.eyebrow {
    margin-bottom: 18px !important;

    font-size: 0.7rem !important;
    font-weight: 600 !important;

    letter-spacing: 0.24em !important;
    line-height: 1.5 !important;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.52) !important;
}

.dark-eyebrow {
    color: rgba(0, 0, 0, 0.46) !important;
}


/* ==========================================================
   6. BUTTON
   ========================================================== */

.button {
    display: inline-block;

    margin-top: 20px;

    padding: 15px 29px;

    border: 1px solid currentColor;

    font-size: 0.76rem;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

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

.button:hover {
    background: #ffffff;
    color: #000000;

    transform: translateY(-2px);
}


/* ==========================================================
   7. VIDEO WRAPPER
   ========================================================== */

.video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000000;
}

.video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================================
   8. ACTOR HERO
   ========================================================== */

.actor-hero {
    min-height: 92vh;

    background-color: #030405;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 4, 5, 1) 0%,
            rgba(3, 4, 5, 1) 28%,
            rgba(3, 4, 5, 0.94) 38%,
            rgba(3, 4, 5, 0.72) 48%,
            rgba(3, 4, 5, 0.30) 61%,
            rgba(3, 4, 5, 0.04) 74%
        ),

        radial-gradient(
            ellipse at 78% 46%,
            rgba(90, 90, 90, 0.12) 0%,
            rgba(20, 20, 20, 0.04) 42%,
            rgba(0, 0, 0, 0) 68%
        ),

        url("../images/Actor/actor-hero.jpeg");

    background-size:
        100% 100%,
        100% 100%,
        auto 92%;

    background-position:
        center,
        center,
        88% bottom;

    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
}

.actor-hero .hero-content {
    width: 44%;
    max-width: 620px;
}

.actor-hero h1 {
    font-size: clamp(5rem, 8vw, 8.5rem);

    line-height: 0.82;
}

.actor-hero .hero-subtitle {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.72);
}


/* ==========================================================
   9. PRIMARY ACTOR VIDEOS
   ========================================================== */

.actor-primary-section {
    background: #090b0d;
}

.primary-video-grid {
    display: grid;

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

    gap: 36px;

    max-width: 1400px;

    margin: 0 auto;
}

.primary-video-card {
    min-width: 0;

    padding: 28px;

    background: #111315;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.25);
}

.video-number {
    margin-bottom: 10px;

    font-size: 0.72rem;

    letter-spacing: 0.18em;

    color: rgba(255, 255, 255, 0.34);
}

.video-label {
    margin-bottom: 6px;

    font-size: 0.65rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.42);
}

.primary-video-card h3 {
    margin-bottom: 24px;

    font-size: 1.7rem;

    line-height: 1.1;
}

.video-description {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.92rem;

    line-height: 1.7;
}


/* ==========================================================
   10. MARIO LOPEZ FEATURE
   ========================================================== */

.actor-scene-section {
    background: #030405;
}

.featured-project {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);

    gap: 70px;

    align-items: center;
}

.featured-project-copy h2 {
    font-size: clamp(3rem, 5vw, 5.5rem);

    line-height: 0.9;

    text-transform: uppercase;
}

.featured-project-copy > p:last-child {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 1rem;

    line-height: 1.8;
}

.featured-project-video {
    padding: 10px;

    background: #0d0f11;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.48);
}


/* ==========================================================
   11. DOMINO'S LIVE PERFORMANCE
   ========================================================== */

.live-performance-section {
    padding-top: 95px;
    padding-bottom: 95px;

    background:
        linear-gradient(
            135deg,
            #151719 0%,
            #0b0d0f 54%,
            #050607 100%
        );
}

.live-performance-header {
    max-width: 1250px;

    margin: 0 auto 42px;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 65px;

    align-items: end;
}

.live-performance-header h2 {
    margin-bottom: 0;

    font-size: clamp(3.5rem, 6vw, 6.5rem);

    text-transform: uppercase;
}

.live-performance-intro {
    max-width: 620px;

    padding-bottom: 8px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 1.02rem;

    line-height: 1.8;
}

.live-performance-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(260px, 0.58fr)
        minmax(0, 1.42fr);

    gap: 65px;

    align-items: center;
}

.shorts-video {
    width: 100%;

    max-width: 330px;

    margin: 0 auto;
}

.vertical-video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    padding: 8px;

    background: #090909;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.50);
}

.vertical-video-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

.performance-story {
    max-width: 720px;
}

.performance-story p {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 0.98rem;

    line-height: 1.8;
}

.performance-story .story-lead {
    margin-bottom: 26px;

    padding-left: 22px;

    border-left:
        2px solid rgba(255, 255, 255, 0.28);

    font-size: 1.3rem;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.90);
}


/* ==========================================================
   12. ACTOR BIO
   ========================================================== */

.actor-bio-section {
    padding-top: 100px;
    padding-bottom: 100px;

    background: #f0f0ee;
}

.bio-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 85px;

    align-items: start;
}

.actor-bio-section h2 {
    margin-bottom: 0;

    font-size: clamp(3rem, 5.5vw, 6rem);

    line-height: 0.88;
}

.bio-copy {
    max-width: 720px;
}

.bio-copy p {
    margin-bottom: 20px;

    font-size: 1.05rem;

    line-height: 1.8;

    color: rgba(0, 0, 0, 0.68);
}

.bio-copy .bio-lead {
    font-size: 1.25rem;

    line-height: 1.65;

    color: rgba(0, 0, 0, 0.86);
}


/* ==========================================================
   13. RESUME
   ========================================================== */

.resume-section {
    background: #07090a;
}

.resume-panel {
    max-width: 1300px;

    margin: 0 auto;

    padding: 60px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 50px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    background:
        linear-gradient(
            120deg,
            #111416,
            #0b0d0f
        );
}

.resume-panel h2 {
    margin-bottom: 15px;
}

.resume-panel p {
    color: rgba(255, 255, 255, 0.58);
}


/* ==========================================================
   14. GENERAL GRID
   ========================================================== */

.grid {
    display: grid;

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

    gap: 25px;
}

.card {
    overflow: hidden;

    background: #181818;
}

.card img {
    width: 100%;
    height: 420px;

    object-fit: cover;
}

.card-info {
    padding: 20px;
}


/* ==========================================================
   15. FOOTER
   ========================================================== */

footer {
    padding: 50px 8%;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    background: #050607;

    color: rgba(255, 255, 255, 0.50);

    font-size: 0.82rem;
}


/* ==========================================================
   16. TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .site-header {
        padding: 22px 5%;
    }

    .logo {
        font-size: 0.84rem;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 0.67rem;
    }


    /* HOMEPAGE */

    .home-hero {
        padding-left: 7%;
    }

    .home-portrait {
        width: 62%;
    }

    .home-hero-content {
        width: 58%;
    }


    /* ACTOR */

    .actor-hero {
        background-size:
            100% 100%,
            100% 100%,
            auto 84%;

        background-position:
            center,
            center,
            96% bottom;
    }

    .actor-hero .hero-content {
        width: 48%;
    }

    .primary-video-grid {
        gap: 24px;
    }

    .featured-project {
        gap: 45px;
    }

    .live-performance-grid {
        gap: 45px;
    }

    .bio-grid {
        gap: 55px;
    }

}


/* ==========================================================
   17. MOBILE
   ========================================================== */

@media (max-width: 760px) {

    .site-header {
        position: absolute;

        padding: 20px 6%;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .actor-page .site-header {
        position: absolute;

        background:
            linear-gradient(
                to bottom,
                rgba(3, 4, 5, 0.98) 0%,
                rgba(3, 4, 5, 0.78) 65%,
                rgba(3, 4, 5, 0) 100%
            );

        border-bottom: 0;

        backdrop-filter: none;
    }

    .logo {
        white-space: normal;

        font-size: 0.78rem;
    }

    .main-nav {
        flex-wrap: wrap;

        gap: 10px 16px;
    }

    .main-nav a {
        font-size: 0.62rem;
    }


    .main-nav .instagram-link {
        width: auto;
        height: auto;

        gap: 7px;
    }

    .instagram-icon {
        width: 14px;
        height: 14px;
    }



    .hero {
        min-height: 100svh;

        padding: 155px 7% 55px;

        align-items: flex-end;
    }


    /* HOMEPAGE MOBILE */

    .home-hero {
        height: 100svh;

        min-height: 650px;

        padding-left: 7%;
        padding-right: 7%;
    }

    .home-portrait {
        top: 0;

        left: 0;
        right: 0;
        bottom: auto;

        width: 100%;
        height: 72vh;

        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .portrait-fade {
        background:
            linear-gradient(
                to top,
                rgba(5, 6, 7, 1) 0%,
                rgba(5, 6, 7, 0.97) 18%,
                rgba(5, 6, 7, 0.68) 38%,
                rgba(5, 6, 7, 0.20) 61%,
                rgba(5, 6, 7, 0) 82%
            );
    }

    .home-hero-content {
        width: 100%;
        max-width: 100%;

        transform: none;
    }

    .home-hero h1 {
        font-size: clamp(3.4rem, 14vw, 5.5rem);

        line-height: 0.88;
    }

    .home-roles {
        max-width: 600px;

        font-size: 0.75rem;

        line-height: 1.9;
    }


    /* ACTOR MOBILE */

    .actor-hero {
        min-height: 100svh;

        background-image:
            linear-gradient(
                to top,
                rgba(3, 4, 5, 1) 0%,
                rgba(3, 4, 5, 0.96) 24%,
                rgba(3, 4, 5, 0.58) 44%,
                rgba(3, 4, 5, 0.08) 67%
            ),

            radial-gradient(
                ellipse at 50% 30%,
                rgba(80, 80, 80, 0.10) 0%,
                rgba(0, 0, 0, 0) 65%
            ),

            url("../images/Actor/actor-hero.jpeg");

        background-size:
            100% 100%,
            100% 100%,
            auto 70%;

        background-position:
            center,
            center,
            center top;

        background-repeat:
            no-repeat,
            no-repeat,
            no-repeat;
    }

    .actor-hero .hero-content {
        width: 100%;
    }

    .actor-hero h1 {
        font-size: clamp(4rem, 20vw, 6.5rem);
    }


    /* GENERAL MOBILE SECTIONS */

    .section {
        padding: 82px 7%;
    }

    .primary-video-grid {
        grid-template-columns: 1fr;
    }

    .featured-project {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .live-performance-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .live-performance-header {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .live-performance-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .shorts-video {
        max-width: 320px;
    }

    .bio-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .resume-panel {
        padding: 38px 28px;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

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

}


/* ==========================================================
   18. SMALL PHONES
   ========================================================== */

@media (max-width: 430px) {

    .site-header {
        padding-left: 5%;
        padding-right: 5%;
    }

    .main-nav {
        gap: 8px 12px;
    }

    .main-nav a {
        font-size: 0.57rem;
    }


    .main-nav .instagram-link {
        font-size: 0.57rem;
    }

    .home-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .actor-hero h1 {
        font-size: clamp(3.6rem, 20vw, 5.2rem);
    }

}
/* ==========================================================
   MODEL PAGE
   ========================================================== */

.model-page .site-header {
    background: rgba(3, 4, 5, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}


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

.model-hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    padding: 150px 7% 80px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background-image:

        linear-gradient(
            90deg,
            rgba(3, 4, 5, 0.98) 0%,
            rgba(3, 4, 5, 0.93) 28%,
            rgba(3, 4, 5, 0.48) 53%,
            rgba(3, 4, 5, 0.08) 76%
        ),

        linear-gradient(
            to top,
            rgba(3, 4, 5, 0.78) 0%,
            rgba(3, 4, 5, 0.10) 44%
        ),

        url("../images/Model/model-hero.jpg");

    background-size:
        100% 100%,
        100% 100%,
        cover;

    background-position:
        center,
        center,
        center 8%;

    background-repeat:
        no-repeat;
}


.model-hero-copy {
    position: relative;

    z-index: 2;

    width: min(760px, 65vw);
}


.model-hero h1 {
    margin: 12px 0 24px;

    font-size: clamp(6rem, 14vw, 13rem);

    font-weight: 700;

    line-height: 0.76;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}


.model-hero-subtitle {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 1rem;

    letter-spacing: 0.06em;
}


.model-hero-index {
    position: absolute;

    right: 3.5%;
    bottom: 80px;

    z-index: 2;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.66rem;

    font-weight: 700;

    letter-spacing: 0.24em;

    text-transform: uppercase;
}


/* ==========================================================
   MODEL INTRODUCTION
   ========================================================== */

.model-intro-section {
    padding: 120px 7%;

    background: #efefec;

    color: #0a0b0c;
}


.model-intro-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}


.model-intro-section h2 {
    margin-top: 18px;

    font-size: clamp(3.5rem, 7vw, 7rem);

    line-height: 0.88;

    letter-spacing: -0.055em;
}


.model-intro-copy {
    max-width: 680px;
}


.model-intro-copy p {
    margin-bottom: 22px;

    color: rgba(0, 0, 0, 0.68);

    font-size: 1.02rem;

    line-height: 1.82;
}


.model-intro-copy .model-intro-lead {
    color: rgba(0, 0, 0, 0.88);

    font-size: 1.34rem;

    line-height: 1.62;
}


/* ==========================================================
   MODEL PORTFOLIO
   ========================================================== */

.model-portfolio-section {
    padding: 120px 4%;

    background: #050607;
}


.model-section-heading {
    max-width: 1250px;

    margin: 0 auto 58px;
}


.model-section-heading h2 {
    margin-top: 10px;

    font-size: clamp(4.5rem, 9vw, 9rem);

    line-height: 0.84;

    letter-spacing: -0.065em;

    text-transform: uppercase;
}


.model-mosaic {
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

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

    grid-auto-rows: 135px;

    gap: 14px;
}


.model-shot {
    position: relative;

    overflow: hidden;

    background: #111315;
}


/*
   The first row retains the asymmetrical editorial layout
   while giving every image enough vertical room.
*/

.model-shot:nth-child(1) {
    grid-column: span 5;
    grid-row: span 5;
}


.model-shot:nth-child(2) {
    grid-column: span 3;
    grid-row: span 5;
}


.model-shot:nth-child(3) {
    grid-column: span 4;
    grid-row: span 5;
}


/*
   Second row reverses the proportions.
*/

.model-shot:nth-child(4) {
    grid-column: span 4;
    grid-row: span 5;
}


.model-shot:nth-child(5) {
    grid-column: span 3;
    grid-row: span 5;
}


.model-shot:nth-child(6) {
    grid-column: span 5;
    grid-row: span 5;
}


.model-shot img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.model-shot:hover img {
    transform: scale(1.025);
}


/*
   Individual framing adjustments.
   These intentionally favor faces and complete body lines.
*/

.model-shot:nth-child(1) img {
    object-position: center 15%;
}


.model-shot:nth-child(2) img {
    object-position: center 10%;
}


.model-shot:nth-child(3) img {
    object-position: center 22%;
}


.model-shot:nth-child(4) img {
    object-position: center 12%;
}


.model-shot:nth-child(5) img {
    object-position: center 11%;
}


.model-shot:nth-child(6) img {
    object-position: center 18%;
}


/* ==========================================================
   GETTY CAMPAIGN
   ========================================================== */

.getty-feature-section {
    padding: 120px 7%;

    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    gap: 90px;

    align-items: center;

    background: #e8e2d8;

    color: #0b0c0d;
}


.getty-feature-copy {
    max-width: 560px;

    justify-self: end;
}


.getty-feature-copy h2 {
    margin: 16px 0 32px;

    font-size: clamp(4rem, 8vw, 8rem);

    line-height: 0.82;

    letter-spacing: -0.065em;
}


.getty-feature-copy p {
    margin-bottom: 20px;

    color: rgba(0, 0, 0, 0.66);

    font-size: 1rem;

    line-height: 1.8;
}


.getty-feature-copy .getty-feature-lead {
    color: rgba(0, 0, 0, 0.9);

    font-size: 1.24rem;

    line-height: 1.62;
}


.getty-campaign-visual {
    max-width: 590px;

    justify-self: center;
}


.getty-campaign-visual img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;

    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}


/* ==========================================================
   GETTY REAL-WORLD PLACEMENTS
   ========================================================== */

.getty-billboard-section {
    padding: 72px 7% 105px;

    background: #111315;
}


.getty-billboard-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1.22fr;

    gap: 18px;

    align-items: stretch;
}


.getty-billboard-grid figure {
    min-height: 380px;

    overflow: hidden;

    background: #1b1d20;
}


.getty-billboard-grid img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.getty-billboard-grid figure:first-child img {
    object-position: center center;
}


.getty-billboard-grid figure:last-child img {
    object-position: center center;
}


.getty-caption {
    max-width: 1250px;

    margin: 18px auto 0;

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.7rem;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ==========================================================
   MODEL VISUAL RANGE
   ========================================================== */

.model-range-section {
    padding: 125px 7%;

    background: #070809;
}


.model-range-heading {
    max-width: 1250px;

    margin: 0 auto 70px;
}


.model-range-heading h2 {
    margin-top: 15px;

    font-size: clamp(4rem, 7.8vw, 8rem);

    line-height: 0.86;

    letter-spacing: -0.06em;
}


.model-range-cards {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

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

    gap: 28px;
}


.model-range-card {
    border-top: 1px solid rgba(255, 255, 255, 0.16);

    padding-top: 18px;
}


.model-range-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    margin-bottom: 24px;

    overflow: hidden;

    background: #121416;
}


.model-range-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 12%;
}


.model-range-card:nth-child(1) .model-range-image img {
    object-position: center 10%;
}


.model-range-card:nth-child(2) .model-range-image img {
    object-position: center 18%;
}


.model-range-card:nth-child(3) .model-range-image img {
    object-position: center 13%;
}


.model-range-number {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.16em;
}


.model-range-card h3 {
    margin-bottom: 10px;

    font-size: 1.55rem;

    font-weight: 600;

    letter-spacing: -0.025em;
}


.model-range-card > p:last-child {
    color: rgba(255, 255, 255, 0.54);

    font-size: 0.92rem;

    line-height: 1.72;
}


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

.model-credits-section {
    padding: 105px 7%;

    text-align: center;

    background: #d9d6d0;

    color: #08090a;
}


.model-credits-section .eyebrow {
    color: rgba(0, 0, 0, 0.48);
}


.model-credit-row {
    max-width: 1200px;

    margin: 25px auto 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px 26px;

    font-size: clamp(2rem, 4vw, 4.6rem);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.05em;
}


.model-credit-dot {
    color: rgba(0, 0, 0, 0.23);

    font-size: 0.5em;
}


.model-credit-note {
    color: rgba(0, 0, 0, 0.5);

    font-size: 0.78rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* ==========================================================
   FINAL MODEL PORTRAIT
   ========================================================== */

.model-final-section {
    min-height: 760px;

    display: grid;

    grid-template-columns: 1.04fr 0.96fr;

    background: #f2f1ee;

    color: #08090a;
}


.model-final-image {
    min-height: 760px;

    overflow: hidden;
}


.model-final-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 11%;
}


.model-final-copy {
    padding: 90px 10%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.model-final-copy h2 {
    margin: 18px 0 30px;

    font-size: clamp(3.8rem, 6.5vw, 7rem);

    line-height: 0.88;

    letter-spacing: -0.06em;
}


.model-final-copy p:last-child {
    max-width: 560px;

    color: rgba(0, 0, 0, 0.64);

    font-size: 1.05rem;

    line-height: 1.8;
}


/* ==========================================================
   MODEL TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .model-hero-copy {
        width: min(700px, 72vw);
    }


    .model-hero {
        background-position:
            center,
            center,
            58% 7%;
    }


    .model-intro-grid {
        gap: 60px;
    }


    .model-mosaic {
        grid-auto-rows: 115px;
    }


    .getty-feature-section {
        grid-template-columns: 1fr 1fr;

        gap: 55px;
    }

}


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

@media (max-width: 760px) {

    .model-page .site-header {
        position: absolute;

        background:
            linear-gradient(
                to bottom,
                rgba(3, 4, 5, 0.98) 0%,
                rgba(3, 4, 5, 0.78) 65%,
                rgba(3, 4, 5, 0) 100%
            );

        border-bottom: 0;

        backdrop-filter: none;
    }


    .model-hero {
        min-height: 100svh;

        padding: 150px 7% 58px;

        align-items: flex-end;

        background-image:

            linear-gradient(
                to top,
                rgba(3, 4, 5, 1) 0%,
                rgba(3, 4, 5, 0.96) 24%,
                rgba(3, 4, 5, 0.58) 48%,
                rgba(3, 4, 5, 0.10) 72%
            ),

            url("../images/Model/model-hero.jpg");

        background-size:
            100% 100%,
            cover;

        background-position:
            center,
            58% 8%;
    }


    .model-hero-copy {
        width: 100%;
    }


    .model-hero h1 {
        font-size: clamp(4.6rem, 22vw, 7rem);
    }


    .model-hero-index {
        display: none;
    }


    .model-intro-section,
    .model-portfolio-section,
    .model-range-section,
    .model-credits-section {
        padding-left: 7%;
        padding-right: 7%;
    }


    .model-intro-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .model-mosaic {
        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: auto;

        gap: 10px;
    }


    .model-shot,
    .model-shot:nth-child(1),
    .model-shot:nth-child(2),
    .model-shot:nth-child(3),
    .model-shot:nth-child(4),
    .model-shot:nth-child(5),
    .model-shot:nth-child(6) {
        grid-column: auto;

        grid-row: auto;

        aspect-ratio: 4 / 5;
    }


    .model-shot:nth-child(3),
    .model-shot:nth-child(6) {
        grid-column: span 2;

        aspect-ratio: 16 / 11;
    }


    .getty-feature-section {
        padding: 88px 7%;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .getty-feature-copy {
        justify-self: start;
    }


    .getty-billboard-section {
        padding: 55px 7% 80px;
    }


    .getty-billboard-grid {
        grid-template-columns: 1fr;
    }


    .getty-billboard-grid figure {
        min-height: 0;

        aspect-ratio: 16 / 10;
    }


    .model-range-cards {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .model-range-image {
        height: auto;

        aspect-ratio: 4 / 5;
    }


    .model-credit-row {
        flex-direction: column;

        gap: 10px;
    }


    .model-credit-dot {
        display: none;
    }


    .model-final-section {
        min-height: 0;

        grid-template-columns: 1fr;
    }


    .model-final-image {
        min-height: 0;

        aspect-ratio: 4 / 5;
    }


    .model-final-copy {
        padding: 78px 7%;
    }

}


/* ==========================================================
   MODEL SMALL PHONES
   ========================================================== */

@media (max-width: 430px) {

    .model-hero h1 {
        font-size: clamp(4rem, 21vw, 5.5rem);
    }


    .model-hero {
        background-position:
            center,
            60% 7%;
    }


    .model-mosaic {
        grid-template-columns: 1fr;
    }


    .model-shot,
    .model-shot:nth-child(1),
    .model-shot:nth-child(2),
    .model-shot:nth-child(3),
    .model-shot:nth-child(4),
    .model-shot:nth-child(5),
    .model-shot:nth-child(6) {
        grid-column: 1;

        aspect-ratio: 4 / 5;
    }

}
/* ==========================================================
   ECONOMIST PAGE
   ========================================================== */


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

.economist-page .site-header {
    background: rgba(8, 9, 10, 0.97);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(8px);
}



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

.economist-hero {
    min-height: 100vh;
    min-height: 100svh;

    padding: 145px 7% 70px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(255, 255, 255, 0.045),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #101214 0%,
            #090a0b 48%,
            #040506 100%
        );

    overflow: hidden;
}


.economist-hero-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.economist-hero-degree {
    color: rgba(255, 255, 255, 0.44);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.economist-hero-main {
    max-width: 1450px;

    margin: auto 0;
}


.economist-hero h1 {
    margin: 0;

    font-size: clamp(5.2rem, 12.2vw, 12rem);

    font-weight: 700;

    line-height: 0.78;

    letter-spacing: -0.072em;

    text-transform: uppercase;
}


.economist-hero-statement {
    max-width: 730px;

    margin-top: 30px;

    margin-left: auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: clamp(1.1rem, 1.8vw, 1.55rem);

    line-height: 1.6;
}


.economist-hero-footer {
    padding-top: 24px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}



/* ==========================================================
   INTRODUCTION
   ========================================================== */

.econ-intro-section {
    padding: 120px 7%;

    display: grid;

    grid-template-columns: 0.18fr 0.82fr 1fr;

    gap: 60px;

    align-items: start;

    background: #f0eee8;

    color: #090a0b;
}


.econ-intro-number {
    padding-top: 8px;

    color: rgba(0, 0, 0, 0.28);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.econ-intro-title h2 {
    margin-top: 16px;

    font-size: clamp(3.5rem, 6vw, 6.7rem);

    line-height: 0.88;

    letter-spacing: -0.06em;
}


.econ-intro-copy {
    max-width: 700px;
}


.econ-intro-copy p {
    margin-bottom: 22px;

    color: rgba(0, 0, 0, 0.64);

    font-size: 1.02rem;

    line-height: 1.8;
}


.econ-intro-copy .econ-lead {
    color: rgba(0, 0, 0, 0.88);

    font-size: 1.35rem;

    line-height: 1.62;
}



/* ==========================================================
   RESEARCH
   ========================================================== */

.econ-research-section {
    padding: 115px 7% 125px;

    background: #08090a;
}


.econ-section-label {
    max-width: 1250px;

    margin: 0 auto 60px;

    padding-bottom: 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}


.econ-section-label > span {
    color: rgba(255, 255, 255, 0.32);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.econ-research-heading {
    max-width: 1250px;

    margin: 0 auto 75px;
}


.econ-research-heading h2 {
    max-width: 1050px;

    font-size: clamp(4rem, 7.5vw, 8rem);

    line-height: 0.88;

    letter-spacing: -0.06em;
}


.econ-research-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 22px;
}


.econ-research-card {
    min-height: 560px;

    padding: 50px;

    display: flex;

    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: #111315;
}


.econ-research-card-featured {
    background: #e8e2d8;

    color: #090a0b;

    border-color: transparent;
}


.econ-card-label {
    margin-bottom: 52px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.econ-research-card-featured .econ-card-label {
    color: rgba(0, 0, 0, 0.42);
}


.econ-research-card h3 {
    margin-bottom: 26px;

    font-size: clamp(3.2rem, 5.5vw, 6rem);

    line-height: 0.86;

    letter-spacing: -0.055em;
}


.econ-research-title {
    max-width: 570px;

    margin-bottom: 28px;

    font-size: 1.15rem;

    line-height: 1.62;

    color: rgba(255, 255, 255, 0.8);
}


.econ-research-card-featured .econ-research-title {
    color: rgba(0, 0, 0, 0.82);
}


.econ-research-card > p:last-of-type {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.95rem;

    line-height: 1.75;
}


.econ-journal {
    margin-top: auto;

    color: rgba(0, 0, 0, 0.82) !important;

    font-size: 1.05rem !important;

    font-weight: 700;
}


.econ-publication-data {
    margin-top: 7px;

    color: rgba(0, 0, 0, 0.47) !important;

    font-size: 0.75rem !important;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}



/* ==========================================================
   RESEARCH LINKS
   ========================================================== */

.econ-research-link {
    display: inline-block;

    width: fit-content;

    margin-top: 28px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.32);

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.econ-research-link:hover {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.9);
}


.econ-research-link-dark {
    color: rgba(0, 0, 0, 0.72);

    border-color: rgba(0, 0, 0, 0.28);
}


.econ-research-link-dark:hover {
    color: #000000;

    border-color: rgba(0, 0, 0, 0.85);
}



/* ==========================================================
   AREAS OF INQUIRY
   ========================================================== */

.econ-fields-section {
    padding: 120px 7%;

    background: #efede7;

    color: #090a0b;
}


.econ-fields-title {
    max-width: 1250px;

    margin: 0 auto 72px;

    display: grid;

    grid-template-columns: 0.72fr 1.28fr;

    gap: 80px;

    align-items: end;
}


.econ-fields-title h2 {
    grid-column: 2;

    font-size: clamp(4rem, 7vw, 7.5rem);

    line-height: 0.88;

    letter-spacing: -0.06em;
}


.econ-fields-list {
    max-width: 1250px;

    margin: 0 auto;

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


.econ-field-row {
    padding: 30px 0;

    display: grid;

    grid-template-columns: 0.18fr 0.82fr 1fr;

    gap: 40px;

    align-items: start;

    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}


.econ-field-number {
    padding-top: 7px;

    color: rgba(0, 0, 0, 0.3);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.14em;
}


.econ-field-row h3 {
    font-size: clamp(1.7rem, 2.6vw, 2.75rem);

    line-height: 1;

    letter-spacing: -0.04em;
}


.econ-field-row p {
    max-width: 560px;

    color: rgba(0, 0, 0, 0.58);

    font-size: 0.95rem;

    line-height: 1.72;
}



/* ==========================================================
   TEACHING
   ========================================================== */

.econ-teaching-section {
    padding: 115px 7% 125px;

    background:
        linear-gradient(
            135deg,
            #161819 0%,
            #0c0d0f 58%,
            #060708 100%
        );
}


.econ-teaching-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 90px;

    align-items: start;
}


.econ-teaching-copy h2 {
    margin-bottom: 38px;

    font-size: clamp(3.7rem, 6vw, 6.7rem);

    line-height: 0.89;

    letter-spacing: -0.06em;
}


.econ-teaching-copy p {
    max-width: 650px;

    margin-bottom: 21px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.98rem;

    line-height: 1.78;
}


.econ-teaching-copy .econ-teaching-lead {
    color: rgba(255, 255, 255, 0.85);

    font-size: 1.24rem;

    line-height: 1.62;
}



/* ==========================================================
   LECTURE ARCHIVE INTRODUCTION
   ========================================================== */

.econ-lecture-intro {
    max-width: 560px;

    margin-top: 48px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.econ-lecture-intro span {
    display: block;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.econ-lecture-intro p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.9rem;

    line-height: 1.65;
}



/* ==========================================================
   COURSE / LECTURE LIST
   ========================================================== */

.econ-course-list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}


.econ-course-link,
.econ-course-static {
    min-height: 105px;

    padding: 20px 0;

    display: grid;

    grid-template-columns: 55px 1fr auto;

    gap: 15px;

    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}


.econ-course-link {
    color: #ffffff;

    text-decoration: none;

    transition:
        padding-left 0.25s ease,
        background 0.25s ease;
}


.econ-course-link:hover {
    padding-left: 10px;

    background: rgba(255, 255, 255, 0.025);
}


.econ-course-number {
    color: rgba(255, 255, 255, 0.3);

    font-size: 0.66rem;

    font-weight: 700;

    letter-spacing: 0.14em;
}


.econ-course-info {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.econ-course-info strong {
    color: rgba(255, 255, 255, 0.92);

    font-size: 1.18rem;

    font-weight: 500;

    letter-spacing: -0.02em;
}


.econ-course-info small {
    color: rgba(255, 255, 255, 0.36);

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    line-height: 1.5;

    text-transform: uppercase;
}


.econ-course-action {
    padding-left: 18px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.61rem;

    font-weight: 700;

    letter-spacing: 0.11em;

    white-space: nowrap;

    text-transform: uppercase;

    transition: color 0.25s ease;
}


.econ-course-link:hover .econ-course-action {
    color: #ffffff;
}



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

.econ-education-section {
    padding: 120px 7%;

    background: #f2f0ea;

    color: #090a0b;
}


.econ-education-heading {
    max-width: 1250px;

    margin: 0 auto 75px;
}


.econ-education-heading h2 {
    margin-top: 16px;

    font-size: clamp(4rem, 7.5vw, 7.8rem);

    line-height: 0.87;

    letter-spacing: -0.06em;
}


.econ-degree-list {
    max-width: 1250px;

    margin: 0 auto;

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


.econ-degree {
    padding: 30px 0;

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 50px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}


.econ-degree-year {
    padding-top: 8px;

    color: rgba(0, 0, 0, 0.34);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.12em;
}


.econ-degree h3 {
    margin-bottom: 7px;

    font-size: clamp(1.7rem, 2.8vw, 3rem);

    line-height: 1;

    letter-spacing: -0.04em;
}


.econ-degree p {
    color: rgba(0, 0, 0, 0.61);

    font-size: 1rem;

    line-height: 1.6;
}


.econ-degree span {
    display: block;

    margin-top: 8px;

    color: rgba(0, 0, 0, 0.4);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}



/* ==========================================================
   DISTINCTIONS
   ========================================================== */

.econ-distinction-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #c7bda9;

    color: #090a0b;
}


.econ-distinction {
    min-height: 380px;

    padding: 70px 7%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right: 1px solid rgba(0, 0, 0, 0.16);
}


.econ-distinction:last-child {
    border-right: 0;
}


.econ-distinction-number {
    font-size: clamp(5rem, 9vw, 9rem);

    font-weight: 700;

    line-height: 0.8;

    letter-spacing: -0.07em;
}


.econ-distinction p {
    max-width: 480px;

    color: rgba(0, 0, 0, 0.65);

    font-size: 1.05rem;

    line-height: 1.65;
}


.econ-distinction strong {
    color: #090a0b;
}



/* ==========================================================
   CV
   ========================================================== */

.econ-cv-section {
    min-height: 580px;

    padding: 100px 7%;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 80px;

    align-items: center;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(255, 255, 255, 0.05),
            transparent 30%
        ),
        #070809;
}


.econ-cv-section h2 {
    margin: 16px 0 28px;

    font-size: clamp(4rem, 8vw, 8rem);

    line-height: 0.84;

    letter-spacing: -0.065em;
}


.econ-cv-section > div:first-child > p:last-child {
    max-width: 540px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 1rem;

    line-height: 1.7;
}


.econ-cv-action {
    padding-right: 5vw;
}



/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .econ-intro-section {
        grid-template-columns: 80px 0.9fr 1.1fr;

        gap: 40px;
    }


    .econ-research-card {
        min-height: 520px;

        padding: 38px;
    }


    .econ-fields-title {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .econ-fields-title h2 {
        grid-column: 1;
    }


    .econ-teaching-grid {
        gap: 55px;
    }


    .econ-course-link,
    .econ-course-static {
        grid-template-columns: 45px 1fr;
    }


    .econ-course-action {
        grid-column: 2;

        padding-left: 0;

        margin-top: -4px;
    }


    .econ-distinction {
        min-height: 340px;
    }

}



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

@media (max-width: 760px) {

    .economist-page .site-header {
        position: absolute;

        background:
            linear-gradient(
                to bottom,
                rgba(5, 6, 7, 0.98) 0%,
                rgba(5, 6, 7, 0.80) 65%,
                rgba(5, 6, 7, 0) 100%
            );

        border-bottom: 0;

        backdrop-filter: none;
    }


    .economist-hero {
        min-height: 100svh;

        padding: 145px 7% 50px;
    }


    .economist-hero-top {
        align-items: flex-start;

        gap: 20px;
    }


    .economist-hero-degree {
        text-align: right;
    }


    .economist-hero h1 {
        font-size: clamp(4rem, 19vw, 6.5rem);

        line-height: 0.82;
    }


    .economist-hero-statement {
        margin-top: 32px;

        margin-left: 0;

        font-size: 1.05rem;
    }


    .economist-hero-footer {
        flex-direction: column;

        gap: 9px;
    }


    .econ-intro-section {
        padding: 85px 7%;

        grid-template-columns: 1fr;

        gap: 24px;
    }


    .econ-intro-number {
        margin-bottom: 8px;
    }


    .econ-research-section,
    .econ-fields-section,
    .econ-teaching-section,
    .econ-education-section {
        padding-left: 7%;

        padding-right: 7%;
    }


    .econ-research-grid {
        grid-template-columns: 1fr;
    }


    .econ-research-card {
        min-height: 500px;

        padding: 34px;
    }


    .econ-field-row {
        grid-template-columns: 50px 1fr;

        gap: 18px 20px;
    }


    .econ-field-row p {
        grid-column: 2;
    }


    .econ-teaching-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .econ-lecture-intro {
        margin-top: 38px;
    }


    .econ-course-link,
    .econ-course-static {
        min-height: 100px;

        grid-template-columns: 38px 1fr;

        gap: 12px;
    }


    .econ-course-info strong {
        font-size: 1.08rem;
    }


    .econ-course-link:hover {
        padding-left: 0;

        background: transparent;
    }


    .econ-degree {
        grid-template-columns: 85px 1fr;

        gap: 24px;
    }


    .econ-distinction-section {
        grid-template-columns: 1fr;
    }


    .econ-distinction {
        min-height: 320px;

        padding: 60px 7%;

        border-right: 0;

        border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    }


    .econ-cv-section {
        min-height: 0;

        padding: 85px 7%;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .econ-cv-action {
        padding-right: 0;
    }

}



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

@media (max-width: 430px) {

    .economist-hero h1 {
        font-size: clamp(3.7rem, 18vw, 5rem);
    }


    .econ-research-card {
        min-height: 450px;

        padding: 28px;
    }


    .econ-field-row {
        grid-template-columns: 42px 1fr;
    }


    .econ-degree {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .econ-degree-year {
        padding-top: 0;
    }

}


/* ==========================================================
   W MAGAZINE EDITORIAL FEATURE
   ========================================================== */

.wmag-feature-section {
    padding: 120px 7%;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: center;
    background: #0b0908;
    color: #ffffff;
}

.wmag-feature-visual {
    max-width: 560px;
    width: 100%;
    justify-self: center;
}

.wmag-feature-visual img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.48);
}

.wmag-feature-copy {
    max-width: 660px;
}

.wmag-feature-copy h2 {
    margin: 16px 0 30px;
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.82;
    letter-spacing: -0.065em;
}

.wmag-feature-copy p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.8;
}

.wmag-feature-copy .wmag-feature-lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.24rem;
    line-height: 1.62;
}

.wmag-credit-line {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 0.72rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.7 !important;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .wmag-feature-section {
        gap: 55px;
    }
}

@media (max-width: 760px) {
    .wmag-feature-section {
        padding: 88px 7%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .wmag-feature-visual {
        max-width: 520px;
    }

    .wmag-feature-copy h2 {
        font-size: clamp(3.8rem, 18vw, 6rem);
    }
}

/* ==========================================================
   SITE-WIDE MOBILE HARDENING — SEPTEMBER 2026
   Keeps all finished page designs intact while correcting
   iPhone/Safari viewport, overflow, navigation and layout issues.
   ========================================================== */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

@media (max-width: 760px) {

    /* iPhone safe-area + consistent mobile navigation */
    .site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding:
            calc(18px + env(safe-area-inset-top))
            6%
            18px;
    }

    .logo {
        max-width: 100%;
        line-height: 1.35;
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 14px;
    }

    .main-nav a {
        font-size: 0.60rem;
        line-height: 1.35;
    }

    .main-nav a.active,
    .main-nav a.active-nav {
        opacity: 1;
    }

    .main-nav a.active::after,
    .main-nav a.active-nav::after {
        width: 100%;
    }

    /* Dynamic viewport units behave better in iPhone Safari */
    .home-hero,
    .actor-hero,
    .model-hero,
    .economist-hero {
        min-height: 100dvh;
    }

    /* HOME */
    .home-hero {
        height: 100dvh;
        min-height: 620px;
        padding-bottom: calc(42px + env(safe-area-inset-bottom));
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-roles {
        max-width: 100%;
    }

    /* ACTOR */
    .actor-page .section,
    .actor-page .bio-section,
    .actor-page .resume-section {
        overflow-x: hidden;
    }

    .actor-page iframe {
        width: 100%;
    }

    .actor-page .button {
        max-width: 100%;
        text-align: center;
    }

    /* MODEL */
    .model-hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .model-hero-index {
        display: none;
    }

    .model-page h1,
    .model-page h2,
    .model-page h3 {
        overflow-wrap: normal;
        word-break: normal;
    }

    .model-final-copy,
    .getty-feature-copy {
        min-width: 0;
    }

    /* ECONOMIST */
    .economist-hero {
        min-height: 100dvh;
        padding:
            calc(142px + env(safe-area-inset-top))
            7%
            calc(48px + env(safe-area-inset-bottom));
    }

    .economist-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .economist-hero-degree {
        text-align: left;
    }

    .economist-hero h1 {
        max-width: 100%;
        font-size: clamp(3.65rem, 18vw, 5.5rem);
        overflow-wrap: normal;
        word-break: normal;
    }

    .economist-hero-statement {
        max-width: 100%;
    }

    .econ-intro-title h2,
    .econ-research-heading h2,
    .econ-fields-title h2,
    .econ-teaching-heading h2,
    .econ-education-heading h2,
    .econ-cv-section h2 {
        max-width: 100%;
        font-size: clamp(2.8rem, 13vw, 4.6rem);
        overflow-wrap: normal;
        word-break: normal;
    }

    .econ-research-card {
        min-width: 0;
        min-height: 0;
        padding: 30px 24px;
    }

    .econ-research-card h3 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .econ-research-title,
    .econ-research-card p,
    .econ-publication-data,
    .econ-journal {
        overflow-wrap: anywhere;
    }

    .econ-field-row {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .econ-course-link,
    .econ-course-static {
        width: 100%;
        min-width: 0;
    }

    .econ-course-info {
        min-width: 0;
    }

    .econ-course-info strong,
    .econ-course-info small {
        overflow-wrap: anywhere;
    }

    .econ-degree {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 18px;
    }

    .econ-degree h3,
    .econ-degree p,
    .econ-degree span {
        overflow-wrap: anywhere;
    }

    .econ-distinction {
        min-height: 280px;
    }

    .econ-cv-action {
        padding-right: 0;
    }

    .econ-cv-action .button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    footer {
        padding-bottom: calc(50px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 430px) {

    .site-header {
        padding-left: 5%;
        padding-right: 5%;
    }

    .main-nav {
        gap: 9px 12px;
    }

    .main-nav a {
        font-size: 0.56rem;
    }

    .economist-hero h1 {
        font-size: clamp(3.45rem, 17.5vw, 4.7rem);
    }

    .econ-intro-title h2,
    .econ-research-heading h2,
    .econ-fields-title h2,
    .econ-teaching-heading h2,
    .econ-education-heading h2,
    .econ-cv-section h2 {
        font-size: clamp(2.65rem, 12.8vw, 4rem);
    }
}

/* =========================================================
   FINAL MOBILE POLISH — SEPTEMBER 2026
   Economist viewport fit + intentional UGC mobile carousel
   ========================================================= */

@media (max-width: 760px) {

    /* ECONOMIST — force the full word to remain inside the phone viewport */
    .economist-hero-main {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .economist-hero h1 {
        box-sizing: border-box;
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-right: 0;
        font-size: clamp(2.55rem, 12vw, 3.35rem) !important;
        line-height: 0.86;
        letter-spacing: -0.08em;
        white-space: nowrap;
        overflow: visible;
        overflow-wrap: normal;
        word-break: normal;
    }

    /* UGC — horizontal swipe is intentional; each vertical video stays fully framed */
    .ugc-carousel {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 14px !important;
        padding-left: 7% !important;
        padding-right: 7% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-inline: 7% !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .ugc-video-card {
        box-sizing: border-box !important;
        flex: 0 0 min(80vw, 300px) !important;
        width: min(80vw, 300px) !important;
        max-width: 300px !important;
        min-width: 0 !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always;
    }

    .ugc-video-frame {
        box-sizing: border-box !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 9 / 16 !important;
        overflow: hidden !important;
        background: #111 !important;
    }

    .ugc-video-frame iframe {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        border: 0 !important;
    }
}

@media (max-width: 430px) {
    .economist-hero h1 {
        font-size: clamp(2.45rem, 11.7vw, 3.05rem) !important;
        letter-spacing: -0.08em;
    }

    .ugc-video-card {
        flex-basis: min(82vw, 292px) !important;
        width: min(82vw, 292px) !important;
        max-width: 292px !important;
    }
}


/* ==========================================================
   ECONOMIST MOBILE TITLE — FINAL GUARANTEED FIT
   ========================================================== */
@media (max-width: 760px) {
    .economist-page .economist-hero h1 {
        font-size: 11vw !important;
        line-height: 0.88 !important;
        letter-spacing: -0.075em !important;
        white-space: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 430px) {
    .economist-page .economist-hero h1 {
        font-size: 10.6vw !important;
    }
}


/* ==========================================================
   MODEL MOBILE — PRESERVE LANDSCAPE PORTFOLIO IMAGES
   The two full-width horizontal images should display at their
   natural aspect ratio on phones instead of being cropped into
   a fixed 16:11 frame.
   ========================================================== */

@media (max-width: 760px) {

    .model-mosaic .model-shot:nth-child(3),
    .model-mosaic .model-shot:nth-child(6) {
        aspect-ratio: auto;
        height: auto;
    }

    .model-mosaic .model-shot:nth-child(3) img,
    .model-mosaic .model-shot:nth-child(6) img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
        display: block;
    }

}



/* ==========================================================
   FOOTER / BACK TO TOP
   Back-to-top now lives in the page footer instead of floating.
   ========================================================== */

.footer-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.back-to-top {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.back-to-top:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #050607;
    transform: translateY(-2px);
}

.back-to-top span {
    font-size: 1rem;
    line-height: 0.8;
}

/* UGC HERO — IMMEDIATE PROJECT INQUIRY */
.ugc-hero-contact-link {
    display: table;
    margin: 28px 0 0 auto;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ugc-hero-contact-link:hover {
    background: #ffffff;
    color: #050607;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .footer-inner {
        align-items: center;
        gap: 20px;
    }

    .back-to-top {
        padding: 10px 11px;
        font-size: 0.61rem;
        letter-spacing: 0.1em;
    }

    .ugc-hero-contact-link {
        margin: 24px 0 0;
        padding: 12px 15px;
    }
}
