:root {
    --ivory: #f5f1e8;
    --soft-ivory: #faf8f3;
    --black: #171715;
    --charcoal: #262522;
    --gold: #b69a63;
    --soft-gold: #d8c49b;
    --gray: #77736b;
    --line: #ded8cc;
    --white: #ffffff;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--soft-ivory);
    color: var(--black);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.9;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* ANNOUNCEMENT */

.announcement {
    background: var(--black);
    color: #d8d3c8;
    text-align: center;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: .4px;
}


/* HEADER */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 23, 21, .08);
}


.header-content {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}


.logo-en {
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: 4px;
}


.logo-fa {
    color: var(--gray);
    font-size: 10px;
    margin-top: 3px;
}


.desktop-menu {
    display: flex;
    gap: 38px;
}


.desktop-menu a {
    font-size: 12px;
    position: relative;
}


.desktop-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .3s;
}


.desktop-menu a:hover::after {
    width: 100%;
}


.header-cta {
    border: 1px solid var(--black);
    padding: 10px 20px;
    font-size: 11px;
    transition: .3s;
}


.header-cta:hover {
    background: var(--black);
    color: white;
}


.mobile-nav {
    display: none;
}


.mobile-nav summary {
    list-style: none;
    cursor: pointer;
    font-size: 24px;
}


.mobile-panel {
    position: absolute;
    top: 75px;
    left: 5%;
    right: 5%;
    padding: 20px;
    background: var(--soft-ivory);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}


.mobile-panel a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}


/* HERO */

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    background: var(--ivory);
    overflow: hidden;
}


.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}


.eyebrow {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 10px;
    letter-spacing: 4px;
}


.hero-copy h1 {
    margin: 25px 0;
    max-width: 620px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -3px;
}


.hero-copy h1 em {
    display: block;
    font-family: Georgia, serif;
    font-weight: 400;
    color: var(--gold);
}


.hero-description {
    max-width: 520px;
    color: var(--gray);
    font-size: 14px;
}


.hero-buttons {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 36px;
}


.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 24px;
    background: var(--black);
    color: white;
    font-size: 11px;
    border: 1px solid var(--black);
    transition: .3s;
}


.btn-dark:hover {
    background: transparent;
    color: var(--black);
}


.btn-link {
    font-size: 11px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 3px;
}


.btn-link span {
    margin-right: 7px;
}


.hero-meta {
    margin-top: 65px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


.hero-meta div {
    display: flex;
    flex-direction: column;
}


.hero-meta strong {
    font-size: 11px;
}


.hero-meta span {
    color: var(--gray);
    font-size: 9px;
}


/* HERO ART */.hero-art {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-frame {
    width: 390px;
    height: 520px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    position: relative;
}


.hero-frame::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 520px;
    top: 22px;
    right: 22px;
    border: 1px solid rgba(182, 154, 99, .25);
}


.luxury-product {
    width: 205px;
    height: 335px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        145deg,
        #292724,
        #111110
    );
    color: var(--soft-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}


.luxury-small {
    font-family: Georgia, serif;
    font-size: 9px;
    letter-spacing: 6px;
}


.luxury-product strong {
    margin: 26px 0;
    font-family: Georgia, serif;
    font-size: 65px;
    font-weight: 400;
}


.luxury-name {
    font-family: Georgia, serif;
    font-size: 10px;
    letter-spacing: 5px;
}


.hero-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 70px;
    color: rgba(23, 23, 21, .08);
}


.vertical-text {
    position: absolute;
    left: -10px;
    bottom: 80px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--gray);
    font-family: Georgia, serif;
    font-size: 8px;
    letter-spacing: 5px;
}


/* BRAND STRIP */

.brand-strip {
    background: var(--black);
    color: #9e9584;
}


.brand-strip-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand-strip span {
    font-family: Georgia, serif;
    font-size: 10px;
    letter-spacing: 4px;
}


.brand-strip i {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}


/* COLLECTION */

.collection {
    padding: 120px 0;
}


.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 50px;
}


.section-head h2 {
    margin: 8px 0 0;
    font-size: 42px;
    font-weight: 400;
}


.section-head p {
    max-width: 300px;
    color: var(--gray);
    font-size: 12px;
}


