* {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    color: #1F2933;
    background-color: #08111F;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', 'IBM Plex Sans', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.eyebrow,
.tag,
.exp-cat {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .04em;
    font-size: .78rem;
}

.section {
    padding: 88px 8vw;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #14213D;
}

.section-head .eyebrow {
    color: #C9781E;
    display: block;
    margin-bottom: 10px;
}

.section-head p {
    color: #4B5563;
    margin-top: 12px;
}

.blueprint-bg {
    background-color: #10243E;
}


/* HEADER */

header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #08111F;
    border-bottom: 1px solid rgba(79,209,217,.25);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8vw;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    color: #F6F4EE;
    font-weight: 600;
    font-size: 1.05rem;
}

.brand span {
    color: #4FD1D9;
}


/* MENU */

#menu,
#menu li,
#menu a {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

#menu {
    display: flex;
    height: 44px;
    background: linear-gradient(
        180deg,
        #17406F 0%,
        #0E2340 100%
    );
    border-radius: 6px;
    padding: 0 6px;
}

#menu li {
    list-style: none;
    display: flex;
    align-items: center;
    height: 44px;
}

#menu li a {
    display: block;
    padding: 0 20px;
    line-height: 44px;
    font-size: .92rem;
    color: #E7ECF3;
    transition: color .2s ease-in-out;
}

#menu li a:hover {
    color: #4FD1D9;
}

#menu li a.active {
    color: #4FD1D9;
    position: relative;
}

#menu li a.active::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 6px;
    height: 2px;
    background: #4FD1D9;
}


/* HOME */

#home {
    padding: 110px 8vw 90px;
    display: flex;
    align-items: center;
    gap: 56px;
    min-height: 78vh;
    position: relative;
    overflow: hidden;
}

#home .hero-text {
    flex: 1.1;
    position: relative;
    z-index: 2;
}

#home .eyebrow {
    color: #4FD1D9;
    display: block;
    margin-bottom: 14px;
}

#home h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #F6F4EE;
    line-height: 1.05;
}

#home h1 em {
    font-style: normal;
    color: #4FD1D9;
}

#home .role {
    margin-top: 18px;
    color: #B9C6D6;
    font-size: 1.05rem;
    max-width: 46ch;
}

#home .hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 5px;
    font-size: .92rem;
    font-weight: 600;
}

.btn-primary {
    background: #4FD1D9;
    color: #0E1B30;
}

.btn-primary:hover {
    background: #7FE0E6;
}

.btn-ghost {
    border: 1px solid rgba(246,244,238,.35);
    color: #F6F4EE;
}

.btn-ghost:hover {
    border-color: #4FD1D9;
    color: #4FD1D9;
}

.home-links {
    margin-top: 42px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.home-links a {
    border: 1px solid rgba(246,244,238,.25);
    border-radius: 6px;
    padding: 14px 18px;
    color: #E7ECF3;
    font-size: .88rem;
    transition: border-color .2s, color .2s;
}

.home-links a:hover {
    border-color: #4FD1D9;
    color: #4FD1D9;
}


/* ABOUT */

#about {
    position: relative;
    min-height: 75vh;
    padding: 40px 8vw 0;
    overflow: hidden;
    background-color: #0E1B30;
}

#about::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(16, 36, 62, 0.60),
            rgba(16, 36, 62, 0.60)
        ),
        url('image.html/About.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#about .about-title,
#about .about-content {
    position: relative;
    z-index: 2;
}

#about .about-title {
    text-align: center;
    margin-bottom: 25px;
}

#about .about-title h2 {
    color: #F6F4EE;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 1px;
}

#about .about-content {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 40px;
    align-items: center;
}

#about .about-left,
#about .about-right {
    color: #F6F4EE;
    background: rgba(14, 27, 48, 0.65);
    padding: 24px;
    border-radius: 8px;
}

#about .about-left {
    transform: translateY(-30px);
}

#about .about-right {
    transform: translateY(30px);
}

