:root {
    --cream: #F5F0EB;
    --cream-dark: #E8E0D8;
    --terracotta: #B85C38;
    --terracotta-light: #D4845E;
    --navy: #1E2A3A;
    --navy-light: #2E3F54;
    --gold: #C9A96E;
    --text-dark: #2C2420;
    --text-light: #6B5E55;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Cormorant Garamond', serif;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 40px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--navy);
}

/* HERO / DRESS ASSEMBLY */
.hero {
    position: relative;
    height: 400vh;
    background: var(--cream);
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dress-container {
    position: relative;
    width: 500px;
    height: 700px;
}

.dress-part {
    position: absolute;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.bodice {
    width: 180px;
    height: 200px;
    top: 50px;
    left: 160px;
    z-index: 5;
}

.bodice svg {
    width: 100%;
    height: 100%;
}

.skirt {
    width: 280px;
    height: 350px;
    top: 220px;
    left: 110px;
    z-index: 4;
}

.skirt svg {
    width: 100%;
    height: 100%;
}

.sleeve-left {
    width: 100px;
    height: 160px;
    top: 70px;
    left: 50px;
    z-index: 3;
}

.sleeve-left svg {
    width: 100%;
    height: 100%;
}

.sleeve-right {
    width: 100px;
    height: 160px;
    top: 70px;
    left: 350px;
    z-index: 3;
}

.sleeve-right svg {
    width: 100%;
    height: 100%;
}

.belt {
    width: 200px;
    height: 40px;
    top: 210px;
    left: 150px;
    z-index: 6;
}

.belt svg {
    width: 100%;
    height: 100%;
}

.hem {
    width: 260px;
    height: 60px;
    top: 540px;
    left: 120px;
    z-index: 2;
}

.hem svg {
    width: 100%;
    height: 100%;
}

.neckline {
    width: 80px;
    height: 50px;
    top: 30px;
    left: 210px;
    z-index: 7;
}

.neckline svg {
    width: 100%;
    height: 100%;
}

.float-elem {
    position: absolute;
    opacity: 0.6;
}

.float-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
}

.float-2 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
}

.float-3 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 8%;
}

.float-4 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 10%;
}

.hero-text {
    position: absolute;
    text-align: center;
    opacity: 0;
    z-index: 10;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: 8px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--terracotta);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* SECTIONS GENERAL */
section {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--navy);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--terracotta);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 60px;
}

/* ABOUT */
.about {
    padding: 120px 40px;
    background: var(--cream);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--terracotta);
    border-radius: 2px;
    z-index: -1;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-signature {
    margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--terracotta);
}

/* PORTFOLIO */
.portfolio {
    padding: 120px 40px;
    background: var(--cream-dark);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-tab {
    background: none;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.portfolio-tab:hover,
.portfolio-tab.active {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    background: var(--cream);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 58, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 24px;
    color: white;
    font-weight: 400;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.portfolio-overlay .category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--terracotta);
    color: white;
    padding: 5px 15px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* CURRENT WORKS */
.current-works {
    padding: 120px 40px;
    background: var(--cream);
}

.wip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.wip-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wip-image {
    aspect-ratio: 4/5;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.wip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wip-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.wip-progress-bar {
    height: 100%;
    background: var(--terracotta);
    transition: width 1s ease;
}

.wip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--terracotta);
    color: white;
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
}

.wip-info {
    padding: 25px;
}

.wip-info h4 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 500;
}

.wip-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.wip-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.wip-status span {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ORDER FORM */
.order-section {
    padding: 120px 40px;
    background: var(--navy);
    color: white;
}

.order-section .section-title {
    color: white;
}

.order-section .section-subtitle {
    color: var(--terracotta-light);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--navy);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 92, 56, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--terracotta-light);
}

.form-success p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* CONTACT */
.contact {
    padding: 100px 40px 60px;
    background: var(--cream);
    text-align: center;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
}

.contact-card.whatsapp .contact-icon {
    background: #25D366;
    color: white;
}

.contact-card.facebook .contact-icon {
    background: #1877F2;
    color: white;
}

.contact-card.email .contact-icon {
    background: var(--terracotta);
    color: white;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 500;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* FOOTER */
.footer {
    padding: 40px;
    background: var(--navy);
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--terracotta);
    margin: 0 auto 30px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* DECORATIVE */
.section-divider {
    width: 80px;
    height: 1px;
    background: var(--terracotta);
    margin: 0 auto 40px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 20px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--navy);
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .dress-container {
        width: 300px;
        height: 450px;
    }

    .bodice {
        width: 110px;
        height: 130px;
        top: 30px;
        left: 95px;
    }

    .skirt {
        width: 170px;
        height: 220px;
        top: 140px;
        left: 65px;
    }

    .sleeve-left {
        width: 60px;
        height: 100px;
        top: 45px;
        left: 25px;
    }

    .sleeve-right {
        width: 60px;
        height: 100px;
        top: 45px;
        left: 215px;
    }

    .belt {
        width: 120px;
        height: 25px;
        top: 135px;
        left: 90px;
    }

    .hem {
        width: 160px;
        height: 40px;
        top: 340px;
        left: 70px;
    }

    .neckline {
        width: 50px;
        height: 30px;
        top: 15px;
        left: 125px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .wip-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }
}

