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

:root {
    --rose: #f7d6e0;
    --rose-mid: #e8a0b8;
    --rose-dark: #c06080;
    --mint: #d6eee8;
    --lavender: #e8e0f4;
    --lavender-mid: #b8a8d8;
    --cream: #fdf8f2;
    --text: #3a2a38;
    --text-soft: #7a6078;
    --yarn: #e8b4c8;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rose);
    position: sticky;
    top: 0;
    z-index: 200;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--rose-dark);
    text-decoration: none
}

.logo span {
    font-style: italic
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s
}

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

.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--lavender);
    border-radius: 30px;
    padding: 3px
}

.lang-btn {
    font-size: 0.72rem;
    font-family: 'DM Sans', sans-serif;
    padding: 4px 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    color: var(--lavender-mid);
    font-weight: 500
}

.lang-btn.active {
    background: white;
    color: var(--rose-dark);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08)
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rose-dark);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 242, 0.98);
    backdrop-filter: blur(16px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s
}

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

.mobile-lang {
    display: flex;
    align-items: center;
    background: var(--lavender);
    border-radius: 30px;
    padding: 4px;
    margin-top: 1rem
}

.mobile-lang .lang-btn {
    font-size: 0.85rem;
    padding: 6px 18px
}

/* HERO */
.hero {
    background-image: url(./img/background_new.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 3rem 4rem 5rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(253, 248, 242, 0.5);
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 0%, white 100%);
    opacity: 0.9;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1
}

.hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-dark);
    background: var(--rose);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.4rem;
    border: 1.5px solid var(--rose-mid);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--text)
}

h1 em {
    font-style: italic;
    color: var(--rose-dark)
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 1.2rem 0 2rem;
    max-width: 420px
}

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

.btn-primary {
    background: var(--rose-dark);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 40px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s
}

.btn-primary:hover {
    background: #a04060;
    transform: translateY(-1px)
}

.btn-outline {
    background: rgba(253, 248, 242, 0.8);
    color: var(--rose-dark);
    padding: 0.75rem 1.8rem;
    border-radius: 40px;
    border: 1.5px solid var(--rose-mid);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--rose)
}

.yarn-ball-container {
    position: relative;
    width: 300px;
    height: 300px
}

.yarn-circle {
    position: absolute;
    border-radius: 50%;
    animation: floatY 6s ease-in-out infinite
}

.yc1 {
    width: 280px;
    height: 280px;
    background: var(--rose);
    top: 10px;
    left: 10px
}

.yc2 {
    width: 220px;
    height: 220px;
    background: var(--lavender);
    top: 40px;
    left: 40px;
    opacity: 0.7;
    animation-delay: 1s
}

.yc3 {
    width: 150px;
    height: 150px;
    background: var(--mint);
    top: 75px;
    left: 75px;
    opacity: 0.8;
    animation-delay: 2s
}

.yarn-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 5
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 8px 14px;
    font-size: 0.78rem;
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    white-space: nowrap;
    animation: floatY 5s ease-in-out infinite
}

.badge1 {
    top: -10px;
    right: -20px;
    animation-delay: 0.5s
}

.badge2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s
}

.badge3 {
    top: 50%;
    right: -40px;
    animation-delay: 2.5s
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px
}

.dot-pink {
    background: var(--rose-mid)
}

.dot-lav {
    background: var(--lavender-mid)
}

.dot-mint {
    background: #7cc4b0
}

@keyframes floatY {

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

    50% {
        transform: translateY(-12px)
    }
}

/* SECTIONS */
.divider {
    text-align: center;
    padding: 0.5rem 0 3rem;
    color: var(--text-soft);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase
}

.section {
    padding: 5rem 4rem
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-dark);
    text-align: center;
    margin-bottom: 0.6rem
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.8rem
}

.section-desc {
    text-align: center;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 3.5rem
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--rose);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px
}

.card-rose::before {
    background: linear-gradient(90deg, var(--rose-mid), var(--yarn))
}

