* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #17202a;
    background: #fbfaf7;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


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

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(5vw, 28px);
    border-bottom: 1px solid #ddd8cf;
    background: rgba(251, 250, 247, .96);
    position: sticky;
    top: 0;
    z-index: 10;
}

.name {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    color: #17202a;
    text-decoration: none;
}

.site-header nav {
    display: flex;
    gap: 28px;
}

.site-header nav a {
    color: #45515d;
    text-decoration: none;
    font-size: .9rem;
}

.site-header nav a:hover {
    color: #8b5e34;
}


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

.hero {
    min-height: 650px;
    padding: 85px max(7vw, 35px);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 8vw;
    align-items: center;
    max-width: 1400px;
    margin: auto;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 700;
    color: #8b5e34;
}

.hero h1,
.section h2 {
    font-family: Georgia, serif;
    font-weight: 400;
    line-height: 1.02;
    margin: .15em 0;
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 7.8rem);
}

.lead,
.intro {
    font-family: Georgia, serif;
    color: #4b5660;
    font-size: 1.25rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #17202a;
    text-decoration: none;
    font-size: .88rem;
    letter-spacing: .03em;
}

.primary {
    background: #17202a;
    color: white;
}

.secondary {
    color: #17202a;
}


/* =========================
   PATRICK PORTRAIT
   ========================= */

.portrait-placeholder {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-height: 500px;
    background: #e9e4db;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* =========================
   STATISTICS
   ========================= */

.stats {
    background: #17202a;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px max(7vw, 35px);
    gap: 25px;
}

.stats div {
    text-align: center;
    border-right: 1px solid #46505a;
}

.stats div:last-child {
    border: 0;
}

.stats strong {
    font-family: Georgia, serif;
    font-size: 2.1rem;
    font-weight: 400;
    display: block;
}

.stats span {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #cdd2d5;
}


/* =========================
   GENERAL SECTIONS
   ========================= */

.section {
    padding: 100px max(7vw, 35px);
    max-width: 1400px;
    margin: auto;
    border-bottom: 1px solid #ddd8cf;
}

.section h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    max-width: 700px;
}

.section-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 9vw;
}


/* =========================
   ACADEMIC DETAILS
   ========================= */

.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 35px;
}

.details article {
    border-top: 2px solid #17202a;
}

.details h3,
.cards h3 {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: 1.35rem;
}

.details p,
.cards p {
    color: #59636c;
}


/* =========================
   PIANO SECTION
   ========================= */

.piano {
    background: #f1eee8;
    max-width: none;
}

.piano > .eyebrow,
.piano > .section-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.video-placeholder {
    aspect-ratio: 16 / 11;
    background: #17202a;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder span {
    font-size: 2rem;
}

.video-placeholder p {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    margin: 10px 0 0;
}

.video-placeholder small {
    color: #adb5bc;
}


/* =========================
   ACTIVITY CARDS
   ========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.cards article {
    border-top: 2px solid #17202a;
    padding-right: 18px;
}


/* =========================
   RESUME
   ========================= */

.resume {
    text-align: center;
}

.resume .intro {
    margin: 15px auto 30px;
}


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

footer {
    padding: 40px max(7vw, 35px);
    background: #17202a;
    color: white;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
}

footer a {
    color: white;
}


/* =========================
   TABLET / SMALL SCREENS
   ========================= */

@media (max-width: 800px) {

    .site-header nav {
        display: none;
    }

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

    .hero {
        padding-top: 55px;
    }

    .portrait-placeholder {
        max-height: 420px;
    }

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

    .stats div:nth-child(2) {
        border: 0;
    }

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

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

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================
   PHONE
   ========================= */

@media (max-width: 500px) {

    .hero h1 {
        font-size: 3.6rem;
    }

    .stats,
    .cards {
        grid-template-columns: 1fr;
    }

    .stats div {
        border-right: 0;
        border-bottom: 1px solid #46505a;
        padding-bottom: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        text-align: center;
    }
}


/* =========================
   PIANO PERFORMANCES
   ========================= */

.performance-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
}

.performance {
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #17202a;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.performance h3 {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #17202a;
    margin: 10px 0 0;
}