/* =========================
   HOME SPLIT HERO
========================= */

.home-split-hero {
    --home-hero-offset: 0px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    height: clamp(620px, 48.6vw, 787px);
    min-height: 620px;
    max-height: 787px;

    background: #040D1A;
    overflow: hidden;
}

@media (min-width: 1621px) {
    .home-split-hero {
        height: calc(100vh - var(--home-hero-offset, 0px));
        height: calc(100dvh - var(--home-hero-offset, 0px));

        min-height: 0;
        max-height: none;
    }
}

.home-hero-panel {
    position: relative;
    display: grid;
    align-items: end;

    width: 100%;
    min-width: 0;
    height: 100%;

    overflow: hidden;
    padding: 0;
    border: 0;

    background: transparent;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.home-hero-panel img {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 1.2s ease;
}

.home-hero-tabs {
    display: none;
}

.home-hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(4, 13, 26, 0.02) 0%,
        rgba(4, 13, 26, 0.08) 42%,
        rgba(4, 13, 26, 0.42) 100%
    );
    transition: background 0.35s ease;
}

.home-hero-panel:hover img {
    transform: scale(1.035);
}

.home-hero-panel:hover::after {
    background: linear-gradient(
        180deg,
        rgba(4, 13, 26, 0.01) 0%,
        rgba(4, 13, 26, 0.05) 42%,
        rgba(4, 13, 26, 0.34) 100%
    );
}

.home-hero-panel-content {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0;
    padding: 0 56px 64px;
    color: #fff;
}

.home-hero-panel[data-hero-panel="women"] .home-hero-panel-content {
    justify-self: start;
    text-align: left;
}

.home-hero-panel[data-hero-panel="men"] .home-hero-panel-content {
    justify-self: end;
    text-align: right;
}

.home-hero-panel[data-hero-panel="men"] .home-hero-panel-text {
    margin-left: auto;
}

.home-hero-panel[data-hero-panel="men"] .button {
    margin-left: auto;
}

.home-hero-panel img,
.home-hero-panel-content,
.home-hero-panel-content * {
    pointer-events: none;
}

.home-hero-panel {
    touch-action: manipulation;
    min-width: 0;
}

.home-hero-title {
    display: block;
    margin: 0 0 10px;
    font-family: var(--font-decorative);
    font-size: 44px;
    font-weight: 100;
    line-height: 0.95;
    letter-spacing: -0.88px;
    color: #fff;
}

.home-hero-panel-text {
    display: block;
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 100;
    line-height: 1.32;
    letter-spacing: 0.42px;
    color: #fff;
}

.home-hero-panel .button {
    position: relative;
    min-width: 0;
    min-height: 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    backdrop-filter: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-hero-panel .button::before {
    display: none;
}

.home-hero-panel:hover .button {
    background: transparent;
    border-color: currentColor;
    color: #fff;
    transform: none;
    opacity: 0.72;
}

/* =========================
   MOBILE / TABLET HERO
========================= */
@media (min-width: 768px) and (max-width: 1199px) {
    .home-hero-panel-content {
        padding: 0 32px 64px;
    }
}

@media (max-width: 767px) {
	.home-split-hero {
    	position: relative;
    	display: block;
    	height: 620px;
    	min-height: 620px;
    	max-height: none;
    	overflow: hidden;
    	background: #040D1A;
}

    .home-hero-tabs {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 34px;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 0 28px;
        border: 0;
        background: transparent;
        backdrop-filter: none;
        transform: none;
    }

    .home-hero-tab {
        width: fit-content;
        min-width: 0;
        height: auto;
        padding: 0 0 5px;
        border: 0;
        border-bottom: 1px solid transparent;
        background: transparent;
        color: #fff;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 300;
        line-height: 1.1;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        cursor: pointer;
        opacity: 0.75;
    }

    .home-hero-tab.is-active {
        color: #fff;
        border-bottom-color: currentColor;
        opacity: 1;
    }

    .home-hero-panel {
        position: absolute;
        inset: 0;
        min-height: 0;
        height: 100%;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(1.015);
        transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.55s ease;
    }

    .home-hero-panel.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
    }

    .home-hero-panel img,
    .home-hero-panel:hover img {
        transform: none;
    }

    .home-hero-panel::after,
    .home-hero-panel:hover::after {
        background: linear-gradient(
            180deg,
            rgba(4, 13, 26, 0.02) 0%,
            rgba(4, 13, 26, 0.12) 42%,
            rgba(4, 13, 26, 0.54) 100%
        );
    }

    .home-hero-panel-content {
        align-self: end;
        max-width: 390px;
        padding: 0 28px 104px;
    }

    .home-hero-panel[data-hero-panel="women"] .home-hero-panel-content {
        justify-self: start;
        text-align: left;
    }

    .home-hero-title {
        margin-bottom: 10px;
        font-size: 40px;
        line-height: 0.96;
        letter-spacing: -0.68px;
    }

    .home-hero-panel-text {
        max-width: 280px;
        font-size: 15px;
        line-height: 1.34;
    }

    .home-hero-panel .button {
        display: none;
    }

    .home-hero-panel[data-hero-panel="women"] img {
        object-position: center 34%;
    }

    .home-hero-panel[data-hero-panel="men"] img {
        object-position: center 46%;
    }
}

