/* ROOT & RESET  */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0900;
    --bg2: #0f0e0a;
    --surface: rgba(255, 215, 0, 0.04);
    --surface2: rgba(255, 215, 0, 0.07);
    --gold: #c9a84c;
    --gold2: #f0c040;
    --gold3: #ffd700;
    --goldl: rgba(201, 168, 76, 0.15);
    --white: #f5f0e8;
    --muted: #7a7060;
    --border: rgba(201, 168, 76, 0.18);
    --border2: rgba(255, 255, 255, 0.06);
    --text: #f0e8d8;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/*NOISE OVERLAY*/
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 9998;
}

/*CURSOR*/
#cur {
    width: 8px;
    height: 8px;
    background: var(--gold3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s;
}

#cur-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.14s ease;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 4rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 9, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--gold2);
}

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

.nav-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

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

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold2);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: none;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    background: var(--gold);
    color: #0a0900;
}

/* HERO*/
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    max-width: 580px;
    z-index: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fu 0.7s 0.1s forwards;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gold3);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold3);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-greeting {
    font-size: 22px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: fu 0.7s 0.2s forwards;
}

.hero-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fu 0.7s 0.35s forwards;
}

.hero-name .n1 {
    color: var(--white);
    display: block;
}

.hero-name .n2 {
    background: linear-gradient(135deg, var(--gold2), var(--gold3), #fff5c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fu 0.7s 0.5s forwards;
}

.hero-sub span {
    color: var(--gold2);
    font-weight: 600;
}

.hero-desc {
    font-size: 16px;
    color: rgba(240, 232, 216, 0.6);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fu 0.7s 0.65s forwards;
}

.hero-desc strong {
    color: var(--text);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fu 0.7s 0.8s forwards;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0900;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: none;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border2);
    cursor: none;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold2);
}

/* AVATAR  */
.avatar-wrap {
    position: relative;
    width: 340px;
    height: 340px;
}

.avatar-ring {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), rgba(201, 168, 76, 0.2), transparent, var(--gold2));
    padding: 2px;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1508, #0f0e0a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--gold2);
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

.float-tag {
    position: absolute;
    background: rgba(15, 14, 10, 0.92);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.float-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ft1 {
    top: 20px;
    right: -40px;
    animation: flt 4s ease-in-out infinite;
}

.ft2 {
    bottom: 60px;
    right: -60px;
    animation: flt 4s ease-in-out 1.5s infinite;
}

.ft3 {
    bottom: 20px;
    left: -40px;
    animation: flt 4s ease-in-out 3s infinite;
}

@keyframes flt {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/*STATS BAR*/
.stats-bar {
    display: flex;
    gap: 3rem;
    padding: 2rem 4rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold2), var(--gold3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

/*SECTION COMMON*/
.section {
    padding: 6rem 4rem;
}

.sec-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.sec-eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.sec-eyebrow-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sec-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.sec-title em {
    font-style: italic;
    color: var(--gold2);
}

.sec-sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 520px;
    margin-top: 0.75rem;
}

/* ABOUT  */
#about {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    background: linear-gradient(145deg, #1a1508, #111009);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gold2);
    letter-spacing: -3px;
    overflow: hidden;
    position: relative;
}

.about-img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.12), transparent 60%);
}

.about-traits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 2rem;
}

.trait-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    transition: border-color 0.2s;
}

.trait-card:hover {
    border-color: var(--border);
}

.trait-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.trait-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.trait-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text-content p {
    color: rgba(240, 232, 216, 0.65);
    font-size: 15px;
    line-height: 1.9;
}

.about-text-content strong {
    color: var(--text);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.info-row {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    align-items: flex-start;
}

.info-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    min-width: 90px;
    padding-top: 2px;
}

.info-val {
    color: rgba(240, 232, 216, 0.7);
    line-height: 1.5;
}

/* SKILLS  */
#skills {
    background: var(--bg2);
}

.skills-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.skills-header .sec-eyebrow {
    justify-content: center;
}

.skills-header .sec-sub {
    margin: 0.75rem auto 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 1.75rem;
    transition: border-color 0.3s, background 0.3s;
}

.skill-card:hover {
    border-color: var(--border);
    background: var(--surface);
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.skill-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.skill-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.skill-bar-item {
    margin-bottom: 1.25rem;
}

.skill-bar-item:last-child {
    margin-bottom: 0;
}

.skill-bar-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.skill-bar-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.skill-bar-pct {
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--muted);
}

.skill-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

/*  PROJECTS */
#projects {
    background: var(--bg);
}

.proj-header {
    margin-bottom: 3rem;
}

/* FILTER TABS */
.proj-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.proj-filter-btn {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--muted);
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: none;
    pointer-events: auto;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.proj-filter-btn:hover {
    border-color: var(--border);
    color: var(--white);
}

.proj-filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-color: transparent;
    color: #0a0900;
}

/* card hide/show animation */
.proj-card {
    transition: transform 0.3s, border-color 0.3s, opacity 0.3s, scale 0.3s;
}


.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.proj-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border2);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    cursor: none;
}

.proj-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
}

.proj-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, #1a1508, #111009);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.proj-img-icon {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gold2);
    opacity: 0.2;
    letter-spacing: -2px;
}

.proj-img-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.08), transparent 60%);
}

.proj-img-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.proj-img-tag {
    background: rgba(10, 9, 0, 0.85);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold2);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.proj-body {
    padding: 1.5rem;
}

.proj-name {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.proj-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.proj-links {
    display: flex;
    gap: 1rem;
}

.proj-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.proj-link:hover {
    color: var(--gold3);
}

.proj-link svg {
    width: 12px;
    height: 12px;
}

.proj-card-wip {
    opacity: 0.4;
    border-style: dashed;
}

.proj-card-wip:hover {
    transform: none;
}

/* CONTACT */
#contact {
    background: var(--bg2);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-left .sec-title {
    margin-bottom: 1.25rem;
}

.contact-left p {
    color: rgba(240, 232, 216, 0.55);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ci-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.ci-card:hover {
    border-color: var(--border);
    background: var(--surface);
}

.ci-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--goldl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold2);
}

.ci-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.ci-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: block;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 120px;
}

.btn-send {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0900;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: none;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.35);
}

.btn-send svg {
    width: 18px;
    height: 18px;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--gold2);
}

footer p {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold2);
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: none;
    padding: 6px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* TOUCH DEVICE CURSOR FIX */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }

    #cur,
    #cur-ring {
        display: none !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-send,
    .nav-cta,
    .proj-card,
    .hamburger {
        cursor: pointer;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav {
        padding: 0 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .proj-filters {
        gap: 6px;
    }

    .proj-filter-btn {
        padding: 6px 16px;
        font-size: 11px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 9, 0, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        border-left: 1px solid var(--border);
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border2);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 16px;
    }

    .nav-cta {
        display: none;
    }

    #hero {
        flex-direction: column;
        padding: 100px 1.5rem 3rem;
        text-align: center;
        gap: 3rem;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .stats-bar {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        padding: 4rem 1.5rem;
    }

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

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

    .proj-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

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