
:root {

    --black: #080808;
    --black-soft: #0d0d0d;

    --surface: #11110f;
    --surface-2: #171713;

    --ivory: #f2efe7;
    --ivory-soft: #d8d4ca;

    --muted: #aaa79f;
    --faint: #74726d;

    --yellow: #d8ad32;
    --yellow-light: #efd36e;
    --yellow-dark: #a98422;

    --border: rgba(242, 239, 231, 0.13);
    --border-strong: rgba(242, 239, 231, 0.24);

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;

    --max-width: 1200px;

    --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);

}

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    background: var(--black);

    color: var(--ivory);

    font-family: var(--font-body);

    line-height: 1.65;

    overflow-x: hidden;

}

img {

    display: block;
    max-width: 100%;

}

a {

    text-decoration: none;
    color: inherit;

}

ul {
    list-style: none;
}

button,
input,
textarea {

    font-family: inherit;

}

button {
    cursor: pointer;
}

::selection {

    background: var(--yellow);

    color: var(--black);

}

/* =========================================================
   HIDE OLD GENERATED-STYLE EFFECTS
========================================================= */

#networkCanvas,
.cursor-glow,
.photo-glow,
.avatar-ring,
.floating-chip {

    display: none !important;

}

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

.section-inner {

    width: min( calc(100% - 64px), var(--max-width) );

    margin: 0 auto;

}

section {

    position: relative;

}

.eyebrow {

    display: inline-block;

    font-family: var(--font-mono);

    font-size: 0.72rem;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: var(--yellow);

    margin-bottom: 22px;

}

.eyebrow.center {

    display: block;
    text-align: center;

}

.section-title {

    font-family: var(--font-display);

    font-size: clamp( 2.7rem, 5vw, 5.6rem );

    line-height: 0.98;

    font-weight: 500;

    letter-spacing: -0.055em;

    color: var(--ivory);

}

.section-title span {

    color: var(--yellow);

}

.section-heading {

    display: grid;

    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);

    gap: 70px;

    align-items: end;

    margin-bottom: 80px;

}

.section-description {

    color: var(--muted);

    max-width: 390px;

    font-size: 0.96rem;

}

.section-index {

    font-family: var(--font-mono);

    color: var(--yellow);

    font-size: 0.72rem;

}

/* =========================================================
   LOADER
========================================================= */

.loading-screen {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--black);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transition: opacity 0.55s ease, visibility 0.55s ease;

}

.loading-screen.hidden {

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.loading-logo {

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border: 1px solid var(--yellow);

    font-family: var(--font-display);

    font-size: 1.25rem;

    font-weight: 600;

    color: var(--yellow);

    margin-bottom: 28px;

}

.loading-name {

    font-family: var(--font-display);

    font-size: clamp( 1.8rem, 5vw, 3rem );

    font-weight: 500;

    letter-spacing: -0.04em;

}

.loading-name .letter {

    display: inline-block;

}

.loading-sub {

    margin-top: 10px;

    color: var(--muted);

    font-family: var(--font-mono);

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.1em;

}

.loading-bar {

    width: 180px;
    height: 1px;

    background: var(--border);

    margin-top: 35px;

    overflow: hidden;

}

.loading-bar-fill {

    width: 0;
    height: 100%;

    background: var(--yellow);

    transition: width 1s ease;

}

/* =========================================================
   BUTTONS
========================================================= */

.btn {

    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 0;

    font-size: 0.86rem;

    font-weight: 600;

    transition: var(--transition);

    border: 1px solid transparent;

}

.btn-primary {

    background: var(--yellow);

    color: var(--black);

    border-color: var(--yellow);

}

.btn-primary:hover {

    background: var(--yellow-light);

    border-color: var(--yellow-light);

    transform: translateY(-3px);

}

.btn-outline {

    border: 1px solid var(--border-strong);

    color: var(--ivory);

    background: transparent;

}

.btn-outline:hover {

    border-color: var(--yellow);

    color: var(--yellow);

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.78rem;

    color: var(--yellow);

}

/* =========================================================
   NAVIGATION
========================================================= */

.nav {

    position: fixed;

    top: 0;

    left: 0;
    right: 0;

    z-index: 1000;

    border-bottom: 1px solid var(--border);

    background: rgba( 8, 8, 8, 0.92 );

    backdrop-filter: blur(14px);

}

.nav-inner {

    max-width: var(--max-width);

    margin: 0 auto;

    min-height: 78px;

    padding: 0 32px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}

.logo {

    font-family: var(--font-display);

    font-weight: 700;

    font-size: 1.25rem;

    letter-spacing: -0.03em;

}

.logo span {

    color: var(--yellow);

}

.nav-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 26px;

    flex: 1;

}

