/* =========================================================
   NOIRÉ — OLGD
   EDITORIAL LUXURY / INTERACTIVE PROTOTYPE
========================================================= */

:root {
    --black: #171411;
    --black-2: #211d19;
    --espresso: #302720;
    --cream: #f3eee5;
    --cream-2: #e9e0d3;
    --white: #fffdf9;
    --bronze: #a9825a;
    --bronze-light: #c6a57c;
    --muted: #81786d;
    --line: rgba(23, 20, 17, .13);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "Manrope", "DM Sans", Arial, sans-serif;

    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    overflow-x: clip;
    color: var(--black);
    background: var(--white);
    font-family: var(--sans);
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    color: var(--white);
    background: var(--bronze);
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7000;
    width: 100%;
    height: 2px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--bronze-light);
    transform-origin: left;
}


/* =========================================================
   LOADER
========================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--cream);
    background: var(--black);

    transition:
        opacity .9s var(--ease),
        visibility .9s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-noise {
    position: absolute;
    inset: 0;
    opacity: .055;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");

    pointer-events: none;
}

.loader-glow {
    position: absolute;
    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(169, 130, 90, .13),
            transparent 70%
        );

    animation:
        loaderGlow 5s ease-in-out infinite;
}

@keyframes loaderGlow {
    0%,
    100% {
        transform: scale(.85);
        opacity: .45;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.loader-center {
    position: relative;
    z-index: 2;
    width: min(480px, 80%);
}

.loader-logo {
    margin-bottom: 30px;

    font-family: var(--serif);
    font-size: clamp(48px, 9vw, 92px);
    font-weight: 500;
    letter-spacing: 10px;
    text-align: center;

    animation:
        loaderLogo 1.2s var(--ease) both;
}

.loader-line {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
}

.loader-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--bronze-light);
    transition: width .1s linear;
}

.loader-meta {
    display: flex;
    justify-content: space-between;

    margin-top: 12px;

    color: rgba(255, 255, 255, .42);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.loader-bottom {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, .3);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes loaderLogo {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 20px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 10px;
    }
}


/* =========================================================
   PAGE TRANSITION
========================================================= */

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 4800;

    pointer-events: none;

    clip-path: inset(0 0 100% 0);

    background: var(--black);

    transition:
        clip-path .9s var(--ease);
}

.page-transition.active {
    clip-path: inset(0 0 0 0);
}

.page-transition-inner {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;
}

.page-transition-inner span {
    color: var(--cream);

    font-family: var(--serif);
    font-size: clamp(50px, 10vw, 110px);
    letter-spacing: 8px;

    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity .45s ease .15s,
        transform .8s var(--ease) .15s;
}

.page-transition.active .page-transition-inner span {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   CURSOR
========================================================= */

.cursor,
.cursor-dot {
    position: fixed;
    z-index: 6000;

    pointer-events: none;

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.cursor {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(169, 130, 90, .7);

    transition:
        width .45s var(--ease),
        height .45s var(--ease),
        background .35s ease,
        border .35s ease;
}

.cursor span {
    opacity: 0;

    color: var(--white);
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: opacity .25s ease;
}

.cursor.hover {
    width: 70px;
    height: 70px;

    background: rgba(169, 130, 90, .92);
    border-color: var(--bronze);
}

.cursor.hover span {
    opacity: 1;
}

.cursor.drag {
    width: 85px;
    height: 85px;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--bronze);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5vw;

    color: var(--white);

    transition:
        background .55s ease,
        color .55s ease,
        height .55s var(--ease),
        box-shadow .55s ease,
        backdrop-filter .55s ease;
}

.header.scrolled {
    height: 70px;

    color: var(--black);

    background: rgba(243, 238, 229, .84);

    backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .07);
}

.logo {
    position: relative;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
}

.logo::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition:
        width .5s var(--ease);
}

.logo:hover::after {
    width: 100%;
}

.desktop-nav {
    display: flex;

    gap: 34px;

    margin-left: auto;
    margin-right: 55px;
}

.desktop-nav a {
    position: relative;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition:
        width .45s var(--ease);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-button,
.menu-button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 0;

    color: inherit;
    background: transparent;
}

.icon-button {
    font-size: 20px;
}

.search-symbol {
    position: relative;

    width: 15px;
    height: 15px;

    display: block;

    border: 1px solid currentColor;
    border-radius: 50%;

    transition:
        transform .4s var(--ease);
}

.search-symbol::after {
    content: "";

    position: absolute;
    right: -5px;
    bottom: -3px;

    width: 6px;
    height: 1px;

    background: currentColor;

    transform: rotate(45deg);
}

.icon-button:hover .search-symbol {
    transform: rotate(20deg) scale(1.1);
}

.cart-button {
    position: relative;
}

.cart-button span {
    position: absolute;
    top: 2px;
    right: 0;

    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    color: var(--white);
    background: var(--bronze);

    border-radius: 50%;

    font-size: 7px;
    font-weight: 800;

    transition:
        transform .35s var(--ease);
}

.cart-button:hover span {
    transform: scale(1.2);
}

