/* =========================================
   ROOT / THEME VARIABLES
========================================= */

:root {

    --font-serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --font-sans:
        "Inter",
        Arial,
        sans-serif;


    --bg: #f5f2ec;
    --bg-soft: #ebe6dd;
    --bg-alt: #e5ded3;

    --surface: #ffffff;
    --surface-soft: #eee9e0;

    --text: #171714;
    --text-soft: #626057;
    --text-muted: #7b786f;

    --border: rgba(23, 23, 20, 0.18);
    --border-strong: rgba(23, 23, 20, 0.3);

    --header-bg: rgba(245, 242, 236, 0.88);

    --inverse-bg: #171714;
    --inverse-text: #f4f0e8;

    --newsletter-bg: #d0c2aa;

    --hero-bg: #d9d2c5;
    --hero-circle: #c8b8a1;

    --cart-bg: #f6f3ed;

    --shadow:
        0 25px 70px rgba(46, 38, 28, 0.12);

    --transition-theme:
        background-color 0.45s ease,
        color 0.45s ease,
        border-color 0.45s ease;
}


/* =========================================
   DARK THEME
========================================= */

html[data-theme="dark"] {

    --bg: #11110f;
    --bg-soft: #181815;
    --bg-alt: #1d1d19;

    --surface: #1c1c18;
    --surface-soft: #25241f;

    --text: #eeebe4;
    --text-soft: #b2aea4;
    --text-muted: #8f8b82;

    --border: rgba(240, 236, 226, 0.14);
    --border-strong: rgba(240, 236, 226, 0.28);

    --header-bg: rgba(17, 17, 15, 0.88);

    --inverse-bg: #f0ece4;
    --inverse-text: #171714;

    --newsletter-bg: #28241e;

    --hero-bg: #24231f;
    --hero-circle: #37332c;

    --cart-bg: #171714;

    --shadow:
        0 30px 80px rgba(0, 0, 0, 0.4);
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;

    background: var(--bg);

    transition: var(--transition-theme);
}


body {
    background: var(--bg);
    color: var(--text);

    font-family: var(--font-sans);

    overflow-x: hidden;

    transition: var(--transition-theme);
}


body.no-scroll {
    overflow: hidden;
}


button,
input {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


::selection {
    background: var(--text);
    color: var(--bg);
}


.container {
    width: min(
        1380px,
        calc(100% - 80px)
    );

    margin-inline: auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

.eyebrow {
    font-size: 0.66rem;
    font-weight: 600;

    letter-spacing: 0.19em;

    text-transform: uppercase;
}


h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 500;
}


em {
    font-weight: 400;
}


/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement {
    position: relative;

    overflow: hidden;

    padding: 9px 20px;

    background: var(--inverse-bg);
    color: var(--inverse-text);

    text-align: center;

    font-size: 0.62rem;
    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition: var(--transition-theme);
}


.announcement span {
    display: inline-block;

    animation: announcementFade 1s ease both;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;

    top: 0;

    z-index: 100;

    height: 80px;

    border-bottom: 1px solid var(--border);

    background: var(--bg);

    transition:
        var(--transition-theme),
        transform 0.35s ease;
}


.header-inner {
    height: 100%;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;
}


.logo {
    grid-column: 2;

    font-family: var(--font-serif);

    font-size: 1.65rem;
    font-weight: 600;

    letter-spacing: 0.2em;

    transition:
        opacity 0.25s ease,
        var(--transition-theme);
}


.logo:hover {
    opacity: 0.6;
}


.desktop-nav {
    grid-column: 1;
    grid-row: 1;

    display: flex;

    gap: 34px;

    font-size: 0.74rem;
}


.desktop-nav a {
    position: relative;

    padding: 5px 0;

    color: var(--text);

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}


.desktop-nav a:hover::after {
    width: 100%;
}


.header-actions {
    grid-column: 3;
    grid-row: 1;

    justify-self: end;

    display: flex;
    align-items: center;

    gap: 23px;
}


.text-button,
.cart-button {
    border: 0;

    background: transparent;

    color: var(--text);

    font-size: 0.74rem;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


.text-button:hover {
    opacity: 0.5;
}


.cart-button {
    display: flex;
    align-items: center;

    gap: 8px;
}


.cart-button > span {
    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--text);
    color: var(--bg);

    font-size: 0.56rem;

    transition:
        transform 0.3s ease,
        var(--transition-theme);
}


.cart-button:hover > span {
    transform: scale(1.15);
}


/* =========================================
   THEME TOGGLE
========================================= */

.theme-toggle {
    position: relative;

    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: transparent;
    color: var(--text);

    overflow: hidden;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.theme-toggle:hover {
    background: var(--text);
    color: var(--bg);

    transform: rotate(8deg);
}


.theme-icon {
    position: relative;

    width: 17px;
    height: 17px;

    display: block;
}


.theme-icon svg {
    position: absolute;

    inset: 0;

    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        opacity 0.35s ease,
        transform 0.45s
        cubic-bezier(.76, 0, .24, 1);
}


.sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}


.moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.3);
}


html[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.3);
}


html[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}