.nav-links a {

    position: relative;

    color: var(--muted);

    font-size: 0.78rem;

    font-weight: 500;

    padding: 28px 0;

    transition: color 0.25s ease;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 1px;

    background: var(--yellow);

    transition: width 0.25s ease;

}

.nav-links a:hover,
.nav-links a.active {

    color: var(--ivory);

}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 100%;

}

.nav-pill {

    display: none !important;

}

.nav-cta {

    min-height: 42px;

    padding: 0 18px;

    font-size: 0.78rem;

}

.nav-toggle {

    display: none;

    background: transparent;

    border: 0;

    flex-direction: column;

    gap: 5px;

}

.nav-toggle span {

    width: 24px;

    height: 1px;

    background: var(--ivory);

}

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

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 32px 100px;

    border-bottom: 1px solid var(--border);

}

.hero-inner {

    width: 100%;

    max-width: var(--max-width);

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);

    gap: 90px;

    align-items: center;

}

.hero-text {

    position: relative;

    z-index: 1;

}

.hero-name {

    font-family: var(--font-display);

    font-size: clamp( 4rem, 8.7vw, 8.7rem );

    line-height: 0.78;

    letter-spacing: -0.075em;

    font-weight: 500;

    margin: 10px 0 45px;

}

.hero-name span {

    color: var(--yellow);

}

.hero-role-row {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 28px;

}

.hero-line {

    width: 55px;

    height: 1px;

    background: var(--yellow);

    flex-shrink: 0;

}

.hero-role {

    font-family: var(--font-display);

    font-size: clamp( 1rem, 2vw, 1.35rem );

    font-weight: 500;

    color: var(--ivory-soft);

}

.badge-track {

    display: flex;

    flex-wrap: wrap;

    gap: 9px 20px;

    margin-bottom: 30px;

}

.hero-badge {

    padding: 0;

    border: 0;

    background: none;

    border-radius: 0;

    font-family: var(--font-mono);

    font-size: 0.68rem;

    text-transform: uppercase;

    letter-spacing: 0.07em;

    color: var(--faint);

}

.hero-badge:not(:last-child)::after {

    content: " /";

    margin-left: 18px;

    color: var(--yellow-dark);

}

.hero-sub {

    max-width: 560px;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 35px;

}

.hero-cta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 48px;

}

.hero-bottom {

    padding-top: 24px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 560px;

}

.socials {

    display: flex;

    align-items: center;

    gap: 10px;

}

.socials a {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    color: var(--muted);

    transition: var(--transition);

}

.socials a:hover {

    border-color: var(--yellow);

    color: var(--yellow);

    transform: translateY(-2px);

}

.hero-location {

    color: var(--faint);

    font-family: var(--font-mono);

    font-size: 0.64rem;

    letter-spacing: 0.08em;

}

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

.hero-photo {

    position: relative;

    width: 100%;

    max-width: 440px;

    justify-self: end;

}

.avatar-wrap {

    width: 100%;

    height: auto;

    position: relative;

    z-index: 2;

}

.photo-cutout {

    position: relative;

    inset: auto;

    width: 100%;

    height: 560px;

    object-fit: cover;

    object-position: center 15%;

    border-radius: 0;

    animation: none;

    filter: grayscale(10%);

}

.hero-photo::before {

    content: "";

    position: absolute;

    top: 18px;

    left: -18px;

    width: 100%;

    height: 100%;

    border: 1px solid var(--yellow);

    z-index: 0;

}

.hero-photo-number {

    position: absolute;

    top: -54px;

    right: 0;

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.75rem;

    letter-spacing: 0.08em;

}

