*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --off-white: #FAFAF8;
    --cream: #F5F2EC;
    --border: #E2DED6;
    --border-light: #EDEBE6;
    --text: #1A1916;
    --muted: #6B6860;
    --hint: #A09D97;
    --pink-bg: #FBF0F4;
    --pink-accent: #D4537E;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--text)
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 0.5px solid var(--border);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none
}

.nav-links a {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--text)
}

/* HERO - full bleed split */
.hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;

}

.hero-photo {
    position: relative;
    overflow: hidden
}

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

.hero-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    border-left: 0.5px solid var(--border);
    background: white
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 1.2rem
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem
}

.hero-name em {
    font-style: italic;
    display: block
}

.hero-intro {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 300px
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 2rem
}

.tag {
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 5px 13px;
    border: 0.5px solid var(--border);
    border-radius: 99px;
    color: var(--muted);
    background: var(--off-white)
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.achievement-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.achievement-text h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.achievement-text p {
    margin: 0;
    color: var(--pink-accent);
    font-weight: 600;
}

@media(max-width:768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .achievement-item {
        gap: 12px;
        padding: 12px;
    }

    .achievement-item img {
        width: 70px;
        height: 70px;
    }

    .achievement-text h4 {
        font-size: 16px;
    }
}


@media(max-width:768px) {
    .award-grid {
        grid-template-columns: 1fr;
    }
}

.guardian-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: var(--hint);
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-radius: 99px;
    padding: 7px 14px
}

.guardian-pill svg {
    width: 12px;
    height: 12px;
    stroke: var(--hint);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: white
}

.stat {
    padding: 1.4rem 1rem;
    text-align: center;
    border-right: 0.5px solid var(--border-light)
}

.stat:last-child {
    border-right: none
}

.stat-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 6px
}

.stat-val {
    font-size: 16px;
    font-weight: 500
}

/* SECTION SHELL */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem
}


.sec {
    padding: 3.5rem 0;
    border-bottom: none;
}

.sec-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem
}

.sec-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hint);
    white-space: nowrap
}

.sec-rule {
    flex: 1;
    height: 0.5px;
    background: var(--border)
}

/* FULL FEATURE IMAGES - tall portrait display */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.feature-img {
    overflow: hidden;
    border-radius: 8px;
    background: var(--cream)
}

.feature-img.tall {
    aspect-ratio: 3/4
}

.feature-img.xtall {
    aspect-ratio: 2/3
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .5s ease
}

.feature-img:hover img {
    transform: scale(1.04)
}

/* FULL WIDTH SINGLE IMAGE */
.full-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px
}

.full-img-wrap img {
    width: 100%;
    display: block;

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

/* TWO COL IMAGES */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.two-col .img-box {
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream)
}

.two-col .img-box img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center
}

.two-col .img-box.portrait {
    aspect-ratio: 3/4
}

.two-col .img-box.landscape {
    aspect-ratio: 4/3
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start
}

.meta-block {
    display: flex;
    flex-direction: column;
    gap: 0
}

.meta-row {
    padding: 12px 0;
    border-bottom: 0.5px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 3px
}

.meta-row:last-child {
    border-bottom: none
}

.meta-label {
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hint)
}

.meta-val {
    font-size: 13px;
    font-weight: 500
}

.bio {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.bio-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--text)
}

.bio-lead em {
    font-style: italic
}

.bio-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.media-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.media-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.media-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;
}

.media-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.media-btn {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pink-accent);
    font-weight: 600;
}

@media(max-width:768px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

/* SKILLS */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem
}

.skill-col-title {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 14px
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.skill-list li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 16px;
    position: relative;
    line-height: 1.5
}

.skill-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border)
}

/* CONTACT */
.contact-wrap {
    padding: 3.5rem 0 5rem
}

.contact-card {
    background: #1A1916;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden
}

.contact-left {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem
}

.contact-eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3)
}

.contact-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1.05
}

.contact-note {
    font-size: clamp(6px, 6vw, 12px);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px
}

.contact-right {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 0.0px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px
}

.c-row {
    display: flex;
    align-items: center;
    gap: 14px
}

.c-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.c-icon svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.5);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.c-info-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 3px
}

.c-info-val {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400
}

footer {
    border-top: 0.5px solid var(--border);
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    color: var(--hint)
}

.footer-note {
    font-size: 11px;
    color: var(--hint);
    letter-spacing: 0.04em
}

@media(max-width:768px) {
    .hero {
        grid-template-columns: 1fr;
        max-height: none
    }

    .hero-photo {
        height: 70vw;
        min-height: 320px
    }

    .hero-side {
        padding: 2rem 1.5rem
    }

    .hero-name {
        font-size: 54px
    }

    .stats-bar {
        grid-template-columns: repeat(3, 1fr)
    }

    .feature-strip {
        grid-template-columns: 1fr 1fr
    }

    .two-col {
        grid-template-columns: 1fr
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .contact-card {
        grid-template-columns: 1fr
    }

    .contact-right {
        border-left: none;
        border-top: 0.5px solid rgba(255, 255, 255, 0.08)
    }

    .nav-links {
        display: none
    }

    footer {
        flex-direction: column;
        gap: 6px;
        text-align: center
    }
}

.contact-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.contact-bar .stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all .3s ease;
}

.contact-bar .stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.social-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.contact-bar .stat-label {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 6px;
}

.contact-bar .stat-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    word-break: break-word;
}

.contact-bar a {
    text-decoration: none;
    color: inherit;
}

@media(max-width:768px) {

    .contact-bar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contact-bar .stat {
        padding: 15px;
    }

    .social-logo {
        width: 100px;
        height: 100px;
    }

    .contact-bar .stat-val {
        font-size: 12px;
    }
}