.menu-button {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: calc(100vh - 110px);

    display: flex;

    align-items: stretch;
}


.hero-content {
    min-height: 750px;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;
}


.hero-copy {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    padding-right: 80px;
}


.hero-copy .eyebrow {
    margin-bottom: 30px;
}


.hero h1 {
    font-size: clamp(
        5rem,
        8vw,
        9rem
    );

    line-height: 0.73;

    letter-spacing: -0.055em;
}


.hero h1 em {
    display: inline-block;

    margin-left: 70px;
}


.hero-description {
    max-width: 420px;

    margin-top: 55px;

    color: var(--text-soft);

    font-family: var(--font-serif);

    font-size: 1.3rem;
    line-height: 1.52;

    transition: var(--transition-theme);
}


.primary-button {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-width: 245px;

    margin-top: 40px;

    padding: 17px 19px;

    overflow: hidden;

    background: var(--text);
    color: var(--bg);

    font-size: 0.7rem;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.3s ease;
}


.primary-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -110%;

    width: 100%;
    height: 100%;

    background:
        rgba(255, 255, 255, 0.14);

    transform: skewX(-18deg);

    transition: left 0.55s ease;
}


.primary-button:hover::before {
    left: 120%;
}


.primary-button:hover {
    transform: translateY(-3px);
}


.button-arrow {
    position: relative;

    transition:
        transform 0.3s ease;
}


.primary-button:hover .button-arrow {
    transform:
        translate(3px, -3px);
}


/* =========================================
   HERO ART
========================================= */

.hero-art {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--hero-bg);

    transition: var(--transition-theme);
}


.hero-grid-lines {
    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:

        linear-gradient(
            to right,
            var(--text) 1px,
            transparent 1px
        ),

        linear-gradient(
            to bottom,
            var(--text) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 25%,
            black 75%,
            transparent
        );
}


.hero-circle {
    position: absolute;

    width: 490px;
    height: 490px;

    border-radius: 50%;

    background: var(--hero-circle);

    transition:
        var(--transition-theme);

    animation:
        heroCircleFloat
        8s
        ease-in-out
        infinite;
}


.hero-circle::before {
    content: "";

    position: absolute;

    inset: 65px;

    border:
        1px solid
        rgba(255, 255, 255, 0.28);

    border-radius: 50%;
}


.hero-circle::after {
    content: "";

    position: absolute;

    inset: 125px;

    border:
        1px solid
        rgba(255, 255, 255, 0.19);

    border-radius: 50%;
}


.hero-orbit {
    position: absolute;

    width: 560px;
    height: 300px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    transform: rotate(-24deg);

    animation:
        orbitRotate
        24s
        linear
        infinite;
}


.hero-orbit::after {
    content: "";

    position: absolute;

    top: 37px;
    right: 63px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(
        255,
        255,
        255,
        0.7
    );
}


.hero-bottle {
    position: relative;

    z-index: 3;

    width: 215px;

    animation:
        bottleFloat
        5s
        ease-in-out
        infinite;

    filter:
        drop-shadow(
            0 28px 26px
            rgba(34, 26, 18, 0.14)
        );
}


.motion-ready
.hero-art:not(.in-view)
.hero-circle,

.motion-ready
.hero-art:not(.in-view)
.hero-orbit,

.motion-ready
.hero-art:not(.in-view)
.hero-bottle {
    animation-play-state: paused;
}


.bottle-cap {
    width: 86px;
    height: 86px;

    margin-inline: auto;

    border-radius:
        3px
        3px
        0
        0;

    background: #1c1c19;

    box-shadow:

        inset 10px 0 12px
        rgba(255, 255, 255, 0.05),

        0 7px 15px
        rgba(0, 0, 0, 0.14);
}


.bottle-body {
    position: relative;

    height: 285px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.65);

    background:

        linear-gradient(
            100deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.13) 35%,
            rgba(255, 255, 255, 0.08) 65%,
            rgba(255, 255, 255, 0.45)
        ),

        rgba(230, 214, 182, 0.8);

    box-shadow:

        inset 0 0 45px
        rgba(255, 255, 255, 0.25),

        0 35px 60px
        rgba(70, 53, 34, 0.18);
}


.bottle-body::after {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 14%;
    height: 100%;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.27),
            transparent
        );
}


.bottle-body > span {
    font-size: 0.69rem;
    letter-spacing: 0.28em;
}


.bottle-body p {
    margin:
        17px
        0
        5px;

    font-family: var(--font-serif);

    font-size: 2rem;
}


.bottle-body small {
    font-size: 0.47rem;

    letter-spacing: 0.2em;
}


.hero-detail {
    position: absolute;

    z-index: 3;

    left: 40px;
    bottom: 40px;

    display: flex;

    gap: 48px;

    font-size: 0.66rem;
}


.hero-detail > span {
    opacity: 0.45;
}


.hero-detail p {
    line-height: 1.7;
}


.hero-edition {
    position: absolute;

    top: 37px;
    right: 35px;

    writing-mode: vertical-rl;

    font-size: 0.53rem;

    letter-spacing: 0.16em;

    opacity: 0.45;
}


/* =========================================
   HERO ENTRANCE
========================================= */

