/* ==========================================================
   HARRYPILOTE.COM
   V3 — STYLE.CSS
   ========================================================== */


/* ==========================================================
   01. VARIABLES
   ========================================================== */

:root {

    /* ------------------------------------------------------
       Colors
       ------------------------------------------------------ */

    --color-navy: #071521;
    --color-navy-light: #0d2233;

    --color-orange: #e78a2b;

    --color-white: #ffffff;
    --color-light: #f3f5f6;

    --color-grey: #8d9aa2;
    --color-dark-grey: #5d6970;

    --color-border-light: #d8dddf;
    --color-border-dark: rgba(255, 255, 255, 0.12);


    /* ------------------------------------------------------
       Fonts
       ------------------------------------------------------ */

    --font-display: "Barlow Condensed", sans-serif;
    --font-body: "Inter", sans-serif;


    /* ------------------------------------------------------
       Layout
       ------------------------------------------------------ */

    --container-width: 1380px;
    --page-gutter: 60px;


    /* ------------------------------------------------------
       Transitions
       ------------------------------------------------------ */

    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 700ms ease;
}


/* ==========================================================
   02. RESET
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    font-size: 100%;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background-color: var(--color-light);
    color: var(--color-navy);

    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;

    overflow-x: hidden;
}


img {
    display: block;

    max-width: 100%;
    height: auto;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea {
    font: inherit;
}


/* ==========================================================
   03. TYPOGRAPHY
   ========================================================== */

.eyebrow {
    margin: 0 0 1.25rem;

    color: var(--color-orange);

    font-size: 1.2rem;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


.section-title {
    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(2.75rem, 6vw, 4.5rem);

    font-weight: 600;

    line-height: 0.9;

    letter-spacing: -0.02em;
}


.section-title em {
    color: var(--color-orange);

    font-style: normal;
}


/* ==========================================================
   04. COMMON ELEMENTS
   ========================================================== */

.container {
    width: min(
        calc(100% - (var(--page-gutter) * 2)),
        var(--container-width)
    );

    margin-right: auto;
    margin-left: auto;
}


.section {
    position: relative;

    padding-top: 7rem;
    padding-bottom: 7rem;
}


.section-light {
    background-color: var(--color-light);

    color: var(--color-navy);
}


.section-dark {
    background-color: var(--color-navy);

    color: var(--color-white);
}


/* ==========================================================
   05. BUTTONS
   ========================================================== */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 3.5rem;

    padding-right: 1.75rem;
    padding-left: 1.75rem;

    border: 1px solid transparent;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    transition:
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        color var(--transition-normal);
}


.btn-primary {
    background-color: var(--color-orange);

    color: #111111;
}


.btn-primary:hover {
    background-color: var(--color-white);
}


.btn-outline {
    border-color: rgba(255, 255, 255, 0.45);

    color: var(--color-white);
}


.btn-outline:hover {
    border-color: var(--color-white);

    background-color: rgba(255, 255, 255, 0.05);
}


/* ==========================================================
   06. HEADER
   ========================================================== */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 100;

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 5.25rem;

    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);

    color: var(--color-white);

    transition:
        height var(--transition-normal),
        background-color var(--transition-normal),
        backdrop-filter var(--transition-normal);
}


.site-header.scrolled {
    height: 4.5rem;

    background-color: rgba(7, 21, 33, 0.96);

    backdrop-filter: blur(12px);
}


/* ==========================================================
   07. LOGO
   ========================================================== */

.site-logo {
    display: flex;

    align-items: center;

    gap: 0.75rem;
}


.site-logo-mark {
    display: grid;

    place-items: center;

    width: 2.5rem;
    height: 2.5rem;

    border: 1px solid var(--color-orange);

    color: var(--color-orange);

    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}


