* {
    box-sizing: border-box;
}

:root {
    --page-blue: #e8f5fc;
    --panel-white: #ffffff;
    --text: #151515;
    --muted: #4b4b4b;
    --border: #d6e6ef;
    --link: #0f4770;
    --max-width: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--page-blue);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.main-nav {
    width: min(var(--max-width), calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--link);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.menu-toggle {
    display: none;
    padding: 7px 10px;
    border: 1px solid #bbb;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.page-shell {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 54px auto;
}

.home-card,
.title-card {
    background: var(--panel-white);
    border: 1px solid var(--border);
}

.home-card {
    min-height: 625px;
    padding: 76px 90px;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: 75px;
}

.home-copy h1,
.title-card h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.tagline {
    margin: 20px 0 34px;
    font-size: 1rem;
    font-weight: 700;
}

.role-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
}

.role-list li {
    margin: 7px 0;
}

.role-list li::before {
    content: "* ";
}

.role-list span {
    font-weight: 600;
}

.contact {
    margin-top: 34px;
    font-style: normal;
}

.contact div {
    margin: 4px 0;
}

.contact a,
.home-link {
    color: var(--link);
    text-decoration: none;
}

.contact a:hover,
.home-link:hover {
    text-decoration: underline;
}

.home-photo-wrap {
    display: flex;
    justify-content: center;
}

.home-photo {
    display: block;
    width: 100%;
    max-width: 510px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
}

.title-card {
    min-height: 470px;
    padding: 90px;
}

.title-card p {
    margin: 20px 0 28px;
    color: var(--muted);
    font-size: 1.05rem;
}

.home-link {
    font-weight: 700;
}

@media (max-width: 1050px) {
    .main-nav {
        min-height: 70px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 18px 24px 24px;
        background: #fff;
        border-bottom: 1px solid #ddd;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        z-index: 10;
    }

    .nav-links.open {
        display: flex;
    }

    .home-card {
        padding: 55px;
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 20px, var(--max-width));
        margin: 20px auto;
    }

    .home-card {
        min-height: auto;
        padding: 34px 25px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-photo-wrap {
        justify-content: flex-start;
    }

    .home-photo {
        max-width: 100%;
        aspect-ratio: auto;
    }

    .title-card {
        min-height: 360px;
        padding: 50px 28px;
    }
}