.hero-animate {
    opacity: 0;

    transform:
        translateY(25px);

    animation:
        heroReveal
        1s
        cubic-bezier(.16, 1, .3, 1)
        forwards;
}


.hero-delay-1 {
    animation-delay: 0.08s;
}


.hero-delay-2 {
    animation-delay: 0.18s;
}


.hero-delay-3 {
    animation-delay: 0.3s;
}


.hero-delay-4 {
    animation-delay: 0.42s;
}


/* =========================================
   MARQUEE
========================================= */

.marquee-section {
    overflow: hidden;

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    padding: 18px 0;

    transition: var(--transition-theme);
}


.marquee-track {
    width: max-content;

    display: flex;

    font-size: 0.59rem;

    letter-spacing: 0.2em;

    will-change: transform;

    animation:
        marquee
        26s
        linear
        infinite;
}


.marquee-group {
    width: max-content;
    min-width: 100vw;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-around;

    gap: 28px;

    padding-inline: 28px;
}


.marquee-group span {
    white-space: nowrap;
}


/* =========================================
   INTRO
========================================= */

.intro {
    padding-top: 150px;
    padding-bottom: 170px;
}


.intro > .eyebrow {
    margin-bottom: 50px;
}


.intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        0.65fr;

    gap: 120px;

    align-items: end;
}


.intro h2 {
    font-size: clamp(
        3.4rem,
        6vw,
        6.4rem
    );

    line-height: 0.92;

    letter-spacing: -0.04em;
}


.intro h2 em {
    display: block;

    margin-left: 90px;
}


.intro-copy {
    position: relative;
}


.intro-copy p {
    max-width: 440px;

    color: var(--text-soft);

    font-size: 0.85rem;

    line-height: 1.82;

    transition: var(--transition-theme);
}


.intro-number {
    display: block;

    margin-top: 45px;

    font-size: 0.56rem;

    letter-spacing: 0.12em;

    opacity: 0.45;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 30px;

    border-bottom:
        1px solid
        var(--border);

    transition: var(--transition-theme);
}


.section-heading .eyebrow {
    margin-bottom: 12px;
}


.section-heading h2 {
    font-size: 3.4rem;
    line-height: 1;
}


.product-total {
    color: var(--text-muted);

    font-size: 0.63rem;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* =========================================
   FILTERS
========================================= */

.filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin:
        30px
        0
        45px;
}


.filter-button {
    position: relative;

    padding:
        10px
        18px;

    border:
        1px solid
        var(--border-strong);

    border-radius: 100px;

    background: transparent;

    color: var(--text);

    font-size: 0.65rem;

    overflow: hidden;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.filter-button:hover {
    transform:
        translateY(-2px);
}


.filter-button.active,
.filter-button:hover {
    border-color: var(--text);

    background: var(--text);

    color: var(--bg);
}


/* =========================================
   SHOP
========================================= */

.shop {
    padding-bottom: 170px;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        65px
        20px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    min-width: 0;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.product-card.hidden {
    display: none;
}


.product-image {
    position: relative;

    height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    transition:
        transform 0.45s
        cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.45s ease;
}


.product-card:hover .product-image {
    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}


.product-cream {
    background: #e3ddd0;
}


.product-sand {
    background: #cab9a0;
}


.product-blush {
    background: #dfc8c3;
}


.product-black {
    background: #282825;
}


.product-green {
    background: #b9c3b5;
}


.product-stone {
    background: #c9c8c2;
}


.product-index {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #171714;

    font-size: 0.55rem;

    opacity: 0.48;
}


.light-index {
    color: white;
}


.product-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 3;

    padding:
        7px
        10px;

    background:
        rgba(
            245,
            242,
            236,
            0.96
        );

    color: #171714;

    font-size: 0.54rem;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.product-backdrop {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(
            -50%,
            -50%
        );

    color:
        rgba(
            23,
            23,
            20,
            0.055
        );

    font-family: var(--font-serif);

    font-size: 18rem;

    font-weight: 500;

    line-height: 1;

    pointer-events: none;

    transition:
        transform 0.7s
        cubic-bezier(.16, 1, .3, 1),
        opacity 0.5s ease;
}


.product-card:hover
.product-backdrop {
    transform:
        translate(
            -50%,
            -50%
        )
        scale(1.08)
        rotate(-3deg);
}


.product-backdrop-light {
    color:
        rgba(
            255,
            255,
            255,
            0.04
        );
}


/* =========================================
   CSS PERFUME BOTTLES
========================================= */

.perfume-bottle {
    position: relative;

    z-index: 2;

    width: 125px;

    transition:
        transform 0.55s
        cubic-bezier(.16, 1, .3, 1);

    filter:
        drop-shadow(
            0 24px 18px
            rgba(0, 0, 0, 0.12)
        );
}


.product-card:hover
.perfume-bottle {
    transform:
        translateY(-12px)
        scale(1.035);
}


.mini-cap {
    width: 48px;
    height: 52px;

    margin-inline: auto;

    border-radius:
        2px
        2px
        0
        0;

    background: #d9d0bc;

    box-shadow:

        inset 5px 0 10px
        rgba(255, 255, 255, 0.3),

        0 5px 12px
        rgba(0, 0, 0, 0.13);
}


.dark-cap {
    background: #37352f;
}


.black-cap {
    background: #111;
}


.mini-bottle {
    position: relative;

    height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.6
        );

    box-shadow:
        0 25px 30px
        rgba(0, 0, 0, 0.13);
}


.mini-bottle::after {
    content: "";

    position: absolute;

    left: -70%;
    top: 0;

    width: 35%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                255,
                255,
                255,
                0.25
            ),
            transparent
        );

    transform: skewX(-15deg);

    transition:
        left 0.8s ease;
}


