:root {
    --sand-50: #fefdfb;
    --sand-100: #fdf9f3;
    --sand-200: #f9f1e4;
    --sand-300: #f3e4ce;
    --sand-400: #e8d0af;
    --sand-500: #d9b88a;
    --sand-600: #c49a5f;
    --coral-50: #fff5f3;
    --coral-100: #ffe8e4;
    --coral-200: #ffd4cc;
    --coral-300: #ffb5a8;
    --coral-400: #ff8f7a;
    --coral-500: #e86f5c;
    --coral-600: #d45442;
    --stone-800: #3d3832;
    --stone-700: #524b43;
    --stone-600: #6b6359;
    --stone-500: #857b6f;
    --stone-400: #a69b8d;
    --stone-300: #c7bfb3;
    --bg-primary: var(--sand-50);
    --bg-secondary: var(--sand-100);
    --bg-accent: var(--coral-50);
    --text-primary: var(--stone-800);
    --text-secondary: var(--stone-600);
    --text-muted: var(--stone-500);
    --accent: var(--coral-500);
    --accent-hover: var(--coral-600);
    --accent-light: var(--coral-200);
    --border: var(--sand-300);
    --font-display: 'Plus Jakarta Sans' , -apple-system , sans-serif;
    --font-body: 'Inter' , -apple-system , sans-serif;
    --font-mono: 'JetBrains Mono' , 'Fira Code' , monospace;
    --space-xs: .25rem;
    --space-sm: .5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;
    --shadow-sm: 0 1px 2px rgba(61,56,50,.05);
    --shadow-md: 0 4px 12px rgba(61,56,50,.08);
    --shadow-lg: 0 8px 30px rgba(61,56,50,.12);
    --shadow-accent: 0 4px 20px rgba(232,111,92,.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

body.nav-open {
    overflow: hidden
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary)
}

h1 {
    font-size: clamp(2.5rem,5vw,4rem);
    font-weight: 700;
    letter-spacing: -.03em
}

h2 {
    font-size: clamp(1.75rem,3vw,2.5rem);
    letter-spacing: -.02em
}

h3 {
    font-size: clamp(1.25rem,2vw,1.5rem);
    letter-spacing: -.01em
}

h4 {
    font-size: 1.125rem
}

p {
    margin-bottom: var(--space-md)
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast)
}

a:hover {
    color: var(--accent-hover)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    width: 100%;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg)
}

.container--narrow {
    max-width: var(--container-narrow)
}

.section {
    padding: var(--space-4xl) 0
}

.section--alt {
    background-color: var(--bg-secondary)
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl)
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--accent-light);
    border-radius: var(--radius-sm)
}

.section__title {
    margin-bottom: var(--space-md)
}

.section__description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary)
}

.text-center {
    text-align: center
}

.text-accent {
    color: var(--accent)
}

.text-muted {
    color: var(--text-muted)
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    pointer-events: none;
    z-index: -1
}

.blob--coral {
    background: var(--coral-200)
}

.blob--sand {
    background: var(--sand-400)
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: .03;
    background-image: url(data:image/svg+xml,%3Csvg\ viewBox=\'0\ 0\ 400\ 400\'\ xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cfilter\ id=\'noiseFilter\'%3E%3CfeTurbulence\ type=\'fractalNoise\'\ baseFrequency=\'0.9\'\ numOctaves=\'4\'\ stitchTiles=\'stitch\'/%3E%3C/filter%3E%3Crect\ width=\'100%25\'\ height=\'100%25\'\ filter=\'url\(%23noiseFilter\)\'/%3E%3C/svg%3E)
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(254,253,251,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--transition-base)
}

.header--scrolled {
    box-shadow: var(--shadow-md)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none
}

.logo__mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,var(--coral-400),var(--coral-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-accent)
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl)
}

.nav__list {
    display: flex;
    list-style: none;
    gap: var(--space-lg)
}

.nav__link {
    position: relative;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast)
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--transition-base)
}

.nav__link:hover,.nav__link--active {
    color: var(--text-primary)
}

.nav__link:hover::after,.nav__link--active::after {
    width: 100%
}

.nav__link.mobile-only {
    display: none
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--accent);
    color: #fff;
    font-weight: 500;
    font-size: .9375rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm)
}

.nav__cta:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
    position: relative
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-fast);
    transform-origin: center
}

.nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px)
}

.nav-toggle--active span:nth-child(2) {
    opacity: 0
}

.nav-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px)
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61,56,50,.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base)
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1
}

