:root {
    --wine: #4a0e22;
    --wine-deep: #340814;
    --wine-plum: #601233;
    --rose: #c99b6b;
    --rose-lt: #e8c99e;
    --rose-dp: #a9784b;
    --champagne: #ecd9ba;
    --ivory: #f7efe4;
    --ivory-2: #fbf7ef;
    --ink: #2a1420;
    --ink-soft: #5a3f49;
    --teal: #12494b;
    --line: rgba(201,155,107,.34);
    --line-strong: rgba(201,155,107,.6);
    --gold-grad: linear-gradient(120deg,#f0d9b3 0%,#c99b6b 38%,#8c6238 60%,#e6c79b 100%);
    --shadow-deep: 0 40px 90px -40px rgba(0,0,0,.75);
    --ease: cubic-bezier(.22,.61,.36,1);
    --maxw: 1240px;
    --banner-w: 1040px; /* hero banner size — try 900px / 1040px / 1200px */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--wine);
    color: #f3e6d6;
    font-family: 'Jost',sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 500;
    margin: 0;
    line-height: 1.06;
    letter-spacing: .005em;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: 'Jost',sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--rose-lt);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

    .eyebrow::before {
        content: "";
        width: 34px;
        height: 1px;
        background: var(--line-strong);
        display: inline-block;
    }

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* diamond glyph */
.dia {
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border: 1px solid var(--rose);
    display: inline-block;
}

.dia-fill {
    background: var(--rose);
}

/* ============ NAV ============ */
header.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    transition: background .5s var(--ease),backdrop-filter .5s,border-color .5s,padding .4s var(--ease);
    border-bottom: 1px solid transparent;
}

    header.nav.scrolled {
        background: rgba(41,7,18,.82);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding .4s var(--ease);
}

header.nav.scrolled .nav-inner {
    padding: 13px 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .brand .mono {
        width: 44px;
        height: 44px;
        border: 1px solid var(--line-strong);
        display: grid;
        place-items: center;
        font-family: 'Marcellus',serif;
        font-size: 20px;
        letter-spacing: .02em;
        position: relative;
        flex: none;
    }

        .brand .mono::after {
            content: "";
            position: absolute;
            inset: 4px;
            border: 1px solid rgba(201,155,107,.22);
        }

    .brand .wordmark {
        font-family: 'Marcellus',serif;
        font-size: 21px;
        letter-spacing: .34em;
        text-transform: uppercase;
        padding-left: .34em;
    }

    .brand small {
        display: block;
        font-family: 'Jost';
        font-weight: 300;
        font-size: 8.5px;
        letter-spacing: .5em;
        color: rgba(233,201,158,.62);
        text-transform: uppercase;
        padding-left: .5em;
        margin-top: 2px;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

    .nav-links a {
        font-size: 12.5px;
        letter-spacing: .16em;
        text-transform: uppercase;
        font-weight: 400;
        color: #e9d7c3;
        position: relative;
        padding: 5px 7px;
        transition: color .3s;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: var(--gold-grad);
            transition: width .35s var(--ease);
        }

        .nav-links a:hover {
            color: #fff;
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    border: 1px solid var(--line-strong);
    padding: 11px 22px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rose-lt);
    transition: .35s var(--ease);
}

    .nav-cta:hover {
        background: var(--rose);
        color: var(--wine-deep);
        border-color: var(--rose);
    }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

    .burger span {
        width: 26px;
        height: 1.5px;
        background: var(--rose-lt);
        transition: .3s;
    }

/* ============ HERO — framed banner poster ============ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 116px 24px 84px;
    background: var(--wine);
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(70% 55% at 50% 6%,rgba(201,155,107,.16),transparent 60%), radial-gradient(90% 80% at 12% 100%,rgba(96,18,51,.7),transparent 60%), linear-gradient(160deg,#4a0e22,#340814);
}

.hero-in {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--banner-w);
    margin: 0 auto;
    text-align: center;
}

.poster {
    position: relative;
    padding: 12px;
    border: 1px solid var(--line-strong);
    background: rgba(52,8,20,.35);
    box-shadow: var(--shadow-deep);
    opacity: 0;
    animation: rise 1.1s var(--ease) .1s forwards;
}

    .poster::before, .poster::after {
        content: "";
        position: absolute;
        width: 13px;
        height: 13px;
        border: 1px solid var(--rose);
        transform: rotate(45deg);
        background: var(--wine-deep);
        z-index: 3;
    }

    .poster::before {
        top: -7px;
        left: -7px;
    }

    .poster::after {
        bottom: -7px;
        right: -7px;
    }

.poster-inner {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,155,107,.22);
    aspect-ratio: 16/9;
}

    .poster-inner .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1.4s var(--ease);
    }

        .poster-inner .slide.active {
            opacity: 1;
        }

.hero-caption {
    margin-top: 42px;
}

    .hero-caption .eyebrow {
        justify-content: center;
        opacity: 0;
        animation: rise .9s var(--ease) .35s forwards;
    }

        .hero-caption .eyebrow::after {
            content: "";
            width: 30px;
            height: 1px;
            background: var(--line-strong);
            display: inline-block;
        }

    .hero-caption h1 {
        font-size: clamp(34px,4.4vw,60px);
        font-weight: 500;
        line-height: 1.04;
        margin: 20px 0 0;
        color: #fdf3e6;
        letter-spacing: .005em;
        opacity: 0;
        animation: rise 1s var(--ease) .5s forwards;
    }

        .hero-caption h1 em {
            font-style: italic;
        }

.hero-sub {
    max-width: 560px;
    margin: 18px auto 0;
    color: rgba(253,243,230,.8);
    font-size: 16px;
    opacity: 0;
    animation: rise 1s var(--ease) .7s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
    opacity: 0;
    animation: rise 1s var(--ease) .9s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: .4s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-solid {
    background: var(--gold-grad);
    color: #3a0c1c;
    background-size: 160% 160%;
}

    .btn-solid:hover {
        background-position: 100% 0;
        transform: translateY(-2px);
        box-shadow: 0 18px 40px -18px rgba(201,155,107,.7);
    }

.btn-ghost {
    border-color: rgba(253,243,230,.42);
    color: #fdf3e6;
}

    .btn-ghost:hover {
        border-color: var(--rose-lt);
        background: rgba(253,243,230,.1);
    }

.btn .arw {
    transition: transform .4s var(--ease);
}

.btn:hover .arw {
    transform: translateX(5px);
}

.hero-dots {
    display: flex;
    gap: 11px;
    justify-content: center;
    margin-top: 34px;
    opacity: 0;
    animation: rise 1s var(--ease) 1.05s forwards;
}

    .hero-dots .dot {
        width: 32px;
        height: 3px;
        border: 0;
        padding: 0;
        background: rgba(253,243,230,.3);
        cursor: pointer;
        transition: background .4s,width .4s;
    }

        .hero-dots .dot.active {
            background: var(--gold-grad);
            width: 50px;
        }

        .hero-dots .dot:focus-visible {
            outline: 2px solid var(--rose-lt);
            outline-offset: 4px;
        }

@keyframes rise {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ============ MARQUEE STRIP ============ */
.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--wine-deep);
    overflow: hidden;
}

