@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@200;300;400;500&family=JetBrains+Mono:wght@300;400&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #000;
    --card: rgba(255, 255, 255, .02);
    --border: rgba(255, 255, 255, .06);
    --text: #fff;
    --muted: rgba(255, 255, 255, .4);
    --light: rgba(255, 255, 255, .7)
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: .3px
}

::selection {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: #000
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15)
}

/* CURSOR */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), opacity .3s, width .4s, height .4s, border-color .3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, .7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%)
}

.cursor.active {
    width: 80px;
    height: 80px;
    border-color: rgba(255, 255, 255, .08)
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px
}

.loader.done {
    animation: loaderOut 1.4s cubic-bezier(.77, 0, .175, 1) forwards
}

@keyframes loaderOut {
    0% {
        clip-path: inset(0)
    }

    100% {
        clip-path: inset(0 0 100% 0);
        visibility: hidden
    }
}

.loader-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    letter-spacing: 16px;
    text-transform: uppercase
}

.loader-name span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: charUp .6s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes charUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.loader-line {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden
}

.loader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, .5);
    animation: loadBar 2.2s cubic-bezier(.4, 0, .2, 1) forwards
}

@keyframes loadBar {
    to {
        width: 100%
    }
}

.loader-sub {
    font-size: .6rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .15)
}

/* NOISE & PARTICLES */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: .02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .5
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .35);
    z-index: 100001;
    transition: width .1s
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: all .5s
}

nav.scrolled {
    padding: 16px 60px;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-size: .68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    transition: color .4s
}

.nav-links a:hover,
.nav-links a.active {
    color: rgba(255, 255, 255, .85)
}

/* SCROLL ASSEMBLY — words / lines reveal */
.split-line {
    overflow: hidden;
    display: block
}

.split-line .inner {
    display: block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(.16, 1, .3, 1)
}

.split-line.visible .inner {
    transform: translateY(0)
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(.16, 1, .3, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.16, 1, .3, 1)
}

.fade-in.visible {
    opacity: 1
}

.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(.16, 1, .3, 1)
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(.16, 1, .3, 1)
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.scale-in {
    opacity: 0;
    transform: scale(.85);
    transition: all 1s cubic-bezier(.16, 1, .3, 1)
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1)
}

.blur-in {
    opacity: 0;
    filter: blur(12px);
    transition: all 1.4s cubic-bezier(.16, 1, .3, 1)
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0)
}

.clip-up {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(.16, 1, .3, 1)
}

.clip-up.visible {
    clip-path: inset(0)
}

.stagger {
    transition-delay: var(--d, 0ms) !important
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 5
}

.hero-content {
    z-index: 2
}

.hero-pre {
    font-size: .6rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px
}

.hero-pre::before {
    content: '';
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, .15)
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px
}

.hero-name em {
    font-style: italic;
    font-weight: 300;
    display: block;
    color: rgba(255, 255, 255, .45)
}

.hero-typed-wrap {
    margin-bottom: 28px;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 200;
    min-height: 1.8em
}

.typed-text {
    color: var(--light)
}

.typed-cursor {
    color: rgba(255, 255, 255, .25);
    animation: blink .9s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.hero-desc {
    font-size: .88rem;
    color: var(--muted);
    font-weight: 200;
    margin-bottom: 48px;
    max-width: 460px;
    line-height: 2
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px
}

.stat {
    text-align: left
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1px
}

.stat-label {
    font-size: .58rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 6px
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: .68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: all .5s;
    font-weight: 300
}

.hero-cta:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
    gap: 24px
}

.hero-cta .arrow {
    transition: transform .4s
}

.hero-cta:hover .arrow {
    transform: translateX(8px)
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center
}

.hero-photo-wrap {
    position: relative;
    width: 380px;
    height: 480px
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(.9);
    transition: all .8s
}

.hero-photo-wrap:hover .hero-photo {
    filter: grayscale(60%) contrast(1.15) brightness(.95)
}

.hero-photo-frame {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(255, 255, 255, .05);
    pointer-events: none;
    transition: all .6s
}