.product-card:hover
.mini-bottle::after {
    left: 130%;
}


.mini-bottle span {
    font-size: 0.47rem;

    letter-spacing: 0.18em;
}


.mini-bottle strong {
    margin:
        13px
        0
        3px;

    font-family: var(--font-serif);

    font-size: 1.35rem;

    font-weight: 500;
}


.mini-bottle small {
    font-size: 0.43rem;

    letter-spacing: 0.13em;
}


.bottle-clear .mini-bottle {
    background:
        rgba(
            239,
            222,
            186,
            0.62
        );
}


.bottle-amber .mini-bottle {
    background:
        rgba(
            112,
            76,
            45,
            0.83
        );

    color: #f7f0e6;
}


.bottle-rose .mini-bottle {
    background:
        rgba(
            213,
            178,
            169,
            0.75
        );
}


.bottle-black .mini-bottle {
    border-color: #333;

    background: #111;

    color: #efede6;
}


.bottle-green .mini-bottle {
    background:
        rgba(
            117,
            133,
            108,
            0.72
        );
}


.bottle-smoke .mini-bottle {
    background:
        rgba(
            86,
            88,
            84,
            0.7
        );

    color: white;
}


/* =========================================
   PRODUCT INFO
========================================= */

.product-info {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 18px;
}


.product-info h3 {
    font-family: var(--font-sans);

    font-size: 0.79rem;

    font-weight: 500;
}


.product-info p {
    margin-top: 7px;

    color: var(--text-muted);

    font-family: var(--font-serif);

    font-size: 0.98rem;

    transition: var(--transition-theme);
}


.price {
    font-size: 0.73rem;
}


.add-button {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 17px;

    padding:
        13px
        0;

    border: 0;

    border-top:
        1px solid
        var(--border);

    background: transparent;

    color: var(--text);

    font-size: 0.67rem;

    transition:
        padding 0.3s ease,
        var(--transition-theme);
}


.add-button:hover {
    padding-left: 8px;
    padding-right: 8px;
}


.add-icon {
    display: block;

    font-size: 1rem;

    transition:
        transform 0.35s ease;
}


.add-button:hover
.add-icon {
    transform:
        rotate(90deg);
}


/* =========================================
   EDITORIAL
========================================= */

.editorial {
    min-height: 760px;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    background: #201f1b;
    color: #f3efe7;
}


.editorial-image {
    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 55%,
            #8a7861,
            #514537 45%,
            #27241f 80%
        );
}


.editorial-image > span {
    position: absolute;

    left: 30px;
    bottom: 25px;

    z-index: 5;

    font-size: 0.53rem;

    letter-spacing: 0.18em;
}


.editorial-object {
    position: absolute;

    border-radius:
        50%
        50%
        42%
        58%
        /
        55%
        45%
        55%
        45%;

    will-change: transform;
}


.object-one {
    width: 310px;
    height: 410px;

    top: 19%;
    left: 28%;

    background:

        linear-gradient(
            120deg,
            rgba(
                255,
                255,
                255,
                0.1
            ),
            rgba(
                15,
                15,
                15,
                0.55
            )
        );

    transform: rotate(-20deg);

    box-shadow:
        25px
        30px
        70px
        rgba(
            0,
            0,
            0,
            0.32
        );

    animation:
        editorialFloatOne
        8s
        ease-in-out
        infinite;
}


.object-two {
    width: 170px;
    height: 220px;

    top: 44%;
    left: 56%;

    background: #bca27d;

    opacity: 0.7;

    transform: rotate(30deg);

    animation:
        editorialFloatTwo
        7s
        ease-in-out
        infinite;
}


.object-three {
    width: 95px;
    height: 95px;

    top: 20%;
    right: 13%;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.2
        );

    animation:
        orbitSmall
        10s
        linear
        infinite;
}


.motion-ready
.editorial:not(.in-view)
.editorial-object {
    animation-play-state: paused;
}


.editorial-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        110px
        80px;
}


.editorial-copy .eyebrow {
    margin-bottom: 40px;

    opacity: 0.65;
}


.editorial-copy h2 {
    font-size: clamp(
        3.5rem,
        5vw,
        5.8rem
    );

    line-height: 0.92;
}


.editorial-copy >
p:not(.eyebrow) {
    max-width: 400px;

    margin-top: 45px;

    color: #c0bbb0;

    font-size: 0.81rem;

    line-height: 1.8;
}


/* =========================================
   LINKS
========================================= */

.text-link {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 45px;

    margin-top: 40px;

    padding-bottom: 5px;

    border-bottom:
        1px solid
        currentColor;

    font-size: 0.68rem;
}