@media (max-width: 768px) {
    .nav__list {
        position:fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-base);
        z-index: 999
    }

    .nav--open .nav__list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .nav__list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border)
    }

    .nav__list li:last-child {
        border-bottom: none
    }

    .nav__link {
        display: block;
        font-size: 1.25rem;
        padding: var(--space-lg) var(--space-md);
        color: var(--text-primary);
        background: var(--bg-primary);
        width: 100%
    }

    .nav__link:hover,.nav__link--active {
        background: var(--bg-secondary);
        color: var(--accent)
    }

    .nav__link::after {
        display: none
    }

    .nav__link.mobile-only {
        display: block
    }

    .nav__cta {
        display: none
    }

    .nav-toggle {
        display: flex
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast)
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.btn--primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent)
}

.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border)
}

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

.btn--ghost {
    background: transparent;
    color: var(--accent);
    padding: var(--space-sm) var(--space-md)
}

.btn--ghost:hover {
    background: var(--accent-light)
}

.btn--large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.0625rem
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden
}

.hero__blob-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px
}

.hero__blob-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -100px
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center
}

.hero__content {
    position: relative;
    z-index: 1
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp .6s ease forwards
}

.hero__title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp .6s ease .1s forwards;
    opacity: 0
}

.hero__title-accent {
    color: var(--accent);
    position: relative;
    display: inline-block
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: .1em;
    left: 0;
    width: 100%;
    height: .15em;
    background: var(--accent-light);
    z-index: -1;
    border-radius: 2px
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-xl);
    animation: fadeInUp .6s ease .2s forwards;
    opacity: 0
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp .6s ease .3s forwards;
    opacity: 0
}

.hero__visual {
    position: relative;
    animation: fadeInRight .8s ease .4s forwards;
    opacity: 0
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xl);
    pointer-events: none;
    z-index: 1
}

.hero__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: linear-gradient(135deg,var(--sand-200),var(--sand-300))
}

.hero__floating-card {
    position: absolute;
    background: #fff;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md)
}

.hero__floating-card--experience {
    bottom: 15%;
    left: -10%;
    animation: float 4s ease-in-out infinite
}

.hero__floating-card--projects {
    top: 20%;
    right: -5%;
    animation: float 4s ease-in-out infinite 1s
}

.hero__floating-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent)
}

.hero__floating-label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.hero__floating-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary)
}

.skills-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 0;
    overflow: hidden;
    position: relative
}

.skills-bar__track {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none
}

.skills-bar__track:active {
    cursor: grabbing
}

.skills-bar__track.is-dragging {
    cursor: grabbing
}

.skills-bar__inner {
    display: flex;
    gap: var(--space-xl);
    will-change: transform
}

.skills-bar__inner.is-animating {
    animation: scroll 40s linear infinite
}

.skills-bar__inner.is-dragging {
    animation: none!important
}

.skills-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-weight: 500;
    font-size: .9375rem;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
    flex-shrink: 0
}

.skills-bar__item:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.skills-bar__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0
}

.skills-bar__icon-svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
    gap: var(--space-xl)
}

.project-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition-base)
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.project-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg,var(--sand-200),var(--sand-300))
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.project-card:hover .project-card__image img {
    transform: scale(1.05)
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(61,56,50,.8),transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg)
}

.project-card:hover .project-card__overlay {
    opacity: 1
}

.project-card__overlay-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #fff;
    font-weight: 500;
    font-size: .875rem
}

.project-card__content {
    padding: var(--space-lg)
}

.project-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md)
}

.project-card__tag {
    font-family: var(--font-mono);
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm)
}

.project-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm)
}

.project-card__description {
    color: var(--text-secondary);
    font-size: .9375rem;
    margin-bottom: 0
}

.project-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0
}

.project-featured .project-card__image {
    aspect-ratio: auto;
    min-height: 400px
}

.project-featured .project-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl)
}

.project-featured .project-card__title {
    font-size: 1.75rem
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border)
}

.timeline__item {
    position: relative;
    padding-left: var(--space-2xl);
    padding-bottom: var(--space-2xl)
}

.timeline__item:last-child {
    padding-bottom: 0
}

.timeline__marker {
    position: absolute;
    left: -7px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 1
}

.timeline__item--current .timeline__marker {
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light)
}

.timeline__date {
    font-family: var(--font-mono);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: var(--space-sm)
}

.timeline__card {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition-base)
}

