/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
    --bg: #FDF2ED;
    --bg-alt: #F8E8DF;
    --primary: #6A52C2;
    --primary-dark: #5540A0;
    --primary-light: #8A74D6;
    --accent-yellow: #FAE289;
    --accent-pink: #EC5EAB;
    --text: #2D2438;
    --text-light: #6B5F78;
    --text-muted: #9A8EA8;
    --white: #FFFFFF;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Outfit', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ============================================
   CUSTOM CURSOR (desktop only)
============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--ease-out-back);
    mix-blend-mode: difference;
    display: none;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
    opacity: 0.5;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-ring { display: block; }
    body { cursor: none; }
    a, button { cursor: none; }
}

.cursor-dot.hover { transform: scale(3); }
.cursor-ring.hover { transform: scale(1.8); opacity: 0; }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}.stagger-1 { transition-delay: 0.15s; }
.stagger-2 { transition-delay: 0.3s; }
.stagger-3 { transition-delay: 0.45s; }
.stagger-4 { transition-delay: 0.6s; }
.stagger-5 { transition-delay: 0.75s; }
.stagger-6 { transition-delay: 0.9s; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    max-width: 600px;
}

.label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ============================================
   LAYOUT
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(253, 242, 237, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 1px 30px rgba(106, 82, 194, 0.06);
}

/* Override scrolled styles when menu is open — this MUST win over .nav.scrolled */
.nav.menu-open,
.nav.menu-open.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 1.25rem 0;
    transition: none;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--primary);
    position: relative;
    z-index: 1003;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text);
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(106, 82, 194, 0.08);
    border-radius: 100px;
    padding: 0.3rem;
}

.lang-btn {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.8rem;
    border: none;
    border-radius: 100px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--primary);
}

/* Nav Social Icons */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: var(--text-light);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-social:hover {
    color: var(--primary);
    background: rgba(106, 82, 194, 0.08);
    transform: translateY(-2px);
}

/* Nav Divider — desktop: vertical line */
.nav-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    opacity: 0.4;
    list-style: none;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1003;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.5s var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.open span {
    background: var(--primary);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
    width: 28px;
}

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

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
    width: 28px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 12s ease-in-out infinite;
}

.hero-bg-shape--1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-bg-shape--2 {
    width: 350px;
    height: 350px;
    background: var(--accent-pink);
    bottom: 5%;
    left: -5%;
    animation-delay: -4s;
}

.hero-bg-shape--3 {
    width: 250px;
    height: 250px;
    background: var(--accent-yellow);
    top: 30%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, -18px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.6s forwards;
}

.hero-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(106, 82, 194, 0.08);
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--white);
    padding: 1rem 1.4rem;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(45, 36, 56, 0.12);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

/* Open to Work — green dot indicator */.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out-expo) 0.5s forwards;
    white-space: nowrap;
}

.hero h1 em {
    font-style: italic;
    color: var(--primary);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-yellow);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}

.hero-text {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out-expo) 0.9s forwards;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(106, 82, 194, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid rgba(106, 82, 194, 0.25);
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(106, 82, 194, 0.06);
    transform: translateY(-2px);
}/* ============================================
   SCROLL HINT
============================================ */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out-expo) 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
    opacity: 0.3;
}

.about-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
}

.about-side {
    position: relative;
}/* Portfolio Card */
.portfolio-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 5/6;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(106, 82, 194, 0.2);
}

.portfolio-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--primary), var(--primary-dark) 50%, var(--accent-pink));
    z-index: 0;
}

.portfolio-card-bg::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent-yellow);
    border-radius: 50%;
    top: -80px;
    right: -60px;
    opacity: 0.12;
    filter: blur(50px);
}

.portfolio-card-bg::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-pink);
    border-radius: 50%;
    bottom: 20px;
    left: -50px;
    opacity: 0.18;
    filter: blur(50px);
}

.portfolio-card-content {
    position: relative;
    z-index: 1;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.6rem;
}

.portfolio-card-title {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: auto;
}

.portfolio-card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 280px;
}

.portfolio-card-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.2rem 0;
}

.portfolio-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
    transition: gap 0.3s var(--ease-out-expo);
}

.portfolio-card:hover .portfolio-card-cta {
    gap: 0.7rem;
}

.portfolio-card-cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.portfolio-card:hover .portfolio-card-cta svg {
    transform: translate(3px, -3px);
}

.about-side-accent {
    position: absolute;
    width: 80%;
    height: 80%;
    bottom: -16px;
    right: -16px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(106, 82, 194, 0.08), rgba(236, 94, 171, 0.06));
    border: 1px solid rgba(106, 82, 194, 0.06);
    z-index: 1;
}/* Fallback when no image yet */.about-float-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.about-float-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}.about-content h2 {
    margin-bottom: 1.2rem;
    white-space: nowrap;
}

.about-content h2 em {
    color: var(--primary);
    font-style: italic;
}