.site-logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.site-logo-name {
    font-size: 1.5rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.site-logo-subtitle {
    margin-top: 0.3125rem;

    color: #9ca8af;

    font-size: 1rem;

    letter-spacing: 0.2em;
}


/* ==========================================================
   08. DESKTOP NAVIGATION
   ========================================================== */

.main-nav {
    display: flex;

    align-items: center;

    gap: 2.125rem;
}


.main-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.85);

    font-size: 1rem;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition: color var(--transition-fast);
}


.main-nav a::after {
    position: absolute;

    bottom: -0.5rem;
    left: 0;

    width: 0;
    height: 1px;

    background-color: var(--color-orange);

    content: "";

    transition: width var(--transition-normal);
}


.main-nav a:hover {
    color: var(--color-white);
}


.main-nav a:hover::after {
    width: 100%;
}


/* ==========================================================
   09. BURGER MENU
   ========================================================== */

.menu-toggle {
    display: none;

    position: relative;

    width: 2.625rem;
    height: 2.625rem;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background-color: transparent;

    cursor: pointer;
}


.menu-toggle span {
    position: absolute;

    left: 0.625rem;

    width: 1.25rem;
    height: 1px;

    background-color: var(--color-white);

    transition:
        top var(--transition-normal),
        transform var(--transition-normal),
        opacity var(--transition-normal);
}


.menu-toggle span:nth-child(1) {
    top: 0.8125rem;
}


.menu-toggle span:nth-child(2) {
    top: 1.25rem;
}


.menu-toggle span:nth-child(3) {
    top: 1.6875rem;
}


.menu-toggle.active span:nth-child(1) {
    top: 1.25rem;

    transform: rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    top: 1.25rem;

    transform: rotate(-45deg);
}


/* ==========================================================
   10. HERO
   ========================================================== */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 43.75rem;

    overflow: hidden;

    background-color: var(--color-navy);

    color: var(--color-white);
}


/* ----------------------------------------------------------
   HERO IMAGE
   ---------------------------------------------------------- */

.hero-image {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* ----------------------------------------------------------
   HERO OVERLAY
   ---------------------------------------------------------- */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 25, 0.95) 0%,
            rgba(4, 15, 25, 0.78) 32%,
            rgba(4, 15, 25, 0.38) 58%,
            rgba(4, 15, 25, 0.05) 100%
        );

    pointer-events: none;
}


/* ----------------------------------------------------------
   HERO CONTENT
   ---------------------------------------------------------- */

.hero-content {
    position: absolute;

    top: 50%;
    left: max(
        var(--page-gutter),
        calc(
            (100vw - var(--container-width)) / 2
        )
    );

    z-index: 3;

    width: min(
        43.75rem,
        calc(
            100vw - (var(--page-gutter) * 2)
        )
    );

    transform: translateY(-42%);
}


/* ----------------------------------------------------------
   HERO AVAILABILITY
   ---------------------------------------------------------- */

.hero-availability {
    margin-bottom: 1.25rem;

    color: var(--color-orange);

    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 0.20em;

    text-transform: uppercase;
}


/* ----------------------------------------------------------
   HERO TITLE
   ---------------------------------------------------------- */

.hero-title {
    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(
        3rem,
        8vw,
        6rem
    );

    font-weight: 600;

    line-height: 0.86;

    letter-spacing: -0.02em;
}


.hero-title em {
    color: var(--color-orange);

    font-style: normal;
}


/* ----------------------------------------------------------
   HERO SUBTITLE
   ---------------------------------------------------------- */

.hero-subtitle {
    max-width: 32.5rem;

    margin-top: 1.875rem;
    margin-bottom: 1.875rem;

    color: rgba(255, 255, 255, 0.84);

    font-size: clamp(
        0.9375rem,
        1.2vw,
        1.0625rem
    );

    line-height: 1.7;
}


/* ----------------------------------------------------------
   HERO ACTIONS
   ---------------------------------------------------------- */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 0.75rem;
}


/* ----------------------------------------------------------
   HERO STATS
   ---------------------------------------------------------- */

.hero-stats {
    position: absolute;

    right: var(--page-gutter);
    bottom: 3.4375rem;

    z-index: 3;

    display: flex;

    gap: 2.1875rem;
}