.photo-caption {

    margin-top: 22px;

    display: flex;

    justify-content: flex-end;

    gap: 24px;

    font-family: var(--font-mono);

    font-size: 0.65rem;

    color: var(--faint);

    letter-spacing: 0.08em;

}

.scroll-cue {

    position: absolute;

    bottom: 28px;

    left: 32px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-family: var(--font-mono);

    color: var(--faint);

    text-transform: uppercase;

    font-size: 0.62rem;

    letter-spacing: 0.1em;

}

/* =========================================================
   ABOUT
========================================================= */

.about {

    padding: 150px 0;

    background: var(--black-soft);

    border-bottom: 1px solid var(--border);

}

.about-inner {

    display: grid;

    grid-template-columns: 50px minmax(300px, 0.75fr) minmax(0, 1.25fr);

    gap: 55px;

    align-items: center;

}

.about-photo {

    position: relative;

}

.about-photo img {

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 0;

    filter: grayscale(20%);

}

.about-photo-frame {

    position: absolute;

    top: 15px;

    left: 15px;

    width: 100%;

    height: 100%;

    border: 1px solid var(--yellow-dark);

    z-index: -1;

}

.about-para {

    max-width: 620px;

    margin: 38px 0 42px;

}

.about-para p {

    color: var(--muted);

    font-size: 1rem;

    margin-bottom: 18px;

}

.about-facts {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    margin-bottom: 38px;

    border-top: 1px solid var(--border);

}

.fact {

    padding: 22px 20px 22px 0;

    border-bottom: 1px solid var(--border);

}

.fact:nth-child(odd) {

    border-right: 1px solid var(--border);

}

.fact:nth-child(even) {

    padding-left: 24px;

}

.fact-label {

    display: block;

    color: var(--faint);

    font-family: var(--font-mono);

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    margin-bottom: 7px;

}

.fact-value {

    color: var(--ivory);

    font-size: 0.92rem;

}

/* =========================================================
   EDUCATION
========================================================= */

.education {

    padding: 150px 0;

    border-bottom: 1px solid var(--border);

}

.education-list {

    border-top: 1px solid var(--border);

}

.education-card {

    position: relative;

    display: grid;

    grid-template-columns: 80px minmax(0, 1fr) auto;

    align-items: center;

    gap: 30px;

    padding: 40px 0;

    border-bottom: 1px solid var(--border);

    background: transparent;

    border-radius: 0;

    transition: var(--transition);

}

.education-card:hover {

    padding-left: 16px;

}

.education-number {

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.7rem;

}

.education-icon {

    display: none;

}

.education-body h3 {

    font-family: var(--font-display);

    font-size: clamp( 1.45rem, 2.5vw, 2.1rem );

    font-weight: 500;

    letter-spacing: -0.03em;

    margin: 7px 0;

}

.education-degree {

    color: var(--muted);

    margin-bottom: 16px;

}

.date-range {

    color: var(--faint);

    font-family: var(--font-mono);

    font-size: 0.68rem;

    letter-spacing: 0.04em;

}

.status-badge {

    padding: 7px 10px;

    border: 1px solid var(--yellow-dark);

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.62rem;

    text-transform: uppercase;

    border-radius: 0;

    background: transparent;

}

/* =========================================================
   TAGS
========================================================= */

.tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}

.tag {

    border-radius: 0;

    border: 0;

    background: none;

    color: var(--faint);

    font-family: var(--font-mono);

    text-transform: uppercase;

    letter-spacing: 0.04em;

}

.tag.small {

    font-size: 0.62rem;

    padding: 0;

}

.tag.small:not(:last-child)::after {

    content: " /";

    margin-left: 8px;

    color: var(--yellow-dark);

}

/* =========================================================
   SKILLS
========================================================= */

.skills {

    padding: 150px 0;

    background: var(--black-soft);

    border-bottom: 1px solid var(--border);

}

.skill-tabs {

    position: relative;

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-start;

    gap: 0;

    margin-bottom: 45px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}

.skill-tab {

    position: relative;

    z-index: 2;

    background: transparent;

    border: 0;

    border-right: 1px solid var(--border);

    color: var(--faint);

    padding: 18px 24px;

    font-size: 0.76rem;

    transition: var(--transition);

}

