:root {
    --sr-cream: #f5f1e7;
    --sr-grey: #d9d9d9;
    --sr-black: #1d1d1d;
    --sr-link: #666;
    --sr-serif: Georgia, "Times New Roman", serif;
    --sr-sans: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.sr-holding-page {
    margin: 0;
    color: var(--sr-black);
    background: #fff;
    font-family: var(--sr-sans);
}

body.sr-holding-page * {
    box-sizing: border-box;
}

body.sr-holding-page a {
    color: var(--sr-link);
    text-decoration: none !important;
}

.holding-shell {
    width: min(calc(100% - 64px), 1440px);
    margin-inline: auto;
}


/* Header
-------------------------------------------------- */

.holding-header {
    display: grid;
    min-height: 182px;
    place-items: center;
    background: #fff;
}

.holding-header__logo {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.holding-header__wordmark {
    margin: 0;
    font: 30px/1 var(--sr-serif);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* Introduction
-------------------------------------------------- */

.holding-intro {
    display: grid;
    min-height: 475px;
    place-items: center;
    padding: 70px 0;
    text-align: center;
    background: var(--sr-cream);
}

.holding-intro__inner {
    max-width: 850px;
}

.holding-intro h1 {
    margin: 0 0 24px;
    font-family: var(--sr-serif);
    font-size: clamp(28px, 2.7vw, 40px);
    font-weight: 700;
    line-height: 1.15;
}

.holding-intro__message {
    max-width: 680px;
    margin: 0 auto 50px;
    font-family: var(--sr-serif);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.45;
}

.holding-intro__message p {
    margin: 0;
}

body.sr-holding-page .holding-button {
    display: inline-flex;
    min-width: 250px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    color: #fff;
    background: var(--sr-link);
    font-family: var(--sr-serif);
    font-size: 16px;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition:
            color 0.2s ease,
            background-color 0.2s ease;
}

body.sr-holding-page .holding-button:hover,
body.sr-holding-page .holding-button:focus-visible {
    color: #fff;
    background: var(--sr-black);
}


/* Full-width About artwork
-------------------------------------------------- */

.holding-about {
    width: 100%;
    overflow: hidden;
    background: var(--sr-black);
}

.holding-about__full-image {
    display: block;
    width: 100%;
    height: auto;
}


/* New arrivals
-------------------------------------------------- */

.holding-arrivals {
    padding: 48px 0 58px;
    background: var(--sr-cream);
}

.holding-arrivals > .holding-shell {
    width: min(calc(100% - 64px), 1320px);
}

.holding-arrivals h2 {
    margin: 0 0 48px;
    font: 400 clamp(24px, 2.4vw, 32px) / 1 var(--sr-serif);
    text-align: center;
    text-transform: uppercase;
}

.holding-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 6vw, 90px);
}

.holding-product a {
    display: block;
    color: inherit;
    text-align: center;
    text-decoration: none !important;
}

.holding-product__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.08;
}

.holding-product__image {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity 0.35s ease;
}

.holding-product__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.holding-product__image--hover {
    opacity: 0;
}

.holding-product a:hover .holding-product__image--primary,
.holding-product a:focus-visible .holding-product__image--primary {
    opacity: 0;
}

.holding-product a:hover .holding-product__image--hover,
.holding-product a:focus-visible .holding-product__image--hover {
    opacity: 1;
}

.holding-product h3 {
    margin: 20px 0 0;
    font: 400 clamp(14px, 1.3vw, 17px) / 1.25 var(--sr-serif);
    text-transform: uppercase;
}


/* A Look We Love
-------------------------------------------------- */

.holding-look {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #b6a38b;
}

.holding-look__image {
    width: 100%;
    overflow: hidden;
}

.holding-look__image img {
    display: block;
    width: 100%;
    height: auto;
}


/* Footer
-------------------------------------------------- */

.holding-footer {
    padding: 22px 0;
    background: #fff;
}

.holding-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.holding-footer p {
    margin: 0;
    color: #777;
    font: 12px/1.4 var(--sr-serif);
}

.holding-socials {
    display: flex;
    gap: 24px;
}

.holding-socials a {
    color: var(--sr-black);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: lowercase;
}


/* Mobile
-------------------------------------------------- */

@media (max-width: 767.98px) {
    .holding-shell {
        width: min(calc(100% - 36px), 1440px);
    }

    .holding-header {
        min-height: 150px;
    }

    .holding-header__logo {
        width: 96px;
        height: 96px;
    }

    .holding-intro {
        min-height: 430px;
        padding: 56px 0;
    }

    .holding-intro__message {
        margin-bottom: 36px;
    }

    body.sr-holding-page .holding-button {
        min-width: 0;
        min-height: 54px;
        font-size: 15px;
    }

    .holding-about__full-image,
    .holding-look__image img {
        width: 100%;
        height: auto;
    }

    .holding-products {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .holding-product__media {
        aspect-ratio: 1 / 0.9;
    }

    .holding-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}


/* Reduced motion
-------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .holding-button,
    .holding-product__image {
        transition: none;
    }
}