/* Experience Sticker */.about-text {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.about-tag {
    padding: 0.5rem 1.1rem;
    background: rgba(106, 82, 194, 0.07);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s var(--ease-out-expo);
}

.about-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.services-header h2 em {
    color: var(--primary);
    font-style: italic;
}

.services-header p {
    color: var(--text-light);
    margin: 0 auto;
}

.services-approach {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(106, 82, 194, 0.06);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(106, 82, 194, 0.08);
}

.approach-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.4s var(--ease-out-expo);
}

.approach-icon-svg {
    width: 28px;
    height: 28px;
    transition: filter 0.4s var(--ease-out-expo);
}

.approach-icon--purple {
    background: rgba(106, 82, 194, 0.1);
}

.approach-icon--pink {
    background: rgba(236, 94, 171, 0.1);
}

/* Hover: icon container fills with color, SVG turns white */
.approach-card:hover .approach-icon--purple {
    background: var(--primary);
}

.approach-card:hover .approach-icon--pink {
    background: var(--accent-pink);
}

.approach-card:hover .approach-icon-svg {
    filter: brightness(0) invert(1);
}

.approach-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}

.approach-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service Items */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-item {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(106, 82, 194, 0.06);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.5s var(--ease-out-expo);
}

.service-item:hover::after {
    width: 40%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(106, 82, 194, 0.08);
}

.service-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: rgba(106, 82, 194, 0.1);
    line-height: 1;
    margin-bottom: 0.8rem;
    transition: color 0.4s;
}

.service-item:hover .service-number {
    color: var(--primary);
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.services-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(106, 82, 194, 0.06), rgba(236, 94, 171, 0.04));
    border-radius: 16px;
    border: 1px dashed rgba(106, 82, 194, 0.15);
}

.services-note p {
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   WHY ME SECTION
============================================ */
.why-me {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-yellow), transparent);
    opacity: 0.5;
}

.why-me-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.why-me-content h2 {
    margin-bottom: 2rem;
}

.why-me-content h2 em {
    color: var(--primary);
    font-style: italic;
}

.why-me-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-me-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.why-me-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.why-me-icon--1 { background: rgba(250, 226, 137, 0.3); }
.why-me-icon--2 { background: rgba(236, 94, 171, 0.1); }
.why-me-icon--3 { background: rgba(106, 82, 194, 0.1); }

.why-me-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.why-me-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-me-visual {
    position: relative;
}

.why-me-quote-card {
    background: linear-gradient(160deg, var(--bg), var(--bg-alt));
    border-radius: 24px;
    padding: 3rem;
    position: relative;
}

.why-me-quote-card::before {
    content: '"';
    font-family: var(--serif);
    font-size: 8rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
}

.why-me-quote {
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.why-me-quote em {
    color: var(--primary);
    font-style: italic;
}

.why-me-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    animation: float 5s ease-in-out infinite;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    position: relative;
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.contact-header h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.contact-header h2 em {
    color: var(--primary);
    font-style: italic;
}

.contact-subtitle {
    color: var(--text-light);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

/* Form */
.contact-form-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(106, 82, 194, 0.06);
}

/* Purple header */
.form-header {
    position: relative;
    padding: 1.6rem 2rem;
    overflow: hidden;
}

.form-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: 0;
}

.form-header-bg::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: var(--accent-pink);
    border-radius: 50%;
    top: -70px;
    right: -30px;
    opacity: 0.15;
    filter: blur(40px);
}

.form-header-bg::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-yellow);
    border-radius: 50%;
    bottom: -40px;
    left: 20px;
    opacity: 0.1;
    filter: blur(30px);
}

.form-header-content {
    position: relative;
    z-index: 1;
}

.form-header-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
}

.form-header-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--white);
}

/* Form body */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2rem);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), background 0.3s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 82, 194, 0.08);
    background: var(--white);
}

.btn-submit {
    align-self: flex-start;
    margin-top: 0.3rem;
}

.form-status {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.3rem;
}

.form-status.success {
    color: #34C759;
}

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

/* Form validation states */
.form-required {
    color: var(--accent-pink);
    font-weight: 400;
}

.form-optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.72rem;
}

.form-error {
    display: none;
    font-size: 0.78rem;
    color: #E24B4A;
    margin-top: 0.2rem;
    font-weight: 500;
}

.form-error.visible {
    display: block;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #E24B4A;
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.08);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #34C759;
}

.form-char-count {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.2rem;
    transition: color 0.3s;
}

.form-char-count.warn {
    color: var(--accent-pink);
}

.form-char-count.limit {
    color: #E24B4A;
    font-weight: 600;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Sidebar cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-email-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: var(--primary);
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.contact-email-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-pink);
    border-radius: 50%;
    top: -100px;
    right: -60px;
    opacity: 0.15;
    filter: blur(50px);
}

.contact-email-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(106, 82, 194, 0.25);
}

.contact-email-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-email-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact-email-address {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    word-break: break-all;
}