.skill-tab:first-of-type {

    border-left: 1px solid var(--border);

}

.skill-tab:hover,
.skill-tab.active {

    background: var(--yellow);

    color: var(--black);

}

.tab-pill {

    display: none !important;

}

.skill-panel {

    display: grid;

    grid-template-columns: repeat( auto-fit, minmax( 170px, 1fr ) );

    gap: 1px;

    background: var(--border);

    border: 1px solid var(--border);

    margin-bottom: 70px;

}

.skill-pill {

    background: var(--black);

    border: 0;

    border-radius: 0;

    min-height: 90px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 0.85rem;

    transition: var(--transition);

}

.skill-pill:hover {

    background: var(--yellow);

    color: var(--black);

}

.skill-pill img {

    width: 22px;

    height: 22px;

    object-fit: contain;

}

.skills-extras {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

}

.soft-skills {

    margin: 0;

    text-align: left;

}

.small-heading {

    font-family: var(--font-mono);

    font-size: 0.68rem;

    color: var(--yellow);

    text-transform: uppercase;

    letter-spacing: 0.08em;

    margin-bottom: 20px;

}

.soft-tags {

    display: flex;

    flex-wrap: nowrap;

    justify-content: flex-start;

    gap: 0;

    white-space: nowrap;

}

.soft-tag {

    padding: 9px 14px;

    border: 1px solid var(--border);

    border-radius: 0;

    background: transparent;

    color: var(--muted);

    font-size: 0.76rem;

    margin: -1px 0 0 -1px;

}

/* =========================================================
   PROJECTS
========================================================= */

.projects {

    padding: 150px 0;

    border-bottom: 1px solid var(--border);

}

.projects-grid {

    display: flex;

    flex-direction: column;

    gap: 0;

    border-top: 1px solid var(--border);

}

.project-card {

    position: relative;

    display: grid;

    grid-template-columns: 55px minmax( 320px, 0.85fr ) minmax( 0, 1.15fr );

    gap: 38px;

    align-items: center;

    padding: 60px 0;

    border: 0;

    border-bottom: 1px solid var(--border);

    background: transparent;

    border-radius: 0;

    overflow: visible;

    transition: var(--transition);

}

.project-number {

    align-self: start;

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.7rem;

}

.project-thumb {

    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border: 0;

}

.project-thumb::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba( 8, 8, 8, 0.08 );

    transition: background 0.35s ease;

}

.project-card:hover
.project-thumb::after {

    background: transparent;

}

.project-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.7s cubic-bezier( 0.22, 1, 0.36, 1 );

}

.project-card:hover
.project-thumb img {

    transform: scale(1.035);

}

.thumb-badge {

    position: absolute;

    top: 12px;

    right: 12px;

    z-index: 2;

    padding: 6px 9px;

    border-radius: 0;

    background: var(--black);

    border: 1px solid var(--yellow-dark);

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.58rem;

    text-transform: uppercase;

}

.thumb-badge.complete {

    color: var(--ivory);

    border-color: var(--border-strong);

}

.project-body {

    padding: 0;

}

.project-kicker {

    display: block;

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    margin-bottom: 14px;

}

.group-tag {

    border: 0;

    padding: 0;

    color: inherit;

}

.project-body h3 {

    font-family: var(--font-display);

    font-size: clamp( 1.8rem, 3vw, 3rem );

    line-height: 1.03;

    font-weight: 500;

    letter-spacing: -0.045em;

    margin-bottom: 22px;

}

.project-body p {

    color: var(--muted);

    font-size: 0.91rem;

    margin-bottom: 14px;

    max-width: 620px;

}

.project-body .tags {

    margin: 25px 0 22px;

}

.project-links {

    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

}

.project-links a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--ivory);

    font-family: var(--font-mono);

    font-size: 0.68rem;

    text-transform: uppercase;

    border-bottom: 1px solid transparent;

    padding-bottom: 4px;

    transition: var(--transition);

}

.project-links a:hover {

    color: var(--yellow);

    border-color: var(--yellow);

}

/* =========================================================
   EXPERIENCE
========================================================= */

.experience {

    padding: 150px 0;

    background: var(--black-soft);

    border-bottom: 1px solid var(--border);

}