.hero-stat {
    display: flex;

    flex-direction: column;

    padding-left: 0.9375rem;

    border-left: 1px solid rgba(255, 255, 255, 0.35);
}


.hero-stat-value {
    font-family: var(--font-display);

    font-size: clamp(
        1.75rem,
        2.5vw,
        2.25rem
    );

    font-weight: 500;

    line-height: 1;
}


.hero-stat-label {
    margin-top: 0.375rem;

    color: #aab6bd;

    font-size: 0.625rem;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


/* ==========================================================
   11. PROFILE
   ========================================================== */

.profile-header {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: end;

    gap: 5rem;

    margin-bottom: 5rem;
}


.profile-heading {
    max-width: 42rem;
}


.profile-intro {
    max-width: 36rem;

    padding-bottom: 0.25rem;
}


.profile-intro p {
    margin: 0 0 1.25rem;

    color: var(--color-dark-grey);

    font-size: 1.05rem;

    line-height: 1.8;
}


.profile-intro p:last-child {
    margin-bottom: 0;
}


/* ----------------------------------------------------------
   Profile visual composition
   ---------------------------------------------------------- */

.profile-content {
    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    grid-template-rows:
        auto
        auto;

    gap: 2rem;

    margin-bottom: 5rem;
}


/* ----------------------------------------------------------
   Profile images
   ---------------------------------------------------------- */

.profile-image {
    position: relative;

    overflow: hidden;

    background-color: var(--color-navy);
}


.profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform var(--transition-slow);
}


.profile-image:hover img {
    transform: scale(1.03);
}


.profile-image-main {
    grid-column: 1;

    grid-row: 1 / 3;

    min-height: 30rem;
}


.profile-image-secondary {
    min-height: 15rem;
}


/* ----------------------------------------------------------
   Profile story
   ---------------------------------------------------------- */

.profile-story {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        2rem
        1rem
        2rem
        3rem;
}


