:root {
    --ink: #102a43;
    --ink-deep: #081b2b;
    --paper: #f8f4ed;
    --cream: #eee5d8;
    --coral: #f16f5f;
    --line: rgba(16, 42, 67, .17);
    --muted: #627489;
    --sans: "Space Grotesk", sans-serif;
    --mono: "DM Mono", monospace
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: .7rem 1rem;
    background: var(--ink);
    color: white
}

.skip-link:focus {
    top: 1rem
}

.site-header {
    height: 92px;
    padding: 0 clamp(1.5rem, 6vw, 6rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.brand img {
    display: block;
    width: 164px;
    height: auto
}

#site-navigation {
    display: flex;
    align-items: center;
    gap: 2.1rem
}

#site-navigation a {
    color: var(--ink);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em
}

.nav-contact {
    border: 1px solid var(--ink);
    padding: .72rem 1rem
}

.nav-contact i {
    font-size: .65rem;
    margin-left: .35rem
}

.menu-toggle {
    display: none
}

.hero {
    min-height: 780px;
    padding: 170px clamp(1.5rem, 10vw, 10rem) 100px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg, var(--paper) 0%, var(--paper) 59%, var(--cream) 59%)
}

.hero-copy {
    max-width: 680px;
    position: relative;
    z-index: 2
}

.eyebrow,
.section-label {
    font: 500 .68rem var(--mono);
    text-transform: uppercase;
    letter-spacing: .12em
}

.eyebrow {
    display: flex;
    gap: .7rem;
    align-items: center;
    margin: 0 0 1.55rem;
    color: var(--muted)
}

.eyebrow span {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(241, 111, 95, .18)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    font-size: clamp(3.1rem, 6.1vw, 6.4rem);
    line-height: .98;
    letter-spacing: -.065em;
    margin: 0 0 2rem;
    font-weight: 800
}

h1 em {
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -.06em;
    color: var(--coral)
}

.hero-intro {
    max-width: 510px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3f566c
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: 2.25rem
}

.button {
    display: inline-flex;
    gap: .9rem;
    align-items: center;
    padding: 1rem 1.25rem;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .02em
}

.button-primary {
    background: var(--ink);
    color: white
}

.button-primary i {
    transition: transform .2s
}

.button-primary:hover i {
    transform: translateX(4px)
}

.text-link {
    color: var(--ink);
    font-size: .79rem;
    font-weight: 800;
    text-underline-offset: 6px
}

.text-link span,
.text-link i {
    margin-left: .45rem
}

.hero-art {
    height: 510px;
    position: relative;
    justify-self: end;
    width: min(100%, 470px)
}

.profile-frame {
    width: 330px;
    height: 405px;
    position: absolute;
    right: 55px;
    bottom: 8px;
    overflow: hidden;
    background: #d7b69d;
    border-radius: 165px 165px 9px 9px
}

.profile-frame img {
    width: 113%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.05)
}

.orbit {
    position: absolute;
    border: 1px solid rgba(16, 42, 67, .2);
    border-radius: 50%
}

.orbit-one {
    height: 475px;
    width: 475px;
    right: 0;
    bottom: 0
}

.orbit-two {
    height: 385px;
    width: 385px;
    right: 45px;
    bottom: 50px;
    border-color: rgba(241, 111, 95, .6)
}

.role-card {
    position: absolute;
    left: 0;
    top: 87px;
    background: var(--ink);
    color: #fff;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font: 400 .65rem/1.5 var(--mono);
    text-transform: uppercase;
    letter-spacing: .08em
}

.role-dot {
    width: 7px;
    height: 7px;
    margin-top: .2rem;
    border-radius: 50%;
    background: var(--coral)
}

.coordinate {
    position: absolute;
    right: -25px;
    bottom: 21px;
    font: 400 .61rem var(--mono);
    color: var(--ink);
    transform: rotate(-90deg);
    transform-origin: bottom right;
    letter-spacing: .08em
}