.timeline {

    max-width: none;

    padding: 0;

    margin: 0;

    border-top: 1px solid var(--border);

}

.timeline::before {

    display: none;

}

.timeline-item {

    width: 100% !important;

    margin: 0 !important;

    display: grid;

    grid-template-columns: 80px minmax(0, 1fr);

    gap: 30px;

    padding: 48px 0;

    border-bottom: 1px solid var(--border);

    text-align: left !important;

}

.timeline-dot {

    position: static !important;

    width: auto;

    height: auto;

    border: 0;

    background: none;

    box-shadow: none;

    border-radius: 0;

    display: block;

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.68rem;

}

.timeline-content {

    max-width: 760px;

    padding: 0;

    background: none;

    border: 0;

    border-radius: 0;

    text-align: left;

}

.timeline-content h3 {

    font-family: var(--font-display);

    font-size: clamp( 1.7rem, 3vw, 2.5rem );

    font-weight: 500;

    letter-spacing: -0.035em;

    margin: 7px 0 18px;

}

.timeline-content p {

    color: var(--muted);

    margin-bottom: 15px;

}

.volunteer-tag {

    display: block;

    color: var(--yellow);

    border: 0;

    padding: 0;

    border-radius: 0;

    font-family: var(--font-mono);

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    margin: 8px 0 0;

}

.volunteer-points {

    margin-top: 18px;

}

.volunteer-points li {

    position: relative;

    color: var(--muted);

    padding: 0 0 0 20px !important;

    margin-bottom: 12px;

    text-align: left !important;

    font-size: 0.9rem;

}

.volunteer-points li::before {

    content: "";

    position: absolute;

    left: 0 !important;

    right: auto !important;

    top: 9px;

    width: 6px;

    height: 1px;

    border-radius: 0;

    background: var(--yellow);

}

.achievement-featured {

    max-width: none;

    margin-top: 75px;

}

.achievement-card {

    display: grid;

    grid-template-columns: 140px minmax(0, 1fr);

    gap: 35px;

    padding: 40px;

    border: 1px solid var(--yellow-dark);

}

.achievement-number {

    color: var(--yellow);

    font-family: var(--font-mono);

    font-size: 0.66rem;

}

.achievement-card h3 {

    font-family: var(--font-display);

    font-size: clamp( 1.8rem, 3vw, 2.8rem );

    font-weight: 500;

    letter-spacing: -0.04em;

    margin-bottom: 15px;

}

.achievement-card p {

    max-width: 700px;

    color: var(--muted);

}

/* =========================================================
   CERTIFICATIONS
========================================================= */

.certifications {

    padding: 150px 0;

    border-bottom: 1px solid var(--border);

}

.cert-grid {

    display: grid;

    grid-template-columns: repeat( 3, 1fr );

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);

}

.cert-card {

    min-height: 260px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 40px;

    padding: 32px;

    background: transparent;

    border: 0;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    border-radius: 0;

    transition: var(--transition);

}

.cert-card:hover {

    background: var(--yellow);

    color: var(--black);

}

.cert-number {

    font-family: var(--font-mono);

    font-size: 0.65rem;

    color: var(--yellow);

}

.cert-card:hover
.cert-number,
.cert-card:hover
.cert-issuer,
.cert-card:hover
.cert-link {

    color: var(--black);

}

.cert-issuer {

    display: block;

    font-family: var(--font-mono);

    font-size: 0.64rem;

    color: var(--yellow);

    text-transform: uppercase;

    letter-spacing: 0.06em;

    margin-bottom: 12px;

}

.cert-card h3 {

    font-family: var(--font-display);

    font-size: 1.35rem;

    font-weight: 500;

    line-height: 1.15;

    margin-bottom: 22px;

}

.cert-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-family: var(--font-mono);

    font-size: 0.65rem;

    text-transform: uppercase;

}

/* =========================================================
   CONTACT
========================================================= */

.contact {

    padding: 160px 0;

    background: var(--yellow);

    color: var(--black);

}

.contact-inner {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

}

.contact
.eyebrow {

    color: var(--black);

}