.contact-email-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s var(--ease-out-expo), color 0.3s;
}

.contact-email-card:hover .contact-email-arrow {
    transform: translate(3px, -3px);
    color: var(--white);
}

.contact-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(106, 82, 194, 0.06);
    text-decoration: none;
    color: var(--text);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.contact-social-card svg {
    color: var(--primary);
    transition: transform 0.4s var(--ease-out-expo);
}

.contact-social-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(106, 82, 194, 0.1);
}

.contact-social-card:hover svg {
    transform: scale(1.15);
}

.contact-social-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.contact-social-handle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 3rem 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-credit {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-credit a.footer-link {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.footer-credit a.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.footer-credit a.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-heart {
    display: inline-block;
    vertical-align: -3px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.35); }
    40% { transform: scale(1); }
    55% { transform: scale(1.25); }
    70% { transform: scale(1); }
}

/* ============================================
   MARQUEE
============================================ */
.marquee-section {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid rgba(106, 82, 194, 0.08);
    border-bottom: 1px solid rgba(106, 82, 194, 0.08);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 2.5rem;
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   UTILITIES
============================================ *//* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
        animation: menuFadeIn 0.5s var(--ease-out-expo) forwards;
        overflow: hidden;
    }

    @keyframes menuFadeIn {
        from {
            opacity: 0;
            backdrop-filter: blur(0);
        }
        to {
            opacity: 1;
            backdrop-filter: blur(20px);
        }
    }

    /* Decorative background shapes inside mobile menu */
    .nav-links.mobile-open::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: var(--primary-light);
        border-radius: 50%;
        top: -80px;
        right: -80px;
        opacity: 0;
        filter: blur(70px);
        animation: menuShapeIn 1s var(--ease-out-expo) 0.2s forwards;
    }

    .nav-links.mobile-open::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: var(--accent-pink);
        border-radius: 50%;
        bottom: -60px;
        left: -60px;
        opacity: 0;
        filter: blur(70px);
        animation: menuShapeIn 1s var(--ease-out-expo) 0.35s forwards;
    }

    @keyframes menuShapeIn {
        from {
            opacity: 0;
            transform: scale(0.5);
        }
        to {
            opacity: 0.25;
            transform: scale(1);
        }
    }

    /* Each link slides up with stagger */
    .nav-links.mobile-open li {
        opacity: 0;
        transform: translateY(30px);
        animation: menuLinkIn 0.7s var(--ease-out-expo) forwards;
        position: relative;
        z-index: 1;
    }

    .nav-links.mobile-open li:nth-child(1) { animation-delay: 0.15s; }
    .nav-links.mobile-open li:nth-child(2) { animation-delay: 0.25s; }
    .nav-links.mobile-open li:nth-child(3) { animation-delay: 0.35s; }
    .nav-links.mobile-open li:nth-child(4) { animation-delay: 0.45s; }
    .nav-links.mobile-open li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links.mobile-open li:nth-child(6) { animation-delay: 0.6s; }
    .nav-links.mobile-open li:nth-child(7) { animation-delay: 0.65s; }
    .nav-links.mobile-open li:nth-child(8) { animation-delay: 0.75s; }

    /* Mobile divider — horizontal with dot */
    .nav-links.mobile-open .nav-divider {
        width: auto;
        height: auto;
        background: none;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1.4rem 0;
    }

    .nav-links.mobile-open .nav-divider::before,
    .nav-links.mobile-open .nav-divider::after {
        content: '';
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary-light));
        opacity: 0.5;
    }

    .nav-links.mobile-open .nav-divider::after {
        background: linear-gradient(to left, transparent, var(--primary-light));
    }

    @keyframes menuLinkIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.mobile-open .nav-link {
        font-family: var(--serif);
        font-size: 2rem;
        color: var(--text);
        padding: 0.8rem 0;
        display: inline-block;
        transition: color 0.3s, transform 0.3s var(--ease-out-expo);
    }

    .nav-links.mobile-open .nav-link:hover {
        color: var(--primary);
        transform: translateX(8px);
    }

    .nav-links.mobile-open .nav-link::after {
        bottom: 2px;
        height: 2px;
    }

    .nav-links.mobile-open .lang-switch {
        margin-top: 0.3rem;
        transform: scale(1.15);
    }

    .nav-links.mobile-open .nav-socials {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        gap: 1rem;
    }

    .nav-links.mobile-open .nav-social {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: rgba(106, 82, 194, 0.06);
        color: var(--primary);
    }

    .nav-links.mobile-open .nav-social svg {
        width: 22px;
        height: 22px;
    }

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

    .hero-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero h1 {
        white-space: normal;
    }

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

    .about-side {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }

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

    .about-content h2 {
        white-space: normal;
    }

    .services-header h2 {
        white-space: normal;
    }

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

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

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    h1 {
        font-size: clamp(1.65rem, 6.5vw, 2.4rem);
    }
}