</style><style> :root {
    --cream: #F5F0EB;
    --cream-dark: #E8E0D8;
    --terracotta: #B85C38;
    --terracotta-light: #D4845E;
    --navy: #1E2A3A;
    --navy-light: #2E3F54;
    --gold: #C9A96E;
    --text-dark: #2C2420;
    --text-light: #6B5E55;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Cormorant Garamond', serif;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 40px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--navy);
}

/* HERO / DRESS ASSEMBLY */
.hero {
    position: relative;
    height: 400vh;
    background: var(--cream);
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dress-container {
    position: relative;
    width: 500px;
    height: 700px;
}

.dress-part {
    position: absolute;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.bodice {
    width: 180px;
    height: 200px;
    top: 50px;
    left: 160px;
    z-index: 5;
}

.bodice svg {
    width: 100%;
    height: 100%;
}

.skirt {
    width: 280px;
    height: 350px;
    top: 220px;
    left: 110px;
    z-index: 4;
}

.skirt svg {
    width: 100%;
    height: 100%;
}

.sleeve-left {
    width: 100px;
    height: 160px;
    top: 70px;
    left: 50px;
    z-index: 3;
}

.sleeve-left svg {
    width: 100%;
    height: 100%;
}

.sleeve-right {
    width: 100px;
    height: 160px;
    top: 70px;
    left: 350px;
    z-index: 3;
}

.sleeve-right svg {
    width: 100%;
    height: 100%;
}

.belt {
    width: 200px;
    height: 40px;
    top: 210px;
    left: 150px;
    z-index: 6;
}

.belt svg {
    width: 100%;
    height: 100%;
}

.hem {
    width: 260px;
    height: 60px;
    top: 540px;
    left: 120px;
    z-index: 2;
}

.hem svg {
    width: 100%;
    height: 100%;
}

.neckline {
    width: 80px;
    height: 50px;
    top: 30px;
    left: 210px;
    z-index: 7;
}

.neckline svg {
    width: 100%;
    height: 100%;
}

.float-elem {
    position: absolute;
    opacity: 0.6;
}

.float-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
}

.float-2 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
}

.float-3 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 8%;
}

.float-4 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 10%;
}

.hero-text {
    position: absolute;
    text-align: center;
    opacity: 0;
    z-index: 10;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: 8px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--terracotta);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* SECTIONS GENERAL */
section {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--navy);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--terracotta);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 60px;
}

/* ABOUT */
.about {
    padding: 120px 40px;
    background: var(--cream);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--terracotta);
    border-radius: 2px;
    z-index: -1;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-signature {
    margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--terracotta);
}

/* PORTFOLIO */
.portfolio {
    padding: 120px 40px;
    background: var(--cream-dark);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-tab {
    background: none;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.portfolio-tab:hover,
.portfolio-tab.active {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    background: var(--cream);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 58, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 24px;
    color: white;
    font-weight: 400;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.portfolio-overlay .category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--terracotta);
    color: white;
    padding: 5px 15px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* CURRENT WORKS */
.current-works {
    padding: 120px 40px;
    background: var(--cream);
}

.wip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.wip-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wip-image {
    aspect-ratio: 4/5;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.wip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wip-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.wip-progress-bar {
    height: 100%;
    background: var(--terracotta);
    transition: width 1s ease;
}

.wip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--terracotta);
    color: white;
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
}

.wip-info {
    padding: 25px;
}

.wip-info h4 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 500;
}

.wip-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.wip-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.wip-status span {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ORDER FORM */
.order-section {
    padding: 120px 40px;
    background: var(--navy);
    color: white;
}

.order-section .section-title {
    color: white;
}

.order-section .section-subtitle {
    color: var(--terracotta-light);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--navy);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 92, 56, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--terracotta-light);
}

.form-success p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* CONTACT */
.contact {
    padding: 100px 40px 60px;
    background: var(--cream);
    text-align: center;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
}

.contact-card.whatsapp .contact-icon {
    background: #25D366;
    color: white;
}

.contact-card.facebook .contact-icon {
    background: #1877F2;
    color: white;
}

.contact-card.email .contact-icon {
    background: var(--terracotta);
    color: white;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 500;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* FOOTER */
.footer {
    padding: 40px;
    background: var(--navy);
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--terracotta);
    margin: 0 auto 30px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* DECORATIVE */
.section-divider {
    width: 80px;
    height: 1px;
    background: var(--terracotta);
    margin: 0 auto 40px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 20px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--navy);
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .dress-container {
        width: 300px;
        height: 450px;
    }

    .bodice {
        width: 110px;
        height: 130px;
        top: 30px;
        left: 95px;
    }

    .skirt {
        width: 170px;
        height: 220px;
        top: 140px;
        left: 65px;
    }

    .sleeve-left {
        width: 60px;
        height: 100px;
        top: 45px;
        left: 25px;
    }

    .sleeve-right {
        width: 60px;
        height: 100px;
        top: 45px;
        left: 215px;
    }

    .belt {
        width: 120px;
        height: 25px;
        top: 135px;
        left: 90px;
    }

    .hem {
        width: 160px;
        height: 40px;
        top: 340px;
        left: 70px;
    }

    .neckline {
        width: 50px;
        height: 30px;
        top: 15px;
        left: 125px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .wip-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }
}