.contact-title {

    font-family: var(--font-display);

    font-size: clamp( 3.3rem, 6.8vw, 7rem );

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.065em;

}

.contact-title span {

    color: rgba( 8, 8, 8, 0.42 );

}

.contact-sub {

    max-width: 440px;

    margin: 35px 0;

    color: rgba( 8, 8, 8, 0.7 );

}

.contact-details {

    border-top: 1px solid rgba( 8, 8, 8, 0.2 );

}

.contact-item {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 15px 0;

    border-bottom: 1px solid rgba( 8, 8, 8, 0.2 );

    font-size: 0.8rem;

}

.contact-item span {

    font-family: var(--font-mono);

    text-transform: uppercase;

    font-size: 0.63rem;

    letter-spacing: 0.06em;

    opacity: 0.65;

}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}

.input-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.input-group label {

    font-family: var(--font-mono);

    font-size: 0.64rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    border: 0;

    border-bottom: 1px solid rgba( 8, 8, 8, 0.35 );

    background: transparent;

    border-radius: 0;

    padding: 12px 0;

    font-size: 0.92rem;

    color: var(--black);

    resize: vertical;

    outline: none;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {

    color: rgba( 8, 8, 8, 0.45 );

}

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--black);

    box-shadow: none;

}

.contact-form
.btn-primary {

    align-self: flex-start;

    background: var(--black);

    border-color: var(--black);

    color: var(--ivory);

    margin-top: 8px;

}

.contact-form
.btn-primary:hover {

    background: var(--ivory);

    border-color: var(--ivory);

    color: var(--black);

}

.form-status {

    min-height: 20px;

    font-size: 0.8rem;

}

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

.footer {

    background: var(--black);

    color: var(--ivory);

}

.footer-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 60px;

    padding-bottom: 60px;

}

.footer-name {

    font-family: var(--font-display);

    font-size: clamp( 1.6rem, 4vw, 3rem );

    font-weight: 500;

    letter-spacing: -0.045em;

}

.footer-links {

    display: flex;

    gap: 28px;

}

.footer-links a {

    color: var(--muted);

    font-family: var(--font-mono);

    font-size: 0.68rem;

    text-transform: uppercase;

    transition: color 0.25s ease;

}

.footer-links a:hover {

    color: var(--yellow);

}

.footer-bottom {

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);

    color: var(--faint);

    font-family: var(--font-mono);

    font-size: 0.62rem;

    text-transform: uppercase;

}

.to-top {

    transition: color 0.25s ease;

}

.to-top:hover {

    color: var(--yellow);

}

/* =========================================================
   FOCUS
========================================================= */

    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--yellow);

    outline-offset: 4px;

}

/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 1050px) {

    .nav-links {

    gap: 16px;

    }

    .nav-links a {

    font-size: 0.7rem;

    }

    .hero-inner {

    grid-template-columns: 1fr 0.7fr;

    gap: 55px;

    }

    .photo-cutout {

    height: 470px;

    }

    .about-inner {

    grid-template-columns: 30px 0.8fr 1.2fr;

    gap: 35px;

    }

    .project-card {

    grid-template-columns: 40px 0.85fr 1.15fr;

    gap: 25px;

    }

}

/* =========================================================
   MOBILE NAV / TABLET
========================================================= */