@media (max-width: 767px) {

    .home-hero-tabs {
        bottom: 28px;
        padding: 0 18px;
    }

    .home-hero-tab {
        font-size: 16px;
        letter-spacing: 0.48px;
    }

    .home-hero-panel-content {
        max-width: 330px;
        padding: 0 18px 88px;
    }

    .home-hero-title {
        font-size: 38px;
        line-height: 0.98;
    }

    .home-hero-panel-text {
        max-width: 280px;
        font-size: 14px;
        line-height: 1.35;
    }
}


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

.home-categories {
    background: var(--color-background);
    padding: 3px 0;
    scroll-margin-top: var(--header-height);
}

.home-categories-grid {
    display: none;
}

.home-categories-grid.is-active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.home-category-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 5 / 7;
    background: #e9e5df;
    color: #000;
    text-decoration: none;
}

.home-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.home-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background 0.3s ease;
}

.home-category-card:hover img {
    transform: scale(1.045);
}

.home-category-link {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 2;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: clamp(
        12px,
        calc(0.61px + 0.58vw),
        18px
    );
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
}

.home-category-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: right center;
    transition: transform 0.35s ease;
}

.home-category-card:hover .home-category-link::after,
.home-category-card:focus-visible .home-category-link::after {
    transform: scaleX(0);
}


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

@media (max-width: 575px) {
    .home-categories {
        overflow: hidden;
    }

    .home-categories-grid {
        display: none;
    }

    .home-categories-grid.is-active {
        display: flex;
        gap: 3px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .home-categories-grid.is-active::-webkit-scrollbar {
        display: none;
    }

    .home-category-card {
        flex: 0 0 237px;
        width: 272px;
        min-width: 237px;
        height: 331px;
        aspect-ratio: auto;
        scroll-snap-align: start;
    }

    .home-category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-category-link {
        bottom: 32px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }
}



/* =========================
   HOME ABOUT
========================= */

.home-about {
    position: relative;

    width: 100%;
    height: 620px;
    min-height: 620px;
    max-height: 620px;

    display: grid;
    place-items: center;

    overflow: hidden;
    background: #040D1A;
}


/* =========================
   BACKGROUND IMAGE
========================= */

.home-about-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================
   OVERLAY
========================= */

.home-about-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: rgba(0, 0, 0, 0.41);
}


/* =========================
   CONTENT
========================= */

.home-about-content {
    position: relative;
    z-index: 3;

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

    margin: 0 auto;
    padding: 40px;

    color: #ffffff;
    text-align: center;

    box-sizing: border-box;
}


/* =========================
   SUBTITLE
========================= */