.menu-button {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.menu-button span {
    width: 22px;
    height: 1px;

    background: currentColor;

    transition:
        transform .5s var(--ease),
        width .5s var(--ease);
}

.menu-button.active span:first-child {
    transform:
        translateY(3.5px)
        rotate(45deg);
}

.menu-button.active span:last-child {
    transform:
        translateY(-3.5px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 900;

    overflow: hidden;

    color: var(--cream);
    background: var(--black);

    transform: translateY(-100%);

    transition:
        transform .85s var(--ease);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-background {
    position: absolute;
    right: -40px;
    bottom: -60px;

    font-family: var(--serif);
    font-size: 160px;
    font-style: italic;

    color: rgba(255, 255, 255, .025);

    transform:
        translateX(80px)
        rotate(-5deg);

    transition:
        transform 1.2s var(--ease) .2s;
}

.mobile-menu.active .mobile-menu-background {
    transform:
        translateX(0)
        rotate(-5deg);
}

.mobile-menu-noise {
    position: absolute;
    inset: 0;

    opacity: .04;

    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.mobile-menu-inner {
    position: relative;

    width: 100%;
    max-width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 28px;
}

.mobile-label {
    margin-bottom: 30px;

    color: var(--bronze-light);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 3px;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity .5s ease .35s,
        transform .7s var(--ease) .35s;
}

.mobile-menu.active .mobile-label {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-inner > a {
    display: flex;
    align-items: baseline;

    gap: 13px;

    width: 100%;
    max-width: 100%;

    margin-bottom: 15px;

    font-family: var(--serif);
    font-size: 39px;

    overflow: hidden;

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .6s ease,
        transform .75s var(--ease),
        color .3s ease;
}

.mobile-menu.active .mobile-menu-inner > a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-inner > a:nth-of-type(1) {
    transition-delay: .38s;
}

.mobile-menu.active .mobile-menu-inner > a:nth-of-type(2) {
    transition-delay: .46s;
}

.mobile-menu.active .mobile-menu-inner > a:nth-of-type(3) {
    transition-delay: .54s;
}

.mobile-menu.active .mobile-menu-inner > a:nth-of-type(4) {
    transition-delay: .62s;
}

.mobile-menu.active .mobile-menu-inner > a:nth-of-type(5) {
    transition-delay: .70s;
}

.mobile-menu-inner > a span {
    transition:
        transform .4s var(--ease);
}

.mobile-menu-inner > a:hover span {
    transform: translateX(10px);
}

.mobile-menu-inner > a small {
    flex-shrink: 0;

    color: var(--bronze);

    font-family: var(--sans);
    font-size: 8px;
}

.mobile-socials {
    display: flex;

    gap: 20px;

    margin-top: 30px;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity .6s ease .8s,
        transform .7s var(--ease) .8s;
}

.mobile-menu.active .mobile-socials {
    opacity: 1;
    transform: translateY(0);
}

.mobile-socials a {
    color: rgba(255, 255, 255, .42);

    font-size: 9px;
    font-weight: 700;

    transition:
        color .3s ease;
}

.mobile-socials a:hover {
    color: var(--bronze-light);
}


/* =========================================================
   SEARCH
========================================================= */

.search-panel {
    position: fixed;

    top: 82px;
    left: 0;

    width: 100%;

    z-index: 850;

    padding: 30px 5vw 40px;

    color: var(--black);
    background: var(--cream);

    border-bottom: 1px solid var(--line);

    transform: translateY(-120%);

    transition:
        transform .65s var(--ease);
}

.header.scrolled + .mobile-menu + .search-panel {
    top: 70px;
}

.search-panel.active {
    transform: translateY(0);
}

.search-inner {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-top span {
    color: var(--bronze);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 3px;
}

.search-top button {
    width: 35px;
    height: 35px;

    border: 0;

    background: var(--cream-2);

    border-radius: 50%;

    font-size: 20px;

    transition:
        transform .4s var(--ease);
}

.search-top button:hover {
    transform: rotate(90deg);
}

.search-box {
    display: flex;
    align-items: center;

    margin-top: 12px;

    border-bottom: 1px solid var(--black);
}

.search-box input {
    width: 100%;
    min-width: 0;

    padding: 18px 0;

    border: 0;
    outline: 0;

    color: var(--black);
    background: transparent;

    font-family: var(--serif);
    font-size: clamp(24px, 4vw, 45px);
}

.search-box span {
    flex-shrink: 0;

    font-size: 25px;

    transition:
        transform .4s var(--ease);
}

.search-box:focus-within span {
    transform:
        translate(5px, -5px);
}

#searchResult {
    margin-top: 10px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);
    background: var(--black);
}

.hero-image {
    position: absolute;
    inset: -4%;

    overflow: hidden;

    clip-path: inset(0 0 0 0);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.12)
        translate3d(0, 0, 0);

    animation:
        heroZoom 16s var(--ease) forwards;

    will-change:
        transform;
}

@keyframes heroZoom {
    from {
        transform:
            scale(1.12)
            translate3d(0, 0, 0);
    }

    to {
        transform:
            scale(1)
            translate3d(0, 0, 0);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .18) 65%,
            rgba(0, 0, 0, .25)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .72),
            transparent 50%
        );
}

.hero-grain {
    position: absolute;
    inset: 0;

    z-index: 2;

    opacity: .035;

    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 100%;

    padding:
        150px 8vw 130px;
}

.hero-kicker {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, .72);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero-kicker span:last-child {
    color: var(--bronze-light);
}

.hero-line {
    width: 45px;
    height: 1px;

    background: var(--bronze-light);

    transform-origin: left;

    animation:
        heroLine 1s var(--ease) .4s both;
}

@keyframes heroLine {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hero-title {
    width: 100%;
    max-width: 950px;

    font-family: var(--serif);

    font-size:
        clamp(62px, 10vw, 145px);

    font-weight: 500;

    line-height: .84;

    letter-spacing: -4px;
}

.hero-title-line {
    display: block;

    max-width: 100%;

    overflow: hidden;
}

.hero-title-line > span {
    display: block;

    transform: translateY(110%);

    animation:
        titleReveal 1.1s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) > span {
    animation-delay: .55s;
}

.hero-title-line:nth-child(2) > span {
    animation-delay: .72s;
}

@keyframes titleReveal {
    to {
        transform: translateY(0);
    }
}

.hero-italic {
    margin-left: 9vw;

    color: var(--bronze-light);

    font-style: italic;
}

.hero-bottom-content {
    display: flex;
    align-items: flex-end;

    gap: 70px;

    margin-top: 45px;
}

.hero-description {
    max-width: 370px;

    color: rgba(255, 255, 255, .68);

    font-size: 12px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 30px;
}

.button {
    position: relative;

    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    padding: 0 22px;

    overflow: hidden;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;

    transition:
        color .45s ease,
        transform .45s var(--ease);
}

.button::before {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--bronze);

    transform:
        translateY(100%);

    transition:
        transform .55s var(--ease);
}

.button:hover::before {
    transform: translateY(0);
}

.button span,
.button b {
    position: relative;
    z-index: 2;
}

.button b {
    font-size: 15px;
    font-weight: 400;

    transition:
        transform .45s var(--ease);
}

.button:hover b {
    transform:
        translate(5px, -5px);
}

.button:hover {
    color: var(--white);
}

.button-light {
    color: var(--black);
    background: var(--white);
}

.hero-link {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(255, 255, 255, .4);

    font-size: 9px;
    font-weight: 700;

    transition:
        border-color .3s ease;
}

.hero-link:hover {
    border-color: var(--bronze-light);
}

.hero-link span {
    color: var(--bronze-light);

    transition:
        transform .4s var(--ease);
}

.hero-link:hover span {
    transform: translateY(5px);
}

.hero-side {
    position: absolute;

    top: 50%;
    right: 35px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 18px;

    writing-mode: vertical-rl;

    transform:
        translateY(-50%);

    color: rgba(255, 255, 255, .38);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-side span:first-child {
    color: var(--bronze-light);
}

.hero-bottom {
    position: absolute;

    bottom: 27px;
    left: 8vw;
    right: 8vw;

    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255, 255, 255, .4);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.scroll-indicator {
    display: flex;
    align-items: center;

    gap: 10px;
}

.scroll-indicator span {
    width: 35px;
    height: 1px;

    background: rgba(255, 255, 255, .35);

    animation:
        scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%,
    100% {
        transform: scaleX(.4);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
}


/* =========================================================
   HERO REVEAL
========================================================= */

.reveal-hero {
    opacity: 0;

    transform: translateY(35px);

    animation:
        heroReveal 1s var(--ease) forwards;
}

.hero-kicker {
    animation-delay: .35s;
}

.hero-description {
    animation-delay: .95s;
}

.hero-buttons {
    animation-delay: 1.1s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {
    position: relative;

    overflow: hidden;

    padding: 17px 0;

    color: var(--cream);
    background: var(--espresso);
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;

    gap: 27px;

    animation:
        marquee 32s linear infinite;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 3px;
}

.marquee-track i {
    color: var(--bronze-light);
    font-style: normal;
}

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


/* =========================================================
   GLOBAL SECTIONS
========================================================= */

.section {
    width: 100%;
    max-width: 100%;

    padding: 140px 8vw;
}

.section-top {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-bottom: 60px;
}

.section-index {
    color: var(--bronze);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.eyebrow {
    display: block;

    color: var(--bronze);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 3px;
}

.small-label {
    display: block;

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

h2 {
    max-width: 100%;

    font-family: var(--serif);

    font-size:
        clamp(48px, 7vw, 100px);

    font-weight: 500;

    line-height: .93;

    letter-spacing: -2px;
}

h2 em {
    display: block;

    color: var(--bronze);

    font-style: italic;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    position: relative;

    background: var(--cream);
}

.intro::before {
    content: "01";

    position: absolute;

    top: 100px;
    right: 6vw;

    color: rgba(169, 130, 90, .08);

    font-family: var(--serif);
    font-size: 220px;

    pointer-events: none;
}

.intro-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, .8fr);

    gap: 12vw;

    align-items: end;
}

.intro-title,
.intro-copy {
    min-width: 0;
}

.intro-title h2 {
    max-width: 720px;
}

.intro-copy {
    max-width: 500px;
}

.intro-number {
    margin-bottom: 30px;

    color: var(--cream-2);

    font-family: var(--serif);
    font-size: 80px;

    line-height: .7;

    will-change: transform;
}

.intro-copy p {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.9;
}

.under-link {
    display: inline-flex;
    align-items: center;

    gap: 20px;

    margin-top: 18px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--black);

    font-size: 9px;
    font-weight: 800;
}

.under-link b {
    font-size: 15px;
    font-weight: 400;

    transition:
        transform .4s var(--ease);
}

.under-link:hover b {
    transform:
        translate(6px, -6px);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    background: var(--white);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 65px;
}

.section-heading h2 {
    margin-top: 13px;
}

.heading-note {
    flex-shrink: 0;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.product-card {
    min-width: 0;

    transform-style: preserve-3d;

    will-change:
        transform;
}

.product-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: .74;

    background: var(--cream-2);

    transform-style: preserve-3d;
}

.product-image-inner {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.product-image img {
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.01);

    transition:
        transform 1s var(--ease),
        filter .7s ease;

    will-change:
        transform;
}

.product-card:hover .product-image img {
    transform:
        scale(1.09);

    filter:
        saturate(.82);
}

.image-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .1),
            transparent 50%,
            rgba(0, 0, 0, .35)
        );

    opacity: .6;

    pointer-events: none;
}