.hero-photo-wrap:hover .hero-photo-frame {
    inset: -30px;
    border-color: rgba(255, 255, 255, .08)
}

.hero-photo-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

/* SCROLL IND */
.scroll-ind {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .25), transparent);
    animation: scrollFade 2.5s infinite
}

@keyframes scrollFade {

    0%,
    100% {
        opacity: .2
    }

    50% {
        opacity: .8
    }
}

.scroll-ind span {
    font-size: .5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--muted)
}

/* DIVIDER */
.divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin: 0
}

/* SECTIONS */
section {
    padding: 140px 80px;
    position: relative;
    z-index: 2
}

.section-head {
    margin-bottom: 100px
}

.section-num {
    font-size: .58rem;
    letter-spacing: 6px;
    color: var(--muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 300
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.3
}

.section-title em {
    font-style: italic;
    color: rgba(255, 255, 255, .35)
}

.section-bar {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
    margin-top: 28px
}

/* MARQUEE */
.marquee-section {
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #000;
    z-index: 2;
    position: relative
}

.marquee-track {
    display: flex;
    animation: marquee 35s linear infinite;
    white-space: nowrap
}

.marquee-track span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    padding: 0 28px;
    color: rgba(255, 255, 255, .06);
    transition: color .3s
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* PHILOSOPHY */
.philosophy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.philosophy-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 24px
}

.philosophy-quote strong {
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
    font-style: normal
}

.philosophy-author {
    font-size: .65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--muted)
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 60px auto 0;
    background: rgba(255, 255, 255, .04)
}

.value-card {
    background: #000;
    padding: 48px 36px;
    text-align: center;
    transition: all .6s
}

.value-card:hover {
    background: rgba(255, 255, 255, .02)
}

.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .08);
    margin-bottom: 12px
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px
}

.value-card p {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 200;
    line-height: 1.9
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
    gap: 10px;
    max-width: 1300px;
    margin: 0 auto
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(.8);
    transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.gallery-item:hover img {
    filter: grayscale(30%) brightness(.95);
    transform: scale(1.05)
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .04);
    z-index: 2;
    transition: border-color .5s
}

.gallery-item:hover::before {
    border-color: rgba(255, 255, 255, .12)
}

.gallery-item.span2 {
    grid-column: span 2
}

/* ABOUT */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1300px;
    margin: 0 auto
}

.about-text p {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 24px;
    font-weight: 200;
    line-height: 2
}

.about-text strong {
    color: var(--light);
    font-weight: 400
}

.about-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .04);
    align-self: start
}

.metric {
    background: #000;
    padding: 32px;
    transition: all .5s
}

.metric:hover {
    background: rgba(255, 255, 255, .02)
}

.metric h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 4px
}

.metric p {
    font-size: .58rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300
}

/* TIMELINE */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 1px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .06) 5%, rgba(255, 255, 255, .06) 95%, transparent)
}

.tl-item {
    padding-left: 50px;
    margin-bottom: 90px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(.16, 1, .3, 1)
}

.tl-item.visible {
    opacity: 1;
    transform: translateY(0)
}

.tl-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 8px;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: #000;
    transition: all .4s
}

.tl-item:hover::before {
    border-color: rgba(255, 255, 255, .6);
    box-shadow: 0 0 20px rgba(255, 255, 255, .1)
}

.tl-period {
    font-size: .62rem;
    letter-spacing: 4px;
    color: var(--muted);
    margin-bottom: 10px;
    font-weight: 300
}

.tl-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2px
}

.tl-company {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 200;
    font-style: italic
}

.tl-list {
    list-style: none
}

.tl-list li {
    padding: 10px 0 10px 20px;
    position: relative;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 200;
    border-bottom: 1px solid rgba(255, 255, 255, .025);
    transition: all .4s
}

.tl-list li:hover {
    color: var(--light);
    padding-left: 28px
}

.tl-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .12)
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px
}

.tag {
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: .58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: all .4s;
    font-weight: 300
}

.tag:hover {
    border-color: rgba(255, 255, 255, .25);
    color: var(--light)
}