.home-about-subtitle {
    display: block;

    margin: 0 0 10px;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* =========================
   TITLE
========================= */

.home-about-title {
    margin: 0 0 16px;

    color: #ffffff;

    font-family: var(--font-decorative);
    font-size: 44px;
    font-weight: 300;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: -0.02em;
}


/* =========================
   TEXT
========================= */

.home-about-text {
    width: 100%;
    max-width: 320px;

    margin: 0 auto 30px;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0.013em;
}


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

.home-about-button {
    position: relative;

    width: fit-content;

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

    padding: 0 0 6px;

    border: 0;
    background: transparent;
    color: #ffffff;

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.home-about-button::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: currentColor;

    transform: scaleX(1);
    transform-origin: right center;

    transition: transform 0.35s ease;
}

.home-about-button:hover {
    color: #ffffff;
}

.home-about-button:hover::after {
    transform: scaleX(0);
}


/* =========================
   FULL VIEWPORT FROM 1620px
========================= */

@media (min-width: 1620px) {

    .home-about {
        height: 100vh;
        height: 100dvh;

        min-height: 0;
        max-height: none;
    }

    .home-about-content {
        max-width: clamp(760px, 40vw, 1180px);
        padding: clamp(40px, 2vw, 64px);
    }

    .home-about-subtitle {
        margin-bottom: clamp(10px, 0.42vw, 13px);

        font-size: clamp(
            12px,
            calc(4.71px + 0.45vw),
            18px
        );
    }

    .home-about-title {
        margin-bottom: clamp(16px, 0.75vw, 22px);

        font-size: clamp(
            44px,
            calc(16.05px + 1.725vw),
            67px
        );
    }

    .home-about-text {
        max-width: clamp(320px, 16vw, 470px);

        margin-bottom: clamp(30px, 1.15vw, 34px);

        font-size: clamp(
            14px,
            calc(5.49px + 0.525vw),
            21px
        );
    }

    .home-about-button {
        padding-bottom: clamp(6px, 0.22vw, 7px);

        font-size: clamp(
            16px,
            calc(6.28px + 0.6vw),
            24px
        );
    }
}


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

@media (min-width: 769px) and (max-width: 1199px) {

    .home-about-content {
        max-width: 760px;
        padding: 40px 32px;
    }

    .home-about-subtitle {
        font-size: 12px;
    }

    .home-about-title {
        margin-bottom: 14px;
        font-size: 44px;
    }

    .home-about-text {
        max-width: 420px;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .home-about-button {
        font-size: 15px;
    }
}


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

@media (max-width: 768px) {

    .home-about-content {
        max-width: 100%;
        padding: 40px 20px;
    }

    .home-about-subtitle {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .home-about-title {
        margin-bottom: 14px;

        font-size: 34px;
        line-height: 1;
    }

    .home-about-text {
        max-width: 360px;
        margin-bottom: 28px;

        font-size: 14px;
    }

    .home-about-button {
        font-size: 15px;
    }
}

/* =========================
   Promo Banners
========================= */

.promo-banners {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    background: var(--color-background);
}

.promo-banner {
    position: relative;
    min-height: 600px;
    display: block;
    overflow: hidden;
    color: #000;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.promo-banner:hover img {
    transform: scale(1.04);
}

.promo-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 58px 64px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0.02)
    );
    pointer-events: none;
}

/* Sale */

.promo-banner-sale .promo-banner-content {
    align-items: flex-start;
    justify-content: flex-start;
}

.promo-banner-sale .promo-banner-content {
    font-family: var(--font-decorative);
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: 0.12px;
    color: #040D1A;
}

/* Exclusive */

.promo-banner-exclusive .promo-banner-content {
    align-items: flex-end;
    text-align: right;
    justify-content: end;
}

.promo-banner-exclusive .promo-banner-content {
    font-family: var(--font-decorative);
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: 0.12px;
    color: #fff;
}

.promo-banner-button {
    width: fit-content;
    margin-top: 26px;
    padding: 18px 38px;
    background: #040D1A;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.promo-banner:hover .promo-banner-button {
    background: #fff;
    color: #040D1A;
}

/* =========================
   PROMO BANNERS — TABLET / MOBILE
========================= */

