/* ========== VARIABLES & RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-ivory: #F7F3EF;
    --color-plum: #6A3F66;
    --color-anthracite: #1A1A1A;
    --color-rose-quartz: #E5C8D8;
    --color-soft-gold: #D9B78C;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-anthracite);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-ivory);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--transition);
}

.nav.scrolled {
    background: rgba(247, 243, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-plum);
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--color-anthracite);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-plum);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-plum);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-plum);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== FEATHER ANIMATION ========== */
.feather {
    position: fixed;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: all 0.8s var(--transition);
}

.feather.visible {
    opacity: 1;
}

.feather svg {
    filter: drop-shadow(0 4px 12px rgba(106, 63, 102, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* ========== SECTIONS ========== */
.section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.orb-left {
    top: 20%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--color-plum);
}

.orb-right {
    bottom: 20%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--color-rose-quartz);
}

.orb-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--color-soft-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-anthracite);
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-plum), var(--color-rose-quartz));
    border-radius: 2px;
    transition: width 1s var(--transition);
}

.section-title.in-view::after {
    width: 120px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-plum);
    margin-bottom: 64px;
    opacity: 0.9;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-plum);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(106, 63, 102, 0.3);
}

.btn-secondary {
    background: rgba(229, 200, 216, 0.3);
    color: var(--color-plum);
    border: 2px solid var(--color-rose-quartz);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    background: rgba(229, 200, 216, 0.5);
    box-shadow: 0 12px 32px rgba(229, 200, 216, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--color-ivory) 0%, #ffffff 50%, rgba(229, 200, 216, 0.1) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    transition: transform 0.3s ease-out;
}

.hero-orb-1 {
    top: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-plum) 0%, transparent 70%);
}

.hero-orb-2 {
    bottom: 10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-rose-quartz) 0%, var(--color-soft-gold) 50%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-anthracite);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--color-plum);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-soft-gold) 0%, var(--color-rose-quartz) 50%, transparent 70%);
    filter: blur(40px);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.hero-image-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(229, 200, 216, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ========== ANIMATIONS ========== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition);
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========== EXPERTISE SECTION ========== */
.expertise {
    background: linear-gradient(180deg, #ffffff 0%, rgba(247, 243, 239, 0.5) 50%, #ffffff 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.expertise-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-plum), var(--color-rose-quartz));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 63, 102, 0.15);
    border-color: var(--color-rose-quartz);
}

.expertise-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-anthracite);
    margin-bottom: 16px;
}

.expertise-card p {
    color: #666;
    line-height: 1.7;
}

/* ========== PROJECTS & WRITING SECTIONS ========== */
.projects-grid,
.writing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.project-card,
.writing-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s var(--transition);
}

.project-card:hover,
.writing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(106, 63, 102, 0.2);
    border-color: var(--color-rose-quartz);
}

.project-image,
.writing-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img,
.writing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img,
.writing-card:hover .writing-image img {
    transform: scale(1.1);
}

.project-type,
.writing-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-plum);
    font-weight: 600;
    font-size: 14px;
}

.project-content,
.writing-content {
    padding: 32px;
}

.project-content h3,
.writing-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-anthracite);
    margin-bottom: 12px;
}

.project-content p,
.writing-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(217, 183, 140, 0.2);
    color: var(--color-anthracite);
    font-size: 12px;
    font-weight: 500;
}

/* ========== ABOUT SECTION ========== */
.about-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    padding: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
    text-align: center;
}

.about-intro p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-plum);
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 64px;
}

.about-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 63, 102, 0.15);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-anthracite);
    margin-bottom: 20px;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-value {
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(217, 183, 140, 0.2);
    color: var(--color-anthracite);
    font-weight: 600;
}

.about-skills {
    padding: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
}

.about-skills h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-anthracite);
    text-align: center;
    margin-bottom: 32px;
}

.about-skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.about-skill {
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--color-ivory);
    color: var(--color-plum);
    border: 2px solid var(--color-rose-quartz);
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-skill:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(106, 63, 102, 0.2);
}

/* ========== SERVICES SECTION ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 63, 102, 0.15);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-anthracite);
    margin-bottom: 16px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-points {
    list-style: none;
}

.service-points li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #666;
}

.service-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-plum);
    font-weight: 700;
}

.services-cta {
    text-align: center;
}

/* ========== CONTACT SECTION ========== */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    padding: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(229, 200, 216, 0.3);
    background: rgba(247, 243, 239, 0.5);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-anthracite);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-plum);
    background: rgba(247, 243, 239, 0.8);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 20px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 16px;
    font-size: 12px;
    color: var(--color-plum);
    background: var(--color-ivory);
    padding: 0 8px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-loading,
.btn-success {
    display: none;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 200, 216, 0.3);
    backdrop-filter: blur(20px);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-anthracite);
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--color-plum);
    transition: opacity 0.3s ease;
}

.contact-card a:hover {
    opacity: 0.7;
}