.card-lav::before {
    background: linear-gradient(90deg, var(--lavender-mid), #c4b0e8)
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(192, 96, 128, 0.1)
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.65
}

.service-langs {
    display: flex;
    gap: 6px;
    margin-top: 1.2rem;
    flex-wrap: wrap
}

.lang-pill {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--rose);
    color: var(--rose-dark)
}

.lav-pill {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--lavender);
    color: var(--lavender-mid)
}

.about-section {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-visual {
    display: flex;
    justify-content: center
}

.about-avatar {

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-avatar img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(192, 96, 128, 0.15);
    border: 4px solid white
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem
}

.about-text p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 1.2rem
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.skill-tag {
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 20px;
    background: white;
    color: var(--text);
    border: 1px solid var(--rose-mid)
}

.contact-section {
    padding: 5rem 4rem;
    text-align: center;
    background: white
}

.contact-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--rose)
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.8rem
}

.contact-card p {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid var(--rose);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s
}

.contact-row:hover {
    border-color: var(--rose-mid)
}

.contact-icon {
    font-size: 1.2rem
}

.contact-label {
    font-size: 0.82rem;
    color: var(--text-soft);
    display: block
}

.contact-value {
    font-size: 0.92rem;
    font-weight: 500
}

footer {
    padding: 2rem 4rem;
    border-top: 1px solid var(--rose);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-soft);
    background: var(--cream)
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--rose-dark);
    font-size: 1rem
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.delay-1 {
    transition-delay: 0.1s
}

.delay-2 {
    transition-delay: 0.2s
}

.delay-3 {
    transition-delay: 0.3s
}

.delay-4 {
    transition-delay: 0.4s
}

/* TABLET */
@media(max-width:900px) {
    .hero {
        padding: 3rem 2.5rem
    }

    h1 {
        font-size: 2.8rem
    }

    .section {
        padding: 4rem 2.5rem
    }

    .about-section {
        padding: 4rem 2.5rem;
        gap: 2.5rem
    }

    footer {
        padding: 2rem 2.5rem
    }
}

/* MOBILE */
/* MOBILE */
@media(max-width:640px) {
    nav {
        padding: 1rem 1.2rem
    }

    .nav-links {
        display: none
    }

    .lang-toggle {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.4rem;
        min-height: auto;
        padding-top: 3rem
    }

    .yarn-ball-container {
        width: 180px;
        height: 180px
    }

    .yc1 {
        width: 170px;
        height: 170px;
        top: 5px;
        left: 5px
    }

    .yc2 {
        width: 130px;
        height: 130px;
        top: 25px;
        left: 25px
    }

    .yc3 {
        width: 90px;
        height: 90px;
        top: 45px;
        left: 45px
    }

    .yarn-icon {
        font-size: 2.4rem
    }

    .float-badge {
        font-size: 0.68rem;
        padding: 5px 10px
    }

    .badge1 {
        top: -8px;
        right: -10px
    }

    .badge2 {
        bottom: 10px;
        left: -10px
    }

    .badge3 {
        top: 45%;
        right: -10px
    }

    h1 {
        font-size: 2.4rem
    }

    .hero-sub {
        font-size: 0.95rem
    }

    .divider {
        padding: 0.5rem 0 2rem
    }

    .section {
        padding: 3rem 1.4rem
    }

    .section-title {
        font-size: 2rem
    }

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

    .service-card {
        padding: 1.5rem
    }

    .about-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.4rem;
        gap: 2rem;
        text-align: center
    }

    .about-visual {
        margin-bottom: 0.5rem
    }

    .about-avatar {
        width: 160px;
        height: 160px;
        font-size: 3.5rem
    }

    .about-text h2 {
        font-size: 1.7rem
    }

    .section-label[style*="text-align:left"] {
        text-align: center !important
    }

    .skills-list {
        justify-content: center
    }

    .contact-section {
        padding: 3rem 1.4rem
    }

    .contact-card {
        padding: 2rem 1.4rem;
        border-radius: 16px
    }

    .contact-card h2 {
        font-size: 1.7rem
    }

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

    .reveal-left,
    .reveal-right {
        transform: translateY(20px)
    }

    .reveal-left.visible,
    .reveal-right.visible {
        transform: translateY(0)
    }
}