#about .about-left p,
#about .about-right p {
    color: #E7ECF3;
    margin-bottom: 16px;
}

.about-photo img {
    width: 360px;
    height: 560px;
    object-fit: cover;
    border: 4px solid #14213D;
    border-radius: 8px;
    opacity: 0.92;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(13px);
}

.about-photo img:hover {
    opacity: 1;
    transform: translateY(13px) scale(1.02);
}

#about .info-list li {
    color: #E7ECF3;
    border-bottom: 1px dashed rgba(255,255,255,.25);
}

#about .info-list li b {
    color: #4FD1D9;
}


/* EXPERIENCE */

#experience {
    min-height: 650px;
    padding: 120px 8% 80px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #07264f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;

    color: #E7ECF3;
}

#experience .section-head h2 {
    color: #F6F4EE;
}

#experience .section-head p {
    color: #9FB2C8;
}

.experience-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#experience .section-head {
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0 auto 30px;
}

#experience .section-head h2 {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 55px;
    font-weight: 700;
    margin: 0;
    text-align: center !important;
}

#experience .exp-panel {
    width: 80%;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}

#experience .exp-panel p {
    color: #ffffff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    text-align: justify !important;
}


/* CONTACT */

#contact {
    color: #E7ECF3;
    text-align: left;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-grid .col-left {
    flex: 1 1 320px;
}

.contact-grid .col-right {
    flex: 1 1 320px;
}

#contact h2 {
    color: #F6F4EE;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

#contact p.lead {
    color: #9FB2C8;
    margin-top: 14px;
    max-width: 42ch;
}

.contact-links {
    margin-top: 26px;
}

.contact-links li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .92rem;
}

.contact-links li b {
    color: #4FD1D9;
    margin-right: 8px;
    font-family: 'IBM Plex Mono', monospace;
}

form.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 5px;
    padding: 12px 14px;
    color: #F6F4EE;
    font-family: inherit;
    font-size: .92rem;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: inherit;
}


/* FOOTER */

footer.site-footer {
    background: #08111F;
    padding: 40px 8vw 24px;
    color: #9FB2C8;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .brand {
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: .84rem;
    max-width: 32ch;
    color: #6B7C93;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-nav h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .74rem;
    letter-spacing: .06em;
    color: #4FD1D9;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-nav ul li {
    margin-bottom: 8px;
    font-size: .86rem;
}

.footer-nav ul li a:hover {
    color: #4FD1D9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 18px;
    font-size: .78rem;
    color: #6B7C93;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 44px;
    left: 0;
    min-width: 180px;
    background: #0E2340;
    padding: 8px;
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    display: block !important;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px !important;
    line-height: normal !important;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .section {
        padding: 64px 6vw;
    }

    #home {
        flex-direction: column;
        text-align: left;
        padding-top: 60px;
    }

    .layout-2col {
        flex-direction: column;
    }

    .exp-layout {
        flex-direction: column;
    }

    .vnav {
        display: flex;
        gap: 6px;
        flex: none;
        width: 100%;
        overflow-x: auto;
    }

    .vnav a {
        flex: 1 0 auto;
        margin-bottom: 0;
    }

    #menu {
        gap: 2px;
    }

    #menu li a {
        padding: 0 12px;
    }

    #about .about-content {
        grid-template-columns: 1fr;
    }

    .about-photo {
        text-align: center;
    }

    .about-photo img {
        max-width: 100%;
    }
}


@media (max-width: 768px) {

    #experience {
        min-height: 600px;
        padding: 110px 5% 60px;
    }

    #experience .section-head h2 {
        font-size: 32px;
    }

    #experience .exp-panel {
        width: 95%;
        padding: 10px;
    }

    #experience .exp-panel p {
        font-size: 15px;
        line-height: 1.7;
    }

}


@media (max-width: 640px) {

    .nav-wrap {
        flex-wrap: wrap;
        gap: 10px;
    }

    .exp-item .exp-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
    }

}