.strip-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    padding: 20px 0;
    animation: marq 34s linear infinite;
}

.strip:hover .strip-track {
    animation-play-state: paused;
}

.strip-track span {
    font-family: 'Cormorant Garamond';
    font-size: 23px;
    font-style: italic;
    color: rgba(236,217,186,.75);
    display: inline-flex;
    align-items: center;
    gap: 64px;
}

.strip-track .dia {
    opacity: .8;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
    }
}

/* ============ SECTION SHELL ============ */
section {
    position: relative;
}

.sec-pad {
    padding: 130px 0;
}

.sec-head {
    max-width: 720px;
}

    .sec-head h2 {
        font-size: clamp(38px,5vw,66px);
        font-weight: 400;
        margin: 22px 0 0;
    }

        .sec-head h2 em {
            font-style: italic;
        }

    .sec-head p {
        margin: 22px 0 0;
        color: rgba(243,230,214,.72);
    }

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1s var(--ease),transform 1s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

    .reveal.d1 {
        transition-delay: .1s
    }

    .reveal.d2 {
        transition-delay: .2s
    }

    .reveal.d3 {
        transition-delay: .3s
    }

    .reveal.d4 {
        transition-delay: .4s
    }

/* ============ ETHOS (ivory) ============ */
.ethos {
    background: var(--ivory);
    color: var(--ink);
}

    .ethos .sec-head .eyebrow {
        color: var(--rose-dp);
    }

        .ethos .sec-head .eyebrow::before {
            background: var(--rose-dp);
        }

    .ethos .sec-head p {
        color: var(--ink-soft);
    }

.ethos-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center;
    margin-top: 70px;
}