.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


.lux-card {
    background: transparent;
}


.lux-card-image {
    height: 410px;
    position: relative;
    background: #e6e0d4;
    display: grid;
    place-items: center;
    overflow: hidden;
}


.lux-card-image.beige {
    background: #d8cbb7;
}


.lux-card-image.dark {
    background: #242321;
}


.card-index {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #8b8479;
    font-family: Georgia, serif;
    font-size: 11px;
}


.light-index {
    color: #aaa394;
}


.product-object {
    width: 145px;
    height: 235px;
    background: #22211f;
    color: var(--soft-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    box-shadow: 0 28px 40px rgba(0, 0, 0, .18);
}


.lux-card:hover .product-object {
    transform: translateY(-8px) scale(1.02);
}


.product-object.light {
    background: #f4efe5;
    color: #282623;
}


.product-object.gold {
    background: linear-gradient(
        145deg,
        #c1a66f,
        #8c754a
    );
    color: #1c1b19;
}


.product-object small {
    font-family: Georgia, serif;
    font-size: 7px;
    letter-spacing: 5px;
}


.product-object strong {
    font-family: Georgia, serif;
    font-size: 45px;
    font-weight: 400;
    margin: 22px 0;
}


.product-object span {
    font-family: Georgia, serif;
    font-size: 7px;
    letter-spacing: 3px;
}


.lux-card-info {
    padding-top: 20px;
}


.category {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 8px;
    letter-spacing: 2px;
}.lux-card-info h3 {
    margin: 7px 0 16px;
    font-size: 16px;
    font-weight: 400;
}


.card-footer {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.card-footer span,
.card-footer a {
    font-size: 11px;
}


.card-footer a {
    border-bottom: 1px solid var(--black);
}


/* EDITORIAL */

.editorial {
    background: var(--black);
    color: white;
}


.editorial-grid {
    min-height: 660px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.editorial-visual {
    position: relative;
    background: #242321;
    display: grid;
    place-items: center;
}


.editorial-visual::after {
    content: "";
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(216, 196, 155, .25);
}


.editorial-number {
    position: absolute;
    top: 45px;
    right: 50px;
    color: #665f53;
    font-family: Georgia, serif;
    font-size: 12px;
}


.editorial-logo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.editorial-logo small {
    color: var(--gold);
    font-family: Georgia, serif;
    letter-spacing: 4px;
}


.editorial-logo strong {
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--soft-gold);
}


.editorial-logo span {
    color: #7b7367;
    font-family: Georgia, serif;
    font-size: 9px;
    letter-spacing: 6px;
}


.editorial-copy {
    padding: 100px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.editorial-copy h2 {
    margin: 20px 0;
    max-width: 400px;
    font-size: 52px;
    line-height: 1.4;
    font-weight: 400;
}


.editorial-copy p {
    max-width: 480px;
    color: #a8a195;
    font-size: 13px;
}


.signature {
    margin-top: 50px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 6px;
}


/* STATEMENT */

.statement {
    padding: 120px 0;
    background: var(--ivory);
}


.statement-inner {
    text-align: center;
    max-width: 880px;
}


.statement-inner > span {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 9px;
    letter-spacing: 5px;
}


.statement-inner h2 {
    margin: 30px auto;
    max-width: 750px;
    font-size: 45px;
    line-height: 1.8;
    font-weight: 400;
}


.statement-inner a {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black);
    font-size: 11px;
}


/* FOOTER */

.footer {
    padding-top: 75px;
    background: #111110;
    color: #ccc4b5;
}


.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 65px;
}


.footer-logo {
    color: var(--soft-gold);
    font-family: Georgia, serif;
    font-size: 17px;
    letter-spacing: 5px;
}


.footer-brand p {
    max-width: 400px;
    margin-top: 20px;
    color: #776f64;
    font-size: 11px;
}


.footer-column {
    display: flex;
    flex-direction: column;
}


.footer-column h4 {
    margin: 0 0 18px;
    color: var(--soft-gold);
    font-size: 11px;
}


.footer-column a,
.footer-column span {
    margin: 5px 0;
    color: #827a6e;
    font-size: 10px;
}


.footer-bottom {
    min-height: 65px;
    border-top: 1px solid #282622;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #615b52;
    font-family: Georgia, serif;
    font-size: 8px;
    letter-spacing: 2px;
}


/* TABLET */

@media (max-width: 950px) {

    .desktop-menu,
    .header-cta {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-meta {
        text-align: right;
    }

    .hero-art {
        min-height: 560px;
    }.collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-visual {
        min-height: 550px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

}


/* MOBILE */

@media (max-width: 620px) {

    .container {
        width: 91%;
    }

    .announcement {
        font-size: 9px;
    }

    .header-content {
        min-height: 70px;
    }

    .logo-en {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        padding: 55px 0;
        gap: 40px;
    }

    .hero-copy h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .hero-meta {
        margin-top: 45px;
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .hero-frame {
        width: 285px;
        height: 400px;
    }

    .hero-frame::before {
        width: 285px;
        height: 400px;
        top: 15px;
        right: 15px;
    }

    .luxury-product {
        width: 160px;
        height: 265px;
    }

    .hero-art {
        min-height: 450px;
    }

    .brand-strip-inner {
        gap: 18px;
        justify-content: center;
    }

    .brand-strip span:nth-of-type(2),
    .brand-strip span:nth-of-type(3) {
        display: none;
    }

    .collection {
        padding: 80px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .lux-card-image {
        height: 380px;
    }

    .editorial-visual {
        min-height: 420px;
    }

    .editorial-visual::after {
        inset: 25px;
    }

    .editorial-logo strong {
        font-size: 80px;
    }

    .editorial-copy {
        padding: 70px 25px;
    }

    .editorial-copy h2 {
        font-size: 37px;
    }

    .statement {
        padding: 85px 0;
    }

    .statement-inner h2 {
        font-size: 29px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

}

/* =========================
   LUXURY CART
========================= */

.cart-page {
    padding: 110px 0;
    background: var(--soft-ivory);
    min-height: 70vh;
}


.cart-heading {
    margin-bottom: 45px;
}


.cart-heading h1 {
    margin: 10px 0 0;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -1px;
}


.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr .8fr;
    gap: 50px;
    align-items: start;
}


/* CART ITEMS */

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 25px;
    align-items: center;

    background: #fffdf8;

    border: 1px solid var(--line);

    padding: 18px;

    transition: .3s;
}


.cart-item:hover {
    border-color: var(--soft-gold);

    box-shadow:
        0 20px 50px rgba(30, 27, 22, .07);

    transform: translateY(-2px);
}


.cart-item-image {
    width: 150px;
    height: 170px;

    background: #ece6da;

    overflow: hidden;

    display: grid;
    place-items: center;
}


.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cart-placeholder {
    width: 75px;
    height: 110px;

    background:
        linear-gradient(
            145deg,
            #2b2925,
            #111110
        );

    color: var(--soft-gold);

    display: grid;
    place-items: center;

    font-family: Georgia, serif;

    font-size: 26px;

    letter-spacing: 2px;

    box-shadow:
        0 15px 30px rgba(0,0,0,.15);
}


.cart-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.cart-item-info h3 {
    margin: 6px 0 10px;

    font-size: 18px;
    font-weight: 400;
}


.cart-item-info p {
    margin: 0 0 10px;

    color: var(--gray);

    font-size: 11px;
}


.cart-item-info strong {
    font-size: 13px;
    font-weight: 500;
}


.remove-item {
    align-self: start;

    margin-top: 5px;

    color: #8b8173;

    font-size: 10px;

    padding-bottom: 3px;

    border-bottom: 1px solid #c9c0b1;

    transition: .25s;
}


.remove-item:hover {
    color: var(--black);

    border-color: var(--black);
}


/* SUMMARY */

.cart-summary {
    position: sticky;
    top: 120px;

    background: var(--black);

    color: white;

    padding: 35px;

    min-height: 330px;
}


.cart-summary .eyebrow {
    color: var(--soft-gold);
}


.cart-summary h2 {
    margin: 12px 0 30px;

    font-size: 26px;
    font-weight: 400;
}


.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,.10);

    color: #aaa396;

    font-size: 11px;
}


.summary-row strong {
    color: white;
    font-weight: 400;
}


.summary-row.total {
    margin-top: 10px;

    border-bottom: none;

    font-size: 12px;
}


.summary-row.total strong {
    color: var(--soft-gold);

    font-size: 16px;
}


.checkout-button {
    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 50px;

    background: var(--soft-gold);

    color: var(--black);

    font-size: 11px;

    letter-spacing: .2px;

    transition: .3s;
}


.checkout-button:hover {
    background: #f3e7cd;
}


/* EMPTY CART */

.empty-cart {
    max-width: 760px;

    margin: 70px auto;

    padding: 80px 30px;

    text-align: center;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.empty-cart > span {
    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 9px;

    letter-spacing: 5px;
}


.empty-cart h2 {
    margin: 25px 0 10px;

    font-size: 36px;

    font-weight: 400;
}


.empty-cart p {
    margin-bottom: 30px;

    color: var(--gray);

    font-size: 12px;
}


/* CART RESPONSIVE */

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }


    .cart-summary {
        position: static;
    }

}


@media (max-width: 620px) {

    .cart-page {
        padding: 70px 0;
    }.cart-heading h1 {
        font-size: 36px;
    }


    .cart-item {
        grid-template-columns: 95px 1fr;

        gap: 15px;
    }


    .cart-item-image {
        width: 95px;
        height: 120px;
    }


    .cart-placeholder {
        width: 55px;
        height: 80px;

        font-size: 20px;
    }


    .remove-item {
        grid-column: 2;

        justify-self: start;

        margin-top: -5px;
    }


    .cart-summary {
        padding: 28px 24px;
    }


    .empty-cart {
        padding: 60px 20px;
    }


    .empty-cart h2 {
        font-size: 29px;
    }

}/* =========================
   HEADER CART
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}


.header-cart {
    position: relative;

    min-height: 42px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 14px;

    border: 1px solid var(--line);

    background: rgba(255, 255, 255, .35);

    transition: .3s;
}


.header-cart:hover {
    border-color: var(--gold);
    background: var(--ivory);
}


.cart-icon {
    font-size: 18px;
    line-height: 1;
    color: var(--gold);
}


.cart-text {
    font-size: 10px;
    letter-spacing: .2px;
}


.cart-count {
    position: absolute;

    top: -8px;
    left: -8px;

    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--black);
    color: var(--soft-gold);

    font-family: Georgia, serif;
    font-size: 9px;

    border: 1px solid var(--soft-gold);
}


/* HEADER CART MOBILE */

@media (max-width: 950px) {

    .header-actions {
        margin-right: auto;
        margin-left: 15px;
    }


    .header-actions .header-cta {
        display: none;
    }


    .header-cart {
        min-width: 42px;
        width: 42px;
        height: 42px;

        padding: 0;

        justify-content: center;
    }


    .cart-text {
        display: none;
    }


    .cart-icon {
        font-size: 20px;
    }

}/* =========================
   REAL PRODUCT CARDS
========================= */

.real-product-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.lux-card:hover .real-product-image {
    transform: scale(1.035);
}


.product-description {
    margin: 8px 0 0;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.9;

    min-height: 42px;
}


.add-cart-link {
    display: inline-flex;
    align-items: center;

    color: var(--black);

    font-size: 10px;

    padding-bottom: 4px;

    border-bottom: 1px solid var(--gold);

    transition: .3s;
}


.add-cart-link:hover {
    color: var(--gold);
}


.no-products {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.no-products h3 {
    margin-top: 18px;

    font-weight: 400;

    font-size: 25px;
}
/* =========================
   ABOUT VALUES
========================= */

.about-values {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-values span {
    padding: 8px 14px;

    border: 1px solid rgba(216, 196, 155, .45);

    color: var(--soft-gold);

    background: rgba(216, 196, 155, .04);

    font-size: 9px;

    letter-spacing: .3px;

    transition: .3s;
}

.about-values span:hover {
    background: var(--soft-gold);
    color: var(--black);
    border-color: var(--soft-gold);
    transform: translateY(-2px);
}

.editorial-copy p strong {
    color: var(--soft-gold);
    font-weight: 500;
}

@media (max-width: 620px) {

    .about-values {
        gap: 8px;
    }

    .about-values span {
        padding: 7px 11px;
        font-size: 8px;
    }
}