.link-arrow,
.text-link > span:last-child {
    transition:
        transform 0.3s ease;
}


.text-link:hover
.link-arrow,
.text-link:hover >
span:last-child {
    transform:
        translate(
            4px,
            -4px
        );
}


/* =========================================
   FEATURE SECTION
========================================= */

.feature-section {
    padding:
        160px
        0;

    background: var(--bg-alt);

    transition: var(--transition-theme);
}


.feature-quote {
    max-width: 900px;

    font-family: var(--font-serif);

    font-size: clamp(
        3rem,
        5vw,
        5.5rem
    );

    line-height: 1;

    letter-spacing: -0.03em;
}


.feature-quote em {
    display: block;

    margin-left: 120px;
}


.feature-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 70px;

    margin-top: 130px;
    margin-left: 28%;
}


.feature-details > div {
    padding-top: 18px;

    border-top:
        1px solid
        var(--border);

    transition: var(--transition-theme);
}


.feature-details span {
    display: block;

    margin-bottom: 45px;

    font-size: 0.58rem;

    opacity: 0.45;
}


.feature-details h3 {
    margin-bottom: 17px;

    font-family: var(--font-sans);

    font-size: 0.72rem;

    font-weight: 500;
}


.feature-details p {
    color: var(--text-soft);

    font-size: 0.7rem;

    line-height: 1.7;

    transition: var(--transition-theme);
}


/* =========================================
   JOURNAL
========================================= */

.journal {
    padding-top: 150px;
    padding-bottom: 170px;
}


.journal .section-heading {
    margin-bottom: 45px;
}


.section-link {
    margin:
        0
        0
        5px;
}


.journal-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;
}


.journal-image {
    position: relative;

    height: 500px;

    display: flex;

    align-items: flex-end;
    justify-content: flex-end;

    padding: 25px;

    overflow: hidden;
}


.journal-image > span {
    position: relative;

    z-index: 3;

    width: 46px;
    height: 46px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.45
        );

    border-radius: 50%;

    color: white;

    font-size: 0.58rem;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.journal article:hover
.journal-image > span {
    transform: rotate(45deg);

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );
}


.journal-one {
    background:

        radial-gradient(
            circle at 40% 45%,
            #bdac94 0%,
            #857561 30%,
            #3b352d 70%
        );
}


.journal-two {
    background:

        linear-gradient(
            140deg,
            #b6aaa0,
            #82766e 45%,
            #4c4641
        );
}


.journal-shape {
    position: absolute;

    width: 180px;
    height: 310px;

    left: 35%;
    top: 20%;

    border-radius:
        48%
        52%
        42%
        58%;

    background:

        linear-gradient(
            125deg,
            rgba(
                255,
                255,
                255,
                0.22
            ),
            rgba(
                20,
                20,
                20,
                0.5
            )
        );

    box-shadow:
        30px
        40px
        60px
        rgba(
            0,
            0,
            0,
            0.18
        );

    transform: rotate(17deg);

    transition:
        transform 0.8s
        cubic-bezier(.16, 1, .3, 1);
}


.second-shape {
    width: 250px;
    height: 180px;

    left: 24%;
    top: 35%;

    border-radius: 50%;

    background:
        rgba(
            214,
            193,
            166,
            0.4
        );

    transform: rotate(-18deg);
}


.journal article:hover
.journal-shape {
    transform:
        rotate(22deg)
        scale(1.05);
}


.journal article:hover
.second-shape {
    transform:
        rotate(-11deg)
        scale(1.05);
}


.journal-category {
    margin-top: 20px;

    color: var(--text-muted);

    font-size: 0.58rem;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.journal article h3 {
    max-width: 480px;

    margin-top: 12px;

    font-size: 2rem;

    line-height: 1.05;

    transition:
        transform 0.3s ease;
}


.journal article:hover h3 {
    transform:
        translateX(5px);
}


.journal article > a {
    display: inline-block;

    margin-top: 18px;

    padding-bottom: 4px;

    border-bottom:
        1px solid
        currentColor;

    font-size: 0.65rem;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    padding:
        120px
        0;

    background:
        var(--newsletter-bg);

    transition: var(--transition-theme);
}


.newsletter-inner {
    display: grid;

    grid-template-columns:
        1fr
        0.7fr;

    gap: 100px;

    align-items: end;
}


.newsletter h2 {
    max-width: 650px;

    margin-top: 20px;

    font-size: clamp(
        3rem,
        5vw,
        5.6rem
    );

    line-height: 0.95;
}


.newsletter-form {
    display: flex;

    padding-bottom: 13px;

    border-bottom:
        1px solid
        var(--text);

    transition: var(--transition-theme);
}


.newsletter-form input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--text);

    font-size: 0.72rem;
}


.newsletter-form input::placeholder {
    color: var(--text-soft);
}


.newsletter-form button {
    flex-shrink: 0;

    display: flex;

    gap: 12px;

    border: 0;

    background: transparent;

    color: var(--text);

    font-size: 0.66rem;
}


.newsletter-form button span {
    transition:
        transform 0.3s ease;
}


