/* =========================================================
   NO ALTERNATIVE — HOMEPAGE
   Split from the previous master stylesheet for maintainability.
   ========================================================= */

.home-hero {
    position: relative;
    min-height: calc(100svh - 82px);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(12, 62, 130, 0.18),
            transparent 34%
        ),
        var(--color-black);
}

.home-hero__background {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.home-hero__glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    opacity: 0.35;
}

.home-hero__glow--one {
    width: 420px;
    height: 420px;

    top: 10%;
    right: 10%;

    background: rgba(0, 94, 255, 0.28);
}

.home-hero__glow--two {
    width: 260px;
    height: 260px;

    right: 34%;
    bottom: 10%;

    background: rgba(16, 54, 120, 0.16);
}

.home-hero__inner {
    position: relative;
    z-index: 2;

    flex: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    align-items: center;

    gap: clamp(48px, 7vw, 130px);

    padding-top: clamp(70px, 9vh, 120px);
    padding-bottom: 60px;
}

.home-hero__content {
    position: relative;
    z-index: 3;
}

.home-hero__eyebrow {
    margin: 0 0 32px;

    color: var(--color-muted);

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

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-hero__title {
    max-width: none;

    margin: 0;

    font-size: clamp(72px, 10vw, 168px);
    font-weight: 500;

    line-height: 0.76;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}

.home-hero__title-line {
    display: block;

    overflow: hidden;

    padding-right: 0.08em;
    padding-bottom: 0.08em;
}

.home-hero__title-line > span {
    display: block;
}

.home-hero__bottom {
    max-width: 560px;

    margin-top: clamp(48px, 7vh, 88px);

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

    align-items: end;

    gap: 48px;
}

.home-hero__description {
    max-width: 300px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.65;
}

.home-hero__visual {
    position: relative;

    min-height: 620px;

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

.home-hero__product-stage {
    position: relative;

    width: min(100%, 560px);
    aspect-ratio: 4 / 5;

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

.home-hero__product-stage::before {
    content: "";

    position: absolute;

    width: 82%;
    aspect-ratio: 1;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero__product-stage::after {
    content: "";

    position: absolute;

    width: 58%;
    aspect-ratio: 1;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-hero__product-placeholder {
    position: relative;
    z-index: 2;

    width: 55%;
    aspect-ratio: 0.76;

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

    border: 1px solid rgba(255, 255, 255, 0.14);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.01)
        );

    backdrop-filter: blur(12px);

    transform: rotate(6deg);
}

.home-hero__product-placeholder span {
    color: rgba(255, 255, 255, 0.35);

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

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-hero__footer {
    position: relative;
    z-index: 3;

    min-height: 70px;

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

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

.home-hero__index,
.home-hero__scroll {
    color: rgba(255, 255, 255, 0.45);

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

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero__scroll {
    display: flex;
    align-items: center;

    gap: 16px;
}

.home-hero__scroll-line {
    position: relative;

    width: 55px;
    height: 1px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.18);
}

.home-hero__scroll-line-indicator {
    position: absolute;
    inset: 0;

    display: block;

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

.home-intro {
    min-height: 90vh;

    display: flex;
    align-items: center;

    background: #080808;

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

.home-intro__inner {
    padding-top: 140px;
    padding-bottom: 140px;
}

.home-intro__label {
    margin: 0 0 48px;

    color: var(--color-muted);

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

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.home-intro__statement {
    max-width: 1150px;

    margin: 0;

    font-size: clamp(48px, 8vw, 126px);
    font-weight: 500;

    line-height: 0.92;

    letter-spacing: -0.06em;
}

@media (max-width: 1100px) {
.home-hero__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.7fr);

        gap: 30px;
    }

.home-hero__title {
        font-size: clamp(64px, 10vw, 110px);
    }

.home-hero__bottom {
        grid-template-columns: 1fr;

        gap: 32px;
    }

.home-hero__visual {
        min-height: 500px;
    }
}

@media (max-width: 900px) {
.home-hero {
        min-height: calc(100svh - 72px);
    }

.home-hero__inner {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 24px;

        padding-top: 56px;
        padding-bottom: 48px;
    }

.home-hero__eyebrow {
        margin-bottom: 26px;
    }

.home-hero__title {
        font-size: clamp(62px, 20vw, 110px);

        line-height: 0.78;
    }

.home-hero__bottom {
        margin-top: 38px;
    }

.home-hero__visual {
        min-height: auto;

        margin-top: 18px;
    }

.home-hero__product-stage {
        width: min(76vw, 420px);

        margin-inline: auto;
    }

.home-hero__footer {
        min-height: 64px;
    }

.home-hero__index {
        display: none;
    }

.home-hero__scroll {
        margin-left: auto;
    }

.home-intro {
        min-height: 75vh;
    }

.home-intro__inner {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 520px) {
.home-hero__title {
        font-size: clamp(54px, 19vw, 82px);
    }

.home-hero__description {
        max-width: 270px;
    }

.home-hero__product-stage {
        width: 82vw;
    }

.home-intro__statement {
        font-size: clamp(44px, 14vw, 72px);
    }
}

.home-drop {
    position: relative;

    padding-top: clamp(110px, 12vw, 190px);
    padding-bottom: clamp(110px, 12vw, 180px);

    background: #050505;

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

.home-drop__header {
    margin-bottom: clamp(60px, 7vw, 110px);

    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(260px, 0.75fr);

    align-items: end;

    gap: clamp(50px, 8vw, 140px);
}

.home-drop__eyebrow {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.42);

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

    line-height: 1;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.home-drop__title {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(68px, 8.5vw, 138px);
    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.home-drop__title span {
    display: block;

    color: rgba(255, 255, 255, 0.28);
}

.home-drop__header-right {
    padding-bottom: 8px;
}

.home-drop__description {
    max-width: 350px;

    margin: 0 0 38px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 13px;

    line-height: 1.7;
}

.home-drop__view-all {
    width: 100%;

    max-width: 290px;

    padding: 16px 0;

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

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

    color: var(--color-white);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    transition:
        opacity 200ms ease,
        padding-left 250ms ease;
}

.home-drop__view-all:hover {
    padding-left: 8px;

    opacity: 0.7;
}

.home-drop__grid {
    display: grid;

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

    gap: clamp(12px, 1.5vw, 24px);
}

.home-drop__footer {
    margin-top: clamp(75px, 8vw, 120px);

    padding-top: 20px;

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

    gap: 30px;

    border-top: 1px solid var(--color-border);

    color: rgba(255, 255, 255, 0.30);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.home-drop__empty {
    padding: 70px 0;

    display: grid;

    gap: 14px;

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

.home-drop__empty span {
    color: rgba(255, 255, 255, 0.2);

    font-size: 9px;

    letter-spacing: 0.2em;
}

.home-drop__empty p {
    margin: 0;
}

@media (max-width: 1100px) {
.home-drop__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(240px, 0.6fr);

        gap: 50px;
    }

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

        column-gap: 18px;
        row-gap: 70px;
    }
}

@media (max-width: 700px) {
.home-drop {
        padding-top: 100px;
        padding-bottom: 100px;
    }

.home-drop__header {
        grid-template-columns: 1fr;

        gap: 42px;

        margin-bottom: 58px;
    }

.home-drop__title {
        font-size: clamp(
            62px,
            19vw,
            92px
        );
    }

.home-drop__description {
        max-width: 300px;
    }

.home-drop__view-all {
        max-width: none;
    }

.home-drop__grid {
        grid-template-columns: 1fr;

        gap: 62px;
    }

.home-drop__footer {
        flex-direction: column;

        gap: 8px;
    }
}

.home-categories {
    position: relative;

    padding-top: clamp(110px, 12vw, 190px);
    padding-bottom: clamp(110px, 12vw, 190px);

    background: #0a0a0a;

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

.home-categories__header {
    margin-bottom: clamp(60px, 7vw, 110px);
}

.home-categories__eyebrow {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.38);

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

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.home-categories__heading-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(250px, 0.65fr);

    align-items: end;

    gap: clamp(50px, 8vw, 140px);
}

.home-categories__title {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(65px, 8vw, 132px);
    font-weight: 500;

    line-height: 0.8;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.home-categories__title span {
    display: block;

    color: rgba(255, 255, 255, 0.28);
}

.home-categories__description {
    max-width: 360px;

    margin: 0;

    padding-bottom: 8px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 13px;

    line-height: 1.75;
}

.home-categories__grid {
    display: grid;

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

    gap: 18px;
}

.category-card {
    grid-column: span 4;

    min-width: 0;
}

.category-card:nth-child(1),
.category-card:nth-child(4) {
    grid-column: span 8;
}

.category-card:nth-child(2),
.category-card:nth-child(3),
.category-card:nth-child(5),
.category-card:nth-child(6) {
    grid-column: span 4;
}

.category-card__link {
    display: block;
}

.category-card__media {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background: #111;
}

.category-card:nth-child(1) .category-card__media,
.category-card:nth-child(4) .category-card__media {
    min-height: 620px;
}

.category-card__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.001);

    transition:
        transform 1s cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),
        filter 600ms ease;
}

.category-card:hover .category-card__image {
    transform: scale(1.055);
}

.category-card__shade {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.06) 20%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.78) 100%
        );

    transition: background 500ms ease;
}

.category-card:hover .category-card__shade {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02) 15%,
            rgba(0, 0, 0, 0.10) 45%,
            rgba(0, 0, 0, 0.84) 100%
        );
}

.category-card__number {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 3;

    color: rgba(255, 255, 255, 0.6);

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

    letter-spacing: 0.18em;
}

.category-card__content {
    position: absolute;

    right: 24px;
    bottom: 24px;
    left: 24px;

    z-index: 3;
}

.category-card__count {
    display: block;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.55);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.category-card__title {
    max-width: 85%;

    margin: 0;

    color: var(--color-white);

    font-size: clamp(28px, 3.2vw, 58px);
    font-weight: 500;

    line-height: 0.92;

    letter-spacing: -0.045em;

    text-transform: uppercase;
}

.category-card__arrow {
    position: absolute;

    right: 0;
    bottom: 0;

    color: var(--color-white);

    font-size: 22px;

    transform: translate(0, 0);

    transition:
        transform 300ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.category-card:hover .category-card__arrow {
    transform: translate(5px, -5px);
}

.home-categories__bottom {
    margin-top: clamp(65px, 8vw, 110px);

    padding-top: 22px;

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

    gap: 40px;

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

.home-categories__bottom p {
    max-width: 380px;

    margin: 0;

    color: rgba(255, 255, 255, 0.38);

    font-size: 11px;

    line-height: 1.7;
}

.home-categories__shop-all {
    min-width: 270px;

    padding-bottom: 12px;

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

    gap: 30px;

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

    color: var(--color-white);

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

    letter-spacing: 0.16em;

    text-transform: uppercase;

    transition:
        opacity 180ms ease,
        padding-left 250ms ease;
}

.home-categories__shop-all:hover {
    padding-left: 8px;

    opacity: 0.65;
}

.home-categories__empty {
    padding: 70px 0;

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1000px) {
.home-categories__heading-row {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(220px, 0.55fr);

        gap: 40px;
    }

.category-card,
    .category-card:nth-child(1),
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4),
    .category-card:nth-child(5),
    .category-card:nth-child(6) {
        grid-column: span 6;
    }

.category-card__media,
    .category-card:nth-child(1) .category-card__media,
    .category-card:nth-child(4) .category-card__media {
        min-height: 520px;
    }
}

@media (max-width: 700px) {
.home-categories {
        padding-top: 100px;
        padding-bottom: 100px;
    }

.home-categories__heading-row {
        grid-template-columns: 1fr;

        gap: 34px;
    }

.home-categories__title {
        font-size: clamp(
            58px,
            18vw,
            88px
        );
    }

.home-categories__description {
        max-width: 310px;
    }

.home-categories__grid {
        display: block;
    }

.category-card {
        margin-bottom: 18px;
    }

.category-card__media,
    .category-card:nth-child(1) .category-card__media,
    .category-card:nth-child(4) .category-card__media {
        min-height: 500px;
    }

.category-card__title {
        font-size: clamp(
            34px,
            11vw,
            52px
        );
    }

.home-categories__bottom {
        flex-direction: column;
    }

.home-categories__shop-all {
        width: 100%;
        min-width: 0;
    }
}

.home-brands {
    position: relative;

    padding-top: clamp(110px, 12vw, 190px);
    padding-bottom: clamp(110px, 12vw, 190px);

    background: #050505;

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

.home-brands__header {
    margin-bottom: clamp(70px, 8vw, 120px);
}

.home-brands__eyebrow {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.38);

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

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.home-brands__heading-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(250px, 0.65fr);

    align-items: end;

    gap: clamp(50px, 8vw, 140px);
}

.home-brands__title {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(65px, 8vw, 132px);
    font-weight: 500;

    line-height: 0.8;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.home-brands__title span {
    display: block;

    color: rgba(255, 255, 255, 0.26);
}

.home-brands__description {
    max-width: 360px;

    margin: 0;

    padding-bottom: 8px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 13px;

    line-height: 1.75;
}

.home-brands__list {
    border-top: 1px solid var(--color-border);
}

.brand-row {
    min-height: 118px;

    display: grid;

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

    align-items: center;

    gap: 24px;

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

    transition:
        padding-left 400ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),
        background 250ms ease;
}

.brand-row:hover {
    padding-left: 18px;

    background: rgba(255, 255, 255, 0.025);
}

.brand-row__number {
    color: rgba(255, 255, 255, 0.28);

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

    letter-spacing: 0.18em;
}

.brand-row__name {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(30px, 4vw, 66px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.045em;

    text-transform: uppercase;
}

.brand-row__count {
    color: rgba(255, 255, 255, 0.35);

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

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.brand-row__arrow {
    justify-self: end;

    color: rgba(255, 255, 255, 0.45);

    font-size: 19px;

    transition:
        color 200ms ease,
        transform 300ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.brand-row:hover .brand-row__arrow {
    color: var(--color-white);

    transform: translate(5px, -5px);
}

.home-brands__empty {
    padding: 70px 0;

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    color: rgba(255, 255, 255, 0.4);

    font-size: 12px;
}

@media (max-width: 900px) {
.home-brands__heading-row {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(220px, 0.55fr);

        gap: 40px;
    }

.brand-row {
        grid-template-columns:
            50px
            minmax(0, 1fr)
            100px
            28px;

        gap: 16px;
    }
}

@media (max-width: 700px) {
.home-brands {
        padding-top: 100px;
        padding-bottom: 100px;
    }

.home-brands__heading-row {
        grid-template-columns: 1fr;

        gap: 34px;
    }

.home-brands__title {
        font-size: clamp(
            58px,
            18vw,
            88px
        );
    }

.brand-row {
        min-height: 105px;

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

        gap: 12px;
    }

.brand-row__count {
        display: none;
    }

.brand-row__name {
        font-size: clamp(
            28px,
            9vw,
            48px
        );
    }

.brand-row:hover {
        padding-left: 8px;
    }
}

.home-editorial {
    position: relative;

    padding-top: clamp(80px, 9vw, 140px);
    padding-bottom: clamp(100px, 12vw, 180px);

    overflow: hidden;

    background: #080808;

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

.home-editorial__header {
    padding-bottom: 20px;

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

    gap: 30px;

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

.home-editorial__index,
.home-editorial__location {
    color: rgba(255, 255, 255, 0.34);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.home-editorial__statement-wrap {
    position: relative;

    z-index: 4;

    padding-top: clamp(70px, 8vw, 120px);
}

.home-editorial__statement {
    position: relative;

    z-index: 3;

    max-width: 1250px;

    margin: 0;

    color: var(--color-white);

    font-size: clamp(70px, 10.3vw, 170px);
    font-weight: 500;

    line-height: 0.76;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}

.home-editorial__statement-line {
    display: block;

    overflow: hidden;

    padding-right: 0.08em;
    padding-bottom: 0.08em;
}

.home-editorial__statement-line > span {
    display: block;
}

.home-editorial__statement-line:nth-child(2) > span {
    color: rgba(255, 255, 255, 0.58);
}

.home-editorial__statement-line:nth-child(3) > span {
    color: rgba(255, 255, 255, 0.24);
}

.home-editorial__composition {
    position: relative;

    margin-top: clamp(75px, 10vw, 150px);

    display: grid;

    grid-template-columns:
        minmax(260px, 0.65fr)
        minmax(0, 1.35fr);

    align-items: start;

    gap: clamp(60px, 10vw, 170px);
}

.home-editorial__copy {
    position: sticky;

    top: 130px;

    padding-top: 20px;
}

.home-editorial__lead {
    max-width: 420px;

    margin: 0 0 28px;

    color: var(--color-white);

    font-size: clamp(20px, 2vw, 30px);
    font-weight: 400;

    line-height: 1.35;

    letter-spacing: -0.025em;
}

.home-editorial__body {
    max-width: 380px;

    margin: 0 0 48px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 13px;

    line-height: 1.75;
}

.home-editorial__cta {
    max-width: 290px;
}

.home-editorial__visual {
    position: relative;

    min-width: 0;
}

.home-editorial__image-link {
    position: relative;

    display: block;

    min-height: 760px;

    overflow: hidden;

    background: #0e0e0e;
}

.home-editorial__image {
    position: absolute;

    inset: -7% 0;

    width: 100%;
    height: 114%;

    object-fit: cover;

    transform: scale(1.03);

    will-change: transform;
}

.home-editorial__image-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0.55) 100%
        );
}

.home-editorial__placeholder {
    position: absolute;

    inset: 0;

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

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.01) 55%
        );
}

.home-editorial__placeholder span {
    color: rgba(255, 255, 255, 0.25);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.home-editorial__visual-label {
    position: absolute;

    right: 24px;
    bottom: 24px;
    left: 24px;

    z-index: 3;

    padding-top: 16px;

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

    gap: 30px;

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

    color: rgba(255, 255, 255, 0.72);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.home-editorial__visual-label span:last-child {
    font-size: 15px;

    transition:
        transform 300ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.home-editorial__image-link:hover
.home-editorial__visual-label span:last-child {
    transform: translate(5px, -5px);
}

.home-editorial__manifesto {
    margin-top: clamp(100px, 13vw, 190px);

    padding-top: 28px;

    display: grid;

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

    align-items: end;

    gap: 40px;

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

.home-editorial__manifesto-number {
    align-self: start;

    color: rgba(255, 255, 255, 0.2);

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

    letter-spacing: 0.18em;
}

.home-editorial__manifesto-copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: clamp(24px, 3vw, 48px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.home-editorial__manifesto-copy p + p {
    margin-top: 4px;
}

.home-editorial__manifesto-copy p:last-child {
    color: rgba(255, 255, 255, 0.25);
}

.home-editorial__manifesto-mark {
    color: rgba(255, 255, 255, 0.07);

    font-size: clamp(90px, 13vw, 200px);
    font-weight: 700;

    line-height: 0.7;

    letter-spacing: -0.09em;
}

@media (max-width: 1000px) {
.home-editorial__statement {
        font-size: clamp(
            64px,
            11vw,
            110px
        );
    }

.home-editorial__composition {
        grid-template-columns:
            minmax(230px, 0.6fr)
            minmax(0, 1fr);

        gap: 50px;
    }

.home-editorial__image-link {
        min-height: 620px;
    }

.home-editorial__manifesto {
        grid-template-columns:
            60px
            minmax(0, 1fr)
            auto;
    }
}

@media (max-width: 700px) {
.home-editorial {
        padding-top: 70px;
        padding-bottom: 100px;
    }

.home-editorial__location {
        display: none;
    }

.home-editorial__statement-wrap {
        padding-top: 60px;
    }

.home-editorial__statement {
        font-size: clamp(
            54px,
            17vw,
            82px
        );

        line-height: 0.8;
    }

.home-editorial__composition {
        margin-top: 70px;

        grid-template-columns: 1fr;

        gap: 60px;
    }

.home-editorial__copy {
        position: static;

        padding-top: 0;
    }

.home-editorial__lead {
        max-width: 340px;
    }

.home-editorial__image-link {
        min-height: 560px;
    }

.home-editorial__manifesto {
        margin-top: 90px;

        grid-template-columns:
            1fr
            auto;

        gap: 30px;
    }

.home-editorial__manifesto-number {
        display: none;
    }

.home-editorial__manifesto-mark {
        font-size: clamp(
            70px,
            22vw,
            120px
        );
    }
}

@media (max-width: 480px) {
.home-editorial__image-link {
        min-height: 480px;
    }

.home-editorial__manifesto {
        grid-template-columns: 1fr;
    }

.home-editorial__manifesto-mark {
        justify-self: end;

        margin-top: 30px;
    }
}

.button-link:not(.home-hero .button-link) {
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
}

.home-hero {
    min-height: calc(100svh - 64px);
    background:
        radial-gradient(circle at 72% 42%, rgba(15, 94, 130, 0.19), transparent 35%),
        var(--color-black);
}

.home-hero__inner {
    gap: clamp(36px, 5vw, 76px);
    padding-top: clamp(58px, 7vh, 88px);
    padding-bottom: 46px;
}

.home-hero__eyebrow {
    margin-bottom: 18px;
    color: var(--color-text-dim);
    font-size: 10px;
    letter-spacing: 0.06em;
}

.home-hero__title {
    font-family: var(--font-display);
    font-size: clamp(58px, 9vw, 132px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.005em;
}

.home-hero__title-line:last-child > span {
    color: var(--color-accent-bright);
}

.home-hero__bottom {
    margin-top: clamp(26px, 4vh, 48px);
    gap: 28px;
}

.home-hero__description {
    color: var(--color-text-dim);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.7;
}

.home-hero__visual {
    min-height: 500px;
}

.home-hero__product-placeholder {
    border-color: var(--color-border);
    background: var(--color-surface);
}

.home-hero__product-placeholder span {
    color: var(--color-muted);
    font-family: var(--font-mono);
}

.home-hero__footer {
    min-height: 54px;
}

.home-hero__index,
.home-hero__scroll {
    color: var(--color-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
}

.home-hero__scroll-line-indicator {
    background: var(--color-accent-bright);
}

.home-intro,
.home-categories,
.home-editorial {
    background: var(--color-surface);
}

.home-drop,
.home-brands {
    background: var(--color-black);
}

.home-intro {
    min-height: auto;
}

.home-intro__inner {
    padding-top: var(--space-section-large);
    padding-bottom: var(--space-section-large);
}

.home-intro__label {
    margin-bottom: 26px;
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
}

.home-intro__statement {
    max-width: 1000px;
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
}

.home-drop,
.home-categories,
.home-brands {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

.home-editorial {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section-large);
}

.home-drop__header,
.home-categories__header,
.home-brands__header {
    margin-bottom: var(--space-heading);
}

.home-drop__title,
.home-categories__title,
.home-brands__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0.01em;
}

.home-drop__title span,
.home-categories__title span,
.home-brands__title span {
    color: var(--color-accent-bright);
}

.home-drop__eyebrow,
.home-categories__eyebrow,
.home-brands__eyebrow {
    margin-bottom: 16px;
    color: var(--color-muted);
    letter-spacing: 0.06em;
}

.home-drop__description,
.home-categories__description,
.home-brands__description {
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 13px;
}

.home-drop__footer,
.home-categories__bottom {
    margin-top: var(--space-section);
}

.home-drop__view-all,
.home-categories__shop-all {
    color: var(--color-accent-bright);
    border-color: var(--color-accent);
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
}

.home-drop__grid,
.products,
.woocommerce ul.products {
    gap: 1px;
}

.home-categories__grid {
    gap: 1px;
}

.category-card__media {
    background: var(--color-black);
}

.category-card__count,
.category-card__number {
    color: var(--color-muted);
    font-family: var(--font-mono);
}

.category-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.brand-row {
    min-height: 88px;
}

.brand-row__number,
.brand-row__count {
    color: var(--color-muted);
    font-family: var(--font-mono);
}

.brand-row__name {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.brand-row:hover {
    background: var(--color-surface);
}

.brand-row:hover .brand-row__arrow,
.category-card:hover .category-card__arrow,
.product-card:hover .product-card__arrow {
    color: var(--color-accent-bright);
}

.home-editorial__statement-wrap {
    padding-top: clamp(44px, 5vw, 70px);
}

.home-editorial__statement {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.005em;
}

.home-editorial__statement-line:nth-child(2) > span {
    color: var(--color-text-dim);
}

.home-editorial__statement-line:nth-child(3) > span {
    color: var(--color-accent-bright);
}

@media (max-width: 900px) {
.home-hero {
        min-height: calc(100svh - 64px);
    }

.home-hero__inner {
        padding-top: 46px;
        padding-bottom: 38px;
    }

.home-intro__inner {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

@media (max-width: 700px) {
.home-hero__title {
        font-size: clamp(50px, 17vw, 82px);
    }

.home-drop__title,
    .home-categories__title,
    .home-brands__title {
        font-size: clamp(32px, 10vw, 46px);
    }
}

.home-hero {
    min-height: calc(100svh - 64px);
}

.home-hero__inner {
    gap: clamp(42px, 6vw, 100px);
    padding-top: 40px;
    padding-bottom: 42px;
}

.home-hero__eyebrow {
    margin-bottom: 20px;
    color: var(--color-text-dim);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
}

.home-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.005em;
}

.home-hero__title-line:last-child > span {
    color: var(--color-accent-bright);
}

.home-hero__bottom {
    margin-top: 34px;
    gap: 34px;
}

.home-hero__description {
    color: var(--color-text-dim);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.65;
}

.home-hero .button-link {
    width: auto;
    min-width: 205px;
    min-height: 48px;
    padding: 14px 18px !important;
    border: 1px solid var(--color-accent) !important;
    background: var(--color-accent) !important;
    color: var(--color-on-accent) !important;
}

.home-hero .button-link:hover {
    background: var(--color-accent-bright) !important;
    border-color: var(--color-accent-bright) !important;
    opacity: 1;
}

.home-hero__visual {
    min-height: 560px;
}

.home-hero__product-stage {
    width: min(100%, 600px);
}

.home-hero__product-stage::before {
    border-color: rgba(28, 143, 199, 0.16);
}

.home-hero__product-stage::after {
    border-color: rgba(28, 143, 199, 0.09);
}

.home-hero__product-placeholder {
    width: 58%;
    background:
        linear-gradient(
            145deg,
            rgba(234, 242, 246, 0.055),
            rgba(15, 94, 130, 0.035)
        ),
        var(--color-surface);
    border-color: rgba(234, 242, 246, 0.16);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.home-hero__product-placeholder span {
    color: var(--color-muted);
    font-family: var(--font-mono);
}

.home-hero__footer {
    min-height: 52px;
}

.home-hero__scroll-line-indicator {
    background: var(--color-accent-bright);
}

.home-intro {
    min-height: auto;
    background: var(--color-surface);
}

.home-intro__inner {
    position: relative;
    padding-top: 76px;
    padding-bottom: 76px;
}

.home-intro__label {
    margin-bottom: 26px;
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.home-intro__statement {
    max-width: 900px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5.8vw, 74px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
}

.home-intro__statement span,
.home-intro__statement em,
.home-intro__statement strong {
    color: var(--color-accent-bright);
    font-style: normal;
    font-weight: 400;
}

.home-drop,
.home-categories,
.home-brands,
.home-editorial {
    padding-top: 72px;
    padding-bottom: 72px;
}

.home-drop__header,
.home-categories__header,
.home-brands__header {
    margin-bottom: 34px;
}

.home-drop__eyebrow,
.home-categories__eyebrow,
.home-brands__eyebrow {
    margin-bottom: 14px;
    color: var(--color-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
}

.home-drop__title,
.home-categories__title,
.home-brands__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0.01em;
}

.home-drop__title span,
.home-categories__title span,
.home-brands__title span {
    color: var(--color-accent-bright);
}

.home-drop__description,
.home-categories__description,
.home-brands__description {
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 10.5px;
    line-height: 1.7;
}

.home-drop {
    background: var(--color-black);
}

.home-drop__header {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.44fr);
    gap: clamp(30px, 5vw, 74px);
}

.home-drop__header-right {
    padding-bottom: 0;
}

.home-drop__description {
    margin-bottom: 18px;
}

.home-drop__view-all {
    max-width: 220px;
    padding: 10px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(28, 143, 199, 0.55);
    color: var(--color-accent-bright);
    font-family: var(--font-mono);
    font-size: 9.5px;
}

.home-drop__grid {
    gap: 1px;
    background: var(--color-border);
}

.home-drop__footer {
    margin-top: 38px;
}

.home-categories {
    background: var(--color-surface);
}

.home-categories__heading-row {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.45fr);
    gap: clamp(30px, 5vw, 74px);
}

.home-categories__grid {
    gap: 1px;
    background: var(--color-border);
}

.category-card,
.category-card:nth-child(1),
.category-card:nth-child(2),
.category-card:nth-child(3),
.category-card:nth-child(4),
.category-card:nth-child(5),
.category-card:nth-child(6) {
    grid-column: span 4;
}

.category-card:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
}

.category-card__media,
.category-card:nth-child(1) .category-card__media,
.category-card:nth-child(4) .category-card__media {
    min-height: 310px;
}

.category-card:nth-child(1) .category-card__media {
    min-height: 621px;
}

.category-card__content {
    right: 18px;
    bottom: 18px;
    left: 18px;
}

.category-card__number {
    top: 16px;
    left: 16px;
    font-family: var(--font-mono);
}

.category-card__count {
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.category-card__title {
    font-family: var(--font-display);
    font-size: clamp(25px, 2.6vw, 44px);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.category-card__arrow {
    color: var(--color-accent-bright);
}

.home-categories__bottom {
    margin-top: 38px;
}

.home-categories__shop-all {
    color: var(--color-accent-bright);
    border-color: rgba(28, 143, 199, 0.5);
    font-family: var(--font-mono);
}

.home-brands {
    background: var(--color-black);
}

.home-brands__heading-row {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.45fr);
    gap: clamp(30px, 5vw, 74px);
}

.brand-row {
    min-height: 78px;
    grid-template-columns: 52px minmax(0, 1fr) 140px 28px;
    gap: 18px;
}

.brand-row__number,
.brand-row__count {
    font-family: var(--font-mono);
}

.brand-row__name {
    font-family: var(--font-display);
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.brand-row__arrow {
    color: var(--color-accent-bright);
}

.brand-row:hover {
    padding-left: 10px;
    background: rgba(28, 143, 199, 0.035);
}

.home-editorial {
    background: var(--color-surface);
}

.home-editorial__statement-wrap {
    padding-top: 54px;
}

.home-editorial__statement {
    max-width: 940px;
    font-family: var(--font-display);
    font-size: clamp(54px, 7vw, 104px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.005em;
}

.home-editorial__statement-line:nth-child(2) > span {
    color: var(--color-text-dim);
}

.home-editorial__statement-line:nth-child(3) > span {
    color: var(--color-accent-bright);
}

.button-link:not(.home-hero .button-link) {
    color: var(--color-accent-bright);
    border-color: rgba(28, 143, 199, 0.52);
    font-family: var(--font-mono);
}

@media (max-width: 1000px) {
.home-hero__inner {
        padding-top: 50px;
    }

.home-hero__visual {
        min-height: 470px;
    }

.category-card,
    .category-card:nth-child(1),
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4),
    .category-card:nth-child(5),
    .category-card:nth-child(6) {
        grid-column: span 6;
    }

.category-card:nth-child(1) .category-card__media,
    .category-card__media {
        min-height: 420px;
    }
}

@media (max-width: 700px) {
.home-hero__inner {
        padding-top: 40px;
        padding-bottom: 34px;
    }

.home-hero__title {
        font-size: clamp(52px, 18vw, 84px);
    }

.home-hero__visual {
        min-height: 360px;
    }

.home-hero__product-stage {
        width: min(82vw, 410px);
    }

.home-intro__inner,
    .home-drop,
    .home-categories,
    .home-brands,
    .home-editorial {
        padding-top: 58px;
        padding-bottom: 58px;
    }

.home-intro__statement {
        font-size: clamp(36px, 11vw, 54px);
    }

.home-drop__header,
    .home-categories__heading-row,
    .home-brands__heading-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

.home-drop__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
    }

.home-categories__grid {
        display: block;
        background: transparent;
    }

.category-card {
        margin-bottom: 1px;
    }

.category-card__media,
    .category-card:nth-child(1) .category-card__media,
    .category-card:nth-child(4) .category-card__media {
        min-height: 360px;
    }

.brand-row {
        min-height: 72px;
        grid-template-columns: 34px minmax(0, 1fr) 24px;
    }

.brand-row__count {
        display: none;
    }

.home-editorial__statement {
        font-size: clamp(46px, 14vw, 72px);
    }
}

.home-hero__product-stage {
    isolation: isolate;
}

.home-hero__product-aura {
    position: absolute;
    z-index: 0;
    width: 64%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(28, 143, 199, 0.20) 0%,
            rgba(15, 94, 130, 0.10) 34%,
            rgba(15, 94, 130, 0.03) 58%,
            transparent 74%
        );
    filter: blur(18px);
    pointer-events: none;
}

.home-hero__product-object {
    position: relative;
    z-index: 2;
    width: min(72%, 420px);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(2deg);
    transform-origin: 50% 62%;
    will-change: transform;
}

.home-hero__product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 34px 34px rgba(0, 0, 0, 0.34))
        drop-shadow(0 0 28px rgba(28, 143, 199, 0.08));
    user-select: none;
    -webkit-user-drag: none;
}

.home-hero__product-caption {
    width: 100%;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-hero__product-caption span:last-child {
    color: var(--color-text-dim);
    text-align: right;
}

@media (max-width: 900px) {
.home-hero__product-object {
        width: min(68%, 360px);
    }

.home-hero__product-caption {
        font-size: 7px;
    }
}

@media (max-width: 700px) {
.home-hero__product-object {
        width: min(76%, 330px);
    }

.home-hero__product-aura {
        width: 74%;
    }
}

@media (max-width: 520px) {
.home-hero__product-object {
        width: min(82%, 300px);
    }

.home-hero__product-caption {
        margin-top: 14px;
        letter-spacing: 0.12em;
    }
}