.product-number {
    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 5;

    color: white;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}

.product-badge {
    position: absolute;

    top: 11px;
    right: 11px;

    z-index: 5;

    padding: 7px 9px;

    color: white;
    background: var(--black);

    font-size: 6px;
    font-weight: 800;
    letter-spacing: 1.5px;

    transition:
        transform .45s var(--ease);
}

.product-card:hover .product-badge {
    transform:
        translateY(-4px);
}

.product-badge.bronze {
    background: var(--bronze);
}

.wishlist {
    position: absolute;

    bottom: 12px;
    right: 12px;

    z-index: 6;

    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, .35);

    color: white;

    background:
        rgba(20, 17, 14, .3);

    backdrop-filter: blur(10px);

    border-radius: 50%;

    font-size: 17px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .4s var(--ease);
}

.wishlist:hover {
    transform:
        scale(1.12)
        rotate(8deg);
}

.wishlist.active {
    color: white;
    background: var(--bronze);
    border-color: var(--bronze);

    animation:
        heartPop .45s var(--ease);
}

@keyframes heartPop {
    50% {
        transform:
            scale(1.35);
    }
}

.product-hover-number {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 4;

    color: white;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 3px;

    transform:
        translate(-50%, -50%)
        translateY(15px);

    opacity: 0;

    transition:
        opacity .4s ease,
        transform .6s var(--ease);
}