.profile-story-lead {
    margin: 0 0 1.75rem;

    color: var(--color-navy);

    font-family: var(--font-display);

    font-size: clamp(2rem, 3vw, 2.75rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.01em;
}


.profile-story p:not(.profile-story-lead) {
    max-width: 36rem;

    margin: 0 0 1.25rem;

    color: var(--color-dark-grey);

    font-size: 1rem;

    line-height: 1.8;
}


.profile-story p:last-child {
    margin-bottom: 0;
}


/* ----------------------------------------------------------
   Profile highlights
   ---------------------------------------------------------- */

.profile-highlights {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        var(--color-border-light);

    border-bottom:
        1px solid
        var(--color-border-light);
}


.profile-highlight {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 8.75rem;

    padding:
        1.5rem
        2rem;

    border-right:
        1px solid
        var(--color-border-light);
}


.profile-highlight:last-child {
    border-right: none;
}


.profile-highlight-value {
    color: var(--color-navy);

    font-family: var(--font-display);

    font-size: clamp(2.25rem, 4vw, 3.25rem);

    font-weight: 500;

    line-height: 0.9;
}


.profile-highlight-label {
    margin-top: 0.75rem;

    color: var(--color-dark-grey);

    font-size: 0.7rem;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ==========================================================
   12. QUALIFICATIONS
   ========================================================== */

.qualifications {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    margin-top: 4rem;

    border-top:
        1px solid
        var(--color-border-dark);
}


.qualification {
    display: flex;

    flex-direction: column;

    min-height: 8rem;

    padding:
        1.5rem
        1.75rem;

    border-bottom:
        1px solid
        var(--color-border-dark);
}


.qualification:nth-child(odd) {
    margin-right: 1.5rem;
}


.qualification-name {
    font-family: var(--font-display);

    font-size: clamp(1.9rem, 2.5vw, 2.5rem);

    font-weight: 500;

    line-height: 1;
}


.qualification-description {
    margin-top: 0.5rem;

    color: var(--color-grey);

    font-size: 0.85rem;

    line-height: 1.5;
}


.qualification-highlight {

    grid-column: 1 / -1;

    margin-right: 0;

    padding-left: 1.25rem;

    border-left:
        3px solid
        var(--color-orange);
}


/* ==========================================================
   13. EXPERIENCE
   ========================================================== */

.timeline {
    width: min(
        62.5rem,
        90%
    );

    margin-top: 4rem;

    margin-right: auto;
    margin-left: auto;
}


.timeline-item {
    display: grid;

    grid-template-columns:
        10.625rem
        1fr;

    gap: 2.8125rem;

    padding-top: 2.5rem;
    padding-bottom: 2.5rem;

    border-top:
        1px solid
        var(--color-border-light);
}


.timeline-date {
    color: #7d898f;

    font-family: var(--font-display);

    font-size: 1.5rem;
}


.timeline-title {
    margin: 0 0 0.4375rem;

    font-family: var(--font-display);

    font-size: clamp(1.9rem, 2.5vw, 2.5rem);

    font-weight: 500;

    line-height: 1;
}


.timeline-company {
    color: var(--color-orange);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.timeline-description {
    max-width: 45rem;

    margin-top: 0.875rem;

    color: var(--color-dark-grey);

    font-size: 1rem;

    line-height: 1.8;
}


/* ==========================================================
   14. EDUCATION
   ========================================================== */

.education-card {
    display: grid;

    grid-template-columns: 8.75rem 1fr;

    align-items: center;

    gap: 2.5rem;

    width: min(
        62.5rem,
        90%
    );

    margin-top: 3.75rem;
    margin-right: auto;
    margin-left: auto;

    padding: 3.4375rem;

    background-color: var(--color-navy-light);
}


.education-date {
    color: var(--color-white);

    font-family: var(--font-display);

    font-size: 1.5rem;
}


.education-title {
    margin: 0;

    color: var(--color-white);

    font-family: var(--font-display);

    font-size: clamp(
        2rem,
        2.8vw,
        2.75rem
    );

    font-weight: 500;

    line-height: 1;
}


.education-description {
    margin-top: 0.5rem;

    color: var(--color-white);

    font-size: 0.95rem;

    line-height: 1.6;
}


/* ==========================================================
   15. CONTACT
   ========================================================== */

.contact {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 37.5rem;

    text-align: center;
}


.contact-inner {
    width: min(
        53.125rem,
        90%
    );
}


.contact-description {
    margin-top: 1.5625rem;

    margin-bottom: 0;

    color: var(--color-dark-grey);

    font-size: 1rem;

    line-height: 1.7;
}


.contact-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 0.75rem;

    margin-top: 1.875rem;
}


.linkedin-link {
    display: inline-block;

    margin-top: 1.5625rem;

    color: var(--color-dark-grey);

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* ==========================================================
   16. FOOTER
   ========================================================== */

.site-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        1.5625rem
        var(--page-gutter);

    background-color: #050e16;

    color: #68767e;

    font-size: 0.65rem;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* ==========================================================
   17. TABLET
   ========================================================== */

@media (max-width: 1100px) {

    :root {
        --page-gutter: 2.1875rem;
    }


    /* ------------------------------------------------------
       Profile
       ------------------------------------------------------ */

    .profile-header {
        grid-template-columns: 1fr;

        gap: 2rem;

        margin-bottom: 3.5rem;
    }


    .profile-content {
        grid-template-columns: 1fr 1fr;

        gap: 1.5rem;
    }


    .profile-image-main {
        min-height: 32rem;
    }


    .profile-story {
        padding:
            1.5rem
            0
            1.5rem
            1.5rem;
    }


    .profile-highlights {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .profile-highlight:nth-child(2) {
        border-right: none;
    }


    .profile-highlight:nth-child(-n + 2) {
        border-bottom:
            1px solid
            var(--color-border-light);
    }


    /* ------------------------------------------------------
       Qualifications
       ------------------------------------------------------ */

    .qualification:nth-child(odd) {
        margin-right: 0;
    }


    /* ------------------------------------------------------
       Education
       ------------------------------------------------------ */

    .education-card {
        width: 90%;
    }
}


/* ==========================================================
   18. MOBILE
   ========================================================== */

@media (max-width: 430px) {

    .hero-content {
        width: 54%;
    }

    .hero-title {
        font-size: 3.15rem;
    }

}

@media (max-width: 900px) {

    :root {
        --page-gutter: 1.5rem;
    }


    /* ------------------------------------------------------
       Header
       ------------------------------------------------------ */

    .site-header {
        height: 4.375rem;

        padding-right: var(--page-gutter);
        padding-left: var(--page-gutter);
    }


    .site-header.scrolled {
        height: 4.375rem;
    }


    /* ------------------------------------------------------
       Logo
       ------------------------------------------------------ */

    .site-logo-mark {
        width: 2.25rem;
        height: 2.25rem;
    }


    .site-logo-name {
        font-size: 1.2rem;
    }


    .site-logo-subtitle {
        font-size: 0.7rem;
    }


    /* ------------------------------------------------------
       Burger
       ------------------------------------------------------ */

    .menu-toggle {
        display: block;

        z-index: 102;
    }


    /* ------------------------------------------------------
       Mobile navigation
       ------------------------------------------------------ */

    .main-nav {
        position: fixed;

        top: 4.375rem;
        right: 0;
        left: 0;

        z-index: 101;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        width: 100%;

        padding:
            0.9375rem
            var(--page-gutter)
            1.5625rem;

        background-color: rgba(7, 21, 33, 0.98);

        border-top:
            1px solid
            rgba(255, 255, 255, 0.10);

        transform: translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform var(--transition-normal),
            opacity var(--transition-normal);
    }


    .main-nav.open {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }


    .main-nav a {
        width: 100%;

        padding-top: 0.9375rem;
        padding-bottom: 0.9375rem;

        font-size: 0.75rem;
    }


    .main-nav a::after {
        display: none;
    }


 /* ==========================================================
   HERO — MOBILE
   ========================================================== */

    .hero {
        height: 100svh;

        min-height: 42rem;
    }


    /* ------------------------------------------------------
       Image

       Pilot slightly shifted to the right.
       ------------------------------------------------------ */

    .hero-image {
        object-position: 65% center;
    }


    /* ------------------------------------------------------
       Overlay

       Darker on the left to create a dedicated
       reading area for the text.
       ------------------------------------------------------ */

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 15, 25, 0.97) 0%,
                rgba(4, 15, 25, 0.90) 35%,
                rgba(4, 15, 25, 0.55) 58%,
                rgba(4, 15, 25, 0.12) 82%,
                rgba(4, 15, 25, 0.04) 100%
            );
    }



     /* ------------------------------------------------------
       Content

       The text is deliberately kept on the left.
       ------------------------------------------------------ */

    .hero-content {
        top: 50%;

        right: auto;
        left: var(--page-gutter);

        width: 52%;

        max-width: 24rem;

        transform: translateY(-43%);
    }


    /* ------------------------------------------------------
       Availability
       ------------------------------------------------------ */

    .hero-availability {
        margin-bottom: 1.25rem;

        font-size: 0.78rem;

        line-height: 1.35;

        letter-spacing: 0.15em;
    }


    /* ------------------------------------------------------
       Title
       ------------------------------------------------------ */

    .hero-title {
        font-size: clamp(
            3.15rem,
            12vw,
            4.25rem
        );

        line-height: 0.88;
    }


    /* ------------------------------------------------------
       Subtitle
       ------------------------------------------------------ */

    .hero-subtitle {
        max-width: 100%;

        margin-top: 1.5rem;
        margin-bottom: 1.5rem;

        font-size: 0.88rem;

        line-height: 1.65;
    }


    /* ------------------------------------------------------
       Buttons
       ------------------------------------------------------ */

    .hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 0.75rem;
    }


    .hero-actions .btn {
        width: 100%;

        min-height: 3.5rem;
    }


    /* ------------------------------------------------------
       Statistics
       ------------------------------------------------------ */

    .hero-stats {
        right: var(--page-gutter);
        bottom: 1.75rem;
        left: var(--page-gutter);

        justify-content: space-between;

        gap: 0;
    }


    .hero-stat {
        flex: 1;

        padding-left: 0.75rem;
    }


    .hero-stat-value {
        font-size: 1.5rem;
    }


    .hero-stat-label {
        font-size: 0.55rem;

        letter-spacing: 0.10em;
    }

    /* ------------------------------------------------------
       Sections
       ------------------------------------------------------ */

    .section {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }


    .section-title {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }


    /* ------------------------------------------------------
       Profile
       ------------------------------------------------------ */

    .profile-header {
        display: block;

        margin-bottom: 2.75rem;
    }


    .profile-intro {
        margin-top: 1.75rem;

        max-width: none;
    }


    .profile-intro p {
        font-size: 1rem;
    }


    .profile-content {
        display: flex;

        flex-direction: column;

        gap: 1.25rem;

        margin-bottom: 3rem;
    }


    .profile-image-main {
        min-height: 20rem;

        aspect-ratio: 16 / 10;
    }


    .profile-story {
        padding:
            1.25rem
            0;
    }


    .profile-story-lead {
        font-size: 2.25rem;
    }


    .profile-story p:not(.profile-story-lead) {
        font-size: 0.95rem;
    }


    .profile-image-secondary {
        min-height: 0;

        aspect-ratio: 16 / 9;
    }


    .profile-highlights {
        grid-template-columns:
            1fr
            1fr;
    }


    .profile-highlight {
        min-height: 7rem;

        padding:
            1.25rem
            1rem;
    }


    .profile-highlight:nth-child(odd) {
        border-right:
            1px solid
            var(--color-border-light);
    }


    .profile-highlight:nth-child(even) {
        border-right: none;
    }


    .profile-highlight:nth-child(-n + 2) {
        border-bottom:
            1px solid
            var(--color-border-light);
    }


    .profile-highlight:nth-child(3),
    .profile-highlight:nth-child(4) {
        border-bottom: none;
    }


    .profile-highlight-value {
        font-size: 2.25rem;
    }


    .profile-highlight-label {
        font-size: 0.6rem;
    }


    /* ------------------------------------------------------
       Qualifications
       ------------------------------------------------------ */

    .qualifications {
        grid-template-columns: 1fr;

        margin-top: 3rem;
    }


    .qualification {
        min-height: auto;

        padding:
            1.5rem
            0;
    }


    .qualification:nth-child(odd) {
        margin-right: 0;
    }


    .qualification-highlight {
        grid-column: auto;

        padding-left: 1rem;
    }


    .qualification-name {
        font-size: 2rem;
    }


    /* ------------------------------------------------------
       Experience
       ------------------------------------------------------ */

    .timeline {
        width: 100%;

        margin-top: 3rem;
    }


    .timeline-item {
        grid-template-columns: 1fr;

        gap: 0.625rem;

        padding-top: 2rem;
        padding-bottom: 2rem;
    }


    .timeline-date {
        font-size: 1.375rem;
    }


    .timeline-title {
        font-size: 2rem;
    }


    .timeline-description {
        font-size: 0.95rem;
    }


    /* ------------------------------------------------------
       Education
       ------------------------------------------------------ */

    .education-card {
        grid-template-columns: 1fr;

        gap: 1rem;

        width: 100%;

        margin-top: 2.5rem;

        padding: 2rem;
    }


    .education-title {
        font-size: 2.25rem;
    }


    /* ------------------------------------------------------
       Contact
       ------------------------------------------------------ */

    .contact {
        min-height: 32rem;
    }


    .contact-actions {
        flex-direction: column;
    }


    /* ------------------------------------------------------
       Footer
       ------------------------------------------------------ */

    .site-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 0.625rem;

        line-height: 1.5;
    }
}