.ethos-img {
    position: relative;
}

    .ethos-img .a {
        border: 1px solid rgba(74,14,34,.16);
        padding: 12px;
    }

        .ethos-img .a img {
            width: 100%;
            height: 520px;
            object-fit: cover;
        }

    .ethos-img .b {
        position: absolute;
        bottom: -40px;
        right: -30px;
        width: 210px;
        border: 1px solid rgba(74,14,34,.16);
        padding: 8px;
        background: var(--ivory);
        box-shadow: 0 30px 60px -30px rgba(74,14,34,.4);
    }

        .ethos-img .b img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

.ethos-list {
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}

    .ethos-list li {
        display: flex;
        gap: 20px;
        padding: 22px 0;
        border-top: 1px solid rgba(74,14,34,.14);
    }

        .ethos-list li:last-child {
            border-bottom: 1px solid rgba(74,14,34,.14);
        }

    .ethos-list .n {
        font-family: 'Cormorant Garamond';
        font-size: 19px;
        color: var(--rose-dp);
        font-style: italic;
        flex: none;
        padding-top: 2px;
    }

    .ethos-list h3 {
        font-size: 23px;
        color: var(--ink);
        margin-bottom: 5px;
        font-weight: 600;
    }

    .ethos-list p {
        margin: 0;
        font-size: 14.5px;
        color: var(--ink-soft);
        line-height: 1.6;
    }

/* ============ COLLECTIONS ============ */
.collections {
    background: linear-gradient(180deg,var(--wine-deep),var(--wine));
}

.col-grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 26px;
    margin-top: 66px;
}

.col-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: pointer;
}

    .col-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.1s var(--ease),filter 1.1s var(--ease);
        filter: saturate(1.02);
    }

    .col-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(29,5,14,.86) 0%,rgba(29,5,14,.15) 45%,transparent 70%);
        transition: opacity .5s;
    }

    .col-card .frame {
        position: absolute;
        inset: 16px;
        border: 1px solid rgba(232,201,158,0);
        z-index: 3;
        transition: border-color .6s var(--ease),inset .6s var(--ease);
        pointer-events: none;
    }

    .col-card:hover .frame {
        inset: 12px;
        border-color: rgba(232,201,158,.55);
    }

    .col-card:hover img {
        transform: scale(1.07);
    }

.col-meta {
    position: absolute;
    left: 30px;
    bottom: 28px;
    right: 30px;
    z-index: 4;
}

    .col-meta .ix {
        font-family: 'Jost';
        font-size: 11px;
        letter-spacing: .28em;
        color: var(--rose-lt);
        text-transform: uppercase;
    }

    .col-meta h3 {
        font-size: 32px;
        color: #fff;
        margin: 8px 0 6px;
        font-weight: 500;
    }

    .col-meta p {
        margin: 0;
        font-size: 13.5px;
        color: rgba(243,230,214,.78);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height .55s var(--ease),opacity .55s var(--ease),margin .5s;
    }

.col-card:hover .col-meta p {
    max-height: 80px;
    opacity: 1;
    margin-top: 6px;
}

.col-a {
    grid-column: span 7;
    height: 560px;
}

.col-b {
    grid-column: span 5;
    height: 560px;
}

.col-c {
    grid-column: span 4;
    height: 440px;
}

.col-d {
    grid-column: span 4;
    height: 440px;
}

.col-e {
    grid-column: span 4;
    height: 440px;
}

/* ============ CRAFT / VALUES ============ */
.craft {
    background: var(--wine);
}

.val-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 70px;
    border: 1px solid var(--line);
}

.val {
    padding: 46px 34px;
    border-right: 1px solid var(--line);
    position: relative;
    transition: background .5s;
}

    .val:last-child {
        border-right: 0;
    }

    .val:hover {
        background: rgba(201,155,107,.06);
    }

    .val .icn {
        width: 46px;
        height: 46px;
        margin-bottom: 26px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line-strong);
    }

        .val .icn svg {
            width: 22px;
            height: 22px;
            stroke: var(--rose-lt);
            fill: none;
            stroke-width: 1.2;
        }

    .val h3 {
        font-size: 25px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .val p {
        font-size: 14px;
        color: rgba(243,230,214,.7);
        margin: 0;
        line-height: 1.6;
    }

/* ============ LOOKBOOK ============ */
.lookbook {
    background: linear-gradient(180deg,var(--wine),var(--wine-deep));
}

.look-grid {
    columns: 4;
    column-gap: 18px;
    margin-top: 60px;
}

    .look-grid figure {
        margin: 0 0 18px;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line);
        break-inside: avoid;
        cursor: zoom-in;
    }

    .look-grid img {
        width: 100%;
        transition: transform 1s var(--ease);
    }

    .look-grid figure::after {
        content: "↗";
        position: absolute;
        top: 14px;
        right: 16px;
        color: #fff;
        font-size: 15px;
        opacity: 0;
        transform: translateY(-6px);
        transition: .4s;
        z-index: 2;
    }

    .look-grid figure::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(52,8,20,.28);
        opacity: 0;
        transition: .45s;
        z-index: 1;
    }

    .look-grid figure:hover img {
        transform: scale(1.06);
    }

    .look-grid figure:hover::after {
        opacity: 1;
        transform: none;
    }

    .look-grid figure:hover::before {
        opacity: 1;
    }