.hero-index {
    position: absolute;
    bottom: 31px;
    left: clamp(1.5rem, 6vw, 6rem);
    font: 400 .67rem var(--mono);
    color: var(--muted)
}

.section-shell {
    padding: clamp(5.5rem, 10vw, 9rem) clamp(1.5rem, 10vw, 10rem)
}

.section-label {
    color: var(--coral);
    display: flex;
    gap: .75rem;
    align-items: center
}

.section-label span {
    color: var(--muted)
}

.section-label.light span {
    color: #a6b7c8
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr .72fr;
    gap: clamp(2rem, 9vw, 10rem);
    padding: 3.2rem 0 4.8rem
}

.about h2,
.work h2,
.approach h2,
.contact h2 {
    font-size: clamp(2.35rem, 4.4vw, 4.7rem);
    line-height: 1.1;
    letter-spacing: -.06em;
    margin: 0;
    font-weight: 800
}

.about-text {
    color: #435a70
}

.about-text p {
    margin-bottom: 1.2rem
}

.about-text .text-link {
    display: inline-block;
    margin-top: .7rem
}

.education-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: .65fr 1.3fr 1.55fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    align-items: center
}

.education-strip span {
    font: 500 .65rem var(--mono);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.education-strip p {
    margin: 0;
    font-size: .78rem;
    color: var(--muted)
}

.education-strip strong {
    display: block;
    color: var(--ink);
    font-size: .82rem
}

.education-strip i {
    font-style: normal;
    color: var(--coral);
    font-size: 1rem
}

.approach {
    background: var(--ink);
    color: #f9f6ef
}

.approach-heading {
    display: grid;
    grid-template-columns: 1.2fr .55fr;
    gap: 8rem;
    margin: 3.2rem 0 4.6rem
}

.approach-heading p {
    color: #bfccda;
    align-self: end;
    font-size: .95rem
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .22)
}

.principles article {
    padding: 1.5rem 2rem 0 0;
    margin-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, .22)
}

.principles article:last-child {
    border: 0
}

.principles span {
    color: var(--coral);
    font: 400 .7rem var(--mono)
}

.principles h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 3rem 0 1rem;
    letter-spacing: -.03em
}

.principles p {
    color: #bfccda;
    font-size: .87rem
}

.work-heading {
    display: grid;
    grid-template-columns: 1.1fr .72fr;
    gap: clamp(2rem, 9vw, 10rem);
    padding: 3.2rem 0 4.5rem
}

.work-heading p {
    color: #435a70;
    align-self: end
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line)
}

.capability {
    padding: 2rem 2rem 0 0;
    margin-right: 2rem;
    border-right: 1px solid var(--line)
}

.capability:last-child {
    border: 0
}

.capability-icon {
    height: 42px;
    width: 42px;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--coral);
    font-size: 1rem
}

.capability h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 2.3rem 0 .7rem;
    letter-spacing: -.025em
}

.capability p {
    font-size: .86rem;
    color: #52677a
}

.availability {
    margin-top: 5.5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.3rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font: 400 .72rem var(--mono);
    color: #435a70
}

.availability .pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #60b889;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(96, 184, 137, .16)
}

.availability a {
    margin-left: auto;
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 800;
    text-decoration: none
}

.availability i {
    margin-left: .4rem
}

.contact {
    background: var(--coral);
    color: var(--ink)
}

