:root {
    --black: #050505;
    --white: #f3f3ef;
    --gray: #888884;
    --line: rgba(243, 243, 239, 0.12);
    --glass-bg: rgba(12, 12, 18, 0.45);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(20px);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: auto;
}

body {
    background: #060608 url("background1.jpg") no-repeat center center fixed;
    background-size: cover;
    color: var(--white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
    position: relative;
}

/* Ambient dark vignette for maximum text contrast and glass depth */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(6, 6, 10, 0.55) 0%, rgba(3, 3, 6, 0.88) 100%);
    pointer-events: none;
    z-index: -1;
}

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

button {
    border: 0;
    background: none;
    color: inherit;
    cursor: none;
}

::selection {
    background: var(--white);
    color: var(--black);
}

/* =========================
   NOISE OVERLAY
========================= */

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* =========================
   CUSTOM CURSOR
========================= */

.cursor {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width .4s var(--ease),
        height .4s var(--ease),
        background .4s var(--ease),
        border-color .4s ease;
}

.cursor-follower.active {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

/* =========================
   NAVIGATION (GLASSMORPHISM)
========================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 15, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.logo {
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 500;
}

.nav-status {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .12em;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(0.85);
    }
}

.menu-button {
    justify-self: end;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .12em;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 18px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.menu-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-lines i {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
}

/* =========================
   MENU OVERLAY (GLASSMORPHISM)
========================= */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 10, 0.68);
    color: var(--white);
    z-index: 500;
    padding: 34px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: inset(0 0 100% 0);
    backdrop-filter: blur(36px) saturate(190%);
    -webkit-backdrop-filter: blur(36px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .1em;
}

.menu-top button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 22px;
    border-radius: 24px;
    color: var(--white);
    backdrop-filter: blur(12px);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .1em;
    transition: all 0.3s ease;
}

.menu-top button:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-link {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 18px;
    font-size: clamp(38px, 6.5vw, 92px);
    font-weight: 400;
    letter-spacing: -.03em;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    border-radius: 14px;
    transition: padding-left .4s var(--ease), background .4s var(--ease), border-color .4s ease;
}

.menu-link:hover {
    padding-left: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.menu-link:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-link span {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0;
    padding-top: 10px;
    color: var(--gray);
}

.menu-footer {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--gray);
}

/* =========================
   HERO (CENTERED SEAMLESS CURSIVE)
========================= */

.hero {
    min-height: 100vh;
    padding: 130px 34px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--gray);
}