/* ============ MARKETPLACES ============ */
.market {
    background: var(--ivory-2);
    color: var(--ink);
    text-align: center;
}

    .market .eyebrow {
        color: var(--rose-dp);
    }

        .market .eyebrow::before {
            background: var(--rose-dp);
        }

    .market h2 {
        font-size: clamp(38px,5vw,66px);
        font-weight: 400;
        margin: 22px 0 0;
    }

        .market h2 em {
            font-style: italic;
        }

    .market > .wrap > p {
        max-width: 620px;
        margin: 22px auto 0;
        color: var(--ink-soft);
    }

.mk-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 64px;
}

.mk {
    border: 1px solid rgba(74,14,34,.16);
    padding: 44px 26px;
    background: #fff;
    transition: .45s var(--ease);
    position: relative;
    overflow: hidden;
}

    .mk:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 70px -40px rgba(74,14,34,.45);
        border-color: var(--rose-dp);
    }

    .mk .plat {
        font-family: 'Cormorant Garamond';
        font-size: 30px;
        font-weight: 600;
        color: var(--ink);
    }

        .mk .plat.amazon {
            color: #c26a1a;
        }

        .mk .plat.flipkart {
            color: #1a5bc4;
        }

        .mk .plat.myntra {
            color: #c1298b;
        }

        .mk .plat.quick {
            color: var(--teal);
        }

    .mk p {
        font-size: 13px;
        letter-spacing: .04em;
        color: var(--ink-soft);
        margin: 10px 0 22px;
        text-transform: uppercase;
    }

    .mk .go {
        font-size: 11px;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--rose-dp);
        border-bottom: 1px solid var(--rose-dp);
        padding-bottom: 3px;
        transition: .3s;
    }

    .mk:hover .go {
        color: var(--ink);
        border-color: var(--ink);
    }

/* ============ CONTACT ============ */
.contact {
    background: var(--wine-deep);
    position: relative;
    overflow: hidden;
}

    .contact::before {
        content: "";
        position: absolute;
        top: -30%;
        right: -10%;
        width: 60%;
        height: 120%;
        background: radial-gradient(circle,rgba(201,155,107,.14),transparent 60%);
        pointer-events: none;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-size: clamp(40px,5.4vw,74px);
    font-weight: 400;
}

    .contact h2 em {
        font-style: italic;
    }

.contact .lead {
    color: rgba(243,230,214,.76);
    max-width: 420px;
    margin-top: 24px;
}

.c-lines {
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

    .c-lines li {
        display: flex;
        gap: 20px;
        padding: 20px 0;
        border-top: 1px solid var(--line);
        align-items: flex-start;
    }

    .c-lines .k {
        font-size: 10.5px;
        letter-spacing: .26em;
        text-transform: uppercase;
        color: var(--rose-lt);
        width: 96px;
        flex: none;
        padding-top: 5px;
    }

    .c-lines .v {
        font-family: sans-serif;
        font-size: 20px;
        color: #fff;
        line-height: 1.35;
    }

        .c-lines .v a {
            transition: color .3s;
            font-family: none;
        }

            .c-lines .v a:hover {
                color: var(--rose-lt);
            }

.contact-card {
    border: 1px solid var(--line-strong);
    padding: 14px;
}

    .contact-card .in {
        border: 1px solid rgba(201,155,107,.22);
        padding: 44px;
        background: linear-gradient(160deg,rgba(96,18,51,.5),rgba(52,8,20,.5));
    }

    .contact-card .mono-lg {
        font-family: 'Marcellus',serif;
        font-size: 52px;
        letter-spacing: .04em;
        text-align: center;
    }

        .contact-card .mono-lg span {
            -webkit-text-fill-color: transparent;
        }

    .contact-card .rule {
        height: 1px;
        background: var(--line);
        margin: 28px 0;
    }

    .contact-card dl {
        margin: 0;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 14px 20px;
    }

    .contact-card dt {
        font-size: 10.5px;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--rose-lt);
        align-self: center;
    }

    .contact-card dd {
        margin: 0;
        font-size: 14.5px;
        color: #f3e6d6;
        text-align: right;
    }