@media (max-width: 1199px) {
    .promo-banners {
        width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        background: var(--color-background);
    }

    .promo-banner {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 200px;
        background: #e9e5df;
        border: 1px solid rgba(4, 13, 26, 0.08);
    }

    .promo-banner img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .promo-banner::after {
        z-index: 1;
        background: linear-gradient(
            180deg,
            rgba(4, 13, 26, 0.06) 0%,
            rgba(4, 13, 26, 0.14) 54%,
            rgba(4, 13, 26, 0.34) 100%
        );
    }

    .promo-banner-content {
        z-index: 2;
        padding: 34px 32px;
    }

    .promo-banner-sale .promo-banner-content,
    .promo-banner-exclusive .promo-banner-content {
        font-size: clamp(42px, 7vw, 64px);
        line-height: 0.98;
    }

    .promo-banner-sale .promo-banner-content {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        color: #040D1A;
    }

    .promo-banner-exclusive .promo-banner-content {
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
        color: #fff;
    }

    .promo-banner-button {
        margin-top: 22px;
        padding: 17px 30px;
        font-size: 12px;
    }

    .promo-banner:hover img {
        transform: none;
    }
}

@media (max-width: 575px) {
    .promo-banners {
        gap: 16px;
        padding: 0 16px;
    }

    .promo-banner {
        aspect-ratio: 4 / 4.35;
    }

    .promo-banner-content {
        padding: 26px 20px;
    }

    .promo-banner-sale .promo-banner-content,
    .promo-banner-exclusive .promo-banner-content {
        font-size: clamp(31px, 9vw, 40px);
    }

    .promo-banner-sale .promo-banner-content {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .promo-banner-exclusive .promo-banner-content {
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }

    .promo-banner-button {
        margin-top: 18px;
        padding: 15px 24px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .promo-banner-sale .promo-banner-button {
        background: #040D1A;
        color: #fff;
    }

    .promo-banner-exclusive .promo-banner-button {
        background: #fff;
        color: #040D1A;
    }
}

@media (min-width: 1620px) {

    .promo-banner-sale .promo-banner-content,
    .promo-banner-exclusive .promo-banner-content {
        font-size: clamp(
            48px,
            calc(17.62px + 1.875vw),
            73px
        );
    }

    .promo-banner-button {
        font-size: clamp(
            14px,
            calc(5.49px + 0.525vw),
            21px
        );
    }
}


/* =========================
   HOME QUOTE
========================= */

.home-quote {
    width: 100%;
    height: 389px;
    min-height: 389px;

    display: grid;
    place-items: center;

    padding: 0 24px;

    background: var(--color-background);
    box-sizing: border-box;
}

.home-quote-inner {
    width: 100%;
    max-width: 880px;

    margin: 0 auto;
    text-align: center;
}

.home-quote-text {
    color: #000000;

    font-family: var(--font-decorative);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-quote-text p {
    margin: 0;
}

.home-quote-text em {
    font-style: italic;
}

.home-quote-text strong {
    font-weight: inherit;
}


/* =========================
   HOME VIDEO BANNER
========================= */

.home-video-banner {
    position: relative;

    width: 100%;
    height: 100dvh;
    min-height: 700px;
    max-height: 800px;

    overflow: hidden;
    background: #040D1A;
}

.home-video-media,
.home-video,
.home-video-overlay {
    position: absolute;
    inset: 0;
}

.home-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.home-video-mobile {
    display: none;
}

.home-video-overlay {
    z-index: 2;

    background: linear-gradient(
        180deg,
        rgba(4, 13, 26, 0.06) 0%,
        rgba(4, 13, 26, 0.12) 48%,
        rgba(4, 13, 26, 0.34) 100%
    );

    pointer-events: none;
}


/* =========================
   VIDEO CONTENT
========================= */

.home-video-content {
    position: absolute;
    left: 64px;
    bottom: 36px;
    z-index: 3;

    width: auto;
    max-width: 620px;

    color: #ffffff;
}

.home-video-title {
    max-width: 620px;
    margin: 0 0 20px;

    color: #ffffff;

    font-family: var(--font-decorative);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-video-button {
    position: relative;

    width: fit-content;

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

    padding: 0 0 5px;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

.home-video-button::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: currentColor;

    transform: scaleX(1);
    transform-origin: right center;

    transition: transform 0.35s ease;
}

.home-video-button:hover {
    color: #ffffff;
}

.home-video-button:hover::after {
    transform: scaleX(0);
}


/* =========================
   VIDEO CONTROL
========================= */

.home-video-control {
    position: absolute;
    right: 18px;
    bottom: 22px;
    z-index: 4;

    width: 30px;
    height: 30px;

    padding: 0;
    border: 0;

    background: transparent;
    color: #ffffff;

    cursor: pointer;
}

.home-video-control-pause,
.home-video-control-play {
    position: absolute;
    inset: 0;

    display: block;
}

.home-video-control-pause::before,
.home-video-control-pause::after {
    content: "";

    position: absolute;
    top: 6px;
    bottom: 6px;

    width: 3px;

    background: currentColor;
}

.home-video-control-pause::before {
    left: 9px;
}

.home-video-control-pause::after {
    right: 9px;
}

.home-video-control-play {
    display: none;
}

.home-video-control-play::before {
    content: "";

    position: absolute;
    left: 9px;
    top: 6px;

    width: 0;
    height: 0;

    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid currentColor;
}

.home-video-banner.is-paused
.home-video-control-pause {
    display: none;
}

.home-video-banner.is-paused
.home-video-control-play {
    display: block;
}

/* =========================
   ULTRA-WIDE SCREENS
========================= */

@media (min-width: 1620px) {

    .home-quote {
        height: auto;

        min-height: clamp(
            389px,
            calc(142.3px + 15.23vw),
            592px
        );

        padding:
            clamp(
                72px,
                calc(25.8px + 2.85vw),
                110px
            )
            24px;

        box-sizing: border-box;
    }

    .home-quote-inner {
        max-width: clamp(
            880px,
            calc(321.75px + 34.46vw),
            1340px
        );
    }

    .home-quote-text {
        font-size: clamp(
            44px,
            calc(16.05px + 1.725vw),
            67px
        );
    }

    /* =========================
       VIDEO TEXT
    ========================= */

    .home-video-content {
        max-width: clamp(
            620px,
            calc(261.28px + 22.14vw),
            915px
        );
    }

    .home-video-title {
        max-width: clamp(
            620px,
            calc(261.28px + 22.14vw),
            915px
        );

        margin-bottom: clamp(
            20px,
            calc(7.85px + 0.75vw),
            30px
        );

        font-size: clamp(
            36px,
            calc(12.91px + 1.425vw),
            55px
        );
    }

    .home-video-button {
        padding-bottom: clamp(
            5px,
            calc(2.57px + 0.15vw),
            7px
        );

        font-size: clamp(
            12px,
            calc(4.71px + 0.45vw),
            18px
        );
    }
}

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

@media (max-width: 991px) {

    .home-quote {
        height: auto;
        min-height: 0;

        display: block;

        padding: 62px 24px 60px;
    }

    .home-quote-text {
        font-size: 38px;
        line-height: 1.08;
    }

    .home-video-banner {
        height: 620px;
        min-height: 620px;
        max-height: none;
    }

    .home-video-content {
        left: 24px;
        right: 24px;
        bottom: 34px;

        width: auto;
        max-width: 520px;
    }

    .home-video-title {
        max-width: 520px;
        font-size: 28px;
    }
}


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

@media (max-width: 767px) {

    .home-quote {
        height: auto;
        min-height: 0;

        padding: 45px 24px;
    }

    .home-quote-inner {
        max-width: 420px;
    }

    .home-quote-text {
        font-size: 34px;
        line-height: 1;
        text-align: left;
    }

    .home-video-banner {
        width: 100%;
        max-width: 430px;

        height: 430px;
        min-height: 430px;
        max-height: 430px;

        margin: 0 auto;
    }

    .home-video-desktop {
        display: none;
    }

    .home-video-mobile {
        display: block;
    }

    .home-video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .home-video-content {
        left: 18px;
        right: 54px;
        bottom: 28px;

        width: auto;
        max-width: none;
    }

    .home-video-title {
        max-width: 310px;
        margin-bottom: 10px;

        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.56px;
    }

    .home-video-button {
        font-size: 12px;
    }

    .home-video-control {
        right: 14px;
        bottom: 20px;
    }
}