.timeline__card:hover {
    box-shadow: var(--shadow-md)
}

.timeline__company {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm)
}

.timeline__logo {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent);
    padding: 4px
}

.timeline__role {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary)
}

.timeline__company-name {
    font-size: .9375rem;
    color: var(--text-secondary)
}

.timeline__description {
    color: var(--text-secondary);
    font-size: .9375rem;
    margin-bottom: var(--space-md)
}

.timeline__skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm)
}

.timeline__skill {
    font-size: .75rem;
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    color: var(--text-secondary)
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center
}

.about-image {
    position: relative
}

.about-image__main {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: linear-gradient(135deg,var(--sand-200),var(--sand-300))
}

.about-image__decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: -1
}

.about-content h1 {
    margin-bottom: var(--space-lg)
}

.about-content__lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl)
}

.about-content p {
    color: var(--text-secondary)
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border)
}

.about-stat__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1
}

.about-stat__label {
    font-size: .875rem;
    color: var(--text-muted);
    margin-top: var(--space-xs)
}

.skills-section {
    background: var(--bg-secondary)
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: var(--space-lg)
}

.skill-category {
    background: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

.skill-category__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: var(--space-md)
}

.skill-category__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-md)
}

.skill-category__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm)
}

.skill-tag {
    font-size: .8125rem;
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-secondary);
    border-radius: 50px;
    color: var(--text-secondary)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl)
}

.contact-info h1 {
    margin-bottom: var(--space-lg)
}

.contact-info__text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl)
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast)
}

.contact-method:hover {
    background: var(--accent-light)
}

.contact-method__icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: var(--shadow-sm)
}

.contact-method__label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-right: var(--space-sm)
}

.contact-method__value {
    color: var(--text-primary);
    font-weight: 500
}

.contact-form {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md)
}

.form-group {
    margin-bottom: var(--space-lg)
}

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm)
}

.form-input,.form-textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast)
}

.form-input:focus,.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px var(--accent-light)
}

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

.form-submit {
    width: 100%
}

.footer {
    margin-top: auto;
    background: var(--stone-800);
    color: var(--sand-300);
    padding: var(--space-4xl) 0 var(--space-xl)
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl)
}

.footer__brand {
    max-width: 300px
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md)
}

.footer__description {
    font-size: .9375rem;
    line-height: 1.7;
    opacity: .8
}

.footer__heading {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #fff;
    margin-bottom: var(--space-lg)
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm)
}

.footer__link {
    font-size: .9375rem;
    color: var(--sand-300);
    text-decoration: none;
    opacity: .8;
    transition: all var(--transition-fast)
}

.footer__link:hover {
    color: #fff;
    opacity: 1
}

.footer__social {
    display: flex;
    gap: var(--space-md)
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand-300);
    text-decoration: none;
    transition: all var(--transition-fast)
}

.footer__social-link:hover {
    background: var(--accent);
    color: #fff
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .875rem;
    opacity: .7
}

.page-header {
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden
}

.page-header__blob {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -200px
}

.page-header__content {
    position: relative;
    z-index: 1;
    text-align: center
}

.page-header__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: .875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg)
}

.page-header__breadcrumb a {
    color: var(--text-muted)
}

.page-header__breadcrumb a:hover {
    color: var(--accent)
}

.page-header__title {
    margin-bottom: var(--space-md)
}

.page-header__description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.125rem
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns:1fr;
        gap: var(--space-2xl);
        text-align: center
    }

    .hero__badge {
        margin-top: var(--space-xl)
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto
    }

    .hero__actions {
        justify-content: center
    }

    .hero__visual {
        max-width: 500px;
        margin: 0 auto
    }

    .hero__floating-card--experience {
        left: 5%
    }

    .hero__floating-card--projects {
        right: 5%
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: var(--space-2xl)
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl)
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl)
    }
}

@media (max-width: 768px) {
    .hero__floating-card {
        display:none
    }

    .project-featured {
        grid-template-columns: 1fr
    }

    .project-featured .project-card__image {
        min-height: 250px
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center
    }

    .footer__brand {
        max-width: none
    }

    .footer__social {
        justify-content: center
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center
    }

    .timeline::before {
        left: 7px
    }

    .timeline__marker {
        left: 0
    }

    .skills-bar__hint {
        display: none
    }
}

@media (max-width: 480px) {
    :root {
        --space-4xl:4rem;
        --space-3xl: 3rem
    }

    .projects-grid {
        grid-template-columns: 1fr
    }

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