/* ============ FOOTER ============ */
footer.ft {
    background: #280611;
    border-top: 1px solid var(--line);
    padding: 56px 0 40px;
}

.ft-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.ft .brand .wordmark {
    font-size: 19px;
}

.ft nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

    .ft nav a {
        font-size: 12px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(233,201,158,.7);
        transition: color .3s;
    }

        .ft nav a:hover {
            color: #fff;
        }

.ft-btm {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid rgba(201,155,107,.16);
    font-size: 11.5px;
    letter-spacing: .06em;
    color: rgba(233,201,158,.5);
}

/* ============ LIGHTBOX ============ */
.lb {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(24,4,12,.94);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .lb.open {
        display: flex;
        animation: rise .4s var(--ease) forwards;
    }

    .lb img {
        max-width: min(92vw,900px);
        max-height: 88vh;
        border: 1px solid var(--line-strong);
        padding: 10px;
        background: var(--wine-deep);
    }

    .lb .x {
        position: absolute;
        top: 26px;
        right: 32px;
        background: none;
        border: 1px solid var(--line-strong);
        color: var(--rose-lt);
        width: 46px;
        height: 46px;
        font-size: 20px;
        cursor: pointer;
        transition: .3s;
    }

        .lb .x:hover {
            background: var(--rose);
            color: var(--wine-deep);
        }

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    .hero {
        padding: 112px 22px 84px;
    }

    .ethos-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ethos-img .b {
        right: 0;
    }

    .val-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .val:nth-child(2) {
        border-right: 0;
    }

    .val:nth-child(1), .val:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .col-a, .col-b {
        grid-column: span 12;
        height: 440px;
    }

    .col-c, .col-d, .col-e {
        grid-column: span 4;
        height: 360px;
    }

    .look-grid {
        columns: 3;
    }

    .mk-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media(max-width:720px) {
    body {
        font-size: 16px;
    }

    .wrap {
        padding: 0 22px;
    }

    .nav-inner {
        padding: 16px 22px;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(29,5,14,.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 34px;
        transform: translateX(100%);
        transition: transform .5s var(--ease);
    }

        .nav-links.open {
            transform: none;
        }

        .nav-links a {
            font-size: 18px;
        }

    .burger {
        display: flex;
        z-index: 70;
    }

        .burger.open span:nth-child(1) {
            transform: translateY(6.5px) rotate(45deg);
        }

        .burger.open span:nth-child(2) {
            opacity: 0;
        }

        .burger.open span:nth-child(3) {
            transform: translateY(-6.5px) rotate(-45deg);
        }

    .sec-pad {
        padding: 88px 0;
    }

    .hero {
        padding: 94px 16px 60px;
    }

    .hero-caption {
        margin-top: 30px;
    }

    .hero-sub {
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .col-c, .col-d, .col-e {
        grid-column: span 12;
        height: 340px;
    }

    .val-grid {
        grid-template-columns: 1fr;
    }

    .val {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

        .val:last-child {
            border-bottom: 0;
        }

    .look-grid {
        columns: 2;
    }

    .mk-grid {
        grid-template-columns: 1fr;
    }

    .ethos-grid {
        gap: 80px;
    }

    .ethos-img .b {
        position: static;
        width: 60%;
        margin: 16px auto 0;
    }

    .c-lines .k {
        width: 76px;
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .poster, .hero-caption .eyebrow, .hero-caption h1, .hero-sub, .hero-actions, .hero-dots {
        opacity: 1;
    }
}


.whatsap-icon-05

{
width: 27px;
}

.cus-v-25 {
    display: flex;
    align-items: end;
    gap: 8px;
}




@media (min-width: 1200px) and (max-width: 1300px) {
    .poster {
        height: 510px;
        width: fit-content;
        margin: auto;
    }

    .poster-inner .slide {
        max-height: 484px;
    }

    .poster-inner {
        height: 497px;
    }
}



@media (min-width: 992px) and (max-width: 1199px) {
    .poster {
        height: 400px;
        width: fit-content;
        margin: auto;
    }

    .poster-inner .slide {
        max-height: 375px;
    }

    .poster-inner {
        height: 375px;
    }
}


@media (min-width: 700px) and (max-width: 992px) {
    .poster {
        height: 360px;
        width: fit-content;
        margin: auto;
    }

    .poster-inner .slide {
        max-height: 335px;
    }

    .poster-inner {
        height: 337px;
    }
}



