@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
    --black: #0A0A0A;
    --dark: #141414;
    --gray-dark: #222222;
    --gray: #555;
    --gray-light: #999;
    --nude: #CC1A30;
    --nude-light: #E8D8C8;
    --rose: #991020;
    --white: #FAFAFA;
    --off-white: #F4F2EF;
}

html {
    scroll-behavior: smooth;
}

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

/* ===== MARQUEE TOP ===== */
.marquee {
    background: var(--black);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-inner span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-right: 80px;
    font-weight: 300;
}

.marquee-inner .dot {
    margin: 0 15px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--nude);
    display: inline-block;
    vertical-align: middle;
}

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

/* ===== NAVBAR ===== */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--black);
    letter-spacing: 6px;
    text-decoration: none;
}

.nav-center {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-center a {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: var(--black);
}

.nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-icon {
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.nav-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.nav-icon:hover {
    transform: scale(1.1);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    background: var(--white);
}

.hero-season {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideRight 0.8s ease-out 0.3s backwards;
}

.hero-season::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--rose);
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-left h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 25px;
    animation: slideRight 0.8s ease-out 0.5s backwards;
}

.hero-left h1 em {
    font-style: italic;
    color: var(--rose);
}

.hero-left p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: slideRight 0.8s ease-out 0.7s backwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: slideRight 0.8s ease-out 0.9s backwards;
}

.btn-dark {
    display: inline-block;
    padding: 16px 40px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-dark:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-link {
    color: var(--black);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    transition: width 0.3s;
}

.btn-link:hover::after {
    width: 50%;
}

.hero-right {
    background: linear-gradient(135deg, var(--nude-light), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    width: 55vmin;
    height: 55vmin;
    border-radius: 50%;
    border: 1px solid rgba(196, 139, 122, 0.06);
    animation: rotateStar 20s linear infinite;
}

@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-model {
    opacity: 0.85;
    animation: floatModel 5s ease-in-out infinite;
    overflow: hidden;
    border-radius: 20px;
}

.hero-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 400px;
    max-height: 500px;
}

@keyframes floatModel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 400;
}

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

.thin-line {
    width: 40px;
    height: 1px;
    background: var(--black);
    margin: 20px auto;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--gray);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== CATEGORIES ===== */
.categories {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    background: var(--off-white);
}

.category-bg {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    transition: all 0.6s ease;
}

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

.category-card:hover .category-bg {
    transform: scale(1.15);
    opacity: 0.5;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(12,12,12,0.9), transparent);
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.category-card:hover .category-info {
    transform: translateY(0);
}

.category-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.category-info span {
    font-size: 0.8rem;
    color: var(--nude);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.category-card:hover .category-overlay {
    background: rgba(12, 12, 12, 0.3);
}

.category-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    padding: 12px 30px;
    background: var(--white);
    color: var(--black);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

.category-card:hover .category-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FEATURED PRODUCTS ===== */
.featured {
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
}

.product-image {
    height: 380px;
    background: var(--white);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image .product-emoji {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    transition: all 0.5s ease;
}

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

.product-action-btn img {
    width: 18px;
    height: 18px;
}

.product-card:hover .product-emoji {
    transform: scale(1.1);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--black);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-action-btn {
    flex: 1;
    padding: 12px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.product-action-btn:hover {
    background: var(--rose);
}

.product-action-btn.outline {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black);
    color: var(--black);
}

.product-info {
    text-align: center;
}

.product-brand {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.product-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-weight: 300;
    margin-right: 8px;
}

/* ===== LOOKBOOK ===== */
.lookbook {
    background: var(--white);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lookbook-item:nth-child(1) {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--nude-light), var(--rose));
}

.lookbook-item:nth-child(2) { background: var(--off-white); }
.lookbook-item:nth-child(3) { background: var(--black); }
.lookbook-item:nth-child(4) { background: var(--gray-dark); }
.lookbook-item:nth-child(5) { background: linear-gradient(135deg, var(--off-white), var(--nude-light)); }

.lookbook-item .look-emoji {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    transition: transform 0.5s;
}

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

.look-emoji.look-dark {
    opacity: 0.35;
}

.lookbook-item:hover .look-emoji {
    transform: scale(1.2);
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(12, 12, 12, 0.7);
    transition: opacity 0.5s;
}

.lookbook-item:hover .lookbook-overlay {
    opacity: 1;
}

.lookbook-overlay h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.lookbook-overlay span {
    font-size: 0.75rem;
    color: var(--nude);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== BRAND VALUES ===== */
.values {
    background: var(--black);
    color: var(--white);
}

.values .section-tag {
    color: var(--nude);
}

.values .section-header h2 {
    color: var(--white);
}

.values .thin-line {
    background: var(--nude);
}

.values .section-header p {
    color: var(--gray-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 139, 122, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    border-color: rgba(212, 185, 160, 0.2);
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.value-item h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--off-white);
    padding: 100px 60px;
}

.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-wrapper h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.newsletter-wrapper h2 em {
    font-style: italic;
    color: var(--rose);
}

.newsletter-wrapper p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-right: none;
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--rose);
}

.newsletter-form button {
    padding: 16px 35px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--rose);
}

/* ===== INSTAGRAM FEED ===== */
.instagram {
    background: var(--white);
    padding: 80px 0;
}

.instagram .section-header {
    margin-bottom: 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.insta-item {
    aspect-ratio: 1;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.insta-item .insta-emoji {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    transition: transform 0.4s;
}

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

.insta-item:hover .insta-emoji {
    transform: scale(1.2);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196, 139, 122, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay span,
.insta-overlay img {
    color: var(--white);
}

.insta-overlay img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    letter-spacing: 6px;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-social-icon:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.footer-col h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--nude);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-payments span {
    opacity: 0.6;
}

.payment-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-stagger {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .marquee {
        display: none;
    }

    nav {
        padding: 15px 25px;
    }

    .nav-center {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-left {
        padding: 100px 25px 60px;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-right {
        height: 300px;
    }

    section {
        padding: 80px 25px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 300px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .lookbook-item:first-child {
        grid-row: auto;
    }

    .lookbook-item {
        height: 250px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid rgba(0,0,0,0.1);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black, #0A0A0A);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.pl-letters {
    display: flex;
    gap: 4px;
    overflow: hidden;
}
.pl-letters span {
    font-family: 'Italiana', serif;
    font-size: 3.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    display: inline-block;
    animation: plLetterIn 0.5s ease forwards;
}
.pl-letters span:nth-child(1) { animation-delay: 0.05s; }
.pl-letters span:nth-child(2) { animation-delay: 0.15s; }
.pl-letters span:nth-child(3) { animation-delay: 0.25s; }
.pl-letters span:nth-child(4) { animation-delay: 0.35s; }
.pl-letters span:nth-child(5) { animation-delay: 0.45s; }
.pl-letters span:nth-child(6) { animation-delay: 0.55s; }
@keyframes plLetterIn {
    to { opacity: 1; transform: translateY(0); }
}
.pl-tagline {
    font-size: 0.65rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-top: 12px;
    animation: plFadeIn 0.5s ease 0.8s both;
}
.pl-bar {
    width: 160px;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-top: 16px;
    overflow: hidden;
}
.pl-bar-fill {
    height: 100%;
    background: var(--nude, #CC1A30);
    animation: plFill 1.6s ease-out forwards;
    width: 0;
}
@keyframes plFill { to { width: 100%; } }
@keyframes plFadeIn { from { opacity: 0; } to { opacity: 1; } }