/* SKILLS */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .04)
}

.skill-card {
    background: #000;
    padding: 40px;
    transition: all .5s
}

.skill-card:hover {
    background: rgba(255, 255, 255, .015)
}

.skill-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 2px
}

.skill-card ul {
    list-style: none
}

.skill-card li {
    padding: 8px 0;
    font-size: .8rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .025);
    font-weight: 200;
    transition: all .3s
}

.skill-card li:hover {
    color: var(--light);
    padding-left: 8px
}

/* CONTACT */
.contact-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.contact-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.2
}

.contact-sub {
    color: var(--muted);
    margin-bottom: 60px;
    font-size: .88rem;
    font-weight: 200
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 1px;
    background: rgba(255, 255, 255, .04)
}

.contact-card {
    text-decoration: none;
    color: var(--muted);
    padding: 32px 44px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all .5s;
    min-width: 220px
}

.contact-card:hover {
    color: var(--light);
    background: rgba(255, 255, 255, .02)
}

.contact-card .c-icon {
    font-size: 1.1rem
}

.contact-card .c-label {
    font-size: .52rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300
}

.contact-card .c-value {
    font-size: .8rem;
    font-weight: 300
}

/* FOOTER */
footer {
    padding: 40px 80px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    position: relative;
    z-index: 2
}

footer p {
    font-size: .68rem;
    color: var(--muted);
    font-weight: 200;
    letter-spacing: 1px
}

.footer-dev {
    font-size: .58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .12)
}

/* ========== RESPONSIVE ========== */

/* TABLET */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 30px;
        gap: 30px
    }

    .hero-image {
        order: -1
    }

    .hero-photo-wrap {
        width: 260px;
        height: 330px;
        margin: 0 auto
    }

    .hero-photo-frame {
        inset: -12px
    }

    .hero-photo-accent {
        bottom: -10px;
        right: -10px;
        width: 50px;
        height: 50px
    }

    .hero-pre {
        justify-content: center
    }

    .hero-pre::before {
        display: none
    }

    .hero-desc {
        margin: 0 auto 36px;
        max-width: 100%
    }

    .hero-stats {
        justify-content: center;
        gap: 32px
    }

    .hero-cta {
        margin: 0 auto
    }

    .hero-name {
        letter-spacing: 0
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px
    }

    .gallery-item.span2 {
        grid-column: auto
    }

    .skills-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr
    }

    section {
        padding: 80px 24px
    }

    .section-head {
        margin-bottom: 60px
    }

    nav {
        padding: 18px 24px
    }

    nav.scrolled {
        padding: 14px 24px
    }

    footer {
        padding: 24px;
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .contact-grid {
        flex-direction: column;
        background: none;
        gap: 8px
    }

    .contact-card {
        min-width: auto;
        width: 100%
    }

    .philosophy-quote {
        font-size: clamp(1.3rem, 3vw, 2rem)
    }

    .marquee-track span {
        font-size: 1.4rem
    }

    .tl-item {
        padding-left: 36px;
        margin-bottom: 60px
    }

    .tl-role {
        font-size: 1.3rem
    }
}

