/* ==================================================
   GLOBAL
   ================================================== */

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

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f2;
    color: #111111;
    font-size: 16px;
    line-height: 1.5;
}

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


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

.header {
    width: 100%;
    padding: 28px 40px;

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

.logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.navigation {
    display: flex;
    gap: 28px;
}

.navigation a {
    font-size: 13px;
}

.navigation a:hover {
    opacity: 0.5;
}


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

.hero {
    width: 100%;

    padding: 30px 40px 80px;
}

.hero-title {
    max-width: 1100px;

    margin-bottom: 45px;

    font-size: clamp(42px, 5.5vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 400;
}


/* HERO IMAGE */

.hero-image {
    width: 100%;
    height: 45vh;

    border: 1px solid #111111;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


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

.intro-section {
    width: 100%;

    border-top: 1px solid #111111;

    display: grid;
    grid-template-columns: 2fr 1fr;
}


/* LEFT 2/3 */

.intro-main {
    padding: 40px;

    min-height: 500px;

    border-right: 1px solid #111111;

    display: flex;
    flex-direction: column;
}

.small-label {
    font-size: 11px;
    letter-spacing: 0.08em;

    margin-bottom: 55px;
}

.intro-main h2 {
    max-width: 850px;

    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 400;

    margin-bottom: auto;
}

.intro-main p {
    max-width: 650px;

    font-size: 15px;
    line-height: 1.5;

    margin-top: 15px;
}


/* RIGHT 1/3 */

.intro-side {
    padding: 40px;
}

.side-item {
    display: grid;
    grid-template-columns: 35px 1fr;

    padding-bottom: 28px;
    margin-bottom: 28px;

    border-bottom: 1px solid #111111;
}

.side-item:last-child {
    border-bottom: none;
}

.side-number {
    font-size: 11px;
}

.side-item h3 {
    font-size: 12px;
    font-weight: 500;

    margin-bottom: 12px;
}

.side-item p {
    max-width: 220px;

    font-size: 12px;
    line-height: 1.5;

    opacity: 0.7;
}


/* ==================================================
   PEOPLE / US
   ================================================== */

.people-section {
    width: 100%;

    border-top: 1px solid #111111;
}



/* PEOPLE CONTENT */

.people-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* PERSON CARD */

.person-card {
    min-width: 0;

    padding: 40px;

    border-right: 1px solid #111111;

    display: flex;
    flex-direction: column;
}

.person-card:last-child {
    border-right: none;
}


/* PERSON IMAGE */

.person-image {
    width: 100%;
    height: 360px;

    margin-bottom: 30px;

    border: 1px solid #111111;

    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;

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

    font-size: 11px;
    letter-spacing: 0.08em;

    background: #e9e9e5;
}


/* PERSON INFO */

.person-info {
    min-height: 260px;

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

.person-number {
    font-size: 11px;
}

.person-info h2 {
    margin-top: 25px;

    font-size: clamp(48px, 6vw, 90px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.person-role {
    margin-top: 15px;

    font-size: 13px;
}

.person-description {
    max-width: 420px;

    margin-top: 25px;

    font-size: 14px;
    line-height: 1.5;
}

.view-works {
    width: fit-content;

    padding-bottom: 5px;

    border-bottom: 1px solid #111111;

    font-size: 13px;

    transition: opacity 0.2s ease;
}

.person-card:hover .view-works {
    opacity: 0.5;
}


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

.footer {
    padding: 30px 40px;

    border-top: 1px solid #111111;

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

    font-size: 11px;
    letter-spacing: 0.05em;
}


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

@media (max-width: 700px) {

    .header {
        padding: 22px 20px;
    }


    /* HERO */

    .hero {
        padding: 25px 20px 50px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .hero-image {
        height: 35vh;
    }


    /* INTRO */

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

    .intro-main {
        padding: 30px 20px;
        min-height: 500px;

        border-right: none;
        border-bottom: 1px solid #111111;
    }

    .intro-main h2 {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .intro-side {
        padding: 30px 20px;
    }


    /* PEOPLE */

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

    .person-card {
        padding: 30px 20px;

        border-right: none;
        border-bottom: 1px solid #111111;
    }

    .person-card:last-child {
        border-bottom: none;
    }

    .person-image {
        height: 300px;
    }

    .person-info {
        min-height: 250px;
    }


    /* FOOTER */

    .footer {
        padding: 25px 20px;
    }

}