/*
============================================================
MEET THE BOSS
============================================================

Styles specific to meet-the-boss.html.

The page intentionally feels quieter and slightly more personal than
the main website, while retaining the same typography and spacing.
============================================================
*/


/* =========================================================
   SMALL SHARED ELEMENTS
   ========================================================= */

.eyebrow {
    margin: 0 0 1.4rem;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.54;
}



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

.boss-header {
    padding: 1.5rem 0;
}


.boss-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}


.quiet-return {
    display: inline-flex;
    align-items: center;

    gap: 0.9rem;

    color: inherit;

    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;

    opacity: 0.62;

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}


.quiet-return:hover {
    opacity: 1;
    transform: translateX(3px);
}



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

.boss-introduction {
    padding:
        clamp(4rem, 9vw, 8rem)
        0
        clamp(4rem, 8vw, 7rem);
}


.boss-introduction-inner {
    display: grid;
    grid-template-columns:
        minmax(280px, 1fr)
        minmax(320px, 0.9fr);

    gap: clamp(3rem, 9vw, 9rem);
    align-items: end;
}


.boss-title h1 {
    margin: 0;

    font-size: clamp(4.5rem, 11vw, 10rem);
    line-height: 0.8;
    letter-spacing: -0.085em;
}


.boss-role {
    max-width: 39rem;
}


.boss-role p {
    margin:
        0
        0
        clamp(1.25rem, 2.3vw, 1.8rem);

    font-size: clamp(1.05rem, 1.55vw, 1.25rem);
    line-height: 1.72;

    opacity: 0.76;
}


.boss-role .role-title {
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.03em;

    opacity: 1;
}


.boss-role .role-ending {
    margin-bottom: 0;

    font-weight: 650;

    opacity: 1;
}



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

.boss-photograph {
    padding-bottom: clamp(5rem, 10vw, 9rem);
}


.boss-photograph figure {
    margin: 0;

    overflow: hidden;

    border-radius: clamp(1rem, 2vw, 1.75rem);

    background: #e9eae6;
}


.boss-photograph img {
    display: block;

    width: 100%;
    max-height: 78vh;

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



/* =========================================================
   QUALIFICATIONS
   ========================================================= */

.qualifications {
    padding:
        clamp(5rem, 10vw, 9rem)
        0;

    background: #17251e;
    color: #f5f6f2;
}


.qualifications-inner {
    display: grid;
    grid-template-columns:
        minmax(260px, 0.9fr)
        minmax(340px, 1.1fr);

    gap: clamp(3rem, 9vw, 9rem);
}


.qualifications h2 {
    max-width: 8ch;
    margin: 0;

    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}


.qualification-list {
    margin: 0;
    padding: 0;

    list-style: none;

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


.qualification-list li {
    display: grid;
    grid-template-columns: 3rem 1fr;

    gap: 1rem;

    padding: 1.3rem 0;

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

    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    line-height: 1.4;
}


.qualification-list span {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;

    opacity: 0.45;
}



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

.boss-gallery {
    padding:
        clamp(5rem, 10vw, 9rem)
        0;

    background: #f2f3ef;
}


.gallery-heading {
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}


.gallery-heading h2 {
    margin: 0;

    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: clamp(0.8rem, 1.7vw, 1.4rem);
}


.gallery-item {
    min-width: 0;
    margin: 0;

    overflow: hidden;

    border-radius: clamp(0.85rem, 1.6vw, 1.3rem);

    background: #e4e5e1;
}


.gallery-item-wide {
    grid-column: 1 / -1;
}


.gallery-item img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 3;

    object-fit: cover;
}


.gallery-item-wide img {
    aspect-ratio: 2.1 / 1;
}



/* =========================================================
   SIGN-OFF
   ========================================================= */

.boss-signoff {
    padding:
        clamp(4rem, 9vw, 8rem)
        0;
}


.boss-signoff p {
    margin: 0;

    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.055em;
}



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

@media (max-width: 800px) {

    .boss-introduction-inner,
    .qualifications-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }


    .boss-title h1 {
        line-height: 0.86;
    }

}


@media (max-width: 560px) {

    .quiet-return {
        font-size: 0;
    }


    .quiet-return span {
        font-size: 1rem;
    }


    .boss-photograph img {
        min-height: 26rem;
    }


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


    .gallery-item-wide {
        grid-column: auto;
    }


    .gallery-item-wide img {
        aspect-ratio: 4 / 3;
    }

}
