:root {
            --bg: #FAFAF8;
            --bg2: #F2F0EC;
            --text: #1A1A18;
            --text2: #4A4A44;
            --accent: #F6C414;
            --accent-dark: #D4A800;
            --border: rgba(26, 26, 24, 0.12);
            --white: #FFFFFF;
            --radius: 14px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(250, 250, 248, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 5%;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

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

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

        .nav-links a {
            text-decoration: none;
            color: var(--text2);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color var(--transition);
        }

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

        .nav-cta {
            background: var(--accent);
            color: var(--text) !important;
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: background var(--transition) !important;
        }

        .nav-cta:hover {
            background: var(--accent-dark) !important;
            color: var(--text) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
            padding: 1.5rem 5%;
            z-index: 99;
            flex-direction: column;
            gap: 1.2rem;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text2);
            font-size: 1rem;
            font-weight: 500;
            transition: color var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--accent-dark);
        }

        /* SECTIONS */
        section {
            padding: 100px 5%;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-dark);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }

        .section-sub {
            font-size: 1.05rem;
            color: var(--text2);
            max-width: 520px;
            margin-bottom: 3rem;
        }

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

        .hero-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.08;
            pointer-events: none;
        }

        .hero-bg-circle.c1 {
            width: 500px;
            height: 500px;
            top: -100px;
            right: -100px;
        }

        .hero-bg-circle.c2 {
            width: 300px;
            height: 300px;
            bottom: 0;
            left: -80px;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text2);
            margin-bottom: 1.5rem;
        }

        .hero-tag-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
        }

        .hero-name {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 1rem;
        }

        .hero-name .accent {
            color: var(--accent);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text2);
            max-width: 440px;
            margin-bottom: 2.5rem;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--text);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1.5px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            background: rgba(246, 196, 20, 0.08);
            transform: translateY(-2px);
        }

        .hero-image-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-avatar {
            width: 400px;
            height: 400px;
            border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
            object-fit: cover;
            background: var(--bg2);
            border: 4px solid var(--accent);
            animation: morphBorder 8s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            
        }

        .hero-avatar img {
            width: 110%;
            height: 110%;
            object-fit: cover;
            margin-left: 100px;
        }

        .hero-avatar-placeholder {
            font-size: 5rem;
            color: var(--accent);
            user-select: none;
        }

        @keyframes morphBorder {

            0%,
            100% {
                border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
            }

            25% {
                border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
            }

            50% {
                border-radius: 60% 40% 45% 55% / 55% 50% 45% 45%;
            }

            75% {
                border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
            }
        }

        .hero-socials {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text2);
            transition: all var(--transition);
            background: var(--white);
        }

        .social-icon:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(246, 196, 20, 0.2);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
        }

        /* ABOUT */
        #about {
            background: var(--bg);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image-wrap {
            position: relative;
        }

        .about-img-box {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: var(--radius);
            background: var(--bg2);
            overflow: hidden;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-img-placeholder {
            font-size: 6rem;
            color: var(--accent);
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--accent);
            padding: 16px 20px;
            border-radius: var(--radius);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .about-badge .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1;
        }

        .about-badge .label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text2);
        }

        .about-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 2rem;
        }

        .skill-tag {
            background: var(--bg2);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text2);
            transition: all var(--transition);
            cursor: default;
        }

        .skill-tag:hover {
            background: var(--accent);
            color: var(--text);
            border-color: var(--accent);
        }

        /* SERVICES */
        #services {
            background: var(--bg2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: all var(--transition);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--accent);
        }

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(246, 196, 20, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text2);
        }

        /* ART GALLERY */
        #art {
            background: var(--bg);
        }

        .art-header {
            max-width: 1200px;
            margin: 0 auto;
        }

        .art-filter {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .filter-btn {
            padding: 7px 18px;
            border-radius: 100px;
            border: 1.5px solid var(--border);
            background: transparent;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text2);
            cursor: pointer;
            transition: all var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--text);
        }

        .art-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .art-card {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--bg2);
            position: relative;
            cursor: pointer;
            transition: all var(--transition);
            aspect-ratio: 3/4;
        }

        .art-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .art-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .art-card-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg2) 0%, #E8E5DC 100%);
            gap: 8px;
        }

        .art-card-placeholder .art-icon {
            font-size: 2.5rem;
        }

        .art-card-placeholder .art-title {
            font-size: 0.85rem;
            color: var(--text2);
            font-weight: 500;
        }

        .art-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26, 26, 24, 0.75);
            opacity: 0;
            transition: opacity var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 1.25rem;
        }

        .art-card:hover .art-overlay {
            opacity: 1;
        }

        .art-overlay-text h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
        }

        .art-overlay-text span {
            color: var(--accent);
            font-size: 0.8rem;
        }

        /* LIGHTBOX */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(0, 0, 0, 0.92);
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox-content {
            max-width: 800px;
            width: 100%;
            position: relative;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .lightbox-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg2);
            font-size: 5rem;
        }

        .lightbox-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lightbox-info {
            padding: 1.5rem;
        }

        .lightbox-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background var(--transition);
        }

        .lightbox-close:hover {
            background: var(--accent);
            color: var(--text);
        }

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

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .contact-info-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1rem 1.25rem;
            text-decoration: none;
            color: inherit;
            transition: all var(--transition);
        }

        .contact-info-card:hover {
            border-color: var(--accent);
            transform: translateX(4px);
        }

        .contact-info-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 10px;
            background: rgba(246, 196, 20, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .contact-info-card strong {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .contact-info-card span {
            font-size: 0.82rem;
            color: var(--text2);
        }

        .contact-social-row {
            display: flex;
            gap: 12px;
            margin-top: 2rem;
        }

        .contact-form {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

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

        label {
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--text2);
            display: block;
            margin-bottom: 0.4rem;
        }

        input,
        textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color var(--transition);
            resize: none;
            outline: none;
        }

        input:focus,
        textarea:focus {
            border-color: var(--accent);
        }

        textarea {
            min-height: 130px;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: var(--accent);
            color: var(--text);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
        }

        .submit-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .form-success {
            display: none;
            background: #EAF3DE;
            border: 1px solid #C0DD97;
            color: #3B6D11;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 1rem;
        }

        .form-success.show {
            display: block;
        }

        /* CV SECTION */
        #cv {
            background: var(--bg);
        }

        .cv-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cv-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .cv-bg-accent {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top right, rgba(246, 196, 20, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .cv-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .cv-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .cv-desc {
            color: var(--text2);
            margin-bottom: 2rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .cv-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent);
            color: var(--text);
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all var(--transition);
            margin-bottom: 2rem;
        }

        .cv-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(246, 196, 20, 0.35);
        }

        .cv-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cv-meta-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cv-meta-item strong {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-dark);
        }

        .cv-meta-item span {
            font-size: 0.78rem;
            color: var(--text2);
            font-weight: 500;
        }

        /* FOOTER */
        footer {
            background: var(--text);
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 5% 2rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
        }

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

        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color var(--transition);
        }

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

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-social {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            transition: all var(--transition);
        }

        .footer-social:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--text);
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
        }

        .footer-copy {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ANIMATIONS */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image-wrap {
                order: -1;
            }

            .hero-avatar {
                width: 260px;
                height: 260px;
                margin: 0 auto;
            }

            .hero-desc,
            .hero-btns,
            .hero-socials {
                justify-content: center;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

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

        @media (max-width: 600px) {
            section {
                padding: 80px 5%;
            }

            .hero-name {
                font-size: 2.4rem;
            }

            .about-badge {
                right: 0;
                bottom: -16px;
            }
        }