.contact-inner {
    min-height: 575px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.contact .section-label {
    color: var(--ink)
}

.contact .section-label span {
    color: #7c392f
}

.contact h2 {
    margin: 2.6rem 0 1.5rem
}

.contact p {
    max-width: 440px;
    margin-bottom: 2rem
}

.email-link {
    font-size: clamp(1rem, 2.2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink);
    text-underline-offset: 8px
}

.email-link i {
    font-size: .8em;
    margin-left: .5rem
}

.site-footer {
    background: var(--ink-deep);
    color: #a6b7c8;
    padding: 2rem clamp(1.5rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 1.5fr auto auto;
    align-items: center;
    gap: 2rem
}

.footer-brand img {
    width: 135px;
    display: block
}

.site-footer p,
.site-footer small {
    margin: 0;
    font-size: .7rem
}

.social-links {
    display: flex;
    gap: .5rem
}

.social-links a {
    height: 33px;
    width: 33px;
    border: 1px solid rgba(255, 255, 255, .25);
    display: grid;
    place-items: center;
    color: white;
    text-decoration: none;
    font-size: .8rem
}

.back-to-top {
    color: white;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 700
}

.back-to-top i {
    margin-left: .5rem
}

@media(max-width:800px) {
    .site-header {
        height: 76px;
        padding: 0 1.5rem
    }

    .brand img {
        width: 135px
    }

    .menu-toggle {
        display: block;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        background: transparent
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 17px;
        height: 1px;
        background: var(--ink);
        margin: 4px auto;
        transition: transform .2s
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(2.5px) rotate(45deg)
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-2.5px) rotate(-45deg)
    }

    #site-navigation {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        padding: 1.4rem 1.5rem 1.8rem;
        background: var(--paper);
        box-shadow: 0 15px 25px rgba(16, 42, 67, .1);
        align-items: flex-start;
        flex-direction: column;
        gap: 1.1rem
    }

    #site-navigation.open {
        display: flex
    }

    .hero {
        min-height: auto;
        padding: 135px 1.5rem 4.5rem;
        display: block;
        background: var(--paper)
    }

    .hero-art {
        height: 390px;
        width: 100%;
        margin: 3.5rem auto 0;
        max-width: 420px
    }

    .profile-frame {
        width: 250px;
        height: 330px;
        right: calc(50% - 125px)
    }

    .orbit-one {
        height: 365px;
        width: 365px;
        right: calc(50% - 183px)
    }

    .orbit-two {
        height: 300px;
        width: 300px;
        right: calc(50% - 150px)
    }

    .role-card {
        left: 0;
        top: 45px
    }

    .coordinate {
        right: 0;
        bottom: 22px
    }

    .hero-index {
        display: none
    }

    .about-content,
    .work-heading,
    .approach-heading {
        grid-template-columns: 1fr;
        gap: 1.6rem
    }

    .education-strip {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .principles,
    .capabilities {
        grid-template-columns: 1fr
    }

    .principles article,
    .capability {
        margin: 0;
        padding: 1.8rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .principles article {
        border-color: rgba(255, 255, 255, .22)
    }

    .principles article:last-child,
    .capability:last-child {
        border-bottom: 0
    }

    .principles h3,
    .capability h3 {
        margin: 1.3rem 0 .7rem
    }

    .availability {
        align-items: flex-start;
        flex-wrap: wrap
    }

    .availability a {
        width: 100%;
        margin: 0
    }

    .site-footer {
        grid-template-columns: 1fr auto;
        gap: 1.3rem
    }

    .site-footer p {
        grid-column: 1/-1;
        grid-row: 2
    }

    .back-to-top {
        grid-column: 1;
        grid-row: 3
    }

    .site-footer small {
        grid-column: 2;
        grid-row: 3
    }
}

@media(max-width:430px) {
    h1 {
        font-size: 3rem
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.2rem
    }

    .hero-art {
        height: 350px
    }

    .profile-frame {
        height: 290px;
        width: 220px;
        right: calc(50% - 110px)
    }

    .orbit-one {
        height: 320px;
        width: 320px;
        right: calc(50% - 160px)
    }

    .orbit-two {
        height: 270px;
        width: 270px;
        right: calc(50% - 135px)
    }

    .role-card {
        font-size: .58rem
    }

    .section-shell {
        padding: 4.5rem 1.5rem
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
.hero-art{will-change:transform}.profile-frame,.orbit,.role-card{will-change:transform}.hero-art.is-interactive{cursor:crosshair}.hero-art.is-interactive .profile-frame{transition:transform .45s cubic-bezier(.2,.8,.2,1)}.hero-art.is-interactive .role-card{transition:transform .4s ease}.hero-art.is-interactive .orbit{transition:transform .6s cubic-bezier(.2,.8,.2,1)}