@media
(max-width: 860px) {

    .section-inner {

    width: min( calc(100% - 40px), var(--max-width) );

    }

    .nav-inner {

    min-height: 70px;

    padding: 0 20px;

    }

    .nav-toggle {

    display: flex;

    }

    .nav-cta {

    display: none;

    }

    .nav-links {

    display: none;

    }

    .nav-links.open {

    position: absolute;

    top: 70px;

    left: 0;

    right: 0;

    background: var(--black);

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    border-bottom: 1px solid var(--border);

    padding: 16px 20px 24px;

    }

    .nav-links.open a {

    width: 100%;

    padding: 13px 0;

    border-bottom: 1px solid var(--border);

    }

    .nav-links a::after {

    display: none;

    }

    .hero {

    min-height: auto;

    padding: 125px 20px 90px;

    }

    .hero-inner {

    grid-template-columns: 1fr;

    gap: 75px;

    }

    .hero-name {

    font-size: clamp( 4rem, 15vw, 7rem );

    }

    .hero-photo {

    max-width: 520px;

    justify-self: start;

    margin-left: 18px;

    }

    .photo-cutout {

    height: auto;

    aspect-ratio: 4 / 5;

    }

    .scroll-cue {

    display: none;

    }

    .section-heading {

    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 55px;

    }

    .about-inner {

    grid-template-columns: 1fr;

    gap: 55px;

    }

    .section-index {

    display: none;

    }

    .about-photo {

    max-width: 500px;

    margin-left: 15px;

    }

    .project-card {

    grid-template-columns: 40px 1fr;

    align-items: start;

    }

    .project-thumb {

    grid-column: 2;

    }

    .project-body {

    grid-column: 2;

    }

    .projects-grid {

    gap: 0;

    }

    .skills-extras {

    grid-template-columns: 1fr;

    gap: 50px;

    }

    .cert-grid {

    grid-template-columns: 1fr;

    }

    .contact-inner {

    grid-template-columns: 1fr;

    gap: 70px;

    }

    .footer-top {

    flex-direction: column;

    align-items: flex-start;

    }

}

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

@media
(max-width: 600px) {

    .section-inner {

    width: calc(100% - 32px);

    }

    .section-title {

    font-size: clamp( 2.7rem, 13vw, 4rem );

    }

    .hero {

    padding: 110px 16px 80px;

    }

    .hero-name {

    font-size: clamp( 3.5rem, 17vw, 5.5rem );

    line-height: 0.82;

    }

    .hero-role-row {

    align-items: flex-start;

    }

    .hero-line {

    width: 30px;

    margin-top: 11px;

    }

    .hero-role {

    font-size: 1rem;

    }

    .badge-track {

    gap: 7px 12px;

    }

    .hero-badge:not(:last-child)::after {

    margin-left: 10px;

    }

    .hero-cta {

    flex-direction: column;

    align-items: stretch;

    }

    .hero-cta .btn {

    width: 100%;

    }

    .hero-bottom {

    align-items: flex-start;

    gap: 20px;

    flex-direction: column;

    }

    .hero-photo {

    width: calc(100% - 14px);

    }

    .about,
    .education,
    .skills,
    .projects,
    .experience,
    .certifications {

    padding: 100px 0;

    }

    .about-facts {

    grid-template-columns: 1fr;

    }

    .fact:nth-child(odd) {

    border-right: 0;

    }

    .fact:nth-child(even) {

    padding-left: 0;

    }

    .education-card {

    grid-template-columns: 35px 1fr;

    gap: 15px;

    padding: 32px 0;

    }

    .education-card
    .status-badge {

    grid-column: 2;

    justify-self: start;

    }

    .skill-tabs {

    display: grid;

    grid-template-columns: 1fr;

    }

    .skill-tab {

    width: 100%;

    text-align: left;

    border: 0;

    border-bottom: 1px solid var(--border);

    }

    .skill-tab:first-of-type {

    border-left: 0;

    }

    .skill-panel {

    grid-template-columns: repeat( 2, 1fr );

    }

    .skill-pill {

    min-height: 80px;

    padding: 15px;

    font-size: 0.72rem;

    }

    .project-card {

    grid-template-columns: 1fr;

    gap: 20px;

    padding: 45px 0;

    }

    .project-number,
    .project-thumb,
    .project-body {

    grid-column: 1;

    }

    .project-body h3 {

    font-size: 2rem;

    }

    .timeline-item {

    grid-template-columns: 30px 1fr;

    gap: 15px;

    }

    .achievement-card {

    grid-template-columns: 1fr;

    padding: 25px;

    }

    .contact {

    padding: 110px 0;

    }

    .contact-title {

    font-size: clamp( 3.2rem, 16vw, 5rem );

    }

    .form-row {

    grid-template-columns: 1fr;

    }

    .contact-item {

    flex-direction: column;

    gap: 4px;

    }

    .footer-links {

    flex-wrap: wrap;

    gap: 17px;

    }

    .footer-bottom {

    padding: 25px 0;

    flex-direction: column;

    align-items: flex-start;

    }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media
(prefers-reduced-motion: reduce) {

    * {

    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    }

}