.hero-title-center {
    margin-top: auto;
    margin-bottom: auto;
    padding: 6vh 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-line {
    width: 100%;
    overflow: visible;
    line-height: 1.35;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-line span,
.hero-name-script {
    display: inline-block;
    text-align: center;
    font-family: "Great Vibes", "Alex Brush", "Parisienne", "Allura", "Marck Script", cursive, sans-serif;
    font-size: clamp(90px, 19vw, 290px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    word-spacing: normal;
    text-transform: none;
    color: #ffffff;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "calt" 1;
    text-shadow:
        0 4px 35px rgba(255, 255, 255, 0.4),
        0 0 80px rgba(255, 255, 255, 0.2),
        0 10px 45px rgba(0, 0, 0, 0.9);
    will-change: transform;
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
}

.hero-bottom p {
    max-width: 440px;
    font-size: 15px;
    line-height: 1.6;
    color: #c5c5c0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.scroll-link {
    justify-self: end;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .1em;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.scroll-link:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* =========================
   SECTIONS
========================= */

section {
    padding-left: 34px;
    padding-right: 34px;
}

.intro,
.work,
.about,
.skills,
.contact {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-label {
    display: flex;
    gap: 15px;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--gray);
}

.section-label span {
    color: var(--white);
}

/* =========================
   INTRO
========================= */

.intro {
    display: grid;
    grid-template-columns: 25% 75%;
}

.intro-text {
    max-width: 1000px;
    font-size: clamp(38px, 5.5vw, 85px);
    line-height: 1.1;
    letter-spacing: -.045em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

/* =========================
   WORK (GLASSMORPHISM CARDS)
========================= */

.section-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

.project-count {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    color: var(--gray);
}

.project {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 15, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.project:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-link {
    min-height: 145px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 8% 1fr 10%;
    align-items: center;
    position: relative;
    transition: padding .5s var(--ease);
}

.project-number,
.project-year {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    color: var(--gray);
}

.project-info h2 {
    font-size: clamp(28px, 3.8vw, 60px);
    font-weight: 400;
    letter-spacing: -.04em;
    transition: transform .5s var(--ease);
}

.project-info p {
    margin-top: 8px;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    color: var(--gray);
    letter-spacing: .08em;
}

.project-year {
    justify-self: end;
}

.project-image {
    position: absolute;
    width: 320px;
    height: 220px;
    right: 10%;
    top: 50%;
    transform: translate(20px, -50%) scale(.8);
    opacity: 0;
    background: radial-gradient(circle at center, rgba(40, 40, 50, 0.9), rgba(12, 12, 18, 0.95) 75%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity .5s var(--ease), transform .6s var(--ease);
    z-index: 5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.project-image span {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: .15em;
}

.project:hover .project-image {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
}

.project:hover .project-link {
    padding-left: 32px;
}

.project:hover .project-info h2 {
    transform: translateX(10px);
}

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

.about-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
}

.about-title {
    font-size: clamp(50px, 7.5vw, 120px);
    line-height: .95;
    letter-spacing: -.06em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.about-copy {
    max-width: 480px;
    padding-top: 15px;
}

.about-copy p {
    color: #c5c5c0;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* =========================
   SKILLS (GLASSMORPHIC ROWS)
========================= */

.skills-list {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-row {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 12px;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 8% 42% 1fr;
    align-items: center;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease);
}

.skill-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(6px);
}

.skill-row span,
.skill-row p {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    color: var(--gray);
}

.skill-row h3 {
    font-size: clamp(22px, 2.8vw, 42px);
    font-weight: 400;
    letter-spacing: -.03em;
    transition: transform .4s var(--ease);
}

.skill-row:hover h3 {
    transform: translateX(10px);
}

/* =========================
   MARQUEE (GLASSMORPHIC)
========================= */

.tech {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 12, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 55px;
    animation: marquee 25s linear infinite;
}

.marquee-track span {
    font-size: clamp(40px, 6.5vw, 90px);
    letter-spacing: -.05em;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

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

.contact {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.contact-title {
    margin-top: auto;
    margin-bottom: 60px;
    max-width: 1100px;
    font-size: clamp(60px, 10vw, 160px);
    line-height: .9;
    letter-spacing: -.065em;
    text-shadow: 0 4px 35px rgba(0, 0, 0, 0.85);
}

.contact-email {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 36px;
    border-radius: 40px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--white);
    cursor: pointer;
    transition: all 0.35s ease;
}

.contact-email:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* =========================
   CONTACT MODAL & FORM SPACE (GLASSMORPHISM)
========================= */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.contact-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 8, 0.72);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.contact-modal-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(12, 12, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 38px 40px;
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(35px) scale(0.96);
    transition: transform 0.45s var(--ease);
    z-index: 2;
}

.contact-modal.active .contact-modal-card {
    transform: translateY(0) scale(1);
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--gray);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.modal-close-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--white);
    color: var(--black);
}

.modal-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 500;
    letter-spacing: -.04em;
    margin-bottom: 8px;
    color: var(--white);
}

.modal-subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: #a0a09c;
    margin-bottom: 30px;
}

/* Form inputs & controls */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .12em;
    color: #92928e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
    background-color: #0e0e14;
}

.form-group select option {
    background: #12121a;
    color: var(--white);
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.form-submit-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.form-submit-btn:hover {
    background: #000;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.form-submit-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.form-status {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .08em;
    transition: all 0.3s ease;
}

.form-status.success {
    color: #00ff88;
}

.form-status.error {
    color: #ff5555;
}

.form-status.sending {
    color: #ffaa00;
}

/* =========================
   FOOTER (GLASSMORPHISM)
========================= */

footer {
    padding: 28px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    color: var(--gray);
    background: rgba(6, 6, 10, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* =========================
   RESPONSIVE (MOBILE / TABLET)
========================= */

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .nav {
        padding: 18px 20px;
        grid-template-columns: 1fr auto;
    }

    .nav-status {
        display: none;
    }

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding: 110px 20px 25px;
    }

    .hero-title-center {
        padding: 8vh 0;
    }

    .hero-line span,
    .hero-name-script {
        font-size: clamp(65px, 17vw, 130px);
        white-space: normal;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scroll-link {
        justify-self: start;
        margin-top: 10px;
    }

    .intro,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .intro-text {
        font-size: 12vw;
    }

    .work,
    .about,
    .skills,
    .contact {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .project-link {
        min-height: 110px;
        padding: 20px 16px;
        grid-template-columns: 12% 1fr;
    }

    .project-year {
        display: none;
    }

    .project-info h2 {
        font-size: 26px;
    }

    .project-image {
        display: none;
    }

    .skill-row {
        grid-template-columns: 12% 1fr;
        gap: 12px;
        padding: 18px 16px;
    }

    .skill-row p {
        grid-column: 2;
    }

    .about-title {
        font-size: 15vw;
    }

    .contact-title {
        font-size: 16vw;
    }

    .contact-modal-card {
        padding: 28px 20px;
    }

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

    footer {
        padding: 20px;
        gap: 20px;
        flex-wrap: wrap;
    }
}