.product-card:hover .product-hover-number {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        translateY(0);
}

.quick-add {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 16px;

    color: white;
    background: var(--black);

    border: 0;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;

    transform:
        translateY(100%);

    transition:
        transform .6s var(--ease),
        background .3s ease;
}

.quick-add span {
    color: var(--bronze-light);

    font-size: 17px;
    font-weight: 300;

    transition:
        transform .35s var(--ease);
}

.quick-add:hover span {
    transform:
        rotate(90deg);
}

.product-card:hover .quick-add,
.catalog-product:hover .quick-add {
    transform:
        translateY(0);
}

.quick-add:hover {
    background: var(--bronze);
}

.product-info,
.catalog-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 10px;

    min-width: 0;

    padding-top: 15px;

    transition:
        transform .45s var(--ease);
}

.product-card:hover .product-info {
    transform:
        translateY(-3px);
}

.product-category,
.catalog-info > div > span {
    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}

.product-info h3,
.catalog-info h3 {
    min-width: 0;

    font-family: var(--serif);

    font-size: 18px;
    font-weight: 500;

    overflow-wrap: anywhere;
}

.product-info strong,
.catalog-info strong {
    flex-shrink: 0;

    white-space: nowrap;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories {
    background: var(--cream);
}

.collection-intro {
    max-width: 260px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.category-filters {
    display: flex;

    gap: 7px;

    margin-bottom: 45px;
}

.category-filter {
    position: relative;

    flex-shrink: 0;

    padding: 12px 18px;

    border: 1px solid var(--line);
    border-radius: 100px;

    color: var(--muted);
    background: transparent;

    font-size: 8px;
    font-weight: 800;

    overflow: hidden;

    transition:
        color .4s ease,
        border .4s ease,
        transform .4s var(--ease);
}

.category-filter::before {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--black);

    transform:
        scaleX(0);

    transform-origin: right;

    transition:
        transform .45s var(--ease);
}

.category-filter:hover::before {
    transform:
        scaleX(1);

    transform-origin: left;
}

.category-filter:hover {
    color: var(--white);
    border-color: var(--black);

    transform:
        translateY(-2px);
}

.category-filter.active {
    color: var(--cream);
    background: var(--black);
    border-color: var(--black);
}

.category-filter.active::before {
    display: none;
}

.category-filter {
    z-index: 1;
}

.category-filter::after {
    content: attr(data-filter);

    position: absolute;

    opacity: 0;
}

.catalog-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.catalog-product {
    min-width: 0;

    transition:
        opacity .5s ease,
        transform .6s var(--ease);

    will-change:
        transform,
        opacity;
}

.catalog-product.hidden {
    display: none;
}

.catalog-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: .76;

    background: var(--cream-2);

    transform-style: preserve-3d;
}

.catalog-image-inner {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.catalog-image img {
    height: 100%;

    object-fit: cover;

    transition:
        transform .95s var(--ease),
        filter .7s ease;
}

.catalog-product:hover img {
    transform:
        scale(1.085);

    filter:
        saturate(.82);
}

.catalog-index {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    color: white;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}

.catalog-product:hover .catalog-index {
    color: var(--bronze-light);
}


/* =========================================================
   LOOKBOOK
========================================================= */

.lookbook {
    position: relative;

    min-height: 850px;

    overflow: hidden;

    color: white;

    cursor: none;
}

.lookbook-image {
    position: absolute;

    inset: -5%;

    overflow: hidden;
}

.lookbook-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.08);

    transition:
        transform 1.5s var(--ease);

    will-change:
        transform;
}

.lookbook:hover .lookbook-image img {
    transform:
        scale(1.035);
}

.lookbook-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .12)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .76),
            transparent 60%
        );
}