.contact-social h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-anthracite);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(247, 243, 239, 0.8);
    border: 1px solid rgba(229, 200, 216, 0.3);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateX(8px);
    border-color: var(--color-rose-quartz);
}

/* ========== FOOTER ========== */
.footer {
    padding: 32px 0;
    background: var(--color-anthracite);
    text-align: center;
}

.footer p {
    color: var(--color-ivory);
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .section {
        padding: 140px 0;
    }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1100px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 350px;
        height: 350px;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: clamp(36px, 5vw, 56px);
        margin-bottom: 48px;
    }

    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .projects-grid,
    .writing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 40px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Navigation Mobile */
    .nav {
        padding: 16px 0;
    }

    .nav.scrolled {
        padding: 12px 0;
    }

    .nav-logo {
        font-size: 24px;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(247, 243, 239, 0.98);
        backdrop-filter: blur(20px);
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s var(--transition);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 22px);
        margin-bottom: 32px;
    }

    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: clamp(32px, 7vw, 48px);
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: clamp(16px, 3vw, 20px);
        margin-bottom: 48px;
    }

    /* Expertise */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        padding: 32px 24px;
    }

    .expertise-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    /* Projects & Writing */
    .projects-grid,
    .writing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-image,
    .writing-image {
        height: 200px;
    }

    .project-content,
    .writing-content {
        padding: 24px;
    }

    /* About */
    .about-intro {
        padding: 32px 24px;
        margin-bottom: 48px;
    }

    .about-intro p {
        font-size: clamp(16px, 3vw, 20px);
    }

    .about-grid {
        gap: 24px;
    }

    .about-card {
        padding: 32px 24px;
    }

    .about-card h3 {
        font-size: 28px;
    }

    .about-skills {
        padding: 32px 24px;
    }

    .about-skills h3 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .about-skills-grid {
        gap: 12px;
    }

    .about-skill {
        padding: 16px 20px;
    }

    .skill-logo {
        width: 40px;
        height: 40px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-number {
        font-size: 56px;
        top: 16px;
        right: 16px;
    }

    /* Contact */
    .contact-form {
        padding: 32px 24px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .contact-card {
        padding: 24px;
    }

    /* Buttons */
    .btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* Mobile Large (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 40px);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(14px, 4.5vw, 18px);
    }

    .hero-image-wrapper {
        width: 240px;
        height: 240px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 32px;
    }

    .section-subtitle {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: 40px;
    }

    /* Cards */
    .expertise-card,
    .project-card,
    .writing-card,
    .about-card,
    .service-card {
        border-radius: 16px;
    }

    .expertise-card {
        padding: 24px 20px;
    }

    .expertise-icon {
        width: 56px;
        height: 56px;
    }

    .expertise-card h3 {
        font-size: 20px;
    }

    .expertise-card p {
        font-size: 14px;
    }

    /* Project & Writing Cards */
    .project-content,
    .writing-content {
        padding: 20px;
    }

    .project-content h3,
    .writing-content h3 {
        font-size: 20px;
    }

    .project-content p,
    .writing-content p {
        font-size: 14px;
    }

    .project-tags {
        gap: 6px;
    }

    .project-tag {
        padding: 4px 12px;
        font-size: 11px;
    }

    /* About */
    .about-intro {
        padding: 24px 20px;
    }

    .about-card {
        padding: 24px 20px;
    }

    .about-card h3 {
        font-size: 24px;
    }

    .about-card p {
        font-size: 14px;
    }

    .about-value {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about-skills {
        padding: 24px 20px;
    }

    .about-skills h3 {
        font-size: 24px;
    }

    .about-skill {
        padding: 14px 18px;
    }

    .skill-logo {
        width: 36px;
        height: 36px;
    }

    .about-skill span {
        font-size: 14px;
    }

    /* Services */
    .service-card {
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-number {
        font-size: 48px;
    }

    .service-points li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 24px;
    }

    /* Contact */
    .contact-form {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .social-link {
        padding: 10px 14px;
        font-size: 14px;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Orbs - Réduire pour mobile */
    .hero-orb,
    .section-orb {
        opacity: 0.1;
    }

    .hero-orb-1,
    .hero-orb-2 {
        width: 300px;
        height: 300px;
    }
}

/* Mobile Small (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 26px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .expertise-icon {
        width: 48px;
        height: 48px;
    }

    .about-skill {
        padding: 12px 16px;
    }

    .skill-logo {
        width: 32px;
        height: 32px;
    }
}

/* Landscape Mode pour Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-image-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* Animations Responsive */
@media (max-width: 768px) {

    /* Réduire les animations sur mobile pour la performance */
    .scroll-animate {
        transition-duration: 0.6s;
    }

    .feather {
        display: none;
        /* Masquer la plume sur mobile */
    }

    /* Réduire les effets de particules sur mobile */
    .particle,
    .wave-effect {
        display: none;
    }
}

/* Print Styles */
@media print {

    .nav,
    .feather,
    .cursor-particles,
    .hero-orb,
    .section-orb {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}