/* MOBILE */
@media(max-width:768px) {

    /* Loader - fit name on small screens */
    .loader-name {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        letter-spacing: 8px;
        padding: 0 16px;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center
    }

    .loader-sub {
        font-size: .5rem;
        letter-spacing: 5px
    }

    .loader-line {
        width: 80px
    }

    /* Nav */
    .nav-links {
        display: none
    }

    .nav-logo {
        font-size: 1.1rem;
        letter-spacing: 4px
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 90px;
        padding-bottom: 80px
    }

    .hero-grid {
        padding: 0 20px;
        gap: 24px
    }

    .hero-photo-wrap {
        width: 200px;
        height: 260px
    }

    .hero-photo-frame {
        inset: -8px
    }

    .hero-photo-accent {
        display: none
    }

    .hero-name {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        margin-bottom: 12px
    }

    .hero-typed-wrap {
        font-size: .75rem;
        margin-bottom: 20px
    }

    .hero-desc {
        font-size: .82rem;
        line-height: 1.8;
        margin-bottom: 32px
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center
    }

    .stat-num {
        font-size: 2.4rem
    }

    .stat-label {
        font-size: .52rem;
        letter-spacing: 2px
    }

    .hero-cta {
        font-size: .62rem;
        letter-spacing: 3px
    }

    .scroll-ind {
        display: none
    }

    /* Sections */
    section {
        padding: 60px 16px
    }

    .section-head {
        margin-bottom: 40px
    }

    .section-num {
        font-size: .52rem;
        letter-spacing: 4px
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem)
    }

    .section-bar {
        margin-top: 18px
    }

    /* Marquee */
    .marquee-track span {
        font-size: 1.1rem;
        padding: 0 16px
    }

    .marquee-section {
        padding: 14px 0
    }

    /* Philosophy */
    .philosophy {
        padding: 0 8px
    }

    .philosophy-quote {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
        line-height: 1.6
    }

    .philosophy-author {
        font-size: .55rem;
        letter-spacing: 3px
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 40px
    }

    .value-card {
        padding: 32px 24px
    }

    .value-num {
        font-size: 2.2rem
    }

    .value-card h3 {
        font-size: 1rem
    }

    .value-card p {
        font-size: .75rem
    }

    /* About */
    .about-layout {
        gap: 40px
    }

    .about-text p {
        font-size: .85rem;
        line-height: 1.9
    }

    .about-metrics {
        grid-template-columns: 1fr 1fr
    }

    .metric {
        padding: 24px 16px
    }

    .metric h4 {
        font-size: 1.8rem
    }

    .metric p {
        font-size: .5rem;
        letter-spacing: 2px
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
        gap: 6px
    }

    /* Timeline */
    .timeline {
        padding-left: 0
    }

    .timeline::before {
        display: none
    }

    .tl-item {
        padding-left: 0;
        margin-bottom: 50px
    }

    .tl-item::before {
        display: none
    }

    .tl-period {
        font-size: .58rem
    }

    .tl-role {
        font-size: 1.2rem
    }

    .tl-company {
        font-size: .72rem
    }

    .tl-list li {
        font-size: .78rem;
        padding: 8px 0 8px 14px
    }

    .tl-list li::before {
        content: '·';
        font-size: 1rem
    }

    .tl-tags {
        gap: 6px
    }

    .tag {
        padding: 5px 12px;
        font-size: .52rem
    }

    /* Skills */
    .skills-grid {
        grid-template-columns: 1fr
    }

    .skill-card {
        padding: 28px 20px
    }

    .skill-card h3 {
        font-size: .95rem;
        margin-bottom: 16px
    }

    .skill-card li {
        font-size: .75rem
    }

    /* Contact */
    .contact-headline {
        font-size: clamp(1.6rem, 6vw, 2.4rem)
    }

    .contact-sub {
        font-size: .8rem;
        margin-bottom: 36px
    }

    .contact-card {
        padding: 20px 24px
    }

    .contact-card .c-value {
        font-size: .72rem;
        word-break: break-all
    }

    /* Footer */
    footer {
        padding: 20px 16px
    }

    footer p {
        font-size: .6rem
    }

    .footer-dev {
        font-size: .5rem;
        letter-spacing: 3px
    }

    /* Cursor hidden on touch */
    .cursor,
    .cursor-dot {
        display: none
    }
}

/* SMALL MOBILE */
@media(max-width:380px) {
    .loader-name {
        font-size: 1rem;
        letter-spacing: 5px
    }

    .hero-photo-wrap {
        width: 170px;
        height: 220px
    }

    .hero-name {
        font-size: 2rem
    }

    .hero-stats {
        gap: 16px
    }

    .stat-num {
        font-size: 2rem
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .gallery-item {
        height: 200px
    }

    .about-metrics {
        grid-template-columns: 1fr
    }

    .contact-card .c-value {
        font-size: .65rem
    }

    section {
        padding: 50px 12px
    }
}