.lookbook-grid {
    position: relative;

    z-index: 2;

    min-height: 850px;

    display: grid;

    grid-template-columns:
        100px minmax(0, 1fr);

    align-items: end;

    padding: 8vw;
}

.lookbook-index {
    align-self: start;

    padding-top: 110px;

    color: rgba(255, 255, 255, .45);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.lookbook-content {
    min-width: 0;

    padding-bottom: 40px;
}

.lookbook .eyebrow {
    color: var(--bronze-light);
}

.lookbook h2 {
    margin-top: 20px;

    font-size:
        clamp(75px, 11vw, 150px);

    line-height: .8;
}

.lookbook h2 em {
    color: var(--bronze-light);
}

.lookbook-content p {
    max-width: 430px;

    margin: 35px 0;

    color: rgba(255, 255, 255, .65);

    font-size: 12px;
    line-height: 1.8;
}

.lookbook-corner {
    position: absolute;

    top: 35px;
    right: 35px;

    z-index: 4;

    color: rgba(255, 255, 255, .35);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    background: var(--white);
}

.experience-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 12vw;
}

.experience-title,
.experience-items {
    min-width: 0;
}

.experience-title h2 {
    max-width: 550px;
}

.experience-items {
    border-top: 1px solid var(--line);
}

.experience-item {
    display: grid;

    grid-template-columns:
        40px minmax(0, 1fr) 25px;

    gap: 20px;

    align-items: start;

    padding: 30px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding .45s var(--ease);
}

.experience-item:hover {
    padding-left: 10px;
    padding-right: 10px;
}

.experience-item > span {
    color: var(--bronze);

    font-size: 8px;
    font-weight: 800;
}

.experience-item h3 {
    margin-bottom: 8px;

    font-family: var(--serif);

    font-size: 27px;
    font-weight: 500;

    transition:
        transform .45s var(--ease);
}

.experience-item:hover h3 {
    transform:
        translateX(5px);
}

.experience-item p {
    max-width: 420px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.experience-item > b {
    color: var(--bronze);

    font-size: 17px;
    font-weight: 400;

    transition:
        transform .45s var(--ease);
}

.experience-item:hover > b {
    transform:
        translate(7px, -7px);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    position: relative;

    overflow: hidden;

    padding: 170px 20px;

    color: var(--cream);
    background: var(--black);

    text-align: center;
}

.newsletter-grid {
    position: absolute;
    inset: 0;

    opacity: .055;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .2) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .2) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 70%
        );
}

.newsletter-orb {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(169, 130, 90, .18),
            transparent 65%
        );

    transform:
        translate(-50%, -50%);

    animation:
        orb 8s ease-in-out infinite;
}

.newsletter-orb.orb-two {
    width: 250px;
    height: 250px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, .06),
            transparent 70%
        );

    animation-delay:
        -3s;
}

@keyframes orb {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.15);
    }
}

.newsletter-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 750px;

    margin: auto;
}

.newsletter .eyebrow {
    color: var(--bronze-light);
}

.newsletter h2 {
    margin-top: 18px;
}

.newsletter h2 em {
    color: var(--bronze-light);
}

.newsletter p {
    max-width: 460px;

    margin: 25px auto 35px;

    color: rgba(255, 255, 255, .48);

    font-size: 12px;
    line-height: 1.8;
}

.newsletter form {
    display: flex;

    width: 100%;
    max-width: 560px;

    margin: auto;

    border-bottom:
        1px solid rgba(255, 255, 255, .3);
}

.newsletter input {
    width: 100%;
    min-width: 0;

    padding: 16px 0;

    border: 0;
    outline: 0;

    color: white;
    background: transparent;

    font-size: 11px;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.newsletter button {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 15px;

    border: 0;

    color: var(--bronze-light);
    background: transparent;

    font-size: 9px;
    font-weight: 800;

    transition:
        transform .45s var(--ease);
}

.newsletter button:hover {
    transform:
        translateX(5px);
}

.newsletter button span {
    font-size: 16px;

    transition:
        transform .45s var(--ease);
}

.newsletter button:hover span {
    transform:
        translate(4px, -4px);
}

.newsletter small {
    display: block;

    margin-top: 15px;

    color: rgba(255, 255, 255, .23);

    font-size: 7px;
    letter-spacing: 1px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--cream);
}

.contact-heading {
    margin-bottom: 70px;
}

.contact-heading h2 {
    max-width: 850px;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}

.contact-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 35px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--line);

    transition:
        transform .6s var(--ease),
        background .45s ease;
}

.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--bronze);

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .7s var(--ease);
}

.contact-card::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -70px;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(169, 130, 90, .12),
            transparent 70%
        );

    transform:
        scale(.5);

    transition:
        transform .8s var(--ease);
}

.contact-card:hover {
    transform:
        translateY(-10px);

    background: #faf7f1;
}

.contact-card:hover::before {
    transform:
        scaleX(1);
}

.contact-card:hover::after {
    transform:
        scale(1.3);
}

