/* =========================================================
LALYA COLLECTION — STYLE COMPLET
========================================================= */

:root {
    --beige: #ead8c8;
    --beige-light: #faf7f3;
    --beige-soft: #f3e8df;
    --beige-dark: #d4bca9;
    
    --prune: #520638;
    --prune-dark: #360126;
    
    --text: #292126;
    --muted: #766b70;
    --white: #ffffff;
    
    --border: #dfd2c9;
    
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    
    --ease: cubic-bezier(.2, .65, .2, 1);
    }
    /* =========================================================
    RESET
    ========================================================= */
    
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html {
    scroll-behavior: smooth;
    }
    body {
    min-width: 320px;
    overflow-x: hidden;
    
    background: var(--beige-light);
    color: var(--text);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    }
    body.menu-open {
    overflow: hidden;
    }
    
    img {
    display: block;
    max-width: 100%;
    }
    
    a {
    color: inherit;
    text-decoration: none;
    }
    
    button,
    input {
    font: inherit;
    }
    
    button {
    border: 0;
    background: none;
    cursor: pointer;
    }
    
    /* =========================================================
    HEADER
    ========================================================= */
    
    .header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
    color: var(--prune);
    transition:
        background .4s ease,
        box-shadow .4s ease,
        color .4s ease;
    }
    .header.scrolled {
    position: fixed;
    
    background: rgba(250, 247, 243, .96);
    backdrop-filter: blur(18px);
    box-shadow:
        0 10px 35px rgba(82, 6, 56, .07);
    }
    .header-left {
    display: flex;
    align-items: center;
    }
    
    .desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    }
    
    .desktop-nav a {
    position: relative;
    
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    }
    .desktop-nav a::after {
    content: "";
    
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .35s ease;
    }
    .desktop-nav a:hover::after {
    width: 100%;
    }
    
    /* =========================================================
    LOGO
    ========================================================= */
    
    .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    color: var(--prune);
    }
    .logo-symbol {
    width: 34px;
    height: 34px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    border: 1px solid currentColor;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1;
    }
    .logo-text {
    font-family: var(--serif);
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 1;
    }
    
    /* =========================================================
    HEADER ACTIONS
    ========================================================= */
    
    .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    }
    
    .icon-button {
    position: relative;
    
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prune);
    transition: opacity .3s ease;
    }
    .icon-button:hover {
    opacity: .55;
    }
    
    .icon-button svg {
    width: 20px;
    height: 20px;
    
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    }
    .cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--prune);
    color: var(--white);
    font-size: 7px;
    line-height: 1;
    }
    /* =========================================================
    MOBILE MENU BUTTON
    ========================================================= */
    
    .menu-button {
    display: none;
    
    width: 25px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    }
    .menu-button span {
    display: block;
    
    width: 100%;
    height: 1px;
    background: var(--prune);
    transition: transform .35s ease, opacity .35s ease;
    }
    .menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    }
    
    .menu-button.active span:nth-child(2) {
    opacity: 0;
    }
    
    .menu-button.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    }
    
    /* =========================================================
    MOBILE MENU
    ========================================================= */
    
    .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-light);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .4s ease,
        visibility .4s ease;
    }
    .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    }
    
    .mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    }
    
    .mobile-menu a {
    color: var(--prune);
    
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
    }
    /* =========================================================
    HERO
    ========================================================= */
    
    .hero {
    position: relative;
    
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--beige);
    }
    .hero-image {
    position: absolute;
    inset: 0;
    
    background:
        url("../images/hero.jpg")
        center center / cover
        no-repeat;
    transform: scale(1.03);
    animation: heroZoom 12s var(--ease) forwards;
    }
    @keyframes heroZoom {
    
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.03);
    }
    }
    .hero-overlay {
    position: absolute;
    inset: 0;
    
    background:
        linear-gradient(
            90deg,
            rgba(35, 24, 31, .38) 0%,
            rgba(35, 24, 31, .12) 50%,
            rgba(35, 24, 31, 0) 75%
        ),
        linear-gradient(
            0deg,
            rgba(35, 24, 31, .38),
            transparent 50%
        );
    }
    .hero-content {
    position: relative;
    z-index: 2;
    
    width: min(800px, 85%);
    margin-left: 8%;
    margin-bottom: 12%;
    color: var(--white);
    }
    .hero-small {
    margin-bottom: 18px;
    
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    }
    .hero h1 {
    margin-bottom: 38px;
    
    font-family: var(--serif);
    font-size: clamp(65px, 8vw, 115px);
    font-weight: 400;
    line-height: .83;
    letter-spacing: -.02em;
    }
    .hero-scroll {
    position: absolute;
    z-index: 3;
    
    right: 5%;
    bottom: 9%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    transform: rotate(90deg);
    transform-origin: right center;
    }
    .hero-scroll span {
    width: 38px;
    height: 1px;
    
    background: currentColor;
    }
    .hero-scroll p {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    }
    
    /* =========================================================
    BUTTONS
    ========================================================= */
    
    .button {
    min-height: 52px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 31px;
    background: var(--prune);
    color: var(--white);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
    }
    .button:hover {
    background: var(--white);
    color: var(--prune);
    
    transform: translateY(-2px);
    }
    .button-outline {
    background: transparent;
    color: var(--prune);
    
    border: 1px solid var(--prune);
    }
    .button-outline:hover {
    background: var(--prune);
    color: var(--white);
    }
    
    /* =========================================================
    SECTIONS
    ========================================================= */
    
    .collection,
    .collections {
    padding: 140px 5%;
    }
    
    .section-heading {
    max-width: 680px;
    
    margin: 0 auto 75px;
    text-align: center;
    }
    .eyebrow {
    margin-bottom: 15px;
    
    color: var(--prune);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    }
    .section-heading h2,
    .editorial-content h2 {
    margin-bottom: 22px;
    
    color: var(--prune);
    font-family: var(--serif);
    font-size: clamp(50px, 5.5vw, 76px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.015em;
    }
    .section-heading > p:last-child {
    max-width: 520px;
    
    margin: 0 auto;
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
    }
    /* =========================================================
    PRODUCTS
    ========================================================= */
    
    .products {
    width: 100%;
    max-width: 1320px;
    
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 22px;
    }
    .product-card {
    min-width: 0;
    }
    
    .product-link {
    display: block;
    }
    
    .product-image {
    position: relative;
    
    width: 100%;
    aspect-ratio: .78;
    margin-bottom: 18px;
    overflow: hidden;
    background: var(--beige-soft);
    }
    .product-image img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
    object-position: center;
    transition:
        transform .9s var(--ease),
        filter .5s ease;
    }
    .product-card:hover .product-image img {
    transform: scale(1.055);
    }
    
    .product-image::after {
    content: "";
    
    position: absolute;
    inset: 0;
    background: rgba(82, 6, 56, .06);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    }
    .product-card:hover .product-image::after {
    opacity: 1;
    }
    
    /* =========================================================
    PRODUCT BADGE
    ========================================================= */
    
    .product-badge {
    position: absolute;
    z-index: 5;
    
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    background: var(--white);
    color: var(--prune);
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    }
    /* =========================================================
    PRODUCT HOVER
    ========================================================= */
    
    .product-view {
    position: absolute;
    z-index: 6;
    
    left: 50%;
    bottom: 22px;
    padding: 12px 17px;
    background: var(--white);
    color: var(--prune);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translate(-50%, 12px);
    transition:
        opacity .35s ease,
        transform .35s ease;
    }
    .product-card:hover .product-view {
    opacity: 1;
    transform: translate(-50%, 0);
    }
    
    /* =========================================================
    PRODUCT INFO
    ========================================================= */
    
    .product-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    
    gap: 15px;
    }
    .product-info h3 {
    color: var(--text);
    
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    }
    .product-info p {
    padding-top: 2px;
    
    color: var(--text);
    font-size: 10px;
    white-space: nowrap;
    }
    .center-button {
    margin-top: 70px;
    
    text-align: center;
    }
    /* =========================================================
    EDITORIAL
    ========================================================= */
    
    .editorial {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    
    min-height: 760px;
    background: var(--beige);
    }
    .editorial-image {
    min-height: 650px;
    
    background:
        url("../images/editorial.jpg")
        center center / cover
        no-repeat;
    }
    .editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    padding: 12%;
    }
    .editorial-content h2 {
    font-size: clamp(54px, 5.5vw, 82px);
    }
    
    .editorial-content > p:not(.eyebrow) {
    max-width: 430px;
    
    margin-bottom: 32px;
    color: #655b5f;
    font-size: 12px;
    line-height: 2;
    }
    .text-link {
    width: fit-content;
    
    padding-bottom: 7px;
    color: var(--prune);
    border-bottom: 1px solid var(--prune);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    }
    .text-link span {
    display: inline-block;
    margin-left: 7px;
    
    transition: transform .3s ease;
    }
    .text-link:hover span {
    transform: translateX(5px);
    }
    
    /* =========================================================
    COLLECTIONS
    ========================================================= */
    
    .collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
    gap: 18px;
    }
    .collection-item {
    position: relative;
    
    min-height: 610px;
    overflow: hidden;
    background: var(--beige);
    }
    .collection-image {
    position: absolute;
    inset: 0;
    
    background-position: center;
    background-size: cover;
    transition: transform 1s var(--ease);
    }
    .collection-1 {
    background:
    linear-gradient(135deg, #bda193, #e7d7cc);
    }
    
    .collection-2 {
    background:
    linear-gradient(135deg, #4c1737, #a16480);
    }
    
    .collection-3 {
    background:
    linear-gradient(135deg, #d7c0ae, #9d7a66);
    }
    
    .collection-item:hover .collection-image {
    transform: scale(1.06);
    }
    
    .collection-overlay {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    
    padding: 42px 38px;
    color: var(--white);
    background:
        linear-gradient(
            transparent,
            rgba(30, 18, 25, .8)
        );
    }
    .collection-overlay p {
    margin-bottom: 8px;
    
    font-size: 8px;
    letter-spacing: 2px;
    }
    .collection-overlay h3 {
    margin-bottom: 9px;
    
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    }
    .collection-overlay span {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    }
    
    /* =========================================================
    STATEMENT
    ========================================================= */
    
    .statement {
    min-height: 600px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    text-align: center;
    background: var(--prune);
    color: var(--white);
    }
    .statement .eyebrow {
    color: var(--beige);
    }
    
    .statement h2 {
    color: var(--white);
    
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 400;
    line-height: .85;
    letter-spacing: -.02em;
    }
    /* =========================================================
    NEWSLETTER
    ========================================================= */
    
    .newsletter {
    min-height: 480px;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 100px 9%;
    background: var(--beige);
    }
    .newsletter h2 {
    margin-bottom: 22px;
    
    color: var(--prune);
    font-family: var(--serif);
    font-size: clamp(50px, 5.5vw, 76px);
    font-weight: 400;
    line-height: .88;
    }
    .newsletter p:not(.eyebrow) {
    max-width: 430px;
    
    color: #655b5f;
    font-size: 12px;
    }
    .newsletter-form {
    display: flex;
    
    border-bottom: 1px solid var(--prune);
    }
    .newsletter-form input {
    width: 100%;
    
    padding: 17px 5px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text);
    font-size: 11px;
    }
    .newsletter-form input::placeholder {
    color: #75696f;
    }
    
    .newsletter-form button {
    padding: 17px 5px;
    
    color: var(--prune);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    }
    /* =========================================================
    FOOTER
    ========================================================= */
    
    .footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    
    gap: 50px;
    padding: 85px 7% 35px;
    background: #f4ede7;
    color: var(--text);
    }
    .footer-brand {
    padding-right: 30px;
    }
    
    .footer-logo {
    margin-bottom: 12px;
    
    color: var(--prune);
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 2px;
    }
    .footer-brand p {
    color: var(--muted);
    
    font-family: var(--serif);
    font-size: 18px;
    }
    .footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
    }
    
    .footer-column h4 {
    margin-bottom: 8px;
    
    color: var(--prune);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    }
    .footer-column a {
    width: fit-content;
    
    color: var(--muted);
    font-size: 10px;
    transition: color .3s ease;
    }
    .footer-column a:hover {
    color: var(--prune);
    }
    
    .footer-bottom {
    grid-column: 1 / -1;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .5px;
    }