.newsletter-form button:hover
span {
    transform:
        translate(
            3px,
            -3px
        );
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding:
        100px
        0
        35px;

    background: #121210;

    color: #ece8df;
}


.footer-top {
    min-height: 300px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;
}


.footer-logo {
    align-self: start;

    width: fit-content;

    font-family: var(--font-serif);

    font-size: clamp(
        3rem,
        6vw,
        6.5rem
    );

    letter-spacing: 0.14em;

    transition:
        letter-spacing 0.5s ease;
}


.footer-logo:hover {
    letter-spacing: 0.18em;
}


.footer-links {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


.footer-links > div {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-links span {
    margin-bottom: 10px;

    color: #77746c;

    font-size: 0.55rem;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.footer-links a {
    width: fit-content;

    font-size: 0.68rem;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.footer-links a:hover {
    opacity: 0.5;

    transform:
        translateX(4px);
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    border-top:
        1px solid
        #35342f;

    color: #77746c;

    font-size: 0.57rem;
}


.footer-bottom > div {
    display: flex;

    gap: 25px;
}


/* =========================================
   CART OVERLAY
========================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 199;

    background:
        rgba(
            0,
            0,
            0,
            0.55
        );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.35s ease;
}


.cart-overlay.active {
    opacity: 1;

    pointer-events: auto;
}


@media (min-width: 1024px) and (pointer: fine) {

    .header {
        background: var(--header-bg);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }


    .product-badge {
        background:
            rgba(
                245,
                242,
                236,
                0.86
            );

        backdrop-filter: blur(8px);
    }


    .cart-overlay {
        background:
            rgba(
                0,
                0,
                0,
                0.45
            );

        backdrop-filter: blur(3px);
    }

}


/* =========================================
   CART DRAWER
========================================= */

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 200;

    width: min(
        480px,
        100%
    );

    height: 100vh;

    display: flex;

    flex-direction: column;

    background:
        var(--cart-bg);

    color:
        var(--text);

    transform:
        translateX(100%);

    transition:
        transform
        0.45s
        cubic-bezier(.76, 0, .24, 1),
        var(--transition-theme);

    box-shadow:
        -30px
        0
        80px
        rgba(
            0,
            0,
            0,
            0.15
        );
}


.cart-drawer.active {
    transform:
        translateX(0);
}


.cart-header {
    min-height: 90px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        0
        30px;

    border-bottom:
        1px solid
        var(--border);

    transition: var(--transition-theme);
}


.cart-header p {
    font-family: var(--font-serif);

    font-size: 1.7rem;
}


.cart-header span {
    display: block;

    margin-top: 3px;

    color:
        var(--text-muted);

    font-size: 0.6rem;
}


.cart-header button {
    border: 0;

    background: transparent;

    color: var(--text);

    font-family: var(--font-serif);

    font-size: 2rem;

    transition:
        transform 0.3s ease;
}


.cart-header button:hover {
    transform: rotate(90deg);
}


.cart-items {
    flex: 1;

    overflow-y: auto;

    padding:
        15px
        30px;
}


.empty-cart {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;

    text-align: center;
}


.empty-cart p {
    font-family: var(--font-serif);

    font-size: 1.3rem;
}


.empty-cart a {
    padding-bottom: 4px;

    border-bottom:
        1px solid
        currentColor;

    font-size: 0.65rem;
}


.cart-product {
    display: grid;

    grid-template-columns:
        80px
        1fr
        auto;

    gap: 17px;

    padding:
        20px
        0;

    border-bottom:
        1px solid
        var(--border);

    animation:
        cartProductIn
        0.4s ease both;
}


.cart-product-image {
    height: 100px;

    display: grid;
    place-items: center;

    background:
        var(--surface-soft);

    color:
        var(--text);

    font-family: var(--font-serif);

    font-size: 0.8rem;

    transition: var(--transition-theme);
}


.cart-product-details h4 {
    font-family: var(--font-serif);

    font-size: 1.15rem;

    font-weight: 500;
}


.cart-product-details > span {
    display: block;

    margin-top: 7px;

    color:
        var(--text-muted);

    font-size: 0.62rem;
}


.quantity-controls {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 18px;
}


.quantity-controls button {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    background: transparent;

    color: var(--text);

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.quantity-controls button:hover {
    background: var(--text);

    color: var(--bg);
}


.quantity-controls span {
    font-size: 0.63rem;
}


.cart-product-price {
    font-size: 0.68rem;
}


.cart-footer {
    padding:
        25px
        30px
        30px;

    border-top:
        1px solid
        var(--border);

    transition: var(--transition-theme);
}


.subtotal {
    display: flex;

    justify-content: space-between;

    font-size: 0.73rem;
}


.cart-footer > p {
    margin:
        10px
        0
        22px;

    color:
        var(--text-muted);

    font-size: 0.58rem;
}


.checkout-button {
    width: 100%;

    display: flex;

    justify-content: space-between;

    padding:
        17px
        18px;

    border: 0;

    background:
        var(--text);

    color:
        var(--bg);

    font-size: 0.7rem;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        var(--transition-theme);
}


.checkout-button:hover {
    opacity: 0.86;

    transform:
        translateY(-2px);
}


/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
    position: fixed;

    inset: 0;

    z-index: 300;

    padding: 35px;

    background: #141412;
    color: #f4f0e8;

    transform:
        translateY(-100%);

    visibility: hidden;

    transition:
        transform
        0.55s
        cubic-bezier(.76, 0, .24, 1),
        visibility 0.55s;
}


.mobile-nav.active {
    transform:
        translateY(0);

    visibility: visible;
}


.mobile-nav-header {
    display: flex;

    justify-content: space-between;

    font-family: var(--font-serif);

    font-size: 1.4rem;

    letter-spacing: 0.12em;
}


.mobile-nav-header button {
    border: 0;

    background: transparent;

    color: white;

    font-size: 2rem;

    transition:
        transform 0.3s ease;
}


.mobile-nav-header button:hover {
    transform: rotate(90deg);
}


.mobile-nav nav {
    display: flex;

    flex-direction: column;

    margin-top: 100px;
}


.mobile-nav nav a {
    display: flex;

    align-items: center;

    gap: 20px;

    padding:
        12px
        0;

    border-bottom:
        1px solid
        #3c3b36;

    font-family:
        var(--font-serif);

    font-size: clamp(
        3rem,
        11vw,
        5rem
    );

    transition:
        padding-left 0.3s ease;
}


.mobile-nav nav a:hover {
    padding-left: 10px;
}


.mobile-nav nav a span {
    font-family:
        var(--font-sans);

    font-size: 0.55rem;

    opacity: 0.45;
}


.mobile-nav-footer {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}


.mobile-nav-footer p {
    color: #88857d;

    font-size: 0.63rem;
}


.mobile-theme-toggle {
    display: flex;

    align-items: center;

    gap: 10px;

    border: 0;

    background: transparent;

    color: #f4f0e8;

    font-size: 0.62rem;
}


/* =========================================
   TOAST
========================================= */

.toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    z-index: 400;

    padding:
        13px
        22px;

    background: var(--text);
    color: var(--bg);

    font-size: 0.63rem;

    opacity: 0;

    pointer-events: none;

    transform:
        translate(
            -50%,
            20px
        );

    box-shadow:
        0 15px 40px
        rgba(
            0,
            0,
            0,
            0.18
        );

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        var(--transition-theme);
}


.toast.active {
    opacity: 1;

    transform:
        translate(
            -50%,
            0
        );
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {
    opacity: 1;

    transform: none;
}


.reveal-ready
.reveal:not(.visible) {
    opacity: 0;

    transform:
        translateY(42px);

    transition:
        opacity
        0.85s
        cubic-bezier(.16, 1, .3, 1),

        transform
        0.85s
        cubic-bezier(.16, 1, .3, 1);
}


.reveal-ready
.reveal.visible {
    opacity: 1;

    transform: none;
}


.product-grid
.product-card:nth-child(2) {
    transition-delay: 0.06s;
}


.product-grid
.product-card:nth-child(3) {
    transition-delay: 0.12s;
}


.product-grid
.product-card:nth-child(5) {
    transition-delay: 0.06s;
}


.product-grid
.product-card:nth-child(6) {
    transition-delay: 0.12s;
}


/* =========================================
   KEYFRAMES
========================================= */

@keyframes heroReveal {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes bottleFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-0.5deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(0.5deg);
    }

}


@keyframes heroCircleFloat {

    0%,
    100% {
        transform:
            translate(
                0,
                0
            )
            scale(1);
    }

    50% {
        transform:
            translate(
                8px,
                -10px
            )
            scale(1.02);
    }

}


@keyframes orbitRotate {

    from {
        transform:
            rotate(-24deg);
    }

    to {
        transform:
            rotate(336deg);
    }

}


@keyframes marquee {

    from {
        transform:
            translate3d(0, 0, 0);
    }

    to {
        transform:
            translate3d(-50%, 0, 0);
    }

}


@keyframes editorialFloatOne {

    0%,
    100% {
        transform:
            rotate(-20deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-16deg)
            translateY(-16px);
    }

}


@keyframes editorialFloatTwo {

    0%,
    100% {
        transform:
            rotate(30deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(34deg)
            translateY(13px);
    }

}


@keyframes orbitSmall {

    from {
        transform:
            rotate(0)
            translateX(10px)
            rotate(0);
    }

    to {
        transform:
            rotate(360deg)
            translateX(10px)
            rotate(-360deg);
    }

}


@keyframes announcementFade {

    from {
        opacity: 0;

        letter-spacing: 0.2em;
    }

    to {
        opacity: 1;

        letter-spacing: 0.12em;
    }

}


@keyframes cartProductIn {

    from {
        opacity: 0;

        transform:
            translateX(15px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .container {
        width:
            min(
                calc(100% - 50px),
                1380px
            );
    }


    .hero-content {
        grid-template-columns:
            1fr
            1fr;
    }


    .hero-copy {
        padding-right: 35px;
    }


    .product-image {
        height: 390px;
    }


    .editorial-copy {
        padding:
            80px
            50px;
    }


    .feature-details {
        margin-left: 10%;
    }

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 800px) {

    .container {
        width:
            calc(
                100% - 36px
            );
    }


    .desktop-nav,
    .search-button {
        display: none;
    }


    .header {
        height: 68px;
    }


    .header-inner {
        grid-template-columns:
            1fr
            auto
            1fr;
    }


    .menu-button {
        display: flex;

        flex-direction: column;

        gap: 5px;

        width: 27px;

        border: 0;

        background: transparent;
    }


    .menu-button span {
        width: 100%;
        height: 1px;

        background:
            var(--text);

        transition:
            var(--transition-theme);
    }


    .logo {
        font-size: 1.25rem;
    }


    .header-actions {
        gap: 12px;
    }


    .theme-toggle {
        width: 34px;
        height: 34px;
    }


    .cart-button {
        font-size: 0.66rem;
    }


    /* HERO */

    .hero-content {
        width: 100%;

        display: flex;

        flex-direction: column;

        min-height: unset;
    }


    .hero-copy {
        padding:
            85px
            18px
            70px;
    }


    .hero h1 {
        font-size: clamp(
            4.3rem,
            21vw,
            7rem
        );
    }


    .hero h1 em {
        margin-left: 35px;
    }


    .hero-description {
        max-width: 340px;

        margin-top: 35px;

        font-size: 1.1rem;
    }


    .hero-art {
        height: 600px;
    }


    .hero-circle {
        width: 360px;
        height: 360px;
    }


    .hero-orbit {
        width: 430px;
        height: 240px;
    }


    /* INTRO */

    .intro {
        padding-top: 100px;
        padding-bottom: 110px;
    }


    .intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .intro h2 {
        font-size: 3.6rem;
    }


    .intro h2 em {
        margin-left: 35px;
    }


    /* PRODUCTS */

    .shop {
        padding-bottom: 110px;
    }


    .section-heading h2 {
        font-size: 2.7rem;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            50px
            12px;
    }


    .product-image {
        height: 330px;
    }


    /* EDITORIAL */

    .editorial {
        grid-template-columns: 1fr;
    }


    .editorial-image {
        min-height: 570px;
    }


    .editorial-copy {
        padding:
            80px
            25px;
    }


    /* FEATURES */

    .feature-section {
        padding:
            100px
            0;
    }


    .feature-quote {
        font-size: 3.5rem;
    }


    .feature-quote em {
        margin-left: 35px;
    }


    .feature-details {
        grid-template-columns: 1fr;

        gap: 45px;

        margin:
            80px
            0
            0;
    }


    .feature-details span {
        margin-bottom: 20px;
    }


    /* JOURNAL */

    .journal {
        padding-top: 100px;
        padding-bottom: 110px;
    }


    .journal-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    /* NEWSLETTER */

    .newsletter {
        padding:
            90px
            0;
    }


    .newsletter-inner {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;

        gap: 70px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

    .announcement {
        font-size: 0.52rem;
    }


    .hero-art {
        height: 500px;
    }


    .hero-bottle {
        scale: 0.85;
    }


    .hero-detail {
        left: 20px;
        bottom: 20px;
    }


    .hero-edition {
        right: 15px;
    }


    .hero-orbit {
        width: 340px;
        height: 190px;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    .product-image {
        height: 440px;
    }


    .product-info h3 {
        font-size: 0.83rem;
    }


    .editorial-image {
        min-height: 470px;
    }


    .object-one {
        width: 220px;
        height: 300px;
    }


    .object-two {
        width: 120px;
        height: 160px;
    }


    .journal-image {
        height: 400px;
    }


    .newsletter h2 {
        font-size: 3.2rem;
    }


    .footer-links {
        grid-template-columns:
            1fr
            1fr;

        gap: 50px;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 15px;
    }


    .mobile-nav {
        padding: 25px;
    }


    .mobile-nav-footer {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


    .mobile-nav-footer p {
        display: none;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .hero-animate {
        animation-duration: 0.2s;
    }


    .hero-circle {
        animation-name:
            heroCircleFloatReduced;

        animation-duration: 14s;
    }


    .hero-bottle {
        animation-name:
            bottleFloatReduced;

        animation-duration: 12s;
    }


    .object-one {
        animation-name:
            editorialFloatOneReduced;

        animation-duration: 16s;
    }


    .object-two {
        animation-name:
            editorialFloatTwoReduced;

        animation-duration: 16s;
    }


    .hero-orbit,
    .object-three {
        animation: none;
    }


    .reveal-ready
    .reveal:not(.visible),

    .reveal {
        opacity: 1;

        transform: none;

        transition:
            opacity 0.2s ease;
    }

}


@keyframes bottleFloatReduced {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-3px);
    }

}


@keyframes heroCircleFloatReduced {

    0%,
    100% {
        transform:
            translate(0, 0)
            scale(1);
    }

    50% {
        transform:
            translate(2px, -3px)
            scale(1.005);
    }

}


@keyframes editorialFloatOneReduced {

    0%,
    100% {
        transform:
            rotate(-20deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-20deg)
            translateY(-3px);
    }

}


@keyframes editorialFloatTwoReduced {

    0%,
    100% {
        transform:
            rotate(30deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(30deg)
            translateY(3px);
    }

}