.contact-card-index {
    position: absolute;

    top: 30px;
    left: 35px;

    color: var(--bronze);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-card h3 {
    margin-bottom: 13px;

    font-family: var(--serif);

    font-size:
        clamp(28px, 3vw, 45px);

    font-weight: 500;
}

.contact-card p {
    max-width: 390px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.contact-card a {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    width: max-content;
    max-width: 100%;

    margin-top: 25px;

    padding-bottom: 6px;

    border-bottom:
        1px solid var(--black);

    font-size: 8px;
    font-weight: 800;
}

.contact-card a span {
    color: var(--bronze);

    transition:
        transform .4s var(--ease);
}

.contact-card a:hover span {
    transform:
        translate(4px, -4px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;

    overflow: hidden;

    padding: 85px 8vw 35px;

    color: var(--cream);
    background: var(--black);
}

.footer-top {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 50px;
}

.footer-brand,
.footer-column {
    min-width: 0;
}

.footer-brand p {
    margin-top: 20px;

    color: rgba(255, 255, 255, .38);

    font-size: 10px;
    line-height: 1.8;
}

.footer-location {
    margin-top: 30px;

    color: var(--bronze-light);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 8px;

    color: var(--bronze-light);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.footer-column a {
    width: max-content;
    max-width: 100%;

    color: rgba(255, 255, 255, .48);

    font-size: 9px;

    transition:
        color .3s ease,
        transform .4s var(--ease);
}

.footer-column a:hover {
    color: white;

    transform:
        translateX(5px);
}

.footer-giant {
    position: relative;

    z-index: 1;

    margin-top: 80px;
    margin-bottom: -20px;

    color: rgba(255, 255, 255, .035);

    font-family: var(--serif);

    font-size:
        clamp(100px, 22vw, 320px);

    line-height: .65;

    letter-spacing: -10px;

    white-space: nowrap;

    user-select: none;

    transition:
        transform 1s var(--ease);
}

.footer:hover .footer-giant {
    transform:
        translateX(1.5%);
}

.footer-bottom {
    position: relative;

    z-index: 3;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-top: 60px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, .1);

    color: rgba(255, 255, 255, .25);

    font-size: 7px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);

    transition:
        color .3s ease,
        transform .4s var(--ease);
}

.footer-bottom a:hover {
    color: var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   CART
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;

    z-index: 1100;

    background:
        rgba(0, 0, 0, .6);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .45s ease,
        visibility .45s;

    backdrop-filter:
        blur(6px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width:
        min(100%, 450px);

    height: 100vh;

    z-index: 1200;

    display: flex;
    flex-direction: column;

    color: var(--black);
    background: var(--cream);

    transform:
        translateX(100%);

    transition:
        transform .7s var(--ease);
}

.cart-drawer.active {
    transform:
        translateX(0);
}

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 28px;

    border-bottom:
        1px solid var(--line);
}

.cart-header span {
    color: var(--bronze);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cart-header h2 {
    margin-top: 5px;

    font-size: 35px;
}

.cart-header button {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    border: 0;

    background: var(--cream-2);

    border-radius: 50%;

    font-size: 20px;

    transition:
        transform .45s var(--ease);
}

.cart-header button:hover {
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 28px;
}

.empty-cart {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--muted);

    text-align: center;
}

.empty-cart span {
    margin-bottom: 15px;

    color: var(--cream-2);

    font-family: var(--serif);
    font-size: 60px;

    animation:
        emptyHeart 3s ease-in-out infinite;
}

@keyframes emptyHeart {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.empty-cart p {
    font-size: 10px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        75px minmax(0, 1fr) auto;

    gap: 14px;

    padding: 17px 0;

    border-bottom:
        1px solid var(--line);

    animation:
        cartItemIn .6s var(--ease) both;
}

@keyframes cartItemIn {
    from {
        opacity: 0;

        transform:
            translateX(25px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}

.cart-item img {
    width: 75px;
    height: 90px;

    object-fit: cover;

    transition:
        transform .5s var(--ease);
}

.cart-item:hover img {
    transform:
        scale(1.04);
}

.cart-item-info {
    min-width: 0;
}

.cart-item-info h4 {
    font-family: var(--serif);

    font-size: 17px;
    font-weight: 500;

    overflow-wrap: anywhere;
}

.cart-item-info span {
    display: block;

    margin-top: 6px;

    color: var(--muted);

    font-size: 8px;
}

.remove-item {
    border: 0;

    background: transparent;

    color: var(--muted);

    font-size: 18px;

    transition:
        color .3s ease,
        transform .4s var(--ease);
}

.remove-item:hover {
    color: var(--black);

    transform:
        rotate(90deg);
}

.cart-footer {
    padding: 22px 28px 28px;

    border-top:
        1px solid var(--line);
}

.cart-total {
    display: flex;
    justify-content: space-between;

    margin-bottom: 17px;
}

.cart-total span {
    color: var(--muted);

    font-size: 9px;
}

.cart-total strong {
    font-size: 13px;
}

.checkout-button {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 17px;

    color: white;
    background: var(--black);

    border: 0;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;

    transition:
        background .35s ease,
        transform .4s var(--ease);
}

.checkout-button:hover {
    background: var(--bronze);

    transform:
        translateY(-2px);
}

.checkout-button span {
    font-size: 15px;

    transition:
        transform .4s var(--ease);
}

.checkout-button:hover span {
    transform:
        translate(4px, -4px);
}

.cart-footer small {
    display: block;

    margin-top: 10px;

    color: var(--muted);

    text-align: center;

    font-size: 7px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    filter: blur(6px);

    transform:
        translateY(55px)
        scale(.98);

    transition:
        opacity 1.1s var(--ease),
        transform 1.1s var(--ease),
        filter 1.1s var(--ease);

    will-change:
        transform,
        opacity,
        filter;
}

.reveal.visible {
    opacity: 1;

    filter: blur(0);

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   DIRECTIONAL REVEAL
========================================================= */

.reveal-left,
.reveal-right {
    opacity: 0;

    filter: blur(3px);

    transition:
        opacity 1s var(--ease-out),
        transform 1s var(--ease-out),
        filter 1s var(--ease-out);

    will-change:
        transform,
        opacity,
        filter;
}

.reveal-left {
    transform:
        translateX(-120px)
        rotate(-1.2deg);
}

.reveal-right {
    transform:
        translateX(120px)
        rotate(1.2deg);
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;

    filter: blur(0);

    transform:
        translateX(0)
        rotate(0deg);
}

.reveal-scale {
    opacity: 0;

    filter: blur(4px);

    transform: scale(.86);

    transition:
        opacity 1s var(--ease-out),
        transform 1.1s var(--ease-out),
        filter 1s var(--ease-out);

    will-change:
        transform,
        opacity,
        filter;
}

.reveal-scale.visible {
    opacity: 1;

    filter: blur(0);

    transform: scale(1);
}


/* =========================================================
   MOBILE REVEALS
========================================================= */

@media (max-width: 700px) {

    .reveal-left {
        transform:
            translateX(-40px)
            rotate(0deg);
    }

    .reveal-right {
        transform:
            translateX(40px)
            rotate(0deg);
    }
}


/* =========================================================
   SETTLE
========================================================= */

.interactive-card.settle,
.product-image.settle,
.catalog-image.settle,
.contact-card.settle {
    transition:
        transform .7s var(--ease-out);
}

.product-image.settle img,
.catalog-image.settle img {
    transition:
        transform .8s var(--ease-out),
        filter .7s ease;
}


/* =========================================================
   IMAGE BLUR-UP
========================================================= */

.product-image img,
.catalog-image img,
.hero-image img,
.lookbook-image img {
    filter: saturate(1) blur(0);
}

.img-loading {
    filter: blur(22px) saturate(1.1) !important;

    transform: scale(1.08) !important;
}

.img-loaded {
    animation:
        imgFocus .9s var(--ease-out);
}

@keyframes imgFocus {
    from {
        filter: blur(22px) saturate(1.1);
    }

    to {
        filter: blur(0) saturate(1);
    }
}


/* =========================================================
   FLY TO CART
========================================================= */

.fly-item {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 6500;

    width: 60px;
    height: 76px;

    overflow: hidden;

    border-radius: 3px;

    pointer-events: none;

    box-shadow:
        0 25px 60px -10px rgba(23, 20, 17, .45);
}

.fly-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-pulse {
    animation:
        cartPulse .55s var(--ease);
}

@keyframes cartPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(169, 130, 90, .55);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(169, 130, 90, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(169, 130, 90, 0);
    }
}


/* =========================================================
   BUTTON PRESS
========================================================= */

.button:active,
.quick-add:active,
.checkout-button:active,
.category-filter:active,
.icon-button:active {
    transform: scale(.94);

    transition:
        transform .15s var(--ease);
}


/* =========================================================
   IMAGE REVEAL
========================================================= */

.image-reveal {
    clip-path:
        inset(0 0 0 0);

    transition:
        clip-path 1.5s var(--ease);
}

body.loading .image-reveal {
    clip-path:
        inset(0 0 100% 0);
}


/* =========================================================
   STAGGER
========================================================= */

.products-grid .product-card:nth-child(2),
.catalog-grid .catalog-product:nth-child(2) {
    transition-delay: .08s;
}

.products-grid .product-card:nth-child(3),
.catalog-grid .catalog-product:nth-child(3) {
    transition-delay: .16s;
}

.products-grid .product-card:nth-child(4),
.catalog-grid .catalog-product:nth-child(4) {
    transition-delay: .24s;
}

.experience-items .experience-item:nth-child(2) {
    transition-delay: .08s;
}

.experience-items .experience-item:nth-child(3) {
    transition-delay: .16s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 20px;
        margin-right: 25px;
    }

    .hero-title {
        font-size:
            clamp(60px, 10vw, 100px);
    }

    .products-grid,
    .catalog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 40px;
    }

    .intro-layout,
    .experience-grid {
        gap: 60px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    .header {
        width: 100%;
        height: 68px;

        padding:
            0 18px;
    }

    .header.scrolled {
        height: 62px;
    }

    .logo {
        min-width: 0;

        font-size: 22px;
        letter-spacing: 4px;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        flex-shrink: 0;
    }

    .menu-button {
        display: flex;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100vw;
    }

    .mobile-menu-inner {
        width: 100%;
        max-width: 100%;

        padding:
            80px 20px;
    }

    .mobile-menu-inner > a {
        width: 100%;
        max-width: 100%;

        font-size:
            clamp(31px, 9.5vw, 39px);
    }

    .search-panel {
        top: 68px;

        width: 100%;
        max-width: 100vw;

        padding:
            25px 20px 30px;
    }

    .header.scrolled + .mobile-menu + .search-panel {
        top: 62px;
    }

    .hero {
        width: 100%;
        max-width: 100%;

        min-height: 780px;

        align-items: flex-end;
    }

    .hero-image {
        inset: 0;

        width: 100%;
        max-width: 100%;
    }

    .hero-gradient {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, .88),
                rgba(0, 0, 0, .08) 70%
            );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;

        padding:
            0 20px 110px;
    }

    .hero-kicker {
        margin-bottom: 22px;

        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-line {
        width: 25px;
    }

    .hero-title {
        width: 100%;
        max-width: 100%;

        font-size:
            clamp(54px, 16vw, 85px);

        letter-spacing: -2px;
        line-height: .87;
    }

    .hero-title-line {
        width: 100%;
        max-width: 100%;
    }

    .hero-italic {
        margin-left: 25px;
    }

    .hero-bottom-content {
        display: block;

        margin-top: 30px;
    }

    .hero-description {
        max-width: 310px;

        font-size: 11px;
    }

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

        gap: 17px;

        margin-top: 25px;
    }

    .hero-side {
        display: none;
    }

    .hero-bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .section {
        width: 100%;
        max-width: 100%;

        padding:
            90px 20px;
    }

    .section-top {
        margin-bottom: 45px;
    }

    h2 {
        max-width: 100%;

        font-size:
            clamp(45px, 13vw, 65px);

        letter-spacing: -1px;
    }

    .intro::before {
        top: 80px;
        right: -30px;

        font-size: 130px;
    }

    .intro-layout {
        display: block;
    }

    .intro-copy {
        width: 100%;
        max-width: 100%;

        margin-top: 50px;
    }

    .intro-number {
        font-size: 60px;
    }

    .section-heading {
        display: block;

        margin-bottom: 40px;
    }

    .heading-note {
        margin-top: 20px;
    }

    .products-grid,
    .catalog-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .product-info,
    .catalog-info {
        display: block;

        min-width: 0;
    }

    .product-info strong,
    .catalog-info strong {
        display: block;

        margin-top: 7px;
    }

    .product-info h3,
    .catalog-info h3 {
        font-size: 15px;
    }

    .product-image,
    .catalog-image {
        width: 100%;
        max-width: 100%;

        aspect-ratio: .70;
    }

    .quick-add {
        transform:
            translateY(0);

        padding: 11px;

        font-size: 7px;
    }

    .quick-add span {
        font-size: 14px;
    }

    .product-hover-number {
        display: none;
    }

    .category-filters {
        width: calc(100% + 20px);

        overflow-x: auto;

        margin-right: -20px;

        padding-right: 20px;
        padding-bottom: 5px;

        scrollbar-width: none;

        overscroll-behavior-x: contain;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .collection-intro {
        margin-top: 25px;
    }

    .lookbook {
        width: 100%;
        max-width: 100%;

        min-height: 700px;
    }

    .lookbook-grid {
        width: 100%;
        max-width: 100%;

        min-height: 700px;

        display: block;

        padding:
            30px 20px 0;
    }

    .lookbook-index {
        padding-top: 80px;
    }

    .lookbook-content {
        width: 100%;
        max-width: 100%;

        padding-bottom: 65px;

        /*
         * On évite le gros décalage rigide.
         * Le contenu reste dans l'écran sur les petits mobiles.
         */
        margin-top: clamp(150px, 30vh, 220px);
    }

    .lookbook h2 {
        max-width: 100%;

        font-size:
            clamp(68px, 19vw, 105px);
    }

    .lookbook-content p {
        max-width: 100%;
    }

    .lookbook-corner {
        top: 25px;
        right: 20px;
    }

    .experience-grid {
        display: block;
    }

    .experience-items {
        width: 100%;
        max-width: 100%;

        margin-top: 55px;
    }

    .experience-item {
        grid-template-columns:
            28px minmax(0, 1fr) 15px;

        gap: 12px;

        padding: 24px 0;
    }

    .experience-item h3 {
        font-size: 22px;
    }

    .experience-item p {
        font-size: 10px;
    }

    .newsletter {
        width: 100%;
        max-width: 100%;

        padding:
            110px 20px;
    }

    .newsletter-orb {
        width: 350px;
        height: 350px;
    }

    .newsletter form {
        display: block;

        width: 100%;
        max-width: 100%;
    }

    .newsletter input {
        display: block;

        width: 100%;

        padding: 16px 0;
    }

    .newsletter button {
        width: 100%;

        justify-content: space-between;

        padding: 15px 0;

        border-top:
            1px solid rgba(255, 255, 255, .12);
    }

    .contact-heading {
        margin-bottom: 45px;
    }

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

    .contact-card {
        min-height: 290px;

        padding: 30px;
    }

    .footer {
        width: 100%;
        max-width: 100%;

        padding:
            65px 20px 25px;
    }

    .footer-top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 25px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-giant {
        max-width: 100%;

        margin-top: 70px;

        font-size: 31vw;

        letter-spacing: -5px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 40px;

        line-height: 1.7;
    }

    .cart-drawer {
        width: 100%;
        max-width: 100vw;
    }

    .cart-header {
        padding: 24px 20px;
    }

    .cart-items {
        padding:
            20px;
    }

    .cart-footer {
        padding:
            22px 20px 25px;
    }

    .cart-item {
        grid-template-columns:
            65px minmax(0, 1fr) auto;

        gap: 12px;
    }

    .cart-item img {
        width: 65px;
        height: 80px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .header-actions {
        gap: 0;
    }

    .icon-button,
    .menu-button {
        width: 36px;
        height: 36px;
    }

    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size:
            clamp(48px, 15.5vw, 68px);
    }

    .hero-italic {
        margin-left: 15px;
    }

    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .products-grid,
    .catalog-grid {
        gap: 8px;
    }

    .product-info h3,
    .catalog-info h3 {
        font-size: 14px;
    }

    .lookbook-grid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lookbook h2 {
        font-size:
            clamp(58px, 18vw, 80px);
    }

    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-top {
        gap: 35px 18px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        filter: none;
    }
}