:root {
    --silk-ink: #242424;
    --silk-muted: #6d6d6d;
    --silk-cream: #f6f3ef;
    --silk-paper: #f4f2ee;
    --silk-rose: #cc7f82;
    --silk-rose-soft: #f4e4e1;
    --silk-sage: #607264;
    --silk-gold: #b69b74;
    --silk-border: #d8d5cf;
    --silk-hover: #f1eeea;

    --font-heading: "Newsreader", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;
    --font-script: "Satisfy", cursive;

    --fs-hero: clamp(64px, 5vw, 70px);
    --fs-section: clamp(46px, 4vw, 54px);
    --fs-editorial-h3: 32px;
    --fs-card-title: 20px;

    --fs-body-lg: 18px;
    --fs-body: 16px;
    --fs-body-sm: 15px;
    --fs-meta: 13px;
    --fs-label: 12px;
    --fs-button: 17px;

    --lh-heading-tight: .98;
    --lh-heading: 1.05;
    --lh-editorial-h3: 1.12;
    --lh-card-title: 1.3;
    /* Canonical storefront body line-height for regular running text. */
    --lh-body: 1.6;
    --lh-body-compact: 1.5;
    --lh-meta: 1.45;
    --lh-label: 1.2;
    --lh-button: 1.2;

    --ls-hero: -0.03em;
    --ls-heading: -0.02em;
    --ls-editorial-h3: -0.015em;
    --ls-label: .16em;
}

html,
body {
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

.silk-cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1400;
    pointer-events: none;
}

.silk-cookie-consent__shell {
    width: 380px;
    max-width: calc(100vw - 48px);
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #d8d5cf;
    border-radius: 22px;
    background: #f4f2ee;
    box-shadow: 0 16px 42px rgba(30, 32, 29, 0.10);
    pointer-events: auto;
    will-change: transform, opacity;
}

.silk-cookie-consent.is-visible .silk-cookie-consent__shell {
    animation: silk-cookie-consent-enter 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.silk-cookie-consent.is-closing .silk-cookie-consent__shell {
    animation: silk-cookie-consent-exit 180ms ease-in both;
}

.silk-cookie-consent__header {
    align-items: center;
    display: flex;
    gap: 12px;
}

.silk-cookie-consent__icon {
    align-items: center;
    background: rgba(96, 114, 100, 0.10);
    border-radius: 999px;
    color: #607264;
    display: inline-flex;
    flex: 0 0 auto;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.silk-cookie-consent__icon svg {
    fill: currentColor;
    height: 19px;
    width: 19px;
}

.silk-cookie-consent__copy,
.silk-cookie-consent__eyebrow {
    display: none;
}

.silk-cookie-consent__copy h2,
.silk-cookie-consent__header h2 {
    margin: 0;
    color: #242424;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
}

.silk-cookie-consent__body {
    margin: 0;
    color: #6d6d6d;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.silk-cookie-consent__link {
    color: #607264;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    justify-self: start;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: .16em;
}

.silk-cookie-consent__actions {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.silk-cookie-consent__button {
    min-height: 44px;
    width: 100%;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}

.silk-cookie-consent__button:hover,
.silk-cookie-consent__button:focus-visible {
    transform: translateY(-1px);
}

.silk-cookie-consent__button:focus-visible {
    outline: 2px solid #607264;
    outline-offset: 3px;
}

.silk-cookie-consent__button--secondary {
    color: #242424;
    border-color: #d8d5cf;
    background: transparent;
}

.silk-cookie-consent__button--primary {
    color: #fbfbfa;
    background: #607264;
    border-color: #607264;
}

.silk-cookie-consent__button--primary:hover,
.silk-cookie-consent__button--primary:focus-visible {
    background: #738576;
    border-color: #738576;
}

.silk-cookie-consent__button--secondary:hover,
.silk-cookie-consent__button--secondary:focus-visible {
    background: #f1eeea;
}

@media (max-width: 1023px) {
    .silk-cookie-consent {
        right: 20px;
        bottom: 20px;
    }

    .silk-cookie-consent__shell {
        width: 360px;
        max-width: calc(100vw - 40px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 16px 42px rgba(30, 32, 29, 0.10);
    }

    .silk-cookie-consent__header h2 {
        font-size: 19px;
    }

    .silk-cookie-consent__body {
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    .silk-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .silk-cookie-consent__shell {
        width: auto;
        max-width: none;
        max-height: 52vh;
        overflow-y: auto;
        gap: 12px;
        padding: 18px;
        border-radius: 20px;
        box-shadow: 0 14px 36px rgba(30, 32, 29, 0.12);
        -webkit-overflow-scrolling: touch;
    }

    .silk-cookie-consent__icon {
        height: 34px;
        width: 34px;
    }

    .silk-cookie-consent__icon svg {
        height: 17px;
        width: 17px;
    }

    .silk-cookie-consent__header h2 {
        font-size: 18px;
    }

    .silk-cookie-consent__body {
        font-size: 14px;
        line-height: 1.45;
    }

    .silk-cookie-consent__actions {
        margin-top: 2px;
    }
}

@media (max-width: 389px) {
    .silk-cookie-consent {
        left: 10px;
        right: 10px;
    }

    .silk-cookie-consent__shell {
        padding: 16px;
        gap: 10px;
    }

    .silk-cookie-consent__header {
        gap: 10px;
    }

    .silk-cookie-consent__icon {
        height: 32px;
        width: 32px;
    }

    .silk-cookie-consent__icon svg {
        height: 16px;
        width: 16px;
    }

    .silk-cookie-consent__header h2 {
        font-size: 17px;
    }

    .silk-cookie-consent__body {
        font-size: 13px;
    }

    .silk-cookie-consent__button {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .silk-cookie-consent.is-visible .silk-cookie-consent__shell,
    .silk-cookie-consent.is-closing .silk-cookie-consent__shell {
        transform: none;
    }

    .silk-cookie-consent.is-visible .silk-cookie-consent__shell {
        animation: silk-cookie-consent-fade-in 120ms linear both;
    }

    .silk-cookie-consent.is-closing .silk-cookie-consent__shell {
        animation: silk-cookie-consent-fade-out 100ms linear both;
    }

    .silk-cookie-consent__button {
        transition: none;
    }
}

@keyframes silk-cookie-consent-enter {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@keyframes silk-cookie-consent-exit {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(8px);
    }
}

@keyframes silk-cookie-consent-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes silk-cookie-consent-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.silk-home__collection-pagination {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 16px auto 0;
    width: 100%;
}

.silk-home__collection-dot {
    appearance: none;
    background: rgba(204, 127, 130, .28);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    height: 8px;
    padding: 0;
    transition: background .2s ease, transform .2s ease, width .2s ease;
    width: 8px;
}

.silk-home__collection-dot.is-active {
    background: #cc7f82;
    transform: scale(1);
    width: 22px;
}

.silk-home__collection-feedback {
    color: #9d4f4f;
    font-size: 14px;
    line-height: 1.45;
    margin: 14px auto 0;
    max-width: 520px;
    text-align: center;
}

@media (min-width: 1025px) {
    .silk-home__collection-pagination {
        display: none;
    }
}

@media (max-width: 1024px) {
    .silk-home__collection .silk-home__cards {
        align-items: start;
        gap: 16px;
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
    }

    .silk-home__collection .silk-home__cards::-webkit-scrollbar {
        display: none;
    }

    .silk-home__collection .silk-home__card {
        align-self: start;
        background: var(--silk-paper);
        position: relative;
        scroll-snap-align: start;
    }

    .silk-home__collection .silk-home__card img {
        object-fit: cover;
        object-position: center center;
    }

    .silk-home__collection .silk-home__card-body {
        background: transparent;
        border: 0;
        border-top: 0;
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    :root {
        --fs-hero: 38px;
        --fs-section: 30px;
        --fs-editorial-h3: 24px;
        --fs-card-title: 18px;

        --fs-body-lg: 16px;
        --fs-body: 15px;
        --fs-body-sm: 14px;
        --fs-meta: 13px;
        --fs-label: 12px;
        --fs-button: 16px;

        --lh-heading-tight: 1;
        --lh-heading: 1.05;
        --lh-body: 1.55;
        --lh-body-compact: 1.5;
    }

    .silk-home__collection .silk-home__cards {
        gap: 15px;
        grid-auto-columns: clamp(208px, 54vw, 216px);
        margin-left: -24px;
        margin-right: -24px;
        padding: 0 24px 4px;
        scroll-padding-left: 24px;
    }

    .silk-home__collection .silk-home__cards::-webkit-scrollbar {
        display: none;
    }

    .silk-home__collection .silk-home__card {
        max-width: 216px;
        min-width: 208px;
        width: 54vw;
    }

    .silk-home__collection .silk-home__card-hitarea {
        aspect-ratio: 3 / 5;
    }

    .silk-home__collection .silk-home__card-body {
        padding: 12px 12px 14px;
    }

    .silk-home__collection .silk-home__card-body h3 {
        font-family: Inter, Arial, sans-serif;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.22;
        letter-spacing: 0;
        margin: 0;
    }

    .silk-home__collection .silk-home__heart {
        bottom: auto;
        height: auto;
        left: auto;
        min-height: 28px;
        min-width: 28px;
        padding: 5px;
        right: 12px;
        top: 12px;
        width: auto;
        z-index: 3;
    }

    .silk-home__collection .silk-home__card.is-selected {
        background: linear-gradient(180deg, #6c7d6f, #607264);
    }

    .silk-home__collection .silk-home__card.is-selected .silk-home__card-body {
        background: transparent;
        border: 0;
        border-top: 0;
        border-radius: 0;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .silk-home__collection {
        padding-left: 32px;
        padding-right: 32px;
    }

    .silk-home__collection .silk-home__cards {
        gap: 20px;
        grid-auto-columns: clamp(248px, 38vw, 292px);
        margin-left: -32px;
        margin-right: -32px;
        padding: 0 32px 8px;
        scroll-padding-left: 32px;
    }

    .silk-home__collection .silk-home__card {
        max-width: 292px;
        min-width: 248px;
        width: auto;
    }

    .silk-home__collection .silk-home__card-hitarea {
        aspect-ratio: 3 / 5;
    }

    .silk-home__collection .silk-home__card-body {
        padding: 14px 14px 16px;
    }

    .silk-home__collection .silk-home__card-body h3 {
        font-size: 18px;
        line-height: 1.2;
        margin: 0;
    }

    .silk-home__collection .silk-home__heart {
        bottom: auto;
        height: auto;
        left: auto;
        min-height: 30px;
        min-width: 30px;
        padding: 6px;
        right: 14px;
        top: 14px;
        width: auto;
        z-index: 3;
    }
}

.silk-app-loading {
    align-items: center;
    background: #fbfbfa;
    color: #607264;
    display: flex;
    flex-direction: column;
    font-family: "Newsreader", Georgia, serif;
    font-size: 18px;
    gap: 1.1rem;
    inset: 0;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: fixed;
    text-align: center;
    z-index: 10000;
}

.silk-app-loading__logo {
    height: auto;
    max-width: min(280px, 76vw);
    object-fit: contain;
    width: 280px;
}

.silk-app-loading__text {
    color: #607264;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.5;
}

#blazor-error-ui {
    background: #fff4cf;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
    display: none;
    left: 0;
    padding: .7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 20000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: .75rem;
    top: .5rem;
}

.silk-catalog-notice {
    padding: 48px 15px;
    text-align: center;
}

.silk-catalog-notice h2 {
    color: #242424;
    font-family: "Newsreader", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.silk-notice-link,
.silk-notice-link:focus,
.silk-notice-link:hover {
    color: #607264;
    text-decoration: underline;
}

.silk-product-type {
    color: #b69b74;
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.silk-detail-image {
    width: 100%;
}

.silk-home {
    --silk-ink: #242424;
    --silk-muted: #6d6d6d;
    --silk-cream: #fbfbfa;
    --silk-paper: #f4f2ee;
    --silk-rose: #cc7f82;
    --silk-rose-soft: #d9b1aa;
    --silk-sage: #607264;
    --silk-gold: #b69b74;
    --silk-charcoal: #1e201d;
    --silk-border: #d8d5cf;
    --silk-hover: #f1eeea;
    --silk-secondary-bg: #cfcbc4;
    --survey-card-radius: 18px;
    --survey-pill-radius: 16px;
    --survey-mini-radius: 8px;
    background: var(--silk-cream);
    color: var(--silk-ink);
    font-family: Inter, Arial, sans-serif;
    line-height: var(--lh-body);
    min-height: 100vh;
}

.silk-home__hero,
.silk-home__collection,
.silk-home__preference,
.silk-home__founder {
    scroll-margin-top: 108px;
}

.silk-home *,
.silk-home *::before,
.silk-home *::after {
    box-sizing: border-box;
}

.silk-home a {
    color: inherit;
}

.silk-home__mobile-copy,
.silk-home__menu-toggle,
.silk-home__mobile-menu,
.silk-home__mobile-menu-backdrop {
    display: none;
}

.silk-home__nav {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(251, 251, 250, .96);
    border-bottom: 1px solid rgba(216, 213, 207, .96);
    box-shadow: 0 10px 30px rgba(36, 36, 36, .06);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    min-height: 86px;
    padding: 16px clamp(20px, 5vw, 72px);
    position: sticky;
    top: 0;
    transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, padding .24s ease;
    z-index: 20;
}

.silk-home__brand {
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    transition: opacity .24s ease, transform .24s ease;
}

.silk-home__brand img {
    display: block;
    height: auto;
    max-width: min(100%, 165px);
    width: clamp(105px, 12vw, 165px);
}

.silk-home__brand:hover,
.silk-home__brand:focus {
    color: var(--silk-ink);
    text-decoration: none;
}

.silk-home__nav-actions {
    align-items: center;
    display: flex;
    gap: 34px;
    margin-left: auto;
}

.silk-home__menu-toggle {
    appearance: none;
    background: rgba(244, 242, 238, .92);
    border: 1px solid rgba(216, 213, 207, .96);
    border-radius: 999px;
    cursor: pointer;
    height: 48px;
    margin-left: auto;
    padding: 0;
    position: relative;
    width: 48px;
}

.silk-home__menu-toggle span {
    background: var(--silk-ink);
    border-radius: 999px;
    height: 2px;
    left: 14px;
    position: absolute;
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
    width: 18px;
}

.silk-home__menu-toggle span:nth-child(1) {
    top: 16px;
}

.silk-home__menu-toggle span:nth-child(2) {
    top: 23px;
}

.silk-home__menu-toggle span:nth-child(3) {
    top: 30px;
}

.silk-home__nav.is-mobile-menu-open .silk-home__menu-toggle span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

.silk-home__nav.is-mobile-menu-open .silk-home__menu-toggle span:nth-child(2) {
    opacity: 0;
}

.silk-home__nav.is-mobile-menu-open .silk-home__menu-toggle span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

.silk-home__mobile-menu-backdrop {
    background: rgba(30, 32, 29, .28);
    border: 0;
    inset: 0;
    position: fixed;
    z-index: 18;
}

.silk-home__mobile-menu {
    background:
        radial-gradient(circle at top right, rgba(217, 177, 170, .18), transparent 36%),
        linear-gradient(180deg, rgba(251, 251, 250, .99) 0%, rgba(244, 242, 238, .98) 100%);
    border-top: 1px solid rgba(216, 213, 207, .96);
    box-shadow: 0 22px 42px rgba(36, 36, 36, .09);
    left: 0;
    padding: 24px 20px 28px;
    position: fixed;
    right: 0;
    top: 86px;
    z-index: 19;
}

.silk-home__mobile-links {
    display: grid;
    gap: 10px;
}

.silk-home__mobile-links a {
    border-bottom: 1px solid rgba(216, 213, 207, .72);
    color: var(--silk-ink);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    text-decoration: none;
}

.silk-home__mobile-menu-cta {
    margin-top: 18px;
}

.silk-home__links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    transition: opacity .24s ease, transform .24s ease, max-height .24s ease;
}

.silk-home__links a {
    border-radius: 999px;
    color: var(--silk-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    padding: 10px 14px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.silk-home__links a:hover,
.silk-home__links a:focus {
    background: rgba(244, 242, 238, .98);
    box-shadow: 0 8px 18px rgba(36, 36, 36, .06);
    color: var(--silk-sage);
    transform: translateY(-1px);
}

.silk-home__links a:active {
    background: rgba(216, 213, 207, .85);
    box-shadow: inset 0 1px 2px rgba(36, 36, 36, .08);
    color: var(--silk-ink);
    transform: translateY(0);
}

.silk-home__nav-cta,
.silk-home__button {
    align-items: center;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 600;
    gap: 12px;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    min-height: 48px;
    padding: 14px 24px;
    text-decoration: none;
    text-transform: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.silk-home__nav-cta,
.silk-home__nav-cta:link,
.silk-home__nav-cta:visited {
    background: var(--silk-rose);
    border-radius: 999px;
    box-shadow: 0 14px 26px rgba(204, 127, 130, .18);
    color: #fbfbfa;
    font-size: var(--fs-body-sm);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-button);
    text-transform: none;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease, padding .24s ease;
    white-space: nowrap;
}

.silk-home__button:hover,
.silk-home__button:focus,
.silk-home__nav-cta:hover,
.silk-home__nav-cta:focus {
    color: #fbfbfa;
    text-decoration: none;
    transform: translateY(-1px);
}

.silk-home__button--dark,
.silk-home__button--dark:link,
.silk-home__button--dark:visited,
.silk-home__button--dark:hover,
.silk-home__button--dark:focus {
    background: var(--silk-sage);
    box-shadow: 0 12px 22px rgba(96, 114, 100, .22);
    color: #fbfbfa;
}

.silk-home__button--rose {
    background: var(--silk-rose);
    box-shadow: 0 12px 24px rgba(204, 127, 130, .18);
    color: #fbfbfa;
}

.silk-home__button--secondary,
.silk-home__button--secondary:link,
.silk-home__button--secondary:visited {
    background: rgba(251, 251, 250, .96);
    border: 1px solid rgba(216, 213, 207, .92);
    box-shadow: 0 12px 22px rgba(36, 36, 36, .08);
    color: var(--silk-ink);
    font-weight: 500;
}

.silk-home__button--secondary:hover,
.silk-home__button--secondary:focus {
    background: #fbfbfa;
    border-color: rgba(183, 165, 138, .52);
    box-shadow: 0 16px 28px rgba(36, 36, 36, .1);
    color: var(--silk-ink);
}

.silk-home__hero-actions {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 1000px);
}

.silk-home__hero-actions .silk-home__button {
    min-height: 60px;
    width: 100%;
}

.silk-home__hero-actions .silk-home__button--secondary,
.silk-home__hero-actions .silk-home__button--secondary:link,
.silk-home__hero-actions .silk-home__button--secondary:visited {
    font-weight: 500;
}

.silk-home__hero {
    --hero-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --hero-parallax-image-y: 0px;
    --hero-parallax-image-x: 0px;
    --hero-parallax-light-y: 0px;
    --hero-parallax-light-x: 0px;
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    min-height: 576px;
    position: relative;
    z-index: 2;
}

.silk-home__hero-image {
    min-height: 528px;
    overflow: visible;
    position: relative;
}

.silk-home__hero-image::after {
    animation: hero-atmosphere-drift 24s ease-in-out infinite alternate;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 249, 240, .18) 0%, rgba(255, 249, 240, .05) 28%, transparent 56%),
        radial-gradient(circle at 78% 68%, rgba(235, 216, 188, .12) 0%, rgba(235, 216, 188, .04) 26%, transparent 60%),
        linear-gradient(122deg, rgba(255, 250, 245, .14) 0%, rgba(255, 250, 245, .03) 40%, transparent 72%);
    content: "";
    inset: -7%;
    mix-blend-mode: screen;
    opacity: .52;
    pointer-events: none;
    position: absolute;
    will-change: transform, opacity;
    z-index: 1;
}

.silk-home__hero-image-media {
    animation: hero-bouquet-breathe 13.5s ease-in-out 1400ms infinite;
    height: 100%;
    position: relative;
    transform: translate3d(var(--hero-parallax-image-x), var(--hero-parallax-image-y), 0);
    transform-origin: 42% 56%;
    transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    will-change: transform;
}

.hero-reveal-image {
    animation: hero-reveal-image-fade 1000ms var(--hero-reveal-ease) 0ms both;
    opacity: 0;
}

.silk-home__hero-image-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.hero-reveal-image .silk-home__hero-image-media img {
    animation: hero-reveal-image-scale 1000ms var(--hero-reveal-ease) 0ms both;
    scale: 1.02;
    transform-origin: center center;
}

.silk-home__hero-sunlight {
    animation: hero-sunlight-drift 20s ease-in-out infinite alternate;
    background:
        radial-gradient(circle at 76% 22%, rgba(244, 230, 205, .32) 0%, rgba(244, 230, 205, .12) 24%, transparent 58%),
        radial-gradient(circle at 62% 68%, rgba(232, 214, 186, .22) 0%, rgba(232, 214, 186, .08) 22%, transparent 56%),
        linear-gradient(118deg, rgba(255, 248, 237, .14) 0%, rgba(255, 248, 237, .035) 34%, transparent 60%);
    inset: -8%;
    mix-blend-mode: soft-light;
    opacity: .46;
    pointer-events: none;
    position: absolute;
    transform: translate3d(var(--hero-parallax-light-x), var(--hero-parallax-light-y), 0);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    z-index: 2;
}

.silk-home__hero-particles {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

.silk-home__hero-particles span {
    animation: hero-particle-drift 15s ease-in-out infinite;
    background: radial-gradient(circle, rgba(249, 243, 232, .76) 0%, rgba(249, 243, 232, .3) 46%, transparent 100%);
    border-radius: 999px;
    filter: blur(.8px);
    height: 20px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 20px;
    will-change: transform, opacity;
}

.silk-home__hero-particles span:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 16s;
    height: 16px;
    left: 64%;
    top: 18%;
    width: 16px;
}

.silk-home__hero-particles span:nth-child(2) {
    animation-delay: -8s;
    animation-duration: 18s;
    height: 12px;
    left: 74%;
    top: 28%;
    width: 12px;
}

.silk-home__hero-particles span:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 17s;
    height: 18px;
    left: 82%;
    top: 42%;
    width: 18px;
}

.silk-home__hero-particles span:nth-child(4) {
    animation-delay: -11s;
    animation-duration: 20s;
    height: 14px;
    left: 70%;
    top: 56%;
    width: 14px;
}

.silk-home__hero-particles span:nth-child(5) {
    animation-delay: -6s;
    animation-duration: 15s;
    height: 11px;
    left: 79%;
    top: 64%;
    width: 11px;
}

.silk-home__hero-particles span:nth-child(6) {
    animation-delay: -14s;
    animation-duration: 19s;
    height: 15px;
    left: 88%;
    top: 24%;
    width: 15px;
}

.silk-home__hero-particles span:nth-child(7) {
    animation-delay: -9s;
    animation-duration: 16.5s;
    height: 11px;
    left: 68%;
    top: 34%;
    width: 11px;
}

.silk-home__hero-particles span:nth-child(8) {
    animation-delay: -12s;
    animation-duration: 20.5s;
    height: 17px;
    left: 84%;
    top: 52%;
    width: 17px;
}

.silk-home__hero-particles span:nth-child(9) {
    animation-delay: -3s;
    animation-duration: 17.5s;
    height: 10px;
    left: 72%;
    top: 22%;
    width: 10px;
}

.silk-home__hero-particles span:nth-child(10) {
    animation-delay: -7s;
    animation-duration: 18.5s;
    height: 13px;
    left: 77%;
    top: 36%;
    width: 13px;
}

.silk-home__hero-particles span:nth-child(11) {
    animation-delay: -10s;
    animation-duration: 16s;
    height: 12px;
    left: 86%;
    top: 44%;
    width: 12px;
}

.silk-home__hero-particles span:nth-child(12) {
    animation-delay: -5s;
    animation-duration: 21.5s;
    height: 15px;
    left: 81%;
    top: 60%;
    width: 15px;
}

.silk-home__hero-image::before {
    background:
        linear-gradient(
            to left,
            #fbfbfa 0%,
            rgba(251, 251, 250, .82) 8%,
            rgba(251, 251, 250, .35) 22%,
            rgba(251, 251, 250, 0) 40%
        ),
        linear-gradient(
            to top,
            #fbfbfa 0%,
            rgba(251, 251, 250, .84) 8%,
            rgba(251, 251, 250, .34) 18%,
            rgba(251, 251, 250, 0) 34%
        );
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.silk-home__hero-image::after {
    content: none;
    z-index: 1;
}

.silk-home__seal {
    align-items: center;
    background: #607264;
    border-radius: 50%;
    bottom: 34px;
    box-shadow: 0 20px 38px rgba(30, 32, 29, .2);
    color: #fbfbfa;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    height: 170px;
    gap: 6px;
    justify-content: center;
    left: 30px;
    letter-spacing: .08em;
    line-height: 1.45;
    padding: 24px 20px;
    position: absolute;
    z-index: 3;
    text-align: center;
    text-transform: uppercase;
    width: 170px;
}

.silk-home__seal-icon {
    color: var(--silk-gold);
    display: block;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-shadow: .7px 0 0 currentColor;
    transform: rotate(12deg);
    z-index: 2;
}

.silk-home__seal-text {
    color: #fbfbfa;
    display: block;
    max-width: 110px;
    text-align: center;
    transform: rotate(-10deg);
    transform-origin: center;
    z-index: 1;
}

.silk-home__seal-line {
    display: block;
}

/* Storefront source of truth: desktop home typography + CTA system. */
@media (min-width: 768px) {
    .silk-home__hero {
        overflow: visible;
    }

    .silk-home__hero-image {
        overflow: visible;
    }

    .silk-home__hero-image-media {
        animation: none;
        overflow: hidden;
        transform: none;
    }

    .silk-home__hero-image-media img {
        animation: hero-bouquet-breathe 13.5s ease-in-out 1400ms infinite;
        height: calc(100% + 16px);
        margin: -8px;
        max-width: none;
        object-position: 56% 35%;
        transform-origin: 42% 56%;
        width: calc(100% + 16px);
        will-change: transform;
    }

    .hero-reveal-image .silk-home__hero-image-media img {
        animation:
            hero-reveal-image-scale 1000ms var(--hero-reveal-ease) 0ms both,
            hero-bouquet-breathe 13.5s ease-in-out 1400ms infinite;
    }

    .silk-home__seal {
        bottom: -51px;
        z-index: 8;
    }
}

.silk-home__hero-copy {
    background:
        linear-gradient(135deg, rgba(251, 251, 250, .98), rgba(244, 242, 238, .96)),
        radial-gradient(circle at 92% 30%, rgba(217, 177, 170, .15), transparent 32%);
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    justify-content: center;
    min-height: 100%;
    overflow: hidden;
    padding: clamp(48px, 6vw, 96px) clamp(28px, 6vw, 86px);
    position: relative;
}

.botanical-watermark {
    --botanical-watermark-opacity: .24;
    height: clamp(540px, 78vh, 860px);
    max-width: 28vw;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
    width: auto;
    z-index: 0;
}

.botanical-watermark__inner {
    animation: botanical-watermark-sway 13s cubic-bezier(0.42, 0, 0.22, 1) 1700ms infinite alternate both;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.botanical-watermark img {
    animation: botanical-watermark-float 14s cubic-bezier(0.42, 0, 0.22, 1) 1700ms infinite alternate both;
    display: block;
    height: 100%;
    mix-blend-mode: multiply;
    opacity: var(--botanical-watermark-opacity);
    transform-origin: 58% 16%;
    will-change: transform;
    width: auto;
}

.hero-reveal,
.hero-reveal-soft {
    --hero-reveal-delay: 0ms;
    --hero-reveal-duration: 800ms;
    --hero-reveal-y: 16px;
    --hero-reveal-blur: 6px;
    --hero-reveal-scale-start: 1;
    animation: hero-reveal-up var(--hero-reveal-duration) var(--hero-reveal-ease) var(--hero-reveal-delay) both;
    filter: blur(var(--hero-reveal-blur));
    opacity: 0;
    scale: var(--hero-reveal-scale-start);
    translate: 0 var(--hero-reveal-y);
    will-change: opacity, translate, scale, filter;
}

.hero-reveal-soft {
    --hero-reveal-y: 14px;
    --hero-reveal-blur: 5px;
}

.hero-reveal--eyebrow {
    --hero-reveal-delay: 150ms;
    --hero-reveal-duration: 700ms;
    --hero-reveal-y: 16px;
    --hero-reveal-blur: 6px;
}

.hero-reveal--title {
    --hero-reveal-delay: 250ms;
    --hero-reveal-duration: 900ms;
    --hero-reveal-y: 22px;
    --hero-reveal-blur: 8px;
}

.hero-reveal--script {
    --hero-reveal-delay: 450ms;
    --hero-reveal-duration: 750ms;
    --hero-reveal-y: 14px;
    --hero-reveal-blur: 5px;
}

.hero-reveal--body {
    --hero-reveal-delay: 550ms;
    --hero-reveal-duration: 750ms;
    --hero-reveal-y: 16px;
    --hero-reveal-blur: 5px;
}

.hero-reveal--promo {
    --hero-reveal-delay: 700ms;
    --hero-reveal-duration: 750ms;
    --hero-reveal-y: 18px;
    --hero-reveal-blur: 6px;
}

.hero-reveal--cta {
    --hero-reveal-delay: 850ms;
    --hero-reveal-duration: 750ms;
    --hero-reveal-y: 18px;
    --hero-reveal-blur: 4px;
    --hero-reveal-scale-start: .98;
}

.hero-reveal--signature {
    --hero-reveal-delay: 1000ms;
    --hero-reveal-duration: 800ms;
    --hero-reveal-y: 10px;
    --hero-reveal-blur: 0px;
}

.hero-reveal--watermark {
    --hero-reveal-delay: 500ms;
    --hero-reveal-duration: 1200ms;
    --hero-reveal-y: 0px;
    --hero-reveal-blur: 0px;
    animation-name: hero-reveal-watermark;
    translate: 18px 0;
}

@keyframes hero-reveal-up {
    from {
        filter: blur(var(--hero-reveal-blur));
        opacity: 0;
        scale: var(--hero-reveal-scale-start);
        translate: 0 var(--hero-reveal-y);
    }

    to {
        filter: blur(0);
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}

@keyframes hero-reveal-image-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hero-reveal-image-scale {
    from {
        scale: 1.02;
    }

    to {
        scale: 1;
    }
}

@keyframes hero-reveal-watermark {
    from {
        opacity: 0;
        translate: 18px 0;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes hero-bouquet-breathe {
    0% {
        transform: translate3d(calc(var(--hero-parallax-image-x) - 2px), calc(var(--hero-parallax-image-y) + 1px), 0) scale(1.008);
    }

    35% {
        transform: translate3d(calc(var(--hero-parallax-image-x) + 3px), calc(var(--hero-parallax-image-y) - 4px), 0) scale(1.026);
    }

    68% {
        transform: translate3d(calc(var(--hero-parallax-image-x) - 4px), calc(var(--hero-parallax-image-y) - 9px), 0) scale(1.04);
    }

    100% {
        transform: translate3d(calc(var(--hero-parallax-image-x) + 1px), calc(var(--hero-parallax-image-y) - 1px), 0) scale(1.014);
    }
}

@keyframes hero-sunlight-drift {
    0% {
        opacity: .36;
        transform: translate3d(calc(var(--hero-parallax-light-x) - 24px), calc(var(--hero-parallax-light-y) - 10px), 0) scale(1.02);
    }

    45% {
        opacity: .52;
        transform: translate3d(calc(var(--hero-parallax-light-x) + 10px), calc(var(--hero-parallax-light-y) + 8px), 0) scale(1.07);
    }

    100% {
        opacity: .4;
        transform: translate3d(calc(var(--hero-parallax-light-x) + 28px), calc(var(--hero-parallax-light-y) + 12px), 0) scale(1.03);
    }
}

@keyframes hero-atmosphere-drift {
    0% {
        opacity: .46;
        transform: translate3d(-10px, -4px, 0) scale(1.01);
    }

    50% {
        opacity: .58;
        transform: translate3d(8px, 6px, 0) scale(1.05);
    }

    100% {
        opacity: .48;
        transform: translate3d(14px, -2px, 0) scale(1.02);
    }
}

@keyframes hero-particle-drift {
    0% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }

    18% {
        opacity: .3;
    }

    60% {
        opacity: .18;
    }

    100% {
        opacity: 0;
        transform: translate3d(-14px, -42px, 0);
    }
}

@keyframes botanical-watermark-float {
    from {
        transform: translate3d(0, -14px, 0);
    }

    to {
        transform: translate3d(0, 14px, 0);
    }
}

@keyframes botanical-watermark-sway {
    from {
        transform: translate3d(-4px, 0, 0) rotate(-1.35deg);
    }

    50% {
        transform: translate3d(2px, -4px, 0) rotate(0.2deg);
    }

    to {
        transform: translate3d(6px, 0, 0) rotate(1.35deg);
    }
}

.silk-home__hero-copy::before {
    content: "";
    display: none;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.silk-home__hero-copy::after {
    content: "";
    display: none;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.silk-home__hero-copy > * {
    position: relative;
    z-index: 1;
}

.silk-home__hero-copy > .botanical-watermark {
    bottom: -28px;
    position: absolute;
    right: -72px;
    z-index: 0;
}

.silk-home__hero-copy > .botanical-watermark img {
    margin-bottom: 0;
    margin-right: 0;
}

.silk-home__hero-body > :first-child {
    margin-top: 0;
}

.silk-home__hero-body > :last-child {
    margin-bottom: 0;
}

.silk-home__eyebrow {
    color: var(--silk-gold);
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    margin: 0 0 10px;
    text-transform: uppercase;
}

.silk-home h1,
.silk-home h2,
.silk-home h3 {
    color: var(--silk-ink);
    font-family: "Newsreader", Georgia, serif;
    font-weight: 500;
    letter-spacing: -.018em;
    margin: 0;
}

.silk-home h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: var(--ls-hero);
    line-height: var(--lh-heading-tight);
    margin-bottom: 24px;
    max-width: 10.8ch;
}

.silk-home h2 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.05;
}

.silk-home h3 {
    font-size: 18px;
    line-height: 1.2;
}

.silk-home__script,
.silk-home__signature {
    color: var(--silk-rose);
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-heading);
}

.silk-home__script {
    font-size: 22px;
    margin: 2px 0 18px;
}

.silk-home__signature {
    align-items: center;
    display: flex;
    font-size: 26px;
    gap: 10px;
    margin: 72px 0 0;
    width: fit-content;
}

.silk-home__signature img {
    display: inline-block;
    height: auto;
    line-height: 1;
    object-fit: contain;
    transform: translateY(1px) rotate(30deg);
    width: 16px;
}

.silk-home__hero-copy p:not(.silk-home__eyebrow):not(.silk-home__script):not(.silk-home__signature) {
    color: var(--silk-ink);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
    max-width: 610px;
}

.silk-home__desktop-copy .silk-home__hero-body p {
    margin: 0 0 18px;
}

.silk-home__desktop-copy .silk-home__hero-body p:first-child {
    margin-bottom: 0;
}

.silk-home__mobile-body,
.silk-home__mobile-note {
    margin: 0;
}

.silk-home__mobile-body {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
    max-width: 32ch;
}

.silk-home__mobile-body p {
    margin: 0;
}

.silk-home__mobile-body p + p {
    margin-top: 6px;
}

.silk-home__mobile-note {
    color: var(--silk-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
    max-width: 28ch;
    opacity: .9;
}

.silk-home__gift {
    align-items: center;
    background: rgba(244, 242, 238, .94);
    border: 1px solid var(--silk-border);
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(36, 36, 36, .06);
    display: flex;
    gap: 18px;
    margin: 24px 0 18px;
    max-width: 560px;
    padding: 16px;
}

.silk-home__gift span {
    align-items: center;
    background: var(--silk-rose);
    border-radius: 50%;
    color: #fbfbfa;
    display: inline-flex;
    flex: 0 0 48px;
    font-size: var(--fs-meta);
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.silk-home__gift p {
    margin: 0;
}

.silk-home__hero-copy .silk-home__desktop-copy .silk-home__gift p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.45;
}

.silk-home__hero-copy .silk-home__desktop-copy .silk-home__hero-actions .silk-home__button--dark {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.silk-home__hero-copy .silk-home__desktop-copy .silk-home__hero-actions .silk-home__button--secondary,
.silk-home__hero-copy .silk-home__desktop-copy .silk-home__hero-actions .silk-home__button--secondary:link,
.silk-home__hero-copy .silk-home__desktop-copy .silk-home__hero-actions .silk-home__button--secondary:visited {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.silk-home__collection {
    background: var(--silk-paper);
    border-top: 1px solid var(--silk-border);
    container-type: inline-size;
    padding: 28px clamp(20px, 5vw, 72px) 34px;
    position: relative;
    text-align: center;
}

.silk-home__collection::before {
    background: radial-gradient(circle at 70% 52%, rgba(183, 165, 138, .08), rgba(183, 165, 138, .03) 28%, transparent 62%);
    content: "";
    filter: blur(42px);
    inset: 118px 8% 34px 34%;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.silk-home__collection-header {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0 auto 24px;
    max-width: 1460px;
    position: relative;
    z-index: 1;
}

.silk-home__collection-intro {
    justify-self: center;
    max-width: 680px;
}

.silk-home__section-intro {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
    margin: 8px 0 0;
}

.silk-home__collection-intro h2,
.silk-home .silk-home__survey-editorial-title,
#behind-title,
#email-soft-close-title {
    font-family: var(--font-heading);
    font-size: var(--fs-section);
    font-weight: 400;
    letter-spacing: var(--ls-heading);
    line-height: var(--lh-heading);
}

.silk-home__collection--pre .silk-home__collection-stage {
    --silk-collection-card-columns: 5;
    --silk-collection-card-gap: 24px;
    margin: 0 auto;
    max-width: 1460px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.silk-home__collection--pre .silk-home__cards {
    padding-top: 0 !important;
}

.silk-home__collection--pre .silk-home__collection-note {
    display: none;
}

.silk-home__selected-scale-card {
    --selected-card-scale: 1.02;
}

.silk-home__cards {
    --silk-collection-card-columns: 5;
    --silk-collection-card-gap: 24px;
    display: grid;
    gap: var(--silk-collection-card-gap);
    grid-template-columns: repeat(var(--silk-collection-card-columns), minmax(170px, 1fr));
    margin: 0 auto;
    max-width: 1460px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1280px) {
    .silk-home__collection--pre .silk-home__collection-header {
        margin-bottom: 50px;
    }

    .silk-home__collection--pre .silk-home__cards > *:nth-child(5) {
        contain: layout;
        overflow: visible;
        position: relative;
        z-index: 2;
    }

    .silk-home__collection--pre .silk-home__collection-note {
        align-items: flex-start;
        display: inline-flex;
        gap: 10px;
        pointer-events: none;
        position: absolute;
        right: 18px;
        top: -78px;
        transform: rotate(-8deg);
        user-select: none;
        z-index: 5;
    }

    .silk-home__collection--pre .silk-home__collection-note-text {
        color: var(--silk-rose);
        display: flex;
        flex-direction: column;
        font-family: var(--font-script);
        font-size: clamp(30px, 2.3vw, 38px);
        font-style: normal;
        font-weight: 400;
        letter-spacing: 0;
        line-height: .92;
        opacity: .92;
        text-align: left;
        white-space: nowrap;
    }

    .silk-home__collection--pre .silk-home__collection-note-arrow {
        display: inline-block;
        margin-top: 22px;
        overflow: visible;
        transform: rotate(18deg);
    }

    .silk-home__collection--pre .silk-home__collection-note-arrow path {
        fill: none;
        stroke: var(--silk-rose);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2.75px;
    }
}

@media (max-width: 1279px) {
    .silk-home__collection--pre .silk-home__collection-note {
        display: none !important;
    }

    .silk-home__collection--pre .silk-home__collection-header {
        margin-bottom: 24px;
    }

    .silk-home__collection--pre .silk-home__cards {
        padding-top: 0 !important;
    }
}

.silk-home__card {
    --selected-card-scale: 1.02;
    background: var(--silk-paper);
    border: 1px solid var(--silk-border);
    border-radius: 18px;
    box-shadow:
        0 10px 22px rgba(36, 36, 36, .04),
        0 1px 0 rgba(255, 255, 255, .6) inset;
    contain: layout paint;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: left;
    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
        background 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.silk-home__card-hitarea {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: block;
    padding: 0;
    text-align: inherit;
    width: 100%;
}

.silk-home__card-hitarea:focus-visible {
    border-radius: 18px;
    box-shadow:
        0 0 0 3px rgba(96, 114, 100, .18),
        0 20px 36px rgba(36, 36, 36, .08),
        0 1px 0 rgba(255, 255, 255, .7) inset;
    outline: none;
}

.silk-home__card-hitarea {
    aspect-ratio: 3 / 5;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: grid;
    grid-template-rows: minmax(0, 3fr) minmax(0, 1fr);
    height: 100%;
    padding: 0;
    position: relative;
    text-align: inherit;
    width: 100%;
}

@media (min-width: 768px) {
    .silk-home__collection .silk-home__card-hitarea {
        min-height: 100%;
    }
}

.silk-home__card-media {
    min-height: 0;
    overflow: hidden;
    position: relative;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .32s ease-out;
}

.silk-home__card-media::after {
    animation: collection-light-sweep 18s ease-in-out infinite;
    background:
        linear-gradient(118deg,
            rgba(247, 237, 220, .02) 0%,
            rgba(247, 237, 220, .06) 24%,
            rgba(255, 248, 236, .1) 50%,
            rgba(238, 224, 198, .05) 72%,
            rgba(238, 224, 198, .02) 100%),
        radial-gradient(circle at 18% 28%, rgba(255, 246, 228, .08), transparent 44%);
    content: "";
    inset: -2% -10%;
    mix-blend-mode: soft-light;
    opacity: .08;
    pointer-events: none;
    position: absolute;
    transform: translate3d(-6%, -1%, 0) scale(1.08);
    will-change: transform, opacity;
}

.silk-home__card img {
    animation: collection-image-drift 17s ease-in-out infinite;
    display: block;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center center;
    width: 100%;
}

.silk-home__card:nth-child(2n) .silk-home__card-media::after {
    animation-duration: 20s;
    animation-delay: -4s;
}

.silk-home__card:nth-child(3n) .silk-home__card-media::after {
    animation-duration: 15.5s;
    animation-delay: -2s;
}

.silk-home__card:nth-child(2n) img {
    animation-duration: 19.5s;
    animation-delay: -3s;
}

.silk-home__card:nth-child(3n) img {
    animation-duration: 15s;
    animation-delay: -5s;
}

.silk-home__card-body {
    align-items: center;
    background: linear-gradient(180deg, rgba(251, 251, 250, .96), rgba(244, 242, 238, .99));
    border-top: 1px solid rgba(216, 213, 207, .92);
    display: flex;
    justify-content: center;
    min-height: 0;
    padding: 18px 18px 20px;
    position: relative;
    text-align: center;
    transition:
        background 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
        color 420ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.silk-home__card-body h3 {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
    margin: 0;
    text-wrap: balance;
    transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.silk-home__heart {
    align-items: center;
    background: #cc7f82;
    border: 1px solid transparent;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(191, 141, 144, .12);
    color: rgba(255, 251, 249, .94);
    display: inline-flex;
    font-size: 18px;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
    transform: scale(1);
    transition:
        transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 340ms cubic-bezier(0.22, 1, 0.36, 1),
        background 340ms cubic-bezier(0.22, 1, 0.36, 1),
        color 340ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 36px;
}

.silk-home__heart span {
    display: inline-block;
    line-height: 1;
    transform: translateY(1px) scale(.98);
}

.silk-home__heart.is-active {
    animation: collection-heart-select 220ms ease-out;
    background: #fbfbfa;
    border-color: rgba(204, 127, 130, .18);
    box-shadow:
        0 0 0 4px rgba(96, 114, 100, .14),
        0 12px 22px rgba(96, 114, 100, .18);
    color: #cc7f82;
}

.silk-home__heart.is-active span {
    transform: translateY(1px) scale(1.02);
}

.silk-home__cards.has-selection .silk-home__card:not(.is-selected) {
    box-shadow:
        0 8px 18px rgba(36, 36, 36, .04),
        0 1px 0 rgba(255, 255, 255, .58) inset;
    filter: saturate(.92);
    opacity: .9;
}

.silk-home__card.is-selected {
    background: #f1eeea;
    border-color: #607264;
    box-shadow:
        0 0 0 3px rgba(96, 114, 100, .14),
        0 22px 38px rgba(36, 36, 36, .1),
        0 12px 22px rgba(96, 114, 100, .1),
        0 1px 0 rgba(255, 255, 255, .72) inset;
    transform: translateY(-6px) scale(var(--selected-card-scale));
    z-index: 3;
}

.silk-home__card.is-selected .silk-home__card-body {
    background: linear-gradient(180deg, #6c7d6f, #607264);
    border-top-color: rgba(255, 255, 255, .16);
}

.silk-home__card.is-selected .silk-home__card-body h3,
.silk-home__card.is-selected .silk-home__card-body p {
    color: #fbfbfa;
}

.silk-home__card.is-selected .silk-home__card-media {
    transform: scale(1.04);
}

.silk-home__card.is-selected img {
    filter: brightness(1.03);
}

.silk-home__card.is-selected .silk-home__card-hitarea:focus-visible {
    box-shadow:
        0 0 0 3px rgba(96, 114, 100, .2),
        0 16px 30px rgba(36, 36, 36, .08),
        0 1px 0 rgba(255, 255, 255, .72) inset;
}

@media (hover: hover) and (pointer: fine) {
    .silk-home__card:hover {
        border-color: rgba(96, 114, 100, .5);
        box-shadow:
            0 22px 34px rgba(36, 36, 36, .1),
            0 12px 20px rgba(96, 114, 100, .08),
            0 1px 0 rgba(255, 255, 255, .7) inset;
        transform: translateY(-4px) scale(1.018);
    }

    .silk-home__card:hover .silk-home__card-body {
        background: linear-gradient(180deg, #738476, #607264);
        border-top-color: rgba(255, 255, 255, .18);
    }

    .silk-home__card:hover .silk-home__card-body h3,
    .silk-home__card:hover .silk-home__card-body p {
        color: #fbfbfa;
    }

    .silk-home__card:hover .silk-home__card-media {
        transform: scale(1.032);
    }

    .silk-home__card:hover .silk-home__heart {
        box-shadow: 0 12px 22px rgba(191, 141, 144, .18);
        transform: scale(1.08);
    }

    .silk-home__card:hover .silk-home__heart.is-active {
        box-shadow:
            0 0 0 4px rgba(96, 114, 100, .16),
            0 14px 24px rgba(96, 114, 100, .2);
    }

    .silk-home__card.is-selected:hover {
        transform: translateY(-6px) scale(var(--selected-card-scale));
    }
}

@keyframes collection-light-sweep {
    from {
        opacity: .06;
        transform: translate3d(-8%, -1%, 0) scale(1.08);
    }

    50% {
        opacity: .09;
        transform: translate3d(0, 0, 0) scale(1.09);
    }

    to {
        opacity: .07;
        transform: translate3d(8%, 1.5%, 0) scale(1.08);
    }
}

@keyframes collection-image-drift {
    0%,
    100% {
        transform: scale(1);
    }

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

@keyframes collection-heart-select {
    0% {
        box-shadow:
            0 0 0 0 rgba(96, 114, 100, 0),
            0 8px 16px rgba(96, 114, 100, .12);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 0 4px rgba(96, 114, 100, .12),
            0 12px 20px rgba(96, 114, 100, .18);
        transform: scale(1.08);
    }

    100% {
        box-shadow:
            0 0 0 3px rgba(96, 114, 100, .14),
            0 10px 18px rgba(96, 114, 100, .18);
        transform: scale(1);
    }
}

@keyframes collection-note-arrow-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(3px) rotate(-2deg);
    }
}

@keyframes collection-note-breathe {
    0%,
    100% {
        opacity: .85;
    }

    50% {
        opacity: 1;
    }
}

.silk-home__collection.is-reveal-ready .silk-home__collection-header,
.silk-home__collection.is-reveal-ready .silk-home__card {
    filter: blur(4px);
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 720ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow .3s ease-out,
        border-color .3s ease-out;
}

.silk-home__collection.is-reveal-ready.is-visible .silk-home__collection-header,
.silk-home__collection.is-reveal-ready.is-visible .silk-home__card {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

.silk-home__collection.is-reveal-ready .silk-home__card:nth-child(1) {
    transition-delay: 80ms;
}

.silk-home__collection.is-reveal-ready .silk-home__card:nth-child(2) {
    transition-delay: 180ms;
}

.silk-home__collection.is-reveal-ready .silk-home__card:nth-child(3) {
    transition-delay: 280ms;
}

.silk-home__collection.is-reveal-ready .silk-home__card:nth-child(4) {
    transition-delay: 380ms;
}

.silk-home__collection.is-reveal-ready .silk-home__card:nth-child(5) {
    transition-delay: 480ms;
}

.silk-home__preference {
    background:
        linear-gradient(180deg, #f5f1ec 0%, #f5f1ec 84%, #f4f2ef 100%),
        radial-gradient(circle at 74% 34%, rgba(217, 177, 170, .1) 0%, rgba(217, 177, 170, 0) 38%),
        radial-gradient(circle at 92% 84%, rgba(217, 177, 170, .06) 0%, rgba(217, 177, 170, 0) 22%),
        #f5f1ec;
    overflow: hidden;
    padding: 96px 20px;
    position: relative;
}

.silk-home__preference::before {
    display: none;
}

.silk-home__preference::after {
    display: none;
}

.silk-home__preference-background {
    display: none;
}

.silk-home__preference-background::after {
    display: none;
}

.silk-home__preference-bridge {
    display: none;
}

.silk-home__preference-bridge span {
    color: var(--silk-muted);
    display: block;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    margin: 28px auto;
    max-width: 34ch;
    text-align: center;
}

@media (min-width: 768px) {
    .silk-home__collection {
        padding-bottom: 6px;
    }

    .silk-home__preference-bridge {
        display: block;
    }

    .silk-home__preference-bridge span {
        color: var(--silk-accent, var(--silk-gold));
        font-size: 15px;
        letter-spacing: .06em;
        line-height: 1.4;
        margin: 24px auto 18px;
        max-width: none;
        text-transform: uppercase;
        white-space: nowrap;
    }
}

.silk-home__preference-shell {
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    width: 100%;
    z-index: 3;
}

.silk-home__preference-copy {
    display: none;
}

.silk-home__preference-copy h2 {
    color: #fbfbfa;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(52px, 4.9vw, 64px);
    font-weight: 400;
    letter-spacing: -.018em;
    line-height: 1.02;
    margin: 0;
    max-width: 8.4ch;
}

.silk-home__preference-title-mobile {
    margin: 0;
    max-width: none;
    width: 100%;
}

.silk-home__preference-copy p {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 32ch;
}

.silk-home__preference-benefits {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

.silk-home__preference-benefits li {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 34px;
    position: relative;
}

.silk-home__preference-benefits li::before {
    align-items: center;
    border: 1px solid rgba(183, 165, 138, .72);
    border-radius: 50%;
    color: #f4f2ee;
    content: "✓";
    display: inline-flex;
    font-size: 12px;
    height: 20px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 2px;
    width: 20px;
}

.silk-home__preference-panel {
    --survey-card-radius: 18px;
    --survey-pill-radius: 16px;
    --survey-mini-radius: 8px;
    background: #fbfbfa;
    border: 1px solid rgba(90, 107, 93, .78);
    border-radius: 32px;
    box-shadow:
        0 34px 90px rgba(46, 61, 48, 0.20),
        0 10px 28px rgba(46, 61, 48, 0.10);
    display: grid;
    gap: 0;
    min-height: 0;
    padding: clamp(48px, 4vw, 64px);
    position: relative;
    z-index: 4;
}

@media (min-width: 768px) {
    .silk-home__preference-panel {
        background:
            radial-gradient(circle at 82% 24%, rgba(217, 177, 170, 0.22), transparent 34%),
            radial-gradient(circle at 70% 78%, rgba(183, 165, 138, 0.16), transparent 36%),
            linear-gradient(180deg, #faf7f2 0%, #f5f1ec 100%);
        border: 1px solid #d8d5cf;
        box-shadow: 0 26px 70px rgba(30, 32, 29, 0.08);
        outline: 0;
        overflow: hidden;
        padding: clamp(42px, 3.6vw, 56px);
        transform: none;
    }
}

.silk-home__survey-stage,
.silk-home__email-soft-close {
    position: relative;
    z-index: 5;
}

.silk-home fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.silk-home legend {
    border: 0;
    color: var(--silk-ink);
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 0 0 10px;
    padding: 0;
}

.silk-home__field-note {
    color: var(--silk-muted);
    font-size: 13px;
    margin: -2px 0 12px;
}

.silk-home__option-grid,
.silk-home__swatches {
    display: grid;
    gap: 12px;
}

.silk-home__option-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.silk-home__option-grid--airy {
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.silk-home__option-grid--placement-scenes {
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.silk-home__survey-answer-card {
    --selected-card-scale: 1.02;
    --survey-answer-hover-background: #fff;
    --survey-answer-hover-border: #607264;
    --survey-answer-hover-shadow: 0 14px 28px rgba(96, 114, 100, .14);
    --survey-answer-hover-transform: scale(1.01);
    --survey-answer-hover-color: #1f231f;
    --survey-answer-selected-background: #607264;
    --survey-answer-selected-border: #607264;
    --survey-answer-selected-shadow: 0 20px 38px rgba(56, 71, 59, .24);
    --survey-answer-selected-transform: scale(var(--selected-card-scale));
    --survey-answer-selected-color: #fbfbfa;
}

.silk-home__survey-answer-card:hover:not(.is-selected) {
    background: var(--survey-answer-hover-background);
    border-color: var(--survey-answer-hover-border);
    box-shadow: var(--survey-answer-hover-shadow);
    color: var(--survey-answer-hover-color);
    transform: var(--survey-answer-hover-transform);
}

.silk-home__survey-answer-card.is-selected {
    background: var(--survey-answer-selected-background);
    border-color: var(--survey-answer-selected-border);
    box-shadow: var(--survey-answer-selected-shadow);
    color: var(--survey-answer-selected-color);
    transform: var(--survey-answer-selected-transform);
}

.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__style-title,
.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__importance-label,
.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__perspective-card-title,
.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__perspective-card-description,
.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__survey-illustration-title,
.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__survey-illustration-description {
    color: var(--survey-answer-hover-color);
}

.silk-home__survey-answer-card.is-selected .silk-home__style-title,
.silk-home__survey-answer-card.is-selected .silk-home__importance-label,
.silk-home__survey-answer-card.is-selected .silk-home__perspective-card-title,
.silk-home__survey-answer-card.is-selected .silk-home__perspective-card-description,
.silk-home__survey-answer-card.is-selected .silk-home__survey-illustration-title,
.silk-home__survey-answer-card.is-selected .silk-home__survey-illustration-description {
    color: var(--survey-answer-selected-color);
}

.silk-home__survey-answer-card.is-selected .silk-home__style-title,
.silk-home__survey-answer-card.is-selected .silk-home__importance-label,
.silk-home__survey-answer-card.is-selected .silk-home__perspective-card-title,
.silk-home__survey-answer-card.is-selected .silk-home__survey-illustration-title {
    font-weight: 700;
}

.silk-home__survey-answer-card.is-selected .silk-home__selection-check,
.silk-home__survey-answer-card.is-selected .silk-home__placement-card-checkbox,
.silk-home__survey-answer-card.is-selected .silk-home__importance-check,
.silk-home__survey-answer-card.is-selected .silk-home__perspective-card-checkbox {
    background: #fbfbfa;
    border-color: #fbfbfa;
    box-shadow:
        0 0 0 2px rgba(96, 114, 100, .22),
        0 8px 18px rgba(36, 36, 36, .16);
}

.silk-home__style-option {
    background: linear-gradient(180deg, rgba(251, 251, 250, .98), rgba(246, 243, 238, .98));
    border: 1px solid rgba(214, 207, 197, .96);
    border-radius: var(--survey-card-radius);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .86),
        0 10px 22px rgba(36, 36, 36, .05);
    color: var(--silk-ink);
    display: grid;
    grid-template-rows: auto 28px auto;
    min-height: 44px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.silk-home__style-option {
    align-items: start;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
}

.silk-home__style-option.silk-home__style-option--survey-card,
.silk-home__style-option.silk-home__style-option--placement-scene {
    border-radius: var(--survey-card-radius) !important;
}

.silk-home__style-image {
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.silk-home__style-option--survey-card .silk-home__style-image,
.silk-home__style-option--placement-scene .silk-home__style-image,
.silk-home__style-option--placement-scene .silk-home__style-image--placement-scene {
    border-radius: inherit !important;
}

.silk-home__style-image img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: var(--style-image-position, center);
    position: absolute;
    transform: scale(var(--style-image-scale, 1));
    transition: transform .28s ease;
    width: 100%;
}

.silk-home__style-copy {
    align-content: start;
    display: grid;
    gap: 0;
    min-height: 0;
    padding: 10px 8px 12px;
}

.silk-home__style-copy--placement-scene {
    padding: 10px 10px 12px;
}

.silk-home__style-title {
    color: rgba(36, 36, 36, .88);
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    font-weight: 600;
    line-height: var(--lh-meta);
    letter-spacing: 0;
    min-height: 0;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

.silk-home__style-title--placement-scene {
    white-space: normal;
}

.silk-home__style-swatches {
    border-bottom: 1px solid #d8d5cf;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(5, 1fr);
    height: 28px;
    width: 100%;
}

.silk-home__style-swatches span {
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.silk-home__selection-check {
    opacity: 1;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: opacity .18s ease, transform .18s ease;
}

.silk-home__survey-answer-check {
    align-items: center;
    background: #fff;
    border: 1px solid #607264;
    border-radius: 8px;
    box-shadow: none;
    color: transparent;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.silk-home__survey-answer-check::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 10px;
    opacity: 0;
    transform: scale(.88);
    transition: opacity .18s ease, transform .18s ease;
    width: 12px;
}

.silk-home__selection-check::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 10px;
    width: 12px;
}

.silk-home__style-option.is-selected .silk-home__selection-check {
    opacity: 1;
    color: #4f6153;
}

.silk-home__style-option.is-selected .silk-home__selection-check::after,
.silk-home__survey-answer-card.is-selected .silk-home__selection-check::after,
.silk-home__compact-card.is-selected .silk-home__survey-answer-check::after,
.silk-home__importance-check.is-selected::after,
.silk-home__perspective-card.is-selected .silk-home__survey-answer-check::after {
    opacity: 1;
    transform: scale(1);
}

.silk-home__style-option.is-selected .silk-home__style-image {
    border-bottom-color: rgba(183, 165, 138, .24);
}

.silk-home__style-option.is-selected .silk-home__style-swatches {
    border-bottom-color: rgba(251, 251, 250, .18);
}

.silk-home__style-option--survey-card-no-swatches {
    grid-template-rows: auto auto;
}

.silk-home__style-option--survey-card-no-swatches .silk-home__style-copy {
    border-top: 1px solid #d8d5cf;
}

.silk-home__style-option:hover:not(.is-selected) .silk-home__style-image img,
.silk-home__style-option.is-selected .silk-home__style-image img {
    transform: scale(calc(var(--style-image-scale, 1) * 1.03));
}

.silk-home__style-option--placement-scene {
    grid-template-rows: auto auto;
    max-width: 188px;
    width: 100%;
}

.silk-home__style-image--placement-scene {
    aspect-ratio: 2.228 / 1;
    background: #f7f2eb;
}

.silk-home__style-image--placement-scene img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    padding: 0;
    transform: scale(1);
    width: 100%;
}

.silk-home__style-option--placement-scene:hover:not(.is-selected) .silk-home__style-image--placement-scene img,
.silk-home__style-option--placement-scene.is-selected .silk-home__style-image--placement-scene img {
    transform: scale(1.03);
}

.silk-home__survey-stage {
    display: grid;
    min-height: 0;
}

.silk-home__survey-step {
    align-content: start;
    display: grid;
    gap: 24px;
    min-height: 0;
}

.silk-home__survey-step[hidden] {
    display: none !important;
}

.silk-home__survey-step--editorial {
    gap: 24px;
}

.silk-home__survey-step-header {
    display: grid;
    gap: 4px;
    max-width: 760px;
}

.silk-home__survey-step-header h3,
.silk-home__survey-column-header h4,
.silk-home__profile-card h4,
.silk-home__email-capture h4 {
    color: var(--silk-ink);
    font-family: var(--font-heading);
    font-size: var(--fs-editorial-h3);
    font-weight: 400;
    letter-spacing: var(--ls-editorial-h3);
    line-height: var(--lh-editorial-h3);
    margin: 0;
}

.silk-home__survey-column-header h4,
.silk-home__profile-card h4,
.silk-home__email-capture h4 {
    font-size: 24px;
}

.silk-home__survey-step-header p,
.silk-home__survey-column-header p,
.silk-home__profile-card p,
.silk-home__email-capture p {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    line-height: var(--lh-body-compact);
    margin: 0;
    max-width: 60ch;
}

.silk-home__survey-step-header--intro {
    gap: 12px;
    justify-items: center;
    margin-inline: auto;
    max-width: 760px;
    text-align: center;
}

.silk-home__survey-step-label {
    color: #607264;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.silk-home__survey-illustration-grid {
    display: grid;
    gap: 16px;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 760px;
    width: 100%;
}

.silk-home__survey-illustration-card {
    --survey-answer-hover-background: linear-gradient(180deg, rgba(255, 253, 250, 1), rgba(245, 240, 233, 1));
    --survey-answer-hover-border: #d8d0c4;
    --survey-answer-hover-shadow: 0 18px 34px rgba(49, 44, 38, .08);
    --survey-answer-hover-transform: translateY(-2px);
    --survey-answer-selected-background: linear-gradient(180deg, #fffdfa 0%, #eff4ec 100%);
    --survey-answer-selected-border: #6a7e68;
    --survey-answer-selected-shadow: 0 22px 44px rgba(96, 114, 100, .16);
    --survey-answer-selected-transform: none;
    --survey-answer-selected-color: #1f231f;
    align-content: start;
    background: linear-gradient(180deg, rgba(255, 253, 250, .98), rgba(247, 242, 235, .98));
    border: 1px solid rgba(220, 212, 201, .96);
    border-radius: 24px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .88),
        0 14px 28px rgba(49, 44, 38, .05);
    display: grid;
    gap: 18px;
    grid-template-rows: auto auto;
    height: 100%;
    justify-items: center;
    min-height: 252px;
    box-sizing: border-box;
    padding: 22px 20px 18px;
    position: relative;
    text-align: center;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
    width: 100%;
}

.silk-home__survey-step-header--intro + .silk-home__survey-block--primary {
    margin-top: 10px;
}

.silk-home__survey-illustration-tile {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 239, 232, .92));
    border: 1px solid rgba(226, 219, 210, .9);
    border-radius: 24px;
    display: inline-flex;
    height: 88px;
    justify-content: center;
    width: 88px;
}

.silk-home__survey-illustration-icon {
    color: #6c7d67;
    display: inline-flex;
    height: 54px;
    width: 54px;
}

.silk-home__survey-illustration-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}

.silk-home__survey-illustration-icon path,
.silk-home__survey-illustration-icon circle {
    vector-effect: non-scaling-stroke;
}

.silk-home__survey-illustration-copy {
    display: grid;
    gap: 8px;
    justify-items: center;
    max-width: 25ch;
}

.silk-home__survey-illustration-title {
    color: #242424;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 0;
}

.silk-home__survey-illustration-description {
    color: rgba(36, 36, 36, .72);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42;
    margin: 0;
}

.silk-home__survey-illustration-card .silk-home__selection-check {
    opacity: 1;
    right: 14px;
    top: 14px;
}

.silk-home__survey-illustration-card.is-selected .silk-home__selection-check {
    background: #607264;
    border-color: #607264;
    box-shadow: none;
    color: transparent;
    opacity: 1;
}

.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__survey-illustration-title,
.silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__survey-illustration-description,
.silk-home__survey-answer-card.is-selected .silk-home__survey-illustration-title,
.silk-home__survey-answer-card.is-selected .silk-home__survey-illustration-description {
    color: #1f231f;
}

.silk-home__survey-block {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
    position: relative;
}

.silk-home__survey-block:last-child {
    margin-bottom: 0;
}

.silk-home__survey-block--primary {
    gap: 10px;
}

.silk-home__survey-block--secondary {
    gap: 10px;
    max-width: 840px;
}

.silk-home__survey-block--tertiary {
    gap: 14px;
    max-width: 960px;
}

.silk-home__survey-block--gallery {
    padding-top: 0;
}

.silk-home__survey-block--accents {
    max-width: 860px;
}

.silk-home__survey-block--placement {
    max-width: 980px;
}

.silk-home__survey-block--notes {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
}

.silk-home__survey-block--importance {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
}

.silk-home__survey-block--quaternary {
    gap: 18px;
    max-width: 100%;
}

.silk-home__survey-block--placement .silk-home__survey-kicker {
    background: rgba(244, 242, 238, .92);
    box-shadow: none;
    color: #5b6558;
}

.silk-home__survey-block--notes .silk-home__survey-kicker,
.silk-home__survey-block--importance .silk-home__survey-kicker,
.silk-home__survey-block--quaternary .silk-home__survey-kicker {
    background: rgba(244, 242, 238, .92);
    box-shadow: none;
    color: #5b6558;
}

.silk-home__survey-block-heading {
    display: grid;
    gap: 5px;
    max-width: 680px;
}

.silk-home__survey-block-heading--perspective {
    gap: 10px;
    max-width: 860px;
}

.silk-home__survey-kicker {
    align-items: center;
    background: rgba(244, 242, 238, .92);
    border-radius: var(--survey-pill-radius);
    color: #5b6558;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    justify-content: center;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    min-height: 40px;
    padding: 0 16px;
    text-transform: uppercase;
    width: fit-content;
}

.silk-home__survey-block-heading h4 {
    color: var(--silk-ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(24px, 2vw, 28px);
    font-weight: 400;
    letter-spacing: -.016em;
    line-height: 1.12;
    margin: 0;
}

.silk-home__survey-block-heading p {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    line-height: var(--lh-body-compact);
    margin: 0;
}

.silk-home__selected-style-label {
    color: var(--silk-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.55;
    margin: 2px 0 0;
    text-align: center;
}

.silk-home__survey-more-link {
    align-items: center;
    background: transparent;
    border: 0;
    color: #4f5f53;
    display: inline-flex;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    justify-self: center;
    padding: 0;
    width: 100%;
}

.silk-home__survey-more-link::before,
.silk-home__survey-more-link::after {
    background: rgba(216, 213, 207, .7);
    content: "";
    flex: 1 1 auto;
    height: 1px;
}

.silk-home__survey-more-link span {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    white-space: nowrap;
}

.silk-home__survey-more-link span::after {
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    display: inline-block;
    height: 7px;
    margin-top: -3px;
    transform: rotate(45deg);
    width: 7px;
}

.silk-home__survey-more-link--static {
    pointer-events: none;
}

.silk-home__accent-inline {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    max-width: 860px;
    width: 100%;
}

.silk-home__accent-inline-item {
    align-items: center;
    background: #f4f2ee;
    border: 1px solid #d8d5cf;
    border-radius: var(--survey-card-radius);
    box-shadow: 0 8px 18px rgba(36, 36, 36, .04);
    color: var(--silk-muted);
    display: inline-flex;
    height: auto;
    justify-content: center;
    min-height: 0;
    min-width: 0;
    aspect-ratio: 1;
    overflow: visible;
    padding: 4px 4px 14px;
    position: relative;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
    width: 100%;
}

.silk-home__accent-inline-item:hover:not(.is-selected) {
    background: #f1eeea;
    border-color: rgba(183, 165, 138, .54);
    box-shadow: 0 14px 26px rgba(174, 143, 111, .14);
    transform: translateY(-2px) scale(1.01);
}

.silk-home__accent-inline-item:active {
    transform: translateY(0) scale(.992);
}

.silk-home__accent-inline-item.is-selected {
    background: rgba(96, 114, 100, .08);
    border-color: #607264;
    box-shadow:
        0 0 0 2px rgba(96, 114, 100, .12),
        0 10px 18px rgba(96, 114, 100, .08);
    transform: translateY(-2px);
}

.silk-home__accent-inline-art {
    align-items: center;
    display: inline-flex;
    flex: 0 0 72px;
    height: 72px;
    justify-content: center;
    margin: 0 auto;
    width: 72px;
}

.silk-home__accent-inline-art img {
    display: block;
    height: 72px;
    max-height: 72px;
    max-width: 72px;
    object-fit: contain;
    width: 72px;
}

.silk-home__accent-inline-checkbox {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #bdb7ae;
    border-radius: var(--survey-mini-radius);
    display: inline-flex;
    box-shadow: 0 4px 10px rgba(36, 36, 36, .08);
    height: 20px;
    justify-content: center;
    position: relative;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
}

.silk-home__accent-inline-checkbox::after {
    content: "";
    border-bottom: 2px solid #607264;
    border-right: 2px solid #607264;
    height: 6px;
    opacity: 0;
    position: absolute;
    top: 3px;
    transform: rotate(45deg);
    width: 3px;
}

.silk-home__accent-inline-item.is-selected .silk-home__accent-inline-checkbox {
    background: #f8fbf8;
    border-color: rgba(96, 114, 100, .52);
}

.silk-home__accent-inline-item.is-selected .silk-home__accent-inline-checkbox::after {
    opacity: 1;
}

.silk-home__importance-grid {
    display: grid;
    gap: 12px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
}

.silk-home__survey-block--perspective .silk-home__importance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-home__survey-block--importance .silk-home__importance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.silk-home__survey-block--importance .silk-home__importance-card {
    align-items: center;
    min-height: 54px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.silk-home__survey-block--importance .silk-home__importance-label {
    line-height: 1.2;
    text-overflow: clip;
    white-space: normal;
}

.silk-home__importance-card {
    --survey-answer-hover-shadow: 0 14px 28px rgba(96, 114, 100, .20);
    --survey-answer-hover-transform: translateY(-2px) scale(1.01);
    align-items: center;
    background: linear-gradient(180deg, rgba(247, 243, 236, .96), rgba(243, 239, 233, .98));
    border: 1px solid rgba(214, 207, 197, .94);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .84),
        0 10px 22px rgba(36, 36, 36, .05);
    color: var(--silk-ink);
    display: grid;
    gap: 8px;
    grid-template-columns: 24px minmax(0, 1fr);
    min-height: 40px;
    padding: 7px 16px;
    position: relative;
    transition: background .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.silk-home__importance-card:active {
    transform: translateY(0) scale(.992);
}

.silk-home__importance-rank,
.silk-home__importance-check {
    align-items: center;
    border-radius: var(--survey-mini-radius);
    display: inline-flex;
    justify-content: center;
}

.silk-home__importance-rank {
    background: #607264;
    box-shadow: 0 0 0 2px #fbfbfa;
    color: #fbfbfa;
    font-size: 9px;
    font-weight: 600;
    height: 20px;
    line-height: 1;
    opacity: 0;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%) scale(.82);
    transition: opacity .18s ease, transform .18s ease;
    width: 20px;
    z-index: 2;
}

.silk-home__importance-rank.is-visible {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.silk-home__importance-check {
    position: static;
}

.silk-home__importance-label {
    color: #242424;
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    font-weight: 500;
    line-height: var(--lh-meta);
    letter-spacing: 0;
    margin-left: 12px;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.silk-home__importance-card:hover:not(.is-selected) .silk-home__importance-check {
    border-color: rgba(251, 251, 250, .72);
}

.silk-home__survey-textarea {
    background: #f4f2ee;
    border: 2px solid #C96F72;
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 8px 18px rgba(36, 36, 36, .03);
    color: var(--silk-ink);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    line-height: var(--lh-body-compact);
    min-height: 108px;
    padding: 18px 22px;
    resize: vertical;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    width: 100%;
}

.silk-home__survey-textarea::placeholder {
    color: var(--silk-muted);
    font: inherit;
    opacity: 1;
}

.silk-home__survey-textarea:focus {
    border-color: #607264;
    box-shadow: 0 0 0 3px rgba(96, 114, 100, .12), 0 14px 30px rgba(96, 114, 100, .08);
    background: #f4f2ee;
    outline: none;
}

.silk-home__perspective-grid {
    display: grid;
    gap: 12px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
}

.silk-home__perspective-card {
    --survey-answer-hover-shadow: 0 14px 28px rgba(96, 114, 100, .20);
    --survey-answer-hover-transform: translateY(-2px) scale(1.01);
    align-items: center;
    background: linear-gradient(180deg, rgba(247, 243, 236, .96), rgba(243, 239, 233, .98));
    border: 1px solid rgba(214, 207, 197, .94);
    border-radius: var(--survey-card-radius);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .84),
        0 10px 22px rgba(36, 36, 36, .05);
    color: var(--silk-ink);
    display: grid;
    gap: 10px;
    grid-template-columns: 72px minmax(0, 1fr) 24px;
    min-height: 78px;
    overflow: hidden;
    padding: 0 14px 0 0;
    position: relative;
    text-align: left;
    transition: background .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.silk-home__perspective-card:active {
    transform: translateY(0) scale(.992);
}

.silk-home__perspective-card-art {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-right: 1px solid #d8d5cf;
    border-radius: var(--survey-card-radius) 0 0 var(--survey-card-radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    display: inline-flex;
    height: 100%;
    justify-content: center;
    margin: 0;
    min-height: 74px;
    width: 72px;
}

.silk-home__perspective-card-art img {
    display: block;
    height: auto;
    max-height: 34px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.silk-home__perspective-card-copy {
    display: grid;
    gap: 5px;
}

.silk-home__perspective-card-title {
    color: rgba(36, 36, 36, .88);
    font-family: Inter, Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
    white-space: nowrap;
}

.silk-home__perspective-card-description {
    color: #2f2f2f;
    font-family: Inter, Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    margin: 0;
}

.silk-home__perspective-card-checkbox {
    align-self: center;
    justify-self: end;
    position: relative;
}

.silk-home__perspective-card:hover:not(.is-selected) .silk-home__perspective-card-checkbox {
    border-color: rgba(251, 251, 250, .72);
}

.silk-home__micro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.silk-home__micro-pill {
    background: linear-gradient(180deg, rgba(251, 251, 250, .98), rgba(246, 243, 238, .98));
    border: 1px solid rgba(214, 207, 197, .94);
    border-radius: var(--survey-pill-radius);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .84),
        0 10px 22px rgba(36, 36, 36, .05);
    color: var(--silk-ink);
    display: grid;
    gap: 6px;
    min-height: 94px;
    padding: 16px 18px;
    text-align: left;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.silk-home__micro-pill:hover {
    border-color: rgba(96, 114, 100, .44);
    box-shadow: 0 8px 18px rgba(36, 36, 36, .05);
    transform: translateY(-1px);
}

.silk-home__micro-pill.is-selected {
    background: linear-gradient(180deg, rgba(96, 114, 100, .09), rgba(96, 114, 100, .05));
    border-color: #607264;
    box-shadow: 0 10px 22px rgba(96, 114, 100, .10);
}

.silk-home__pill-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.silk-home__pill-copy {
    color: var(--silk-muted);
    display: block;
    font-size: 13px;
    line-height: 1.45;
}

.silk-home__insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-home__insight-card {
    min-height: 140px;
    padding: 20px 44px 20px 20px;
}

.silk-home__insight-card--soft {
    background: linear-gradient(180deg, rgba(251, 251, 250, .94), rgba(248, 246, 243, .98));
}

.silk-home__insight-card-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.silk-home__insight-card-text {
    color: var(--silk-muted);
    display: block;
    font-size: 14px;
    line-height: 1.5;
    max-width: 30ch;
}

.silk-home__swatches {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.silk-home__swatch {
    align-items: center;
    background: rgba(251, 251, 250, .5);
    border: 1px solid transparent;
    border-radius: var(--survey-pill-radius);
    color: var(--silk-ink);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 52px;
    padding: 10px 8px 8px;
    text-align: center;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.silk-home__swatch:hover {
    border-color: rgba(96, 114, 100, .28);
    transform: translateY(-1px);
}

.silk-home__swatch-dot {
    border: 2px solid #fbfbfa;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--silk-border);
    display: block;
    height: 44px;
    width: 44px;
}

.silk-home__swatch-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.silk-home__swatch.is-selected .silk-home__swatch-dot {
    box-shadow: 0 0 0 3px var(--silk-sage);
}

.silk-home__swatch.is-selected {
    background: rgba(96, 114, 100, .08);
    border-color: rgba(96, 114, 100, .42);
}

.silk-home__bouquet-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.silk-home__bouquet-option {
    background: linear-gradient(180deg, rgba(251, 251, 250, .98), rgba(246, 243, 238, .98));
    border: 1px solid rgba(214, 207, 197, .94);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .84),
        0 10px 22px rgba(36, 36, 36, .05);
    color: var(--silk-ink);
    display: grid;
    grid-template-rows: auto auto;
    overflow: hidden;
    padding: 0;
    text-align: left;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.silk-home__bouquet-option:hover {
    background: var(--silk-hover);
    transform: translateY(-1px);
}

.silk-home__bouquet-option.is-selected {
    background: linear-gradient(180deg, rgba(96, 114, 100, .08), rgba(96, 114, 100, .04));
    border-color: var(--silk-sage);
    box-shadow: 0 10px 22px rgba(96, 114, 100, .10);
}

.silk-home__bouquet-image {
    align-items: flex-start;
    aspect-ratio: 1.3;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .66), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, rgba(255, 251, 245, .98), rgba(242, 233, 223, .96)),
        linear-gradient(135deg, rgba(207, 203, 196, .18), rgba(182, 155, 116, .14));
    border-bottom: 1px solid rgba(216, 213, 207, .8);
    display: flex;
    justify-content: flex-end;
    padding: 12px;
}

.silk-home__bouquet-radio {
    background: #fbfbfa;
    border: 2px solid rgba(109, 109, 109, .75);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(36, 36, 36, .08);
    display: inline-block;
    height: 22px;
    width: 22px;
}

.silk-home__bouquet-option.is-selected .silk-home__bouquet-radio {
    border-color: var(--silk-sage);
    box-shadow: inset 0 0 0 5px #fbfbfa, 0 0 0 2px var(--silk-sage);
}

.silk-home__bouquet-content {
    display: grid;
    align-content: start;
    gap: 6px;
    min-height: 138px;
    padding: 14px 14px 16px;
}

.silk-home__bouquet-title,
.silk-home__bouquet-description {
    display: block;
    padding: 0;
}

.silk-home__bouquet-title {
    color: rgba(36, 36, 36, .88);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.silk-home__bouquet-description {
    color: var(--silk-muted);
    font-size: 13px;
    line-height: 1.45;
}

.silk-home__intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-home__intent-card {
    display: grid;
    gap: 10px;
    min-height: 156px;
    padding: 20px 46px 20px 20px;
}

.silk-home__intent-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.silk-home__intent-helper {
    color: var(--silk-muted);
    display: block;
    font-size: 14px;
    line-height: 1.5;
    max-width: 24ch;
}

.silk-home__survey-columns {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-home__survey-column {
    background: linear-gradient(180deg, rgba(251, 251, 250, .76), rgba(248, 246, 242, .98));
    border: 1px solid rgba(216, 213, 207, .86);
    border-radius: 18px;
    display: grid;
    gap: 16px;
    padding: 20px;
}

.silk-home__survey-column-header {
    display: grid;
    gap: 8px;
}

.silk-home__profile-card {
    background:
        radial-gradient(circle at top right, rgba(96, 114, 100, .08), transparent 32%),
        linear-gradient(180deg, rgba(251, 251, 250, .94), rgba(245, 242, 236, .98));
    border: 1px solid rgba(216, 213, 207, .92);
    border-radius: 24px;
    display: grid;
    gap: 18px;
    padding: clamp(22px, 3vw, 28px);
}

.silk-home__profile-card-header {
    display: grid;
    gap: 10px;
}

.silk-home__profile-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.silk-home__profile-chip {
    background: rgba(96, 114, 100, .08);
    border: 1px solid rgba(96, 114, 100, .16);
    border-radius: 999px;
    color: var(--silk-ink);
    display: inline-flex;
    font-size: 13px;
    padding: 8px 12px;
}

.silk-home__profile-details {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-home__profile-details div {
    background: rgba(251, 251, 250, .74);
    border: 1px solid rgba(216, 213, 207, .82);
    border-radius: 14px;
    display: grid;
    gap: 6px;
    padding: 14px 16px;
}

.silk-home__profile-details span {
    color: var(--silk-muted);
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.silk-home__profile-details strong {
    color: var(--silk-ink);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.silk-home__profile-advice {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.silk-home__profile-advice li {
    color: var(--silk-ink);
    padding-left: 26px;
    position: relative;
}

.silk-home__profile-advice li::before {
    align-items: center;
    background: rgba(96, 114, 100, .12);
    border-radius: 999px;
    color: #607264;
    content: "•";
    display: inline-flex;
    font-size: 18px;
    height: 18px;
    justify-content: center;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 3px;
    width: 18px;
}

.silk-home__survey-footer {
    display: grid;
    gap: 18px;
    justify-items: start;
    margin-top: 8px;
    width: fit-content;
}

.silk-home__survey-nav-button {
    align-items: center;
    background: #fbfbfa;
    border: 1px solid var(--silk-border);
    border-radius: var(--survey-pill-radius);
    color: var(--silk-ink);
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 500;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    min-height: 50px;
    padding: 0 22px;
    text-decoration: none;
    text-transform: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.silk-home__survey-nav-button--primary {
    background: #607264;
    border-color: #607264;
    color: #fbfbfa;
    font-weight: 600;
}

.silk-home__survey-nav-button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.silk-home__survey-nav-button--primary:hover:not(:disabled) {
    background: #738576;
    border-color: #738576;
}

.silk-home__survey-nav-button--secondary:hover:not(:disabled) {
    border-color: rgba(96, 114, 100, .34);
}

.silk-home__survey-nav-button:disabled {
    cursor: not-allowed;
    opacity: .42;
}

.silk-home__survey-nav-button.is-disabled {
    cursor: not-allowed;
    opacity: .42;
    pointer-events: none;
}

.silk-home__survey-submit-button {
    background: linear-gradient(180deg, #738576, #607264);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 18px 32px rgba(48, 57, 48, .16);
    color: #fbfbfa;
    gap: 12px;
    min-height: 68px;
    padding: 0 26px;
    text-transform: none;
}

.silk-home__survey-submit-button span:first-child {
    text-wrap: balance;
}

.silk-home__survey-submit-button:hover:not(:disabled) {
    background: linear-gradient(180deg, #7f907f, #6b7d6c);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 20px 34px rgba(48, 57, 48, .2);
}

.silk-home__survey-submit-button:disabled,
.silk-home__survey-submit-button.is-disabled {
    background: linear-gradient(180deg, #738576, #607264);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
    color: rgba(251, 251, 250, .76);
    cursor: not-allowed;
    filter: saturate(.7);
    opacity: .72;
}

.silk-home__survey-submit-note {
    color: rgba(36, 36, 36, .72);
    font-size: 11px;
    line-height: 1.55;
    margin: 0;
    max-width: none;
    white-space: nowrap;
    width: 100%;
}

.silk-home__survey-showcase {
    align-items: center;
    display: grid;
    gap: clamp(32px, 4vw, 56px);
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.55fr);
    position: relative;
}

    .silk-home__survey-editorial-copy {
        align-self: center;
        position: relative;
        z-index: 2;
    }

.silk-home__survey-editorial-copy-inner {
    display: grid;
    gap: 22px;
    max-width: 520px;
    position: relative;
}

.silk-home__survey-editorial-badge {
    align-items: center;
    align-self: start;
    background: linear-gradient(180deg, rgba(248, 245, 240, .98), rgba(244, 238, 231, .98));
    border: 1px solid rgba(183, 165, 138, .14);
    border-radius: 18px;
    color: #b7a58a;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    gap: 9px;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    min-height: 42px;
    padding: 0 16px;
    text-transform: uppercase;
}

.silk-home__survey-editorial-badge svg {
    fill: none;
    height: 15px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 15px;
}

.silk-home__survey-editorial-badge svg circle {
    fill: currentColor;
    stroke: none;
}

@media (min-width: 768px) {
    .silk-home__survey-editorial-copy {
        transform: translateY(-24px);
    }

    .silk-home__survey-editorial-badge {
        max-width: max-content;
        min-height: 0;
        padding: 7px 14px;
        width: auto;
        font-size: 12px;
        letter-spacing: .18em;
    }

    .silk-home__survey-submit-button {
        min-width: 190px;
        padding-inline: 24px;
    }

    .silk-home__survey-showcase .silk-home__survey-editorial-copy .silk-home__survey-submit-button {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        text-transform: inherit;
    }

    .silk-home__survey-showcase .silk-home__survey-editorial-copy .silk-home__survey-submit-button span {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
    }
}

@media (min-width: 1025px) {
    .silk-home__nav-cta,
    .silk-home__nav-cta:link,
    .silk-home__nav-cta:visited {
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
    }
}

.silk-home__survey-editorial-title {
    color: var(--silk-ink);
    margin: 0;
    max-width: none;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

.silk-home__survey-editorial-divider {
    background: #b7a58a;
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 60px;
}

@media (min-width: 768px) {
    .silk-home__survey-editorial-divider {
        width: 96px;
    }
}

.silk-home__survey-editorial-body {
    display: grid;
    gap: 18px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.silk-home__survey-editorial-body p,
.silk-home__survey-editorial-note {
    color: #555854;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin: 0;
}

.silk-home__survey-benefits {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 28px;
    position: relative;
    z-index: 1;
}

.silk-home__survey-benefit {
    align-items: center;
    border: 1px solid rgba(216, 213, 207, 0.9);
    border-radius: 999px;
    color: #242424;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
}

.silk-home__survey-benefit--questions {
    background: #F4F2EE;
}

.silk-home__survey-benefit--time {
    background: #F1EEEA;
}

.silk-home__survey-benefit--discount {
    background: #EEE7DA;
    border-color: rgba(183, 165, 138, 0.45);
    color: #607264;
}

.silk-home__survey-editorial-watermark {
    color: #d9b1aa;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(210px, 21vw, 286px);
    font-style: normal;
    left: 50%;
    line-height: .8;
    opacity: .08;
    pointer-events: none;
    position: absolute;
    top: 54%;
    transform: translate(-50%, -50%);
    user-select: none;
    z-index: 0;
}

.silk-home__survey-editorial-vip {
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 244, 240, .96), rgba(252, 238, 233, .92));
    border: 1px solid rgba(217, 177, 170, .35);
    border-radius: 24px;
    display: grid;
    gap: 16px;
    grid-template-columns: auto minmax(0, 1fr);
    max-width: 490px;
    padding: 18px 22px;
    position: relative;
    z-index: 1;
}

.silk-home__survey-editorial-vip-icon {
    align-items: center;
    background: rgba(255, 248, 243, .88);
    border: 1px solid rgba(217, 177, 170, .28);
    border-radius: 999px;
    color: #b7a58a;
    display: inline-flex;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.silk-home__survey-editorial-vip-icon svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 22px;
}

.silk-home__survey-editorial-vip p {
    color: #5a5651;
    display: grid;
    gap: 2px;
    margin: 0;
}

.silk-home__survey-editorial-vip strong {
    color: #685140;
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.silk-home__survey-editorial-vip span {
    color: #5f5b57;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.silk-home__survey-editorial-note {
    color: #5f615e;
    font-size: 14px;
    max-width: 32ch;
}

.silk-home__preference-panel .silk-home__survey-submit-button {
    justify-content: space-between;
    max-width: 486px;
    width: 100%;
}

.silk-home__preference[data-survey-editorial] {
    --survey-editorial-image-duration: 480ms;
    --survey-editorial-image-offset: 14px;
    --survey-editorial-item-duration: 480ms;
    --survey-editorial-item-translate-start: 14px;
    --survey-editorial-parallax-y: 0px;
}

@media (min-width: 768px) {
    .silk-home__preference-panel {
        border-radius: 40px;
        position: relative;
        transition: box-shadow 780ms ease-out;
    }

    .silk-home__survey-showcase {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.55fr);
    }

    .silk-home__survey-editorial-body {
        width: 280px;
    }

    .silk-home__preference[data-survey-editorial] {
        --survey-editorial-image-duration: 840ms;
        --survey-editorial-image-offset: 28px;
        --survey-editorial-item-duration: 680ms;
        --survey-editorial-item-translate-start: 22px;
    }

    .silk-home__survey-editorial-watermark {
        display: none;
    }

    .silk-home__preference-panel .silk-home__survey-submit-button {
        background: #607264;
        border-color: #607264;
        border-radius: 18px;
        box-shadow: 0 18px 42px rgba(96, 114, 100, 0.24);
        color: #FBFBFA;
        font-size: 15px;
        font-weight: 600;
        min-height: 68px;
        padding: 0 24px;
        translate: 0 0;
        transition: translate 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
    }

    .silk-home__preference-panel .silk-home__survey-submit-button span[aria-hidden="true"] {
        display: inline-block;
        transform: translateX(0);
        transition: transform 180ms ease;
    }

    .silk-home__preference-panel .silk-home__survey-submit-button:hover:not(:disabled),
    .silk-home__preference-panel .silk-home__survey-submit-button:focus-visible:not(:disabled) {
        background: #738576;
        border-color: #738576;
        box-shadow: 0 24px 48px rgba(96, 114, 100, 0.28);
        translate: 0 -2px;
    }

    .silk-home__preference-panel .silk-home__survey-submit-button:hover:not(:disabled) span[aria-hidden="true"],
    .silk-home__preference-panel .silk-home__survey-submit-button:focus-visible:not(:disabled) span[aria-hidden="true"] {
        transform: translateX(4px);
    }

    .silk-home__preference[data-survey-editorial].is-editorial-reveal-ready .silk-home__preference-panel {
        box-shadow: none;
    }

    .silk-home__preference[data-survey-editorial].is-editorial-visible .silk-home__preference-panel {
        box-shadow: none;
    }
}

/* Desktop transition experiment: remove this whole block to roll back the survey/newsletter blend. */
@media (min-width: 768px) {
    .silk-home__preference {
        background:
            radial-gradient(circle at 74% 34%, rgba(217, 177, 170, .1) 0%, rgba(217, 177, 170, 0) 38%),
            radial-gradient(circle at 92% 84%, rgba(217, 177, 170, .06) 0%, rgba(217, 177, 170, 0) 22%),
            linear-gradient(180deg, #f5f1ec 0%, #f5f1ec 70%, #eee5d9 81%, #d7d5ca 89%, #b2b7aa 95%, #88937f 100%);
        padding-bottom: 0;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-shell {
        background:
            linear-gradient(
                180deg,
                #88937f 0%,
                #88937f 10%,
                #8d9885 22%,
                #93a089 36%,
                #7f8d78 66%,
                #607264 100%
            );
        position: relative;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-shell::before {
        background:
            linear-gradient(
                180deg,
                #88937f 0%,
                rgba(136, 147, 127, 0.94) 18%,
                rgba(141, 152, 133, 0.72) 45%,
                rgba(147, 160, 137, 0.28) 76%,
                rgba(147, 160, 137, 0) 100%
            );
        content: "";
        height: clamp(96px, 8vw, 150px);
        left: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: -2px;
        z-index: 0;
    }
}

@media (min-width: 900px) {
    .silk-home__preference {
        padding-bottom: 18px;
        padding-inline: clamp(64px, 8vw, 128px);
        padding-top: 24px;
    }

    .silk-home__preference-shell {
        max-width: 1480px;
    }

    .silk-home__preference-panel {
        margin-inline: auto;
        max-width: 1480px;
        width: 100%;
    }

    .silk-home__preference-panel > * {
        position: relative;
        z-index: 2;
    }

    .silk-home__preference-panel::before {
        content: none;
    }

    .silk-home__preference-panel::after {
        content: none;
    }

}

@media (min-width: 1440px) {
    .silk-home__preference {
        padding-bottom: 22px;
        padding-top: 32px;
    }
}

/* Desktop transition experiment follow-up: keep the survey/newsletter blend flush on larger desktops too. */
@media (min-width: 900px) {
    .silk-home__preference {
        padding-bottom: 0;
    }
}

.silk-home__survey-editorial-visual {
    align-self: stretch;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: flex-end;
    min-height: 100%;
    min-width: 0;
    align-items: start;
    margin-bottom: -30px;
    margin-right: 0;
    overflow: clip;
    position: relative;
    width: 100%;
}

.silk-home__survey-editorial-moodboard {
    align-self: center;
    display: block;
    height: auto;
    object-fit: contain;
    width: 100%;
    max-width: 860px;
}

.silk-home__survey-editorial-meta {
    align-items: stretch;
    background: rgba(251, 248, 243, .94);
    border: 1px solid rgba(220, 212, 201, .94);
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(55, 67, 57, .06);
    display: inline-flex;
    margin-top: 18px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.silk-home__survey-editorial-meta-pill {
    align-items: center;
    color: #5b5b56;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px;
}

.silk-home__survey-editorial-meta-pill + .silk-home__survey-editorial-meta-pill {
    border-left: 1px solid rgba(220, 212, 201, .94);
}

.silk-home__survey-editorial-meta-pill svg {
    fill: none;
    color: #b7a58a;
    flex: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 18px;
}

.silk-home__survey-editorial-meta-pill svg circle {
    fill: currentColor;
    stroke: none;
}

.silk-home__survey-editorial-signature {
    color: #d9b1aa;
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: clamp(72px, 7vw, 106px);
    inset: auto 10px -4px auto;
    line-height: .9;
    margin: 0;
    opacity: .9;
    pointer-events: none;
    position: absolute;
    text-align: right;
    transform: rotate(-4deg);
    transform-origin: center;
    white-space: nowrap;
    z-index: 2;
}

@keyframes silk-home-survey-card-select-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.silk-home__survey-modal-backdrop {
    align-items: center;
    background: rgba(252, 251, 248, .48);
    backdrop-filter: blur(12px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 28px;
    position: fixed;
    z-index: 1200;
}

.silk-home__survey-modal {
    background: #fcfbf8;
    border: 1px solid rgba(231, 227, 220, .96);
    border-radius: 32px;
    box-shadow:
        0 40px 120px rgba(35, 43, 36, .16),
        0 12px 32px rgba(35, 43, 36, .06);
    max-height: min(860px, calc(100vh - 44px));
    max-width: min(1040px, 100%);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.silk-home__survey-modal-shell {
    display: grid;
    gap: 18px;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
    min-height: 0;
    padding: 24px 32px 22px;
}

.silk-home__survey-modal-header {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.silk-home__survey-modal-progress-wrap {
    align-items: start;
    display: flex;
    justify-content: center;
    min-height: 48px;
}

.silk-home__survey-modal-progress-bar {
    display: none;
}

.silk-home__survey-modal-stepper {
    align-items: center;
    counter-reset: survey-step;
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0 auto;
    max-width: 780px;
    padding: 0;
    width: 100%;
}

.silk-home__survey-modal-stepper-item {
    align-items: center;
    display: flex;
    flex: 1 1 0;
    position: relative;
}

.silk-home__survey-modal-stepper-item::after {
    background: #d7d0c6;
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 1px;
    margin-inline: 10px;
}

.silk-home__survey-modal-stepper-item:last-child {
    flex: 0 0 auto;
}

.silk-home__survey-modal-stepper-item:last-child::after {
    display: none;
}

.silk-home__survey-modal-stepper-node {
    align-items: center;
    background: #fcfbf8;
    border: 1px solid #dbd3c8;
    border-radius: 999px;
    color: #8c8479;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.silk-home__survey-modal-stepper-item.is-current .silk-home__survey-modal-stepper-node,
.silk-home__survey-modal-stepper-item.is-completed .silk-home__survey-modal-stepper-node {
    background: #73866f;
    border-color: #73866f;
    color: #fffdf9;
}

.silk-home__survey-modal-stepper-item.is-completed::after {
    background: #73866f;
}

.silk-home__survey-modal-stepper-node svg {
    display: block;
    height: 16px;
    width: 16px;
}

.silk-home__survey-modal-stepper-node path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.silk-home__survey-modal-close {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #607264;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background .25s ease, color .25s ease;
    width: 48px;
}

.silk-home__survey-modal-close:hover,
.silk-home__survey-modal-close:focus-visible {
    background: rgba(96, 114, 100, .08);
    color: #607264;
}

.silk-home__survey-modal-close:active {
    background: rgba(96, 114, 100, .12);
    color: #607264;
}

.silk-home__survey-modal-close-icon {
    align-items: center;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.silk-home__survey-modal-close-icon svg {
    display: block;
    height: 18px;
    width: 18px;
}

.silk-home__survey-modal-close-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.9;
}

.silk-home__survey-modal-body {
    display: grid;
    gap: 20px;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
}

.silk-home__survey-stage--modal {
    min-height: 0;
    overflow: auto;
    padding-right: 4px;
}

.silk-home__survey-stage--modal .silk-home__survey-step {
    min-height: 0;
}

.silk-home__survey-modal-footer {
    align-items: center;
    border-top: 1px solid rgba(222, 216, 207, .92);
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    overflow: visible;
    padding: 18px 0 0;
}

.silk-home__survey-modal-footer .silk-home__survey-nav-button {
    border-radius: 8px;
    gap: 12px;
    min-height: 48px;
    padding: 14px 24px;
}

.silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary {
    justify-self: start;
    min-width: 144px;
}

.silk-home__survey-modal-footer .silk-home__survey-nav-button--primary {
    justify-self: end;
    min-width: 220px;
}

.silk-home__survey-nav-button--previous-inline {
    align-items: center;
    background: transparent;
    border: 0;
    color: #607264;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    min-height: auto;
    padding: 0;
    width: auto;
}

.silk-home__survey-nav-button--previous-inline:hover:not(:disabled),
.silk-home__survey-nav-button--previous-inline:focus-visible:not(:disabled) {
    background: transparent;
    border-color: transparent;
    color: #4f6353;
    transform: none;
}

.silk-home__survey-nav-inline-arrow {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 1ch;
}

.silk-home__survey-nav-button-arrow {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    margin-left: 6px;
    min-width: 1ch;
}

.silk-home__survey-final-panel {
    margin: 0 auto;
    width: min(100%, 990px);
}

.silk-home__survey-final-panel .silk-home__email-soft-close-card {
    margin: 0;
}

.silk-home__survey-final-panel .silk-home__survey-kicker {
    margin-bottom: 14px;
}

.silk-home__survey-textarea--popup {
    margin-bottom: 16px;
    min-height: 118px;
}

@media (min-width: 901px) {
    .silk-home__survey-modal {
        max-height: min(884px, calc(100vh - 28px));
        max-width: 1040px;
        width: min(1040px, calc(100vw - 56px));
    }

    .silk-home__survey-modal-shell {
        gap: 16px;
        padding: 22px 30px 18px;
    }

    .silk-home__survey-modal-body {
        min-height: 0;
    }

    .silk-home__survey-stage--modal {
        overflow-x: hidden;
        overflow-y: auto;
        padding-right: 10px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step {
        min-height: 0;
    }

    .silk-home__survey-modal-header {
        align-items: start;
        gap: 12px;
    }

    .silk-home__survey-modal-progress-wrap {
        gap: 0;
        justify-content: center;
    }

    .silk-home__survey-modal-progress-label {
        font-size: 13px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header,
    .silk-home__survey-stage--modal .silk-home__survey-block-heading {
        gap: 12px;
        margin: 0 auto;
        max-width: 760px;
        width: 100%;
        text-align: center;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header {
        margin-left: auto;
        margin-right: auto;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header h3,
    .silk-home__survey-stage--modal .silk-home__survey-block-heading h4 {
        color: #1f231f;
        font-family: var(--font-heading);
        font-size: var(--fs-editorial-h3);
        font-weight: 400;
        letter-spacing: var(--ls-editorial-h3);
        line-height: var(--lh-editorial-h3);
        margin-inline: auto;
        max-width: 680px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header p,
    .silk-home__survey-stage--modal .silk-home__survey-block-heading p {
        color: rgba(31, 35, 31, .72);
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        font-weight: 400;
        line-height: var(--lh-body-compact);
        margin: 0;
        margin-inline: auto;
        max-width: 620px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-kicker {
        background: #f3f0ea;
        border-radius: 999px;
        color: #607264;
        font-family: Inter, Arial, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .08em;
        line-height: 1;
        min-height: auto;
        padding: 10px 18px;
        text-transform: uppercase;
    }

    .silk-home__survey-step--editorial {
        gap: 16px;
    }

    .silk-home__survey-modal-footer {
        margin-top: 0;
        padding-top: 14px;
    }

    .silk-home__survey-block--primary,
    .silk-home__survey-block--tertiary,
    .silk-home__survey-block--quaternary,
    .silk-home__survey-block--placement,
    .silk-home__survey-block--importance,
    .silk-home__survey-block--perspective-pills {
        margin-left: auto;
        margin-right: auto;
        max-width: 1180px;
        width: 100%;
    }

    .silk-home__survey-block--importance .silk-home__survey-block-heading,
    .silk-home__survey-block--placement .silk-home__survey-block-heading,
    .silk-home__survey-block--choice-gallery .silk-home__survey-block-heading,
    .silk-home__survey-block--perspective-pills .silk-home__survey-block-heading {
        margin-bottom: 0;
    }

    .silk-home__survey-stage--modal .silk-home__option-grid--survey-cards {
        gap: 18px 28px;
        justify-content: start;
        margin: 0 auto;
        max-width: 1180px;
        width: 100%;
    }

    .silk-home__survey-stage--modal .silk-home__option-grid.silk-home__option-grid--survey-cards-two {
        gap: 28px;
        grid-template-columns: repeat(auto-fit, 292px) !important;
    }

    .silk-home__survey-stage--modal .silk-home__option-grid.silk-home__option-grid--survey-cards-three {
        gap: 28px;
        grid-template-columns: repeat(auto-fit, 292px) !important;
    }

    .silk-home__survey-stage--modal .silk-home__option-grid.silk-home__option-grid--airy {
        gap: 18px 28px;
        grid-template-columns: repeat(3, 292px) !important;
        justify-content: start;
        margin: 0 auto;
        max-width: 1180px;
        width: 100%;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card {
        justify-self: start;
        position: relative;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--survey-card {
        background: #fff;
        border: 1px solid #e7e3dc;
        border-radius: 22px !important;
        box-shadow: none;
        color: #2b332c;
        grid-template-rows: 122px 24px 54px !important;
        min-height: 202px !important;
        transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        width: 292px !important;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--survey-card-no-swatches {
        grid-template-rows: 122px 80px !important;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-image {
        aspect-ratio: auto;
        border-radius: 22px 22px 0 0 !important;
        height: 122px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card-no-swatches .silk-home__style-image {
        height: 122px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-copy {
        align-content: center;
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 54px;
        padding: 12px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-title {
        color: #2b332c;
        font-family: Inter, Arial, sans-serif;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.28;
        text-align: center;
        text-wrap: wrap;
        white-space: normal;
    }

    .silk-home__survey-stage--modal .silk-home__style-swatches {
        border-bottom: 0;
        height: 24px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--placement-scene {
        grid-template-rows: 122px 80px !important;
        max-width: none;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--placement-scene .silk-home__style-image--placement-scene {
        aspect-ratio: auto;
        height: 122px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--placement-scene .silk-home__style-image--placement-scene img {
        object-position: center center;
        padding: 0;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--placement-scene .silk-home__style-copy--placement-scene {
        align-content: center;
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 80px;
        padding: 12px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-illustration-grid {
        gap: 14px;
        max-width: 720px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-illustration-card {
        gap: 14px;
        min-height: 236px;
        padding: 18px 18px 16px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-illustration-tile {
        height: 80px;
        width: 80px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-illustration-icon {
        height: 48px;
        width: 48px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-illustration-title {
        font-size: 17px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-illustration-description {
        font-size: 13px;
        line-height: 1.36;
    }

    .silk-home__survey-stage--modal .silk-home__importance-grid {
        gap: 18px 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: start;
        margin: 0 auto;
        max-width: 1180px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-block--importance .silk-home__importance-grid,
    .silk-home__survey-stage--modal .silk-home__survey-block--perspective-pills .silk-home__importance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-stage--modal .silk-home__importance-card {
        --survey-answer-hover-background: #fff;
        --survey-answer-hover-border: #607264;
        --survey-answer-hover-shadow: 0 14px 26px rgba(96, 114, 100, .14);
        --survey-answer-hover-transform: translateY(-2px) scale(1.006);
        --survey-answer-hover-color: #1f231f;
        --survey-answer-selected-background: #607264;
        --survey-answer-selected-border: #607264;
        --survey-answer-selected-shadow: 0 16px 28px rgba(56, 71, 59, .24);
        --survey-answer-selected-transform: scale(1.01);
        --survey-answer-selected-color: #fbfbfa;
        align-items: center;
        background: #fff;
        border: 1px solid #e7e3dc;
        border-radius: 22px;
        box-shadow: none;
        color: #1f231f;
        gap: 18px;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 108px;
        padding: 24px 28px;
        transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        width: 100%;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--survey-card {
        --survey-answer-hover-background: #fff;
        --survey-answer-hover-border: #607264;
        --survey-answer-hover-shadow: 0 14px 26px rgba(96, 114, 100, .14);
        --survey-answer-hover-transform: translateY(-2px) scale(1.006);
        --survey-answer-hover-color: #1f231f;
        --survey-answer-selected-background: #607264;
        --survey-answer-selected-border: #607264;
        --survey-answer-selected-shadow: 0 16px 28px rgba(56, 71, 59, .24);
        --survey-answer-selected-transform: scale(1.01);
        --survey-answer-selected-color: #fbfbfa;
    }

    .silk-home__survey-stage--modal .silk-home__survey-block--importance .silk-home__importance-card {
        min-height: 108px;
        padding-bottom: 24px;
        padding-top: 24px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) {
        background: #fff;
        border-color: #607264;
        box-shadow: 0 14px 26px rgba(96, 114, 100, .14);
        color: #1f231f;
        transform: translateY(-2px) scale(1.006);
        z-index: 2;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) {
        background: #fff;
        background-color: #fff;
        color: #1f231f;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card.is-selected {
        animation: silk-home-survey-card-select-pulse .22s ease;
        background: #607264;
        border-color: #607264;
        border-width: 2px;
        box-shadow: 0 16px 28px rgba(56, 71, 59, .24);
        color: #fbfbfa;
        transform: scale(1.01);
        z-index: 3;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__style-title,
    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__importance-label {
        color: #1f231f;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card.is-selected .silk-home__style-title,
    .silk-home__survey-stage--modal .silk-home__survey-answer-card.is-selected .silk-home__importance-label {
        color: #fbfbfa;
        font-weight: 700;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-check,
    .silk-home__survey-stage--modal .silk-home__importance-check {
        background: #fff;
        border: 1px solid #607264;
        border-radius: 8px;
        box-shadow: none;
        color: transparent;
        height: 28px;
        width: 28px;
    }

    .silk-home__survey-stage--modal .silk-home__selection-check,
    .silk-home__survey-stage--modal .silk-home__importance-check {
        right: 16px;
        top: 16px;
    }

    .silk-home__survey-stage--modal .silk-home__importance-check {
        align-self: center;
        background: #fff;
        border: 1px solid #607264;
        border-radius: 8px;
        box-sizing: border-box;
        color: transparent;
        display: inline-flex;
        flex: 0 0 auto;
        height: 22px;
        justify-self: end;
        left: auto;
        order: 2;
        position: relative;
        right: auto;
        top: auto;
        transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
        width: 22px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-check::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        content: "";
        display: block;
        height: 10px;
        opacity: 0;
        transform: scale(.88);
        width: 12px;
    }

    .silk-home__survey-stage--modal .silk-home__importance-check::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        content: "";
        display: block;
        height: 9px;
        width: 11px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.is-selected .silk-home__selection-check,
    .silk-home__survey-stage--modal .silk-home__importance-check.is-selected,
    .silk-home__survey-stage--modal .silk-home__importance-card.is-selected .silk-home__importance-check {
        background: #607264;
        border-color: #607264;
        box-shadow: none;
    }

    .silk-home__survey-stage--modal .silk-home__importance-label {
        align-items: center;
        color: #2b332c;
        display: flex;
        font-family: Inter, Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.45;
        margin-left: 0;
        min-height: 100%;
        overflow: visible;
        order: 1;
        padding-right: 40px;
        text-overflow: clip;
        white-space: normal;
    }

    .silk-home__survey-stage--modal .silk-home__importance-card:hover:not(.is-selected) .silk-home__importance-check,
    .silk-home__survey-stage--modal .silk-home__importance-card:focus-visible .silk-home__importance-check {
        background: #F1F2EF;
        border-color: rgba(79, 90, 80, .48);
        box-shadow: 0 0 0 2px rgba(96, 114, 100, .10);
    }

    .silk-home__survey-stage--modal .silk-home__importance-rank {
        background: #607264;
        box-shadow: 0 0 0 3px #fcfbf8;
        left: 20px;
        top: 20px;
        transform: scale(.82);
    }

    .silk-home__survey-stage--modal .silk-home__importance-rank.is-visible {
        transform: scale(1);
    }

    .silk-home__selected-style-label {
        color: rgba(31, 35, 31, .66);
        margin-top: 18px;
        text-align: left;
    }

    .silk-home__survey-final-panel {
        width: min(100%, 980px);
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-card {
        background: #fff;
        border: 1px solid #e7e3dc !important;
        border-radius: 28px;
        box-shadow: 0 16px 38px rgba(35, 43, 36, .08) !important;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-copy {
        padding: 34px 0 26px 34px;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-script {
        color: #607264;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .silk-home__survey-final-panel .silk-home__survey-popup-title {
        color: #1f231f;
        font-family: "Newsreader", Georgia, serif;
        font-size: 42px;
        font-weight: 500;
        letter-spacing: -.03em;
        line-height: 1.02;
    }

    .silk-home__survey-final-panel .silk-home__survey-popup-body,
    .silk-home__survey-final-panel .silk-home__email-soft-close-privacy {
        color: rgba(31, 35, 31, .72);
        font-family: Inter, Arial, sans-serif;
        font-size: 18px;
        line-height: 1.55;
    }

    .silk-home__survey-final-panel .silk-home__survey-textarea--popup {
        background: #fcfbf8;
        border: 1px solid #d9d9d4;
        border-radius: 22px;
        box-shadow: none;
        min-height: 132px;
    }

    .silk-home__survey-final-panel .silk-home__survey-textarea--popup:focus {
        border-color: #607264;
        box-shadow: 0 0 0 3px rgba(96, 114, 100, .10);
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-form input {
        background: #fcfbf8;
        border: 1px solid #d9d9d4;
        border-radius: 999px;
        min-height: 56px;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-button,
    .silk-home__survey-modal-footer .silk-home__survey-nav-button,
    .silk-home__survey-footer .silk-home__survey-nav-button {
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: var(--fs-button);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
        min-height: 56px;
        transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary,
    .silk-home__survey-footer .silk-home__survey-nav-button--secondary {
        background: transparent;
        border: 1px solid #d9d9d4;
        color: #2b332c;
        font-weight: 500;
        min-width: 120px;
        width: 120px;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary,
    .silk-home__survey-final-panel .silk-home__email-soft-close-button {
        background: #607264;
        border: 1px solid #607264;
        box-shadow: none;
        color: #fff;
        min-width: 180px;
        width: 180px;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary {
        margin-left: auto;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:disabled {
        background: #D3DCCF;
        border-color: #D3DCCF;
        color: rgba(96, 114, 100, .82);
        opacity: 1;
        transform: none;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:hover:not(:disabled),
    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:focus-visible:not(:disabled),
    .silk-home__survey-final-panel .silk-home__email-soft-close-button:hover:not(:disabled),
    .silk-home__survey-final-panel .silk-home__email-soft-close-button:focus-visible:not(:disabled) {
        background: #556756;
        border-color: #556756;
        transform: translateY(-2px);
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary:hover:not(:disabled),
    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary:focus-visible:not(:disabled),
    .silk-home__survey-footer .silk-home__survey-nav-button--secondary:hover:not(:disabled),
    .silk-home__survey-footer .silk-home__survey-nav-button--secondary:focus-visible:not(:disabled) {
        border-color: #c7c7c0;
        transform: translateY(-2px);
    }

    .silk-home__survey-footer {
        align-items: center;
        gap: 18px;
        margin-top: 48px;
        width: 100%;
    }

    .silk-home__survey-submit-note {
        color: rgba(31, 35, 31, .62);
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-card-shell {
        height: 580px;
        grid-template-columns: minmax(0, 1fr) minmax(250px, .38fr);
        min-height: 580px;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-copy::after {
        background:
            linear-gradient(
                to right,
                rgba(76, 91, 71, 1) 0%,
                rgba(76, 91, 71, .99) 20%,
                rgba(76, 91, 71, .92) 38%,
                rgba(76, 91, 71, .76) 56%,
                rgba(76, 91, 71, .48) 74%,
                rgba(76, 91, 71, .18) 90%,
                rgba(76, 91, 71, 0) 100%
            ) !important;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-script {
        color: #b69b74;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .silk-home__survey-final-panel .silk-home__survey-popup-title,
    .silk-home__survey-final-panel .silk-home__survey-popup-body,
    .silk-home__survey-final-panel .silk-home__email-soft-close-privacy,
    .silk-home__survey-final-panel .silk-home__email-soft-close-success {
        position: relative;
        z-index: 1;
    }

    .silk-home__survey-final-panel .silk-home__survey-popup-title {
        color: #fbfbfa;
        font-size: clamp(32px, 3.1vw, 42px);
        line-height: .98;
        margin-bottom: 12px;
        max-width: 11ch;
    }

    .silk-home__survey-final-panel .silk-home__survey-popup-body,
    .silk-home__survey-final-panel .silk-home__email-soft-close-privacy {
        color: #d8ccb9;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-privacy {
        font-size: 12px;
        line-height: 1.35;
        margin-top: 6px;
        max-width: 42ch;
    }

    .silk-home__survey-final-panel .silk-home__survey-popup-body {
        font-size: 13px;
        line-height: 1.38;
        margin-bottom: 12px;
        max-width: 40ch;
    }

    .silk-home__survey-final-panel .silk-home__survey-textarea--popup {
        background: rgba(251, 251, 250, .96);
        border-color: rgba(182, 155, 116, .82);
        color: #242424;
        margin-bottom: 8px;
        min-height: 52px;
        position: relative;
        z-index: 1;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-form {
        gap: 10px;
        grid-template-columns: minmax(0, 1fr) 198px;
        width: min(500px, 100%);
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-form input,
    .silk-home__survey-final-panel .silk-home__email-soft-close-button {
        min-height: 36px;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-visual {
        margin-left: -72px;
        width: calc(100% + 72px);
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-visual img {
        max-height: 580px;
    }

    .silk-home__survey-final-panel .silk-home__email-soft-close-copy {
        overflow: hidden;
        padding-right: 20px;
    }
}

.silk-home__privacy-modal-backdrop {
    align-items: center;
    background: rgba(27, 31, 26, .52);
    backdrop-filter: blur(10px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 1250;
}

.silk-home__privacy-modal {
    background: #fbfbfa;
    border: 1px solid rgba(216, 213, 207, .94);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(20, 22, 18, .18);
    max-width: min(684px, 100%);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.silk-home__privacy-modal-shell {
    display: grid;
    gap: 12px;
    padding: 22px 22px 18px;
}

.silk-home__privacy-modal-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: #273129;
    cursor: pointer;
    display: inline-flex;
    font-size: 32px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 16px;
    width: 36px;
}

.silk-home__privacy-modal-kicker {
    color: #677066;
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.silk-home__privacy-modal h2,
.silk-home__privacy-modal h3 {
    color: #273129;
    font-family: "Newsreader", Georgia, serif;
    margin: 0;
}

.silk-home__privacy-modal h2 {
    font-size: clamp(24px, 2.9vw, 31px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.08;
    max-width: 14ch;
}

.silk-home__privacy-modal h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.14;
}

.silk-home__privacy-modal p {
    color: #59605a;
    font-size: 13px;
    line-height: 1.54;
    margin: 0;
}

.silk-home__privacy-modal-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-home__privacy-modal-card {
    background:
        linear-gradient(180deg, rgba(247, 243, 236, .86), rgba(255, 255, 255, .98));
    border: 1px solid rgba(206, 198, 188, .78);
    border-radius: 18px;
    display: grid;
    gap: 6px;
    min-height: 100%;
    padding: 12px 12px 11px;
}

.silk-home__privacy-modal-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.silk-home__privacy-modal-link,
.silk-home__privacy-modal-link:link,
.silk-home__privacy-modal-link:visited {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    text-decoration: none;
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.silk-home__privacy-modal-link,
.silk-home__privacy-modal-link:link,
.silk-home__privacy-modal-link:visited {
    color: #fbfbfa;
}

.silk-home__privacy-modal-link--secondary,
.silk-home__privacy-modal-link--secondary:link,
.silk-home__privacy-modal-link--secondary:visited {
    background: transparent;
    border: 1px solid rgba(96, 114, 100, .28);
    box-shadow: none;
    color: #3d463f;
}

.silk-home__privacy-modal-link:hover,
.silk-home__privacy-modal-link:focus {
    color: #fff;
    transform: translateY(-1px);
}

.silk-home__privacy-modal-link--secondary:hover,
.silk-home__privacy-modal-link--secondary:focus {
    color: #273129;
}

.silk-home__survey-popup-backdrop {
    align-items: center;
    background: rgba(27, 31, 26, .52);
    backdrop-filter: blur(8px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 32px;
    position: fixed;
    z-index: 1200;
}

.silk-home__survey-popup {
    max-height: calc(100vh - 64px);
    max-width: min(1100px, 100%);
    overflow: visible;
    position: relative;
    width: 100%;
}

.silk-home__survey-popup-panel--mobile {
    display: none;
}

.silk-home__survey-popup-panel--desktop,
.silk-home__survey-popup-panel--mobile {
    overflow: visible;
    padding: 48px 34px 24px 28px;
    position: relative;
}

.silk-home__survey-popup-card {
    margin: 0 auto;
    max-width: 990px;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-card {
    background:
        radial-gradient(circle at 15% 16%, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #43513f 0%, #4c5b47 56%, #44513f 100%);
    border: 2px solid rgba(182, 155, 116, .82);
    border-radius: 28px;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .96),
        0 28px 64px rgba(20, 22, 18, .24);
    overflow: hidden;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-card-shell {
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
    min-height: min(520px, calc(100vh - 122px));
    position: relative;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-copy {
    align-content: start;
    gap: 0;
    overflow: visible;
    padding: 42px 0 34px 46px;
    position: relative;
    z-index: 2;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-copy::after {
    background:
        linear-gradient(
            to right,
            rgba(76, 91, 71, 1) 0%,
            rgba(76, 91, 71, .99) 20%,
            rgba(76, 91, 71, .92) 38%,
            rgba(76, 91, 71, .76) 56%,
            rgba(76, 91, 71, .48) 74%,
            rgba(76, 91, 71, .18) 90%,
            rgba(76, 91, 71, 0) 100%
        );
    bottom: -1px;
    content: "";
    pointer-events: none;
    position: absolute;
    right: -188px;
    top: -1px;
    width: 288px;
    z-index: 0;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-copy > * {
    position: relative;
    z-index: 1;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-script {
    color: #b69b74;
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1;
    margin: 4px 0 28px;
    max-width: none;
    transform: rotate(-1.9deg);
    transform-origin: left center;
    white-space: nowrap;
}

.silk-home__survey-popup-title {
    color: #fbfbfa;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(52px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: .98;
    margin: 0 0 44px;
    max-width: 8.6ch;
}

.silk-home__survey-popup-body {
    color: #b69b74;
    font-size: 16px;
    line-height: 1.56;
    margin: 0 0 54px;
    max-width: 20ch;
}

.silk-home__survey-popup-card .silk-home__survey-popup-title {
    font-family: "Newsreader", Georgia, serif;
    margin: 0 0 44px;
}

.silk-home__survey-popup-card .silk-home__survey-popup-body {
    color: #b69b74;
    font-weight: 400;
    margin: 0 0 54px;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-form {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 214px;
    margin-top: 0;
    width: min(548px, 100%);
}

.silk-home__survey-popup-card .silk-home__email-soft-close-form input {
    border-radius: 16px;
    font-size: 16px;
    min-height: 50px;
    padding: 0 18px;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-button {
    background: #b69b74;
    border-color: #b69b74;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(22, 24, 19, .18);
    color: #fbfbfa;
    font-size: 14px;
    font-weight: 600;
    min-height: 50px;
    padding: 0 16px;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-button:hover,
.silk-home__survey-popup-card .silk-home__email-soft-close-button:focus {
    background: #b69b74;
    border-color: #b69b74;
    box-shadow: 0 18px 32px rgba(22, 24, 19, .22);
}

.silk-home__survey-popup-card .silk-home__email-soft-close-visual {
    margin-left: -120px;
    min-height: 100%;
    position: relative;
    width: calc(100% + 120px);
    z-index: 1;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-visual::before {
    background:
        linear-gradient(
            to left,
            rgba(67, 81, 63, 0) 0%,
            rgba(67, 81, 63, .04) 10%,
            rgba(67, 81, 63, .12) 22%,
            rgba(67, 81, 63, .24) 36%,
            rgba(67, 81, 63, .42) 52%,
            rgba(67, 81, 63, .66) 70%,
            rgba(67, 81, 63, .86) 86%,
            rgba(67, 81, 63, .97) 100%
        ),
        linear-gradient(
            to top,
            rgba(67, 81, 63, .24) 0%,
            rgba(67, 81, 63, .1) 24%,
            rgba(67, 81, 63, 0) 52%
        );
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-visual::after {
    background:
        radial-gradient(circle at 70% 20%, rgba(182, 155, 116, .14), rgba(182, 155, 116, 0) 30%),
        radial-gradient(circle at 6% 50%, rgba(76, 91, 71, .6), rgba(76, 91, 71, .18) 34%, rgba(76, 91, 71, 0) 62%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.silk-home__survey-popup-card .silk-home__email-soft-close-visual img {
    animation: silk-popup-image-float 14s ease-in-out infinite alternate;
    display: block;
    height: 100%;
    max-height: 520px;
    min-height: 100%;
    object-fit: cover;
    object-position: 56% center;
    width: 100%;
}

.silk-home__survey-popup-close {
    align-items: center;
    background: #fbfbfa;
    border: 1px solid rgba(255, 255, 255, .96);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(20, 22, 18, .18);
    color: #4b5c50;
    cursor: pointer;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 10px;
    height: 40px;
    justify-content: center;
    letter-spacing: .12em;
    position: absolute;
    padding: 0 14px 0 16px;
    right: 8px;
    text-transform: uppercase;
    top: 10px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
    z-index: 20;
}

.silk-home__survey-popup-close span:last-child {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    margin-top: -1px;
}

.silk-home__survey-popup-close:hover,
.silk-home__survey-popup-close:focus {
    background: #ffffff;
    box-shadow: 0 20px 38px rgba(20, 22, 18, .22);
    color: #3f5044;
    transform: translateY(-1px);
}

.silk-home__survey-popup-mobile-card {
    display: grid;
    gap: 12px;
}

.silk-home__survey-popup-mobile-script,
.silk-home__survey-popup-mobile-title,
.silk-home__survey-popup-mobile-body,
.silk-home__survey-popup-mobile-form,
.silk-home__survey-popup-mobile-success {
    margin: 0;
}

.silk-home__survey-popup-mobile-script {
    color: #b69b74;
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: 28px;
    line-height: .96;
    margin: -2px 0 10px 4px;
    max-width: none;
    transform: rotate(-1.6deg);
    transform-origin: left center;
    white-space: nowrap;
}

.silk-home__survey-popup-mobile-title {
    color: #fbfbfa;
    font-family: "Newsreader", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.018em;
    line-height: 1.02;
    margin-bottom: 40px;
}

.silk-home__survey-popup-mobile-body {
    color: #b69b74;
    font-size: 12px;
    line-height: 1.48;
    margin-bottom: 44px;
}

.silk-home__survey-popup-mobile-visual {
    border-radius: 18px;
    min-height: 168px;
    overflow: hidden;
    position: relative;
}

.silk-home__survey-popup-mobile-visual::before {
    background:
        linear-gradient(to top, rgba(67, 81, 63, .28) 0%, rgba(67, 81, 63, 0) 36%),
        linear-gradient(to left, rgba(67, 81, 63, 0) 0%, rgba(67, 81, 63, .14) 28%, rgba(67, 81, 63, .48) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.silk-home__survey-popup-mobile-visual img {
    display: block;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
    object-position: 58% center;
    width: 100%;
}

.silk-home__survey-popup-mobile-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.silk-home__survey-popup-mobile-form input {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(215, 209, 198, .92);
    border-radius: 16px;
    color: var(--silk-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    min-height: 56px;
    padding: 0 18px;
}

.silk-home__survey-popup-mobile-button {
    align-items: center;
    background: #b69b74;
    border: 1px solid #b69b74;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(20, 22, 18, .18);
    color: #fbfbfa;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    min-height: 56px;
    padding: 0 18px;
}

.silk-home__survey-popup-mobile-stamp {
    height: 96px;
    padding: 10px;
    right: 12px;
    top: 12px;
    width: 96px;
}

.silk-home__survey-popup-mobile-success {
    color: #f1e0b8;
    font-size: 12px;
    font-weight: 600;
}

@keyframes silk-popup-image-float {
    from {
        transform: scale(1.02) translateY(0);
    }

    to {
        transform: scale(1.07) translateY(-8px);
    }
}

.silk-home__email-soft-close-wrap {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    right: 50%;
    width: 100vw;
}

.silk-home__email-soft-close-transition {
    display: none;
}

.silk-home__email-soft-close-shell {
    background: #607264;
    margin: 0 auto;
    max-width: none;
    padding: 72px clamp(20px, 4vw, 64px);
}

.silk-home__email-soft-close {
    background: transparent;
    border-radius: 0;
    margin: 0 auto;
    max-width: 1560px;
    width: 100%;
}

.silk-home__email-soft-close.is-newsletter {
    max-width: 1280px;
}

.silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.silk-home__email-soft-close-card {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #475544 0%, #53624d 44%, #4c5848 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

.silk-home__email-soft-close.is-vip .silk-home__email-soft-close-card {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 32%),
        linear-gradient(135deg, #43513f 0%, #506049 44%, #495646 100%);
}

.silk-home__email-soft-close-card-shell {
    align-items: center;
    display: grid;
    gap: clamp(18px, 2.4vw, 34px);
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    min-height: 0;
}

.silk-home__email-soft-close-copy {
    display: grid;
    align-content: center;
    gap: 16px;
    justify-items: start;
    margin: 0;
    padding: clamp(38px, 4vw, 56px) 0 clamp(34px, 3.8vw, 52px) clamp(34px, 3.8vw, 62px);
    text-align: left;
}

.silk-home__email-soft-close-kicker {
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    line-height: var(--lh-label);
    align-items: center;
    background: linear-gradient(180deg, rgba(248, 231, 224, .96), rgba(238, 213, 203, .94));
    border: 1px solid rgba(255, 233, 225, .58);
    border-radius: 999px;
    color: #314036;
    display: inline-flex;
    gap: 9px;
    letter-spacing: var(--ls-label);
    min-height: 42px;
    padding: 0 17px;
    text-transform: uppercase;
}

.silk-home__email-soft-close-kicker svg {
    fill: currentColor;
    height: 16px;
    width: 16px;
}

.silk-home__email-soft-close-script {
    color: #e8c9a0;
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: clamp(34px, 2.8vw, 48px);
    letter-spacing: 0;
    line-height: .95;
    margin: 0 0 -4px;
}

#email-soft-close-title {
    color: #fbfbfa;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(42px, 4.1vw, 64px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: .98;
    margin: 0;
    max-width: 9ch;
}

.silk-home__email-soft-close-copy p {
    color: rgba(251, 251, 250, .9);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin: 0;
    max-width: 33ch;
}

.silk-home__email-soft-close.is-vip .silk-home__email-soft-close-copy p:last-of-type,
.silk-home__email-soft-close.is-vip .silk-home__email-soft-close-copy p:only-of-type {
    color: #efcf96;
    font-weight: 500;
}

.silk-home__email-soft-close-benefits {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 2px 0 0;
    max-width: 100%;
    padding: 0;
    width: min(760px, 100%);
}

.silk-home__email-soft-close-benefits li {
    align-content: start;
    color: rgba(251, 251, 250, .94);
    display: grid;
    gap: 10px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 8px 20px 8px 0;
    position: relative;
}

.silk-home__email-soft-close-benefits li + li {
    border-left: 1px solid rgba(255, 255, 255, .22);
    padding-left: 20px;
}

.silk-home__email-soft-close-benefit-icon {
    align-items: center;
    border: 1px solid rgba(241, 223, 186, .46);
    border-radius: 999px;
    color: #f2dfbc;
    display: inline-flex;
    grid-row: span 2;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.silk-home__email-soft-close-benefit-icon svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 18px;
}

.silk-home__email-soft-close-benefit-icon svg circle {
    fill: currentColor;
    stroke: none;
}

.silk-home__email-soft-close-benefits li span:last-child {
    align-self: center;
    font-size: 15px;
    line-height: 1.36;
}

.silk-home__email-soft-close-form {
    align-items: stretch;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
    margin-top: 6px;
    width: min(880px, 100%);
}

.silk-home__email-soft-close-field {
    display: block;
    position: relative;
}

.silk-home__email-soft-close-label {
    color: rgba(36, 36, 36, .75);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    left: 22px;
    line-height: 1;
    opacity: .75;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: opacity .18s ease, transform .18s ease;
}

.silk-home__email-soft-close-form input {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(215, 209, 198, .92);
    border-radius: 16px;
    box-shadow: none;
    color: var(--silk-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    min-height: 64px;
    padding: 0 22px;
    transition: border-color .22s ease-out, box-shadow .22s ease-out;
}

.silk-home__email-soft-close-form input:focus {
    border-color: #607264;
    box-shadow: 0 0 0 3px rgba(96, 114, 100, .08);
    outline: none;
}

.silk-home__email-soft-close-form input::placeholder {
    color: transparent;
}

.silk-home__email-soft-close-field:focus-within .silk-home__email-soft-close-label {
    opacity: 0;
    transform: translateY(calc(-50% - 4px));
}

.silk-home__email-soft-close-field.is-filled .silk-home__email-soft-close-label {
    opacity: 0;
    transform: translateY(calc(-50% - 4px));
}

.silk-home__email-soft-close-button {
    align-items: center;
    background: rgba(108, 126, 103, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(35, 40, 34, .16);
    color: #fbfbfa;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 600;
    gap: 12px;
    justify-content: center;
    min-height: 64px;
    padding: 0 24px;
    letter-spacing: 0;
    line-height: var(--lh-button);
    text-transform: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.silk-home__email-soft-close-form:focus-within .silk-home__email-soft-close-button {
    box-shadow: 0 10px 28px rgba(96, 114, 100, .12);
}

.silk-home__email-soft-close.is-vip .silk-home__email-soft-close-button {
    background: linear-gradient(180deg, #edd39f, #e7c88b);
    border-color: rgba(255, 245, 223, .7);
    box-shadow: 0 18px 32px rgba(20, 22, 18, .18);
    color: #39443a;
}

.silk-home__email-soft-close-button:focus-visible {
    background: rgba(121, 138, 116, .98);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 18px 32px rgba(96, 114, 100, .22);
    transform: translateY(-1px);
}

.silk-home__email-soft-close-button:active {
    box-shadow: 0 8px 18px rgba(56, 67, 54, .12);
    transform: translateY(0);
}

.silk-home__email-soft-close.is-vip .silk-home__email-soft-close-button:focus-visible {
    background: linear-gradient(180deg, #f2dbad, #e9cb91);
    border-color: #f2dbad;
    box-shadow: 0 20px 34px rgba(20, 22, 18, .2);
}

.silk-home__email-soft-close-privacy,
.silk-home__email-soft-close-success {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 58ch;
}

.silk-home__email-soft-close-privacy {
    align-items: start;
    color: rgba(251, 251, 250, .82);
    display: grid;
    gap: 10px;
    grid-template-columns: 18px minmax(0, 1fr);
}

.silk-home__email-soft-close-privacy-icon svg {
    fill: currentColor;
    height: 16px;
    width: 16px;
}

.silk-home__email-soft-close-success {
    color: #f1e0b8;
    font-weight: 600;
}

.silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy a,
.silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy a:link,
.silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy a:visited {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: .16em;
}

.silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy-icon svg {
    color: currentColor;
}

.silk-home__email-soft-close-actions {
    display: grid;
    gap: 18px;
    position: relative;
    width: 100%;
    z-index: 1;
}

#blijf-op-de-hoogte.is-email-reveal-ready [data-email-reveal-group],
#blijf-op-de-hoogte.is-email-reveal-ready [data-email-reveal-followup] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
    will-change: opacity, transform;
}

#blijf-op-de-hoogte.is-email-reveal-ready [data-email-reveal-group] {
    transform: translateY(12px);
    transition-duration: 440ms;
    transition-delay: var(--email-reveal-delay, 0ms);
}

#blijf-op-de-hoogte.is-email-reveal-ready [data-email-reveal-followup] {
    transform: translateY(8px);
    transition-duration: 420ms;
    transition-delay: var(--email-reveal-delay, 0ms);
}

#blijf-op-de-hoogte.is-email-visible [data-email-reveal-group],
#blijf-op-de-hoogte.is-email-visible [data-email-reveal-followup] {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 901px) {
    #blijf-op-de-hoogte.is-email-reveal-ready [data-email-reveal-group] {
        transform: translateY(18px);
        transition-duration: 520ms;
    }

    #blijf-op-de-hoogte.is-email-reveal-ready [data-email-reveal-followup] {
        transform: translateY(10px);
        transition-duration: 500ms;
    }
}

.silk-home__email-soft-close-visual {
    align-self: stretch;
    min-height: 100%;
    overflow: hidden;
    min-height: 100%;
    position: relative;
}

.silk-home__email-soft-close-visual::before {
    background:
        linear-gradient(90deg, rgba(72, 85, 68, 0) 0%, rgba(72, 85, 68, .02) 24%, rgba(72, 85, 68, .18) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.silk-home__email-soft-close-visual img {
    display: block;
    height: 100%;
    max-height: 520px;
    min-height: 460px;
    object-fit: cover;
    object-position: center center;
    width: 100%;
}

.silk-home__email-soft-close-botanical {
    display: none;
}

.silk-home__email-soft-close-stamp {
    align-items: center;
    background: #b69b74;
    border: 3px solid rgba(255, 238, 237, .72);
    border-radius: 999px;
    box-shadow: 0 12px 22px rgba(28, 34, 28, .22);
    color: #fff7ea;
    display: grid;
    gap: 1px;
    height: clamp(104px, 9vw, 136px);
    justify-items: center;
    padding: 10px;
    position: absolute;
    right: clamp(22px, 3vw, 38px);
    text-align: center;
    top: clamp(20px, 2.6vw, 30px);
    transform: rotate(5deg);
    transform-origin: center center;
    width: clamp(104px, 9vw, 136px);
    z-index: 2;
}

.silk-home__email-soft-close-stamp span:first-child {
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: clamp(15px, 1.05vw, 20px);
    line-height: 1;
}

.silk-home__email-soft-close-stamp strong {
    font-size: clamp(31px, 2.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: .9;
}

.silk-home__email-soft-close-stamp span:last-child {
    font-size: clamp(11px, .78vw, 14px);
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.05;
}

.silk-home__email-soft-close-signature {
    align-items: center;
    color: #343434;
    display: inline-grid;
    gap: 6px;
    justify-items: center;
    margin-top: 14px;
    text-align: center;
    width: fit-content;
}

.silk-home__email-soft-close-signature-name {
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: clamp(34px, 2.2vw, 46px);
    line-height: .9;
}

.silk-home__email-soft-close-signature img {
    height: auto;
    margin-top: -8px;
    width: 30px;
}

.silk-home__email-soft-close-signature-role {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

@media (min-width: 901px) {
    .silk-home__email-soft-close.is-newsletter {
        max-width: 1280px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card-shell {
        align-items: center;
        column-gap: 64px;
        grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
        min-height: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy {
        align-content: start;
        align-self: center;
        background: transparent;
        gap: 20px;
        min-height: 0;
        padding: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-kicker {
        background: #f4e4e1;
        border-color: rgba(255, 255, 255, .2);
        color: #607264;
        min-height: 46px;
        padding: 0 20px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-kicker svg {
        color: #b7a58a;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-script {
        display: none;
    }

    #email-soft-close-title {
        color: #fbfbfa;
        font-family: "Newsreader", Georgia, serif;
        font-size: clamp(44px, 4vw, 54px);
        font-weight: 400;
        letter-spacing: -.018em;
        line-height: .98;
        text-align: left;
        margin-top: 0;
        max-width: 470px;
        text-wrap: balance;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        color: rgba(251, 251, 250, .92);
        font-size: 18px;
        line-height: 1.6;
        margin-top: 0;
        max-width: 35ch;
        text-wrap: balance;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-benefits {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form {
        align-items: stretch;
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        margin-top: 0;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input {
        background: #fbfbfa;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 18px;
        color: #242424;
        flex: 1 1 auto;
        font-size: 17px;
        height: 58px;
        line-height: 1.2;
        min-width: 320px;
        min-height: 58px;
        padding: 0 24px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input::placeholder {
        color: #6d6d6d;
        opacity: 1;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input:focus {
        border-color: rgba(251, 251, 250, .56);
        box-shadow: 0 0 0 4px rgba(251, 251, 250, .12);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        background: #c96f72;
        border-color: #c96f72;
        border-radius: 18px;
        box-shadow: none;
        color: #fbfbfa;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.2;
        flex: 0 0 auto;
        height: 58px;
        min-height: 58px;
        min-width: 196px;
        padding: 0 32px;
        white-space: nowrap;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button:hover,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button:focus {
        background: #bb6369;
        border-color: #bb6369;
        box-shadow: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy {
        color: rgba(251, 251, 250, .65);
        font-size: 12px;
        gap: 10px;
        margin-top: 14px;
        line-height: 1.4;
        max-width: 44ch;
        opacity: .65;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-success {
        color: #f1e0b8;
        font-size: 14px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-actions {
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: center;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual {
        align-self: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
        overflow: visible;
        position: relative;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual::before {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual::after {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-actions {
        align-self: center;
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical {
        color: rgba(251, 251, 250, .12);
        max-width: 420px;
        position: absolute;
        right: -8px;
        top: -58px;
        width: min(100%, 420px);
        z-index: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical svg {
        display: block;
        height: auto;
        overflow: visible;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical path {
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2.2;
    }
}

.silk-home__info-bar {
    background: #f4e4e1;
    border: 0;
    left: auto;
    margin: 0;
    position: relative;
    right: auto;
    width: 100%;
}

.silk-home__info-bar-inner {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1440px;
    padding: 42px clamp(20px, 4vw, 64px);
}

.silk-home__info-bar-item {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0 28px;
    position: relative;
}

.silk-home__info-bar.is-info-reveal-ready [data-info-reveal-item] {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 460ms ease-out var(--info-reveal-delay, 0ms),
        transform 460ms ease-out var(--info-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.silk-home__info-bar.is-info-visible [data-info-reveal-item] {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .silk-home__info-bar.is-info-visible [data-info-reveal-item] {
        transition:
            opacity 460ms ease-out var(--info-reveal-delay, 0ms),
            transform 460ms ease-out var(--info-reveal-delay, 0ms),
            color 180ms ease-out;
    }

    .silk-home__info-bar.is-info-visible [data-info-reveal-item]:hover {
        transform: translateY(-1px);
    }

    .silk-home__info-bar.is-info-visible [data-info-reveal-item] .silk-home__info-bar-icon {
        transition: background-color 180ms ease-out;
    }

    .silk-home__info-bar.is-info-visible [data-info-reveal-item]:hover .silk-home__info-bar-icon {
        background: #fffdfb;
    }
}

.silk-home__info-bar-item + .silk-home__info-bar-item::before {
    background: rgba(96, 114, 100, .14);
    content: "";
    height: 56px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.silk-home__info-bar-icon {
    align-items: center;
    color: #607264;
    display: inline-flex;
    background: #fbfbfa;
    border-radius: 999px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.silk-home__info-bar-icon svg {
    fill: none;
    height: 28px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 28px;
}

.silk-home__info-bar-copy {
    display: grid;
    gap: 4px;
}

.silk-home__info-bar-copy h3 {
    color: #242424;
    font-family: "Newsreader", Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.12;
    margin: 0;
}

.silk-home__info-bar-copy p {
    color: #6d6d6d;
    font-size: 16px;
    line-height: var(--lh-body);
    margin: 0;
    max-width: 28ch;
}

.silk-home__founder {
    background: linear-gradient(180deg, #f8f6f2 0%, #f6f3ef 100%);
    border-bottom: 1px solid var(--silk-border);
    border-top: 1px solid var(--silk-border);
    margin: 0;
    padding: 44px clamp(22px, 3.8vw, 44px) 42px;
}

.silk-home__founder-inner {
    align-items: start;
    column-gap: 40px;
    display: grid;
    grid-template-columns: 260px minmax(0, 640px);
    justify-content: center;
    margin: 0 auto;
    max-width: 940px;
    row-gap: 0;
}

.silk-home__founder-media {
    align-self: start;
    display: flex;
    justify-self: center;
    justify-content: center;
    padding-left: 0;
    padding-top: 2px;
    width: 100%;
}

.silk-home__founder-media img {
    aspect-ratio: 1;
    border-radius: 50%;
    display: block;
    height: 176px;
    margin: 0 !important;
    object-fit: cover;
    width: 176px;
}

.silk-home__founder-content {
    min-width: 0;
}

.silk-home .silk-home__founder-title {
    color: var(--silk-ink);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: .95;
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .silk-home .silk-home__founder-title--desktop {
        font-size: 30px;
        line-height: 1.08;
        margin: 0 0 11px;
    }
}

.silk-home__founder-title--mobile,
.silk-home__founder-intro-row {
    display: none;
}

.silk-home__founder-copy,
.silk-home__founder-outro {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    max-width: 680px;
}

.silk-home__founder-copy--mobile,
.silk-home__founder-outro--mobile {
    display: none;
}

.silk-home__founder-copy p,
.silk-home__founder-outro p {
    margin: 0 0 11px;
}

.silk-home__founder-highlight {
    color: var(--silk-rose);
    font-family: var(--font-script);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin: 12px 0;
    max-width: 680px;
}

.silk-home__founder-social-card {
    align-items: flex-start;
    background: var(--silk-paper);
    border: 1px solid var(--silk-border);
    border-radius: 16px;
    display: grid;
    gap: 10px;
    grid-template-columns: 16px minmax(0, 1fr);
    margin-top: 16px;
    max-width: 560px;
    padding: 15px 16px;
}

.silk-home__founder-social-icon {
    color: var(--silk-rose);
    height: 16px;
    margin-top: 2px;
    width: 16px;
}

.silk-home__founder-social-icon svg {
    display: block;
    fill: none;
    height: 100%;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 100%;
}

.silk-home__founder-social-copy {
    min-width: 0;
}

.silk-home__founder-social-title,
.silk-home__founder-social-body {
    font-family: var(--font-body);
    margin: 0;
}

.silk-home__founder-social-title {
    color: var(--silk-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.silk-home__founder-social-body {
    color: var(--silk-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    margin-top: 2px;
}

.silk-home__founder-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 14px;
}

.silk-home__founder-social-link {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 253, 248, .94) 0%, rgba(248, 243, 235, .9) 100%);
    border: 1px solid rgba(183, 145, 81, .78);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .68), 0 10px 22px rgba(131, 102, 52, .06);
    color: #a88045;
    display: inline-flex;
    height: 50px;
    justify-content: center;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    width: 50px;
}

.silk-home__founder-social-link:hover,
.silk-home__founder-social-link:focus-visible {
    background: linear-gradient(180deg, rgba(251, 246, 237, .98) 0%, rgba(245, 235, 219, .96) 100%);
    border-color: #c39653;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 14px 26px rgba(151, 111, 54, .1);
    color: #8f6832;
    outline: none;
    transform: translateY(-2px);
}

.silk-home__founder-social-link svg {
    display: block;
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 22px;
}

.silk-home__founder-social-link-fill {
    fill: currentColor;
    stroke: none;
}

.silk-home__founder-social-link--facebook svg {
    height: 21px;
    width: 21px;
}

.silk-home__founder-social-link--pinterest svg {
    height: 20px;
    width: 20px;
}

.silk-home__founder-social-link--tiktok svg {
    height: 21px;
    width: 21px;
}

.silk-home__founder-social-link--facebook svg path,
.silk-home__founder-social-link--pinterest svg path,
.silk-home__founder-social-link--tiktok svg path {
    fill: currentColor;
    stroke: none;
}

.silk-home__founder-social-link--instagram svg rect,
.silk-home__founder-social-link--instagram svg circle:not(.silk-home__founder-social-link-fill) {
    fill: none;
    stroke: currentColor;
}

.silk-home__behind {
    align-items: center;
    background:
        radial-gradient(circle at 12% 14%, rgba(220, 204, 181, .33) 0%, rgba(244, 242, 238, 0) 22%),
        radial-gradient(circle at 88% 16%, rgba(217, 177, 170, .16) 0%, rgba(244, 242, 238, 0) 20%),
        linear-gradient(180deg, #f8f6f2 0%, #f4f2ee 100%);
    border: 0;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: clamp(18px, 2vw, 28px);
    grid-template-columns: minmax(220px, .86fr) minmax(0, 2.2fr) minmax(220px, .88fr);
    margin: 0;
    overflow: hidden;
    padding: clamp(34px, 4vw, 48px) clamp(22px, 3.8vw, 44px) 28px;
    position: relative;
}

.silk-home__behind::after {
    background: linear-gradient(90deg, rgba(183, 165, 138, .16) 0%, rgba(183, 165, 138, .42) 18%, rgba(183, 165, 138, .42) 82%, rgba(183, 165, 138, .16) 100%);
    content: "";
    inset: auto 0 0;
    height: 1px;
    position: absolute;
}

.silk-home__behind-intro,
.silk-home__social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 18px;
}

.silk-home__behind-intro {
    align-items: flex-start;
}

.silk-home__behind-intro .silk-home__eyebrow {
    color: #b7a58a;
    letter-spacing: .18em;
    margin-bottom: 20px;
    text-align: left;
    text-align-last: auto;
    width: auto;
}

.silk-home__behind-intro .silk-home__eyebrow::after {
    content: none;
}

#behind-title {
    margin: 0 0 18px;
    max-width: 8ch;
}

.silk-home__behind-copy {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
    margin: 0;
    max-width: 320px;
}

.silk-home__behind-accent {
    background: linear-gradient(90deg, rgba(183, 165, 138, .82) 0%, rgba(217, 177, 170, .65) 100%);
    border-radius: 999px;
    display: inline-block;
    height: 2px;
    margin-bottom: 22px;
    width: 66px;
}

.silk-home__behind-gallery {
    display: grid;
    align-items: stretch;
    gap: 18px;
    grid-template-columns: minmax(0, 1.14fr) minmax(0, .92fr) minmax(0, 1.02fr);
}

.silk-home__behind-card {
    background: var(--silk-paper);
    border: 1px solid var(--silk-border);
    border-radius: 18px;
    box-shadow:
        0 10px 22px rgba(36, 36, 36, .04),
        0 1px 0 rgba(255, 255, 255, .6) inset;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    text-align: left;
    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
        background 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.silk-home__behind-card:nth-child(1) {
    margin-top: -8px;
}

.silk-home__behind-card:nth-child(2) {
    margin-top: 18px;
}

.silk-home__behind-card:nth-child(3) {
    margin-top: 4px;
}

.silk-home__behind-card::after {
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.silk-home__behind-gallery img {
    aspect-ratio: .83;
    display: block;
    height: auto;
    object-fit: cover;
    transform: scale(1);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
    width: 100%;
    will-change: transform;
}

.silk-home__behind.is-behind-reveal-ready .silk-home__behind-card {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 600ms ease-out var(--behind-reveal-delay, 0ms),
        transform 600ms ease-out var(--behind-reveal-delay, 0ms),
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.silk-home__behind.is-behind-reveal-ready .silk-home__behind-card img {
    transform: scale(1.03);
    transition:
        transform 600ms ease-out var(--behind-reveal-delay, 0ms);
}

.silk-home__behind.is-behind-reveal-ready.is-behind-visible .silk-home__behind-card {
    opacity: 1;
    transform: translateY(0);
}

.silk-home__behind.is-behind-reveal-ready.is-behind-visible .silk-home__behind-card img {
    transform: scale(1);
}

.silk-home__behind.is-behind-motion-disabled .silk-home__behind-card,
.silk-home__behind.is-behind-motion-disabled .silk-home__behind-card img {
    opacity: 1;
    transform: none;
    transition: none;
}

.silk-home__behind-card-copy {
    background: linear-gradient(180deg, rgba(251, 251, 250, .96), rgba(244, 242, 238, .99));
    border-top: 1px solid rgba(216, 213, 207, .92);
    display: flex;
    flex-direction: column;
    min-height: 138px;
    padding: 18px 18px 24px;
    position: relative;
    text-align: left;
    transition:
        background 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
        color 420ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.silk-home__behind-card-copy h3 {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
    margin: 0 0 10px;
}

.silk-home__behind-card-copy p {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body-compact);
    margin: 0;
}

@media (min-width: 768px) {
    .silk-home__behind-gallery {
        align-items: start;
        grid-auto-rows: min-content;
    }

    .silk-home__behind-card {
        align-self: start;
        background: transparent;
        border: 0;
        border-radius: 24px;
        box-shadow: 0 12px 24px rgba(36, 36, 36, .07);
        height: auto;
    }

    .silk-home__behind-card:hover,
    .silk-home__behind-card:focus-within {
        box-shadow: 0 20px 38px rgba(36, 36, 36, .12);
        transform: translateY(-4px);
    }

    .silk-home__behind-gallery img {
        border-radius: 24px;
    }

    .silk-home__behind.is-behind-reveal-ready .silk-home__behind-card {
        transform: translateY(40px);
        transition:
            opacity 700ms ease-out var(--behind-reveal-delay, 0ms),
            transform 700ms ease-out var(--behind-reveal-delay, 0ms),
            box-shadow 220ms ease,
            border-color 220ms ease,
            background 220ms ease;
    }

    .silk-home__behind.is-behind-reveal-ready .silk-home__behind-card img {
        transition: transform 700ms ease-out var(--behind-reveal-delay, 0ms);
    }

    .silk-home__behind-card-copy {
        display: none;
    }
}

.silk-home__social {
    align-items: flex-start;
    align-self: stretch;
    border-left: 1px solid rgba(216, 213, 207, .96);
    gap: 0;
    padding-left: clamp(18px, 2vw, 30px);
}

.silk-home__social-heart {
    color: #d9b1aa;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 18px;
}

.silk-home__social h3 {
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 400;
    letter-spacing: -.015em;
    margin: 0 0 16px;
}

.silk-home__social p {
    color: var(--silk-muted);
    font-size: 15px;
    line-height: 1.78;
    margin: 0 0 20px;
    max-width: 220px;
}

.silk-home__social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.silk-home__social-links a {
    align-items: center;
    background: rgba(251, 251, 250, .72);
    border: 1px solid rgba(183, 165, 138, .38);
    border-radius: 50%;
    color: var(--silk-ink);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    text-decoration: none;
    transition: background-color .24s ease, border-color .24s ease, color .24s ease, transform .24s ease, box-shadow .24s ease;
    width: 48px;
}

.silk-home__social-links a svg {
    fill: none;
    height: 19px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 19px;
}

.silk-home__social-links a:nth-child(2) svg,
.silk-home__social-links a:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.silk-home__social-links a:hover,
.silk-home__social-links a:focus {
    background: #607264;
    border-color: #607264;
    box-shadow: 0 10px 18px rgba(96, 114, 100, .16);
    color: #fbfbfa;
    transform: translateY(-2px);
}

.silk-home__social-handle {
    color: var(--silk-ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -.012em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.silk-home__survey-slidein {
    --survey-slidein-enter-duration: .66s;
    --survey-slidein-enter-ease: cubic-bezier(.16, 1, .3, 1);
    --survey-slidein-shell-animation: silk-home-slidein-enter-desktop;
    --survey-slidein-exit-duration: .38s;
    --survey-slidein-exit-ease: cubic-bezier(.4, 0, .2, 1);
    --survey-slidein-shell-exit-animation: silk-home-slidein-exit-desktop;
    --survey-slidein-content-exit-animation: silk-home-slidein-content-fade-out;
    --survey-slidein-visual-exit-animation: silk-home-slidein-visual-exit;
    --survey-slidein-content-animation: silk-home-slidein-content-settle;
    --survey-slidein-visual-animation: silk-home-slidein-visual-reveal;
    bottom: 32px;
    pointer-events: none;
    position: fixed;
    right: 32px;
    z-index: 1250;
}

.silk-home__survey-slidein-shell {
    animation: var(--survey-slidein-shell-animation) var(--survey-slidein-enter-duration) var(--survey-slidein-enter-ease) both;
    pointer-events: auto;
    transform-origin: right bottom;
}

.silk-home__survey-slidein.is-closing .silk-home__survey-slidein-shell {
    animation: var(--survey-slidein-shell-exit-animation) var(--survey-slidein-exit-duration) var(--survey-slidein-exit-ease) both;
}

.silk-home__survey-slidein-content {
    animation: var(--survey-slidein-content-animation) .78s cubic-bezier(.22, 1, .36, 1) .05s both;
    background: #f7efe7;
    border: 2px solid #c59354;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    color: #242424;
    display: block;
    height: auto;
    max-height: calc(100vh - 44px);
    max-width: 420px;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: min(420px, calc(100vw - 40px));
}

.silk-home__survey-slidein.is-closing .silk-home__survey-slidein-content {
    animation: var(--survey-slidein-content-exit-animation) .28s ease both;
}

.silk-home__survey-slidein-copy {
    align-content: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-items: start;
    min-height: 0;
    padding: 28px 28px 24px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.silk-home__survey-slidein-floral {
    pointer-events: none;
    position: absolute;
}

.silk-home__survey-slidein-floral--desktop {
    background: url("../img/home/survey-popup-flower-desktop.png") right bottom / contain no-repeat;
    display: block;
    height: 260px;
    bottom: 0;
    opacity: .6;
    right: 20px;
    top: auto;
    width: 98px;
    z-index: 0;
}

.silk-home__survey-slidein-floral--mobile {
    display: none;
}

.silk-home__survey-slidein-pill-hero--desktop {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 22px;
    width: auto;
}

.silk-home__survey-slidein-pill-image-desktop,
.silk-home__survey-slidein-badge-image-mobile {
    display: block;
    max-width: 100%;
    width: auto;
}

.silk-home__survey-slidein-pill-image-desktop {
    height: 74px;
    margin: 0 !important;
}

.silk-home__survey-slidein-pill-hero--mobile,
.silk-home__survey-slidein-pill-list,
.silk-home__survey-slidein-body--mobile,
.silk-home__survey-slidein-thanks--mobile {
    display: none;
}

.silk-home__survey-slidein .silk-home__survey-slidein-title {
    color: #242424;
    font-family: "Newsreader", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.016em;
    line-height: 1.08;
    margin: 0 0 10px;
    max-width: 300px;
    text-wrap: pretty;
}

.silk-home__survey-slidein-title-line,
.silk-home__survey-slidein-body-line {
    display: block;
}

.silk-home__survey-slidein-title-line {
    white-space: nowrap;
}

.silk-home__survey-slidein-body--desktop {
    color: #242424;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 8px;
    max-width: 310px;
    text-wrap: balance;
}

.silk-home__survey-slidein-micro--desktop {
    color: #6d6d6d;
    display: block;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 18px;
}

.silk-home__survey-slidein-pill-image-mobile {
    display: block;
    max-width: 100%;
    width: auto;
}

.silk-home__survey-slidein-pill-chip {
    align-items: center;
    background: #f4f2ee;
    border: 1px solid #d8d5cf;
    border-radius: 999px;
    color: #242424;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    height: 30px;
    justify-content: center;
    padding: 0 10px;
    white-space: nowrap;
}

.silk-home__survey-slidein-footer-stack {
    display: block;
    margin-top: 0;
    max-width: 100%;
    width: 100%;
}

.silk-home__survey-slidein-primary,
.silk-home__survey-slidein-secondary,
.silk-home__survey-slidein-close {
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.silk-home__survey-slidein-primary {
    align-items: center;
    background: #d07777;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(163, 92, 92, .14);
    color: #fbfbfa;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    margin: 0;
    min-height: 44px;
    padding: 0 16px;
    text-transform: none;
    width: 100%;
}

.silk-home__survey-slidein-primary:hover,
.silk-home__survey-slidein-primary:focus {
    background: #c96c6c;
    box-shadow: 0 12px 24px rgba(163, 92, 92, .18);
    transform: translateY(-1px);
}

.silk-home__survey-slidein-primary-arrow {
    align-items: center;
    display: inline-flex;
    height: 14px;
    justify-content: center;
    width: 14px;
}

.silk-home__survey-slidein-primary-arrow svg {
    fill: none;
    height: 100%;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 100%;
}

.silk-home__survey-slidein-close {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: rgba(36, 36, 36, .65);
    display: inline-flex;
    font-size: 18px;
    font-weight: 400;
    height: 24px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    opacity: .6;
    right: 18px;
    top: 18px;
    width: 24px;
    z-index: 2;
}

.silk-home__survey-slidein-close:hover,
.silk-home__survey-slidein-close:focus {
    color: rgba(36, 36, 36, 1);
    opacity: 1;
    transform: translateY(-1px);
}

.silk-home__survey-slidein-thanks--desktop {
    color: #6d6d6d;
    font-family: Inter, Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.3;
    margin: 14px 0 0;
    padding-bottom: 2px;
    padding-left: 0;
    text-align: left;
}

@keyframes silk-home-slidein-enter-desktop {
    from {
        opacity: 0;
        transform: translate3d(36px, 0, 0) scale(.96);
    }

    68% {
        opacity: 1;
        transform: translate3d(-6px, 0, 0) scale(1.01);
    }

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

@keyframes silk-home-slidein-content-settle {
    from {
        filter: saturate(.9);
    }

    55% {
        filter: saturate(1.02);
    }

    to {
        filter: saturate(1);
    }
}

@keyframes silk-home-slidein-visual-reveal {
    from {
        opacity: 0;
        transform: scale(1.08) translate3d(10px, 0, 0);
    }

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

@keyframes silk-home-slidein-enter-mobile {
    from {
        opacity: 0;
        transform: translate3d(0, 42px, 0) scale(.96);
    }

    68% {
        opacity: 1;
        transform: translate3d(0, -5px, 0) scale(1.01);
    }

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

@keyframes silk-home-slidein-exit-desktop {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    to {
        opacity: 0;
        transform: translate3d(22px, 28px, 0) rotate(1.4deg) scale(.95);
    }
}

@keyframes silk-home-slidein-exit-mobile {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(.98);
    }
}

@keyframes silk-home-slidein-content-fade-out {
    from {
        opacity: 1;
        filter: saturate(1);
    }

    to {
        opacity: 0;
        filter: saturate(.96);
    }
}

@keyframes silk-home-slidein-visual-exit {
    from {
        opacity: 1;
        transform: scale(1) translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(1.03) translate3d(8px, 0, 0);
    }
}

.silk-home__footer {
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 28%),
        linear-gradient(135deg, #607264 0%, #5b6d5f 52%, #526355 100%);
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-radius: 0;
    color: rgba(251, 251, 250, .92);
    display: flex;
    flex-direction: column;
    height: auto !important;
    margin: 0;
    min-height: 0 !important;
    overflow: hidden;
    padding: 12px clamp(24px, 3.2vw, 42px) 0;
    position: relative;
}

.silk-home__footer::before {
    content: none;
}

.silk-home__footer-grid {
    display: grid;
    align-items: start;
    gap: 10px clamp(14px, 2vw, 22px);
    grid-template-columns: minmax(180px, .78fr) minmax(180px, .9fr) minmax(140px, .7fr) minmax(280px, 1.1fr);
    position: relative;
    z-index: 1;
}

.silk-home__footer-brand,
.silk-home__footer-column {
    min-height: 0;
    padding: 0;
}

.silk-home__footer-column {
    border-left: 1px solid rgba(255, 255, 255, .14);
    padding-left: clamp(16px, 2vw, 24px);
}

.silk-home__footer-brand img {
    display: block;
    height: auto;
    margin: 0;
    max-width: 210px;
    width: 100%;
}

.silk-home__footer-brand-copy {
    display: none;
}

.silk-home__footer--coming-soon-page {
    margin-top: 8px;
}

.silk-home__footer--coming-soon-page .silk-home__footer-brand {
    align-self: start;
    padding-top: 2px;
}

.silk-home__footer-column h3 {
    color: rgba(255, 245, 232, .78);
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    margin: 0 0 6px;
    text-transform: uppercase;
}

.silk-home__footer-column a,
.silk-home__footer-column p,
.silk-home__footer-bottom a,
.silk-home__footer-bottom span {
    color: rgba(251, 251, 250, .84);
}

.silk-home__footer-menu-desktop-link {
    display: none !important;
}

.silk-home__footer-signup-desktop-link {
    display: none;
}

.silk-home__footer-column a {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-compact);
    margin-bottom: 3px;
    position: relative;
    text-decoration: none;
    width: fit-content;
}

.silk-home__footer-column a::after,
.silk-home__footer-bottom a::after {
    background: currentColor;
    content: "";
    display: block;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .24s ease;
    width: 100%;
}

.silk-home__footer-column a:hover::after,
.silk-home__footer-column a:focus::after,
.silk-home__footer-bottom a:hover::after,
.silk-home__footer-bottom a:focus::after {
    transform: scaleX(1);
}

.silk-home__footer-column p {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-compact);
    margin: 0 0 6px;
    max-width: 30ch;
}

.silk-home__footer-signup-copy {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-compact);
    max-width: 26ch;
}

.silk-home__footer-secondary-links {
    display: grid;
    gap: 3px;
    margin-top: 18px;
}

.silk-home__footer-column--signup {
    display: grid;
    gap: 0;
}

.silk-home__footer-signup {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr);
    margin: 2px 0 0;
    max-width: 100%;
}

.silk-home__footer-signup > input[type="email"] {
    min-width: 0;
    width: 100%;
}

.silk-home__footer-signup input {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: var(--silk-ink);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-compact);
    min-height: 42px;
    padding: 0 16px;
}

.silk-home__footer-signup input::placeholder {
    color: #6d6d6d;
    opacity: 1;
}

.silk-home__footer-signup input:focus {
    border-color: rgba(255, 255, 255, .42);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .10);
    outline: none;
}

.silk-home__footer-signup button {
    align-items: center;
    background: var(--silk-rose);
    border: 1px solid var(--silk-rose);
    border-radius: 14px;
    color: #fbfbfa;
    cursor: pointer;
    display: inline-flex;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    min-height: 42px;
    padding: 0 16px;
    text-align: center;
    transition: background-color .18s ease, border-color .18s ease;
}

.silk-home__footer .silk-home__footer-signup button > span,
.silk-home__footer .silk-home__footer-signup button > span[aria-hidden="true"] {
    align-items: center;
    color: #fbfbfa;
    display: inline-flex;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    padding-top: 0;
}

.silk-home__footer-signup button:hover,
.silk-home__footer-signup button:focus {
    background: #c96f72;
    border-color: #c96f72;
}

.silk-home__footer-signup-success {
    color: rgba(251, 251, 250, .88) !important;
    font-family: var(--font-body) !important;
    font-size: var(--fs-meta) !important;
    line-height: var(--lh-meta) !important;
    margin-top: 6px !important;
}

.silk-home__footer-signup-privacy {
    color: rgba(251, 251, 250, .7);
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    line-height: var(--lh-meta);
    margin: 8px 0 0;
    max-width: 32ch;
}

.silk-home__footer-signup-privacy a,
.silk-home__footer-signup-privacy a:link,
.silk-home__footer-signup-privacy a:visited,
.silk-home__email-soft-close-privacy a,
.silk-home__email-soft-close-privacy a:link,
.silk-home__email-soft-close-privacy a:visited {
    color: #f8eee1;
    text-decoration: underline;
    text-underline-offset: .16em;
}

.silk-home__footer-signup-privacy a:hover,
.silk-home__footer-signup-privacy a:focus,
.silk-home__email-soft-close-privacy a:hover,
.silk-home__email-soft-close-privacy a:focus {
    color: #fff;
}

.silk-home__email-soft-close-success--error,
.silk-home__footer-signup-success--error {
    color: #f9d7cf !important;
}

.silk-home__footer-bottom {
    border-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    margin-top: 6px;
    padding: 6px 0 0;
    position: relative;
    z-index: 1;
}

.silk-home__footer-bottom a,
.silk-home__footer-bottom span {
    color: rgba(251, 251, 250, .7);
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    line-height: var(--lh-meta);
    letter-spacing: 0;
    text-decoration: none;
}

.silk-home__footer-bottom span {
    flex-basis: 100%;
    text-align: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .silk-home__footer {
        padding: 24px 28px 0;
    }

    .silk-home__footer-grid {
        column-gap: 32px;
        row-gap: 0;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .silk-home__footer-brand,
    .silk-home__footer-column {
        min-height: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .silk-home__footer-brand {
        grid-column: 1 / -1;
        padding-bottom: 18px;
    }

    .silk-home__footer-brand img {
        max-width: 142px;
    }

    .silk-home__footer-column {
        border-left: 0;
        border-top: 1px solid rgba(183, 165, 138, .18);
        padding-top: 20px;
    }

    .silk-home__footer-column--menu {
        grid-column: 1;
        grid-row: 2;
        padding-right: 18px;
    }

    .silk-home__footer-column--social {
        grid-column: 1;
        grid-row: 3;
        padding-right: 18px;
    }

    .silk-home__footer-column--signup {
        grid-column: 2;
        grid-row: 2 / span 2;
        margin-top: 0;
    }

    .silk-home__footer .silk-home__footer-column--signup {
        background: transparent;
        border: 0;
        border-top: 1px solid rgba(183, 165, 138, .18);
        border-radius: 0;
        box-shadow: none;
        padding: 22px 0 0;
    }

    .silk-home__footer .silk-home__footer-column--signup h3,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-copy,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy a,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy a:link,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy a:visited {
        color: rgba(251, 251, 250, .84);
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-copy {
        margin: 0 0 12px;
        max-width: 34ch;
    }

    .silk-home__footer-menu-desktop-link {
        display: block !important;
    }

    .silk-home__footer-signup {
        align-items: stretch;
        column-gap: 0;
        grid-template-columns: minmax(0, 1fr);
        row-gap: 10px;
        max-width: 420px;
    }

    .silk-home__footer-signup input {
        min-height: 48px;
    }

    .silk-home__footer .silk-home__footer-signup button,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup button {
        min-height: 48px;
        min-width: 0;
        padding: 0 20px;
        width: 100%;
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy {
        font-size: 12px;
        margin-top: 18px;
    }

    .silk-home__footer-bottom {
        align-items: center;
        justify-content: flex-start;
        margin-top: 20px;
        padding: 16px 0 18px;
    }

    .silk-home__footer-bottom-link--privacy {
        display: none;
    }

    .silk-home__footer-bottom span {
        flex-basis: 100%;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 1121px) and (max-width: 1600px) {
    .silk-home__preference {
        padding-bottom: 18px;
        padding-top: 24px;
    }

    .silk-home__preference-shell {
        max-width: 1280px;
    }

    .silk-home__preference-panel {
        padding: clamp(42px, 3.6vw, 56px);
    }

    .silk-home__survey-showcase {
        gap: 34px;
        grid-template-columns: minmax(380px, .95fr) minmax(600px, 1.55fr);
    }

    .silk-home__survey-editorial-title {
        font-size: var(--fs-section);
    }

    .silk-home__survey-editorial-watermark {
        font-size: clamp(188px, 18vw, 248px);
        left: 50%;
        top: 55%;
    }

    .silk-home__survey-editorial-signature {
        font-size: clamp(62px, 5vw, 88px);
        right: 0;
    }

    .silk-home__option-grid--airy {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .silk-home__option-grid:not(.silk-home__option-grid--airy) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .silk-home__survey-block--notes {
        grid-template-columns: minmax(0, .84fr) minmax(240px, .64fr);
    }
}

@media (min-width: 1601px) {
    .silk-home__preference {
        padding-bottom: 22px;
        padding-top: 32px;
    }

    .silk-home__preference-bridge {
        margin-bottom: 18px;
    }

    .silk-home__preference-shell {
        gap: 0;
        grid-template-columns: 1fr;
        max-width: 1320px;
    }

    .silk-home__preference-copy {
        display: none;
    }

    .silk-home__survey-showcase {
        gap: 44px;
        grid-template-columns: minmax(380px, .95fr) minmax(600px, 1.55fr);
    }

    .silk-home__survey-editorial-signature {
        font-size: 100px;
    }

    .silk-home__survey-editorial-watermark {
        left: 50%;
        top: 54%;
    }
}

@media (max-width: 1120px) {
    .silk-home__nav {
        gap: 18px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .silk-home__nav-actions {
        gap: 18px;
        min-width: 0;
    }

    .silk-home__nav-cta {
        flex-shrink: 0;
        font-size: 12px;
        padding: 14px 18px;
    }

    .silk-home__links {
        flex-wrap: nowrap;
        gap: 10px;
        min-width: 0;
    }

    .silk-home__links a {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .silk-home__nav {
        align-items: center;
        flex-direction: row;
        gap: 16px;
        justify-content: space-between;
        min-height: 78px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .silk-home__brand {
        flex: 0 0 auto;
    }

    .silk-home__nav-actions {
        align-items: center;
        flex: 1 1 auto;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-end;
        margin-left: auto;
        min-width: 0;
        width: auto;
    }

    .silk-home__nav-cta {
        align-self: auto;
        flex: 0 0 auto;
        font-size: 11px;
        min-height: 46px;
        padding: 13px 16px;
    }

    .silk-home__links {
        flex: 1 1 auto;
        flex-wrap: nowrap;
        gap: 4px;
        justify-content: flex-end;
        min-width: 0;
    }

    .silk-home__links a {
        font-size: 12px;
        padding-left: 8px;
        padding-right: 8px;
        white-space: nowrap;
    }

    .silk-home__hero {
        grid-template-columns: 1fr;
        min-height: 0;
        row-gap: 0;
    }

    .silk-home__hero-image {
        min-height: 416px;
    }

    .silk-home__hero-copy {
        border-radius: 30px 30px 0 0;
        margin-top: -10px;
        position: relative;
        z-index: 4;
    }

    .silk-home__seal {
        bottom: 18px;
        height: 132px;
        left: 28px;
        padding: 18px 16px;
        width: 132px;
        z-index: 7;
    }

    .silk-home__seal-text {
        max-width: 90px;
    }

    .silk-home__founder-media {
        display: flex;
        justify-content: flex-start;
        justify-self: start;
        margin-bottom: 14px;
        padding-top: 0;
        width: auto;
    }

    .silk-home__founder-media img {
        height: 120px;
        width: 120px;
    }
}

@media (max-width: 1024px) {
    .silk-home__preference {
        padding-bottom: 52px;
        padding-top: 0;
    }

    .silk-home__preference-shell {
        max-width: 960px;
    }

    .silk-home__preference-panel {
        min-height: 0;
        padding: 40px;
    }

    .silk-home__survey-showcase {
        gap: 32px;
        grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    }

    .silk-home__survey-editorial-copy-inner {
        gap: 20px;
    }

    .silk-home__survey-editorial-title {
        font-size: var(--fs-section);
        max-width: 8.5ch;
        white-space: normal;
        text-wrap: balance;
    }

    .silk-home__survey-editorial-watermark {
        font-size: clamp(154px, 17vw, 220px);
        left: 50%;
        top: 56%;
    }

    .silk-home__survey-editorial-moodboard {
        max-width: 493px;
    }

    .silk-home__survey-editorial-signature {
        font-size: clamp(54px, 6vw, 72px);
        inset: auto 0 2px auto;
    }

    .silk-home__survey-modal-backdrop {
        padding: 12px;
    }

    .silk-home__survey-modal {
        max-height: calc(100vh - 20px);
    }

    .silk-home__privacy-modal-grid {
        grid-template-columns: 1fr;
    }

    .silk-home__privacy-modal h2 {
        max-width: none;
    }

    .silk-home__privacy-modal-shell {
        gap: 10px;
        padding: 20px 18px 18px;
    }

    .silk-home__survey-modal-shell {
        gap: 14px;
        padding: 18px 18px 14px;
    }

    .silk-home__survey-modal-progress-wrap {
        gap: 8px;
        min-height: 40px;
    }

    .silk-home__survey-modal-progress {
        width: 100%;
    }

    .silk-home__hero-sunlight {
        opacity: .36;
    }

    .silk-home__hero-particles span:nth-child(8),
    .silk-home__hero-particles span:nth-child(9),
    .silk-home__hero-particles span:nth-child(10),
    .silk-home__hero-particles span:nth-child(11),
    .silk-home__hero-particles span:nth-child(12) {
        display: none;
    }

    .botanical-watermark {
        --botanical-watermark-opacity: .21;
        height: clamp(500px, 70vh, 760px);
        max-width: 34vw;
        bottom: 0;
        right: 0;
    }

    .silk-home__hero-image::before {
        background:
            linear-gradient(
                to left,
                #fbfbfa 0%,
                rgba(251, 251, 250, .78) 7%,
                rgba(251, 251, 250, .28) 18%,
                rgba(251, 251, 250, 0) 34%
            ),
            linear-gradient(
                to top,
                #fbfbfa 0%,
                rgba(251, 251, 250, .78) 8%,
                rgba(251, 251, 250, .28) 18%,
                rgba(251, 251, 250, 0) 32%
            );
    }

    .silk-home__cards {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }

    .silk-home__option-grid--airy {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .silk-home__option-grid--placement-scenes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-block--placement .silk-home__style-option--placement-scene {
        grid-template-rows: auto auto;
        max-width: none;
    }

    .silk-home__survey-block--placement .silk-home__style-image--placement-scene {
        aspect-ratio: 1.12 / 1;
    }

    .silk-home__survey-block--placement .silk-home__style-copy--placement-scene {
        align-content: start;
        min-height: 54px;
        padding: 8px 8px 10px;
    }

    .silk-home__survey-block--placement .silk-home__style-title--placement-scene {
        font-size: 11.5px;
        line-height: 1.18;
        text-wrap: balance;
    }

    .silk-home__option-grid:not(.silk-home__option-grid--airy) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .silk-home__option-grid.silk-home__option-grid--placement-scenes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__placement-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__accent-inline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .silk-home__survey-block--notes {
        grid-template-columns: 1fr;
    }

    .silk-home__perspective-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__collection::before {
        inset: 126px 10% 42px 24%;
    }

    .silk-home__survey-block--importance .silk-home__importance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-modal-footer {
        flex-wrap: wrap;
    }

    .silk-home__collection-header {
        grid-template-columns: 1fr;
    }

    .silk-home__founder {
        padding: 28px 24px 30px;
    }

    .silk-home__founder-inner {
        grid-template-columns: minmax(0, 1fr);
        justify-items: stretch;
        row-gap: 0;
    }

    .silk-home__behind {
        border-radius: 0;
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .silk-home__behind-intro {
        padding-left: 0;
    }

    .silk-home__behind-gallery {
        gap: 14px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .silk-home__behind-card,
    .silk-home__behind-card:nth-child(1),
    .silk-home__behind-card:nth-child(2),
    .silk-home__behind-card:nth-child(3) {
        margin-top: 0;
    }

    .silk-home__social {
        border-left: 0;
        border-top: 1px solid rgba(216, 213, 207, .96);
        padding: 28px 0 0;
    }

    .silk-home__footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__footer-brand {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .silk-home__footer-column {
        padding-left: 18px;
    }
}

@media (min-width: 1121px) {
    .silk-home__footer-signup {
        align-items: stretch;
        gap: 10px;
        grid-template-columns: minmax(0, 1fr) auto;
        max-width: 100%;
    }

    .silk-home__footer-signup button {
        min-width: 224px;
        width: auto;
    }
}

@media (min-width: 981px) and (max-width: 1120px) {
    .silk-home__footer-grid {
        grid-template-columns: minmax(170px, .74fr) minmax(170px, .82fr) minmax(130px, .62fr) minmax(250px, .92fr);
    }

    .silk-home__footer-brand {
        grid-column: auto;
    }

    .silk-home__footer-column {
        padding-left: 14px;
    }

    .silk-home__footer-signup {
        gap: 8px;
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
    }

    .silk-home__footer-signup button {
        min-width: 0;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .silk-home__survey-showcase {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.55fr);
    }
}

/* Storefront source of truth: mobile home typography + CTA system. */
@media (max-width: 767px) {
    .silk-home__preference {
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .08) 28%, rgba(0, 0, 0, 0) 60%),
            linear-gradient(180deg, #f5f1ec 0%, #f5f1ec 56%, #efe6da 70%, #d8d5c9 82%, #b2b7a9 91%, #8c9785 97%, #808b79 100%);
        margin-bottom: 0;
        overflow: visible;
        padding: 0;
        position: relative;
        z-index: 3;
    }

    .silk-home__preference-bridge {
        display: block;
        padding: 24px 20px;
    }

    .silk-home__preference-bridge span {
        color: var(--silk-accent, var(--silk-gold));
        font-size: 15px;
        letter-spacing: .06em;
        line-height: 1.4;
        margin: 0 auto;
        max-width: 18ch;
        text-transform: uppercase;
        white-space: normal;
    }

    .silk-home__preference-shell {
        overflow: visible;
        position: relative;
    }

    .silk-home__preference-panel {
        background: #f5f1ec;
        border-radius: 32px;
        margin: 0 16px;
        overflow: hidden;
        padding: 26px 0 0;
        position: relative;
        width: auto;
    }

    .silk-home__preference-panel::before {
        background: linear-gradient(180deg, rgba(245, 241, 236, 0) 0%, rgba(242, 236, 228, .84) 56%, rgba(238, 230, 220, .98) 100%);
        bottom: -8px;
        clip-path: ellipse(88% 68% at 50% 100%);
        content: "";
        height: 34%;
        left: -10%;
        opacity: 1;
        pointer-events: none;
        position: absolute;
        right: -10%;
        z-index: 1;
    }

    .silk-home__preference-panel::after {
        background:
            radial-gradient(ellipse at 50% 100%, rgba(214, 190, 162, .36) 0%, rgba(241, 232, 221, .92) 38%, rgba(251, 251, 250, 0) 78%),
            radial-gradient(ellipse at 50% 78%, rgba(255, 243, 230, .38) 0%, rgba(255, 243, 230, 0) 62%),
            radial-gradient(circle at 50% 84%, rgba(216, 177, 170, .14) 0%, rgba(216, 177, 170, 0) 62%);
        bottom: -2px;
        content: "";
        height: 42%;
        left: -12%;
        pointer-events: none;
        position: absolute;
        right: -12%;
        z-index: 1;
    }

    .silk-home__preference-panel > * {
        position: relative;
        z-index: 2;
    }

    .silk-home__survey-showcase {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .silk-home__survey-editorial-copy {
        justify-self: stretch;
        min-width: 0;
        width: 100%;
    }

    .silk-home__survey-editorial-copy-inner {
        gap: 10px;
        max-width: none;
    }

    .silk-home__survey-editorial-badge {
        justify-self: start;
        min-height: 38px;
        max-width: 100%;
        padding: 0 14px;
        width: fit-content;
    }

    .silk-home__survey-editorial-title {
        font-size: var(--fs-section);
        letter-spacing: var(--ls-heading);
        line-height: var(--lh-heading);
        max-width: 9.5ch;
        white-space: normal;
        text-wrap: balance;
    }

    .silk-home__survey-editorial-body {
        gap: 8px;
        max-width: none;
    }

    .silk-home__survey-editorial-body p,
    .silk-home__survey-editorial-note {
        font-size: var(--fs-body);
        line-height: var(--lh-body);
        max-width: none;
    }

    .silk-home__survey-benefits,
    .silk-home__survey-editorial-body-reward {
        display: none;
    }

    .silk-home__survey-benefit-line {
        color: #6d6d6d;
        display: block;
        font-family: Inter, Arial, sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .015em;
        line-height: 1.4;
        margin: 4px 0 8px;
        position: relative;
        text-align: left;
        text-transform: none;
        z-index: 1;
    }

    .silk-home__survey-benefit-separator {
        color: #b7a58a;
        margin: 0 8px;
    }

    .silk-home__survey-benefit-highlight {
        color: #607264;
        font-weight: 700;
    }

    .silk-home__survey-editorial-watermark {
        display: none;
    }

    .silk-home__survey-editorial-vip {
        gap: 14px;
        max-width: none;
        padding: 15px 16px;
    }

    .silk-home__survey-editorial-vip strong {
        font-size: 15px;
    }

    .silk-home__survey-editorial-vip span {
        font-size: 13px;
    }

    .silk-home__preference-panel .silk-home__survey-submit-button {
        background: var(--bb-green);
        border: 1px solid var(--bb-green);
        color: var(--bb-white);
        font-size: 15px;
        min-height: 58px;
        max-width: none;
        width: 100%;
        position: relative;
        z-index: 3;
    }

    .silk-home__survey-editorial-note {
        color: #6c6b67;
        font-size: 12.5px;
        padding-right: 8px;
    }

    .silk-home__survey-editorial-visual {
        display: none;
    }

    .silk-home__survey-overlap-visual {
        display: block;
        left: auto;
        margin: 14px -32px 0;
        padding-top: 0;
        pointer-events: none;
        position: relative;
        right: auto;
        top: auto;
        transition:
            opacity var(--survey-editorial-item-duration) ease-out 220ms,
            transform var(--survey-editorial-item-duration) ease-out 220ms;
        z-index: 2;
    }

    .silk-home__preference[data-survey-editorial].is-editorial-reveal-ready .silk-home__survey-overlap-visual {
        opacity: 0;
        transform: translateY(var(--survey-editorial-image-offset));
    }

    .silk-home__preference[data-survey-editorial].is-editorial-visible .silk-home__survey-overlap-visual {
        opacity: 1;
        transform: translateY(0);
    }

    .silk-home__survey-overlap-visual-inner {
        position: relative;
        width: 100%;
    }

    .silk-home__survey-overlap-botanical {
        display: none;
    }

    .silk-home__survey-overlap-picture {
        border-radius: 0 0 32px 32px;
        display: block;
        height: 156px;
        isolation: isolate;
        overflow: hidden;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .silk-home__survey-overlap-picture::before {
        background:
            radial-gradient(ellipse at 50% 90%, rgba(221, 201, 177, .16) 0%, rgba(221, 201, 177, 0) 62%),
            linear-gradient(180deg, rgba(246, 242, 236, .08) 0%, rgba(246, 242, 236, 0) 28%);
        content: "";
        inset: 0;
        pointer-events: none;
        position: absolute;
        z-index: 1;
    }

    .silk-home__survey-overlap-picture::after {
        background: linear-gradient(180deg, rgba(245, 241, 236, .94) 0%, rgba(245, 241, 236, .58) 20%, rgba(245, 241, 236, .12) 42%, rgba(245, 241, 236, 0) 64%);
        content: "";
        inset: 0 0 auto;
        height: 56px;
        pointer-events: none;
        position: absolute;
        z-index: 2;
    }

    .silk-home__survey-overlap-moodboard {
        display: block;
        filter: none;
        height: 100%;
        margin: 0;
        max-width: none;
        object-fit: cover;
        object-position: center 22%;
        transform: none;
        width: 100%;
    }

    .silk-home__survey-editorial-meta {
        display: grid;
        justify-self: center;
        margin-top: 12px;
        max-width: 100%;
    }

    .silk-home__survey-editorial-meta-pill {
        font-size: 13px;
        justify-content: center;
        min-height: 48px;
        padding: 0 14px;
    }

    .silk-home__survey-editorial-meta-pill + .silk-home__survey-editorial-meta-pill {
        border-left: 0;
        border-top: 1px solid rgba(220, 212, 201, .94);
    }

    .silk-home__survey-editorial-signature {
        font-size: clamp(42px, 12vw, 60px);
        inset: auto 0 8px auto;
        line-height: .86;
    }

    .silk-home__email-soft-close-wrap {
        position: relative;
        z-index: 1;
    }

    .silk-home__email-soft-close-shell {
        padding-top: 112px;
    }

    .silk-home__survey-modal-backdrop {
        align-items: center;
        padding: 14px;
    }

    .silk-home__survey-modal {
        border-radius: 30px;
        border-width: 1px;
        height: auto;
        max-height: calc(100vh - 28px);
        max-width: min(760px, 100%);
        width: min(100%, 760px);
    }

    .silk-home__privacy-modal-backdrop {
        padding: 0;
    }

    .silk-home__privacy-modal {
        border-radius: 0;
        border-width: 0;
        height: auto;
        max-height: 100vh;
        max-width: 100%;
        overflow: auto;
    }

    .silk-home__privacy-modal-shell {
        gap: 6px;
        min-height: auto;
        padding: 10px 12px 12px;
    }

    .silk-home__privacy-modal-close {
        font-size: 28px;
        right: 8px;
        top: 6px;
    }

    .silk-home__privacy-modal h2 {
        font-size: 21px;
        line-height: 1.04;
        max-width: none;
    }

    .silk-home__privacy-modal h3 {
        font-size: 15px;
    }

    .silk-home__privacy-modal p {
        font-size: 12px;
        line-height: 1.42;
    }

    .silk-home__privacy-modal-kicker {
        font-size: 10px;
        letter-spacing: .12em;
    }

    .silk-home__privacy-modal-card {
        gap: 4px;
        padding: 9px 10px 8px;
    }

    .silk-home__privacy-modal-actions {
        align-items: stretch;
        display: grid;
        gap: 6px;
        grid-template-columns: 1fr;
    }

    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        min-height: 42px;
        padding: 10px 14px;
        width: 100%;
    }

    .silk-home__survey-modal-shell {
        gap: 16px;
        grid-template-rows: auto minmax(0, 1fr);
        height: auto;
        min-height: 0;
        padding: 18px 16px 16px;
    }

    .silk-home__survey-modal-header {
        align-items: start;
        gap: 14px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .silk-home__survey-modal-progress-wrap {
        gap: 10px;
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .silk-home__survey-modal-progress-label {
        font-size: var(--fs-label);
        line-height: var(--lh-label);
    }

    .silk-home__survey-modal-close {
        font-size: 34px;
        height: 36px;
        width: 36px;
    }

    .silk-home__survey-stage--modal {
        padding-bottom: 104px;
        padding-right: 0;
    }

    .silk-home__survey-modal-footer {
        display: grid;
        gap: 12px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button,
    .silk-home__survey-footer .silk-home__survey-nav-button,
    .silk-home__survey-footer .silk-home__email-soft-close-button,
    .silk-home__survey-footer .silk-home__survey-submit-button,
    .silk-home__survey-block--notes .silk-home__email-soft-close-button {
        width: 100%;
    }

    .silk-home__survey-submit-note {
        white-space: normal;
    }
}

@media (min-width: 768px) {
    .silk-home__survey-overlap-visual {
        display: none;
        height: 0;
        margin: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: static;
        width: 0;
    }
}

@media (min-width: 768px) {
    .silk-home__survey-editorial-visual::after {
        content: none;
    }

    .silk-home__survey-editorial-moodboard {
        -webkit-mask-image:
            linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .92) 3%, black 7%, black 86%, rgba(0, 0, 0, .9) 90%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .9) 3%, black 6%, black 88%, rgba(0, 0, 0, .9) 92%, transparent 100%);
        -webkit-mask-composite: source-in;
        mask-image:
            linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .92) 3%, black 7%, black 86%, rgba(0, 0, 0, .9) 90%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .9) 3%, black 6%, black 88%, rgba(0, 0, 0, .9) 92%, transparent 100%);
        mask-composite: intersect;
        max-width: 100%;
        opacity: 1;
        position: relative;
        transform: translate3d(52px, var(--survey-editorial-parallax-y), 0);
        transform-origin: right center;
        transition:
            opacity var(--survey-editorial-image-duration) ease-out,
            transform var(--survey-editorial-image-duration) ease-out;
        will-change: opacity, transform;
        z-index: 1;
    }

    .silk-home__preference[data-survey-editorial].is-editorial-reveal-ready [data-survey-editorial-image] {
        opacity: 0;
        transform: translate3d(52px, calc(var(--survey-editorial-image-offset) + var(--survey-editorial-parallax-y)), 0);
    }

    .silk-home__preference[data-survey-editorial].is-editorial-visible [data-survey-editorial-image] {
        opacity: 1;
        transform: translate3d(52px, var(--survey-editorial-parallax-y), 0);
    }
}

.silk-home__preference[data-survey-editorial].is-editorial-reveal-ready [data-survey-editorial-item] {
    opacity: 0;
    transform: translateY(var(--survey-editorial-item-translate-start));
    transition:
        opacity var(--survey-editorial-item-duration) ease-out var(--survey-editorial-stagger-delay, 0ms),
        transform var(--survey-editorial-item-duration) ease-out var(--survey-editorial-stagger-delay, 0ms);
    will-change: opacity, transform;
}

.silk-home__preference[data-survey-editorial].is-editorial-visible [data-survey-editorial-item] {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 901px) and (max-width: 1120px) {
    .silk-home__survey-popup {
        max-width: min(860px, 100%);
    }

    .silk-home__survey-popup-card {
        max-width: 780px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-card-shell {
        grid-template-columns: minmax(0, 1fr) minmax(210px, .38fr);
        min-height: min(440px, calc(100vh - 136px));
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-copy {
        padding: 34px 0 28px 34px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-visual {
        margin-left: -92px;
        width: calc(100% + 92px);
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-script {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .silk-home__survey-popup-title {
        font-size: 46px;
        max-width: 8ch;
    }

    .silk-home__survey-popup-body {
        font-size: 14px;
        max-width: 21ch;
    }

    .silk-home__survey-popup-card .silk-home__survey-popup-title {
        margin-bottom: 36px;
    }

    .silk-home__survey-popup-card .silk-home__survey-popup-body {
        margin-bottom: 44px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-form {
        grid-template-columns: minmax(0, 1fr) 188px;
        width: min(500px, 100%);
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-form input {
        border-radius: 14px;
        font-size: 16px;
        min-height: 54px;
        padding: 0 18px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-button {
        border-radius: 14px;
        font-size: 16px;
        min-height: 54px;
        padding: 0 18px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-visual img {
        max-height: 440px;
        object-position: 58% center;
    }

    .silk-home__email-soft-close-stamp {
        height: 106px;
        right: 16px;
        top: 16px;
        width: 106px;
    }

    .silk-home__email-soft-close-stamp strong {
        font-size: 33px;
    }

    .silk-home__survey-popup-close {
        right: 12px;
        top: 12px;
    }

    .silk-home__email-soft-close.is-newsletter {
        max-width: 1280px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card-shell {
        align-items: center;
        column-gap: 64px;
        grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
        min-height: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy {
        align-content: start;
        align-self: center;
        background: transparent;
        gap: 18px;
        min-height: 0;
        padding: 0;
    }

    #email-soft-close-title {
        color: #fbfbfa;
        font-family: "Newsreader", Georgia, serif;
        font-size: clamp(44px, 4vw, 54px);
        font-weight: 400;
        letter-spacing: -.02em;
        line-height: .98;
        max-width: 470px;
        text-align: left;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        color: rgba(251, 251, 250, .92);
        font-size: 18px;
        line-height: 1.6;
        margin-top: 0;
        max-width: 32ch;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-benefits {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form {
        align-items: stretch;
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        margin-top: 0;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input {
        background: #fbfbfa;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 18px;
        flex: 1 1 auto;
        font-size: 15px;
        height: 58px;
        line-height: 1.2;
        min-width: 320px;
        min-height: 58px;
        padding: 0 20px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        background: #c96f72;
        border-color: #c96f72;
        border-radius: 18px;
        box-shadow: none;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.2;
        flex: 0 0 auto;
        height: 58px;
        min-height: 58px;
        min-width: 196px;
        padding: 0 32px;
        white-space: nowrap;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy {
        color: rgba(251, 251, 250, .65);
        font-size: 12px;
        gap: 10px;
        margin-top: 14px;
        line-height: 1.4;
        max-width: 40ch;
        opacity: .65;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual {
        align-self: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
        order: 0;
        overflow: visible;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual::after {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-actions {
        align-self: center;
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical {
        color: rgba(251, 251, 250, .12);
        display: none;
        max-width: 340px;
        position: absolute;
        right: -10px;
        top: -44px;
        width: min(100%, 340px);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical svg {
        display: block;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical path {
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2.1;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #blijf-op-de-hoogte > .silk-home__info-bar {
        display: none;
    }

    .silk-home__email-soft-close-shell {
        padding: 52px 32px 28px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card-shell {
        align-items: start;
        gap: 22px;
        grid-template-columns: 1fr;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy {
        gap: 16px;
        max-width: 660px;
        padding: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-script,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-benefits {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-kicker {
        background: #f4e4e1;
        border-color: rgba(255, 255, 255, .2);
        color: #607264;
        font-size: 12px;
        min-height: 40px;
        padding: 0 16px;
    }

    #email-soft-close-title {
        font-family: "Newsreader", Georgia, serif;
        font-size: clamp(38px, 5.1vw, 46px);
        font-weight: 400;
        letter-spacing: -.016em;
        line-height: 1.02;
        margin-top: 0;
        max-width: 10ch;
        text-align: left;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        font-size: 17px;
        line-height: 1.55;
        margin-top: 0;
        max-width: 36ch;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form {
        align-items: stretch;
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        margin-top: 8px;
        max-width: 620px;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-field {
        flex: 1 1 auto;
        width: auto;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input {
        background: #fbfbfa;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 18px;
        box-shadow: none;
        color: #242424;
        font-size: 16px;
        min-height: 56px;
        padding: 0 20px;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-label {
        left: 20px;
        top: 50%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input:focus {
        border-color: rgba(251, 251, 250, .56);
        box-shadow: 0 0 0 4px rgba(251, 251, 250, .12);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        background: #c96f72;
        border-color: #c96f72;
        border-radius: 18px;
        box-shadow: none;
        color: #fbfbfa;
        flex: 0 0 auto;
        font-size: 16px;
        font-weight: 600;
        gap: 10px;
        justify-content: center;
        line-height: 1.2;
        min-height: 56px;
        min-width: 220px;
        padding: 0 24px;
        white-space: nowrap;
        width: auto;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy {
        color: rgba(251, 251, 250, .68);
        font-size: 12px;
        gap: 10px;
        line-height: 1.4;
        margin-top: 14px;
        margin-bottom: 18px;
        max-width: 46ch;
        opacity: .68;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-success {
        font-size: 13px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual {
        display: block;
        min-height: 0;
        overflow: visible;
        position: static;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual::before,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual::after {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-actions {
        gap: 14px;
        margin-top: 0;
        max-width: 100%;
        padding: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical {
        display: none;
    }
}

@media (max-width: 767px) {
    .silk-home__email-soft-close-shell {
        padding: 112px 20px 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card-shell {
        align-items: start;
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy {
        gap: 16px;
        padding: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-script,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-benefits {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-kicker {
        background: #f4e4e1;
        border-color: rgba(255, 255, 255, .2);
        color: #607264;
        font-size: 12px;
        min-height: 38px;
        padding: 0 16px;
    }

    #email-soft-close-title {
        font-family: "Newsreader", Georgia, serif;
        font-size: clamp(32px, 8vw, 44px);
        font-weight: 400;
        letter-spacing: -.016em;
        line-height: 1.04;
        max-width: 9.4ch;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        font-size: 17px;
        line-height: 1.55;
        max-width: 30ch;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form {
        gap: 12px;
        grid-template-columns: 1fr;
        margin-top: 8px;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        font-size: 16px;
        min-height: 54px;
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input {
        background: #fbfbfa;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 18px;
        color: #242424;
        padding: 0 24px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input:focus {
        border-color: rgba(251, 251, 250, .56);
        box-shadow: 0 0 0 4px rgba(251, 251, 250, .12);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        background: #c96f72;
        border-color: #c96f72;
        border-radius: 18px;
        box-shadow: none;
        color: #fbfbfa;
        font-weight: 600;
        gap: 12px;
        justify-content: center;
        letter-spacing: 0;
        line-height: 1.2;
        padding: 0 22px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy {
        color: rgba(251, 251, 250, .65);
        font-size: 12px;
        gap: 10px;
        line-height: 1.4;
        max-width: 40ch;
        opacity: .65;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-success {
        font-size: 13px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual {
        display: block;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-actions {
        margin-top: 0;
        max-width: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical {
        display: none;
    }

    .silk-home__info-bar-inner {
        gap: 0;
        grid-template-columns: 1fr;
        padding: 42px 20px;
    }

    .silk-home__info-bar-item {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 18px 0;
    }

    .silk-home__info-bar-item + .silk-home__info-bar-item::before {
        height: 1px;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .silk-home__hero {
        gap: 0;
        grid-template-columns: 1fr;
        padding-bottom: 14px;
    }

    .silk-home__preference {
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .08) 28%, rgba(0, 0, 0, 0) 60%),
            linear-gradient(180deg, #f5f1ec 0%, #f5f1ec 56%, #efe6da 70%, #d8d5c9 82%, #b2b7a9 91%, #8c9785 97%, #88937f 100%);
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 0;
    }

    .silk-home__preference-shell {
        max-width: 100%;
    }

    .silk-home__nav {
        align-items: center;
        backdrop-filter: blur(14px);
        background: linear-gradient(180deg, rgba(251, 251, 250, .82) 0%, rgba(251, 251, 250, .72) 100%);
        border-bottom: 1px solid rgba(216, 213, 207, .58);
        box-shadow: 0 10px 24px rgba(36, 36, 36, .04);
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
        min-height: 68px;
        padding: 10px 16px;
        position: sticky;
        top: 0;
        width: 100%;
    }

    .silk-home__brand {
        flex: 0 1 170px;
        max-width: 170px;
    }

    .silk-home__brand img {
        width: 100%;
    }

    .silk-home__nav-actions {
        display: none;
    }

    .silk-home__menu-toggle {
        background: rgba(251, 251, 250, .56);
        border-color: rgba(216, 213, 207, .66);
        box-shadow: 0 6px 14px rgba(36, 36, 36, .03);
        display: inline-flex;
        flex: 0 0 44px;
        height: 44px;
        width: 44px;
    }

    .silk-home__menu-toggle span {
        background: rgba(30, 32, 29, .86);
        left: 13px;
        width: 16px;
    }

    .silk-home__menu-toggle:hover,
    .silk-home__menu-toggle:focus {
        background: rgba(251, 251, 250, .72);
        border-color: rgba(216, 213, 207, .8);
    }

    .silk-home__menu-toggle span:nth-child(1) {
        top: 14px;
    }

    .silk-home__menu-toggle span:nth-child(2) {
        top: 21px;
    }

    .silk-home__menu-toggle span:nth-child(3) {
        top: 28px;
    }

    .silk-home__nav.is-mobile-menu-open .silk-home__menu-toggle span:nth-child(1),
    .silk-home__nav.is-mobile-menu-open .silk-home__menu-toggle span:nth-child(3) {
        top: 21px;
    }

    .silk-home__mobile-menu-backdrop:not([hidden]),
    .silk-home__mobile-menu:not([hidden]) {
        display: block;
    }

    .silk-home__mobile-menu {
        padding: 20px 16px 24px;
        top: 68px;
    }

    .silk-home__desktop-copy {
        display: none;
    }

    .silk-home__mobile-copy {
        display: grid;
        gap: 14px;
    }

    .silk-home__mobile-copy .silk-home__button {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .02em;
        min-height: 50px;
        padding: 14px 20px;
        text-transform: none;
    }

    .silk-home__mobile-copy .silk-home__button span {
        font-size: 18px;
        line-height: 1;
    }

    .silk-home__mobile-copy .silk-home__hero-actions {
        gap: 10px;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .silk-home h1 {
        font-size: 42px;
        line-height: .98;
        margin-bottom: 8px;
    }

    .silk-home h2 {
        font-size: 31px;
    }

    .silk-home__hero-image {
        min-height: 300px;
        overflow: visible;
    }

    .silk-home__hero-image-media {
        animation-duration: 10s;
    }

    .silk-home__hero-image-media img {
        object-position: 56% center;
    }

    .silk-home__hero-sunlight {
        animation-duration: 18s;
        opacity: .2;
    }

    .silk-home__hero-particles span {
        animation-duration: 13s;
    }

    .silk-home__hero-particles span:nth-child(4),
    .silk-home__hero-particles span:nth-child(5),
    .silk-home__hero-particles span:nth-child(6),
    .silk-home__hero-particles span:nth-child(7),
    .silk-home__hero-particles span:nth-child(8),
    .silk-home__hero-particles span:nth-child(9),
    .silk-home__hero-particles span:nth-child(10),
    .silk-home__hero-particles span:nth-child(11),
    .silk-home__hero-particles span:nth-child(12) {
        display: none;
    }

    .silk-home__hero-image::before {
        background:
            linear-gradient(
                to top,
                #fbfbfa 0%,
                rgba(251, 251, 250, .7) 8%,
                rgba(251, 251, 250, 0) 28%
            );
    }

    .silk-home__seal-line--secondary {
        display: none;
    }

    .botanical-watermark {
        --botanical-watermark-opacity: .18;
        height: 340px;
        max-width: none;
        bottom: 0;
        right: 0;
        top: auto;
    }

    .botanical-watermark__inner {
        animation-duration: 11s;
    }

    .botanical-watermark img {
        animation-duration: 12s;
    }

    .hero-reveal--eyebrow {
        --hero-reveal-delay: 105ms;
    }

    .hero-reveal--title {
        --hero-reveal-delay: 175ms;
    }

    .hero-reveal--script {
        --hero-reveal-delay: 315ms;
    }

    .hero-reveal--body {
        --hero-reveal-delay: 385ms;
    }

    .hero-reveal--promo {
        --hero-reveal-delay: 490ms;
    }

    .hero-reveal--cta {
        --hero-reveal-delay: 595ms;
    }

    .hero-reveal--signature {
        --hero-reveal-delay: 700ms;
    }

    .hero-reveal--watermark {
        --hero-reveal-delay: 350ms;
    }

    .silk-home__hero-copy::before {
        background-size: 220px auto;
        height: 100%;
        opacity: .22;
        right: -34px;
        top: 92px;
        width: 220px;
    }

    .silk-home__hero-copy::after {
        opacity: .22;
        width: 220px;
    }

    .silk-home__collection-header {
        gap: 10px;
        margin-bottom: 18px;
    }

    .silk-home__section-intro {
        max-width: 22ch;
        margin-left: auto;
        margin-right: auto;
    }

    .silk-home__preference-benefits {
        gap: 12px;
        margin-top: 2px;
    }

    .silk-home__preference-benefits li {
        font-size: 13px;
        line-height: 1.5;
        padding-left: 28px;
    }

    .silk-home__preference-benefits--teaser {
        grid-template-columns: 1fr;
    }

    .silk-home__preference-benefits--teaser li {
        padding-left: 0;
    }

    .silk-home__survey-benefit-pill {
        width: fit-content;
    }

    .silk-home__survey-preview-stage {
        justify-self: stretch;
        margin-top: 12px;
        max-width: none;
        padding-bottom: 50px;
    }

    .silk-home__survey-preview-blush {
        height: 220px;
        right: -14px;
        top: -18px;
        width: 220px;
    }

    .silk-home__survey-preview {
        max-width: none;
        transform: rotate(-.6deg);
    }

    .silk-home__survey-preview-signature {
        font-size: 36px !important;
        inset: auto 0 0 auto;
    }

    .silk-home__survey-step-header h3 {
        font-family: var(--font-heading);
        font-size: var(--fs-editorial-h3);
        font-weight: 400;
        letter-spacing: var(--ls-editorial-h3);
        line-height: var(--lh-editorial-h3);
    }

    .silk-home__survey-step-header p,
    .silk-home__survey-block-heading p,
    .silk-home__survey-textarea {
        font-size: var(--fs-body);
        line-height: 1.5;
    }

    .silk-home__survey-submit-button {
        font-size: 14px;
        justify-content: space-between;
        width: 100%;
    }

    .silk-home__survey-submit-note {
        font-size: 11px;
        max-width: none;
    }

    .silk-home__behind-gallery {
        grid-template-columns: 1fr;
    }

    .silk-home__option-grid--airy {
        gap: 10px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .silk-home__option-grid--placement-scenes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-block--gallery .silk-home__style-option {
        aspect-ratio: 1 / 1;
        border-radius: 18px;
        grid-template-rows: 1fr;
        min-height: 0;
    }

    .silk-home__survey-block--gallery .silk-home__style-image {
        aspect-ratio: 1 / 1;
        height: 100%;
    }

    .silk-home__survey-block--gallery .silk-home__style-image img {
        transform: scale(calc(var(--style-image-scale, 1) * 1.01));
    }

    .silk-home__survey-block--gallery .silk-home__style-swatches {
        display: none;
    }

    .silk-home__survey-block--gallery .silk-home__style-copy {
        display: none;
    }

    .silk-home__survey-block--gallery .silk-home__selection-check {
        right: 10px;
        top: 10px;
    }

    .silk-home__selected-style-label {
        font-size: 13px;
        margin-top: 4px;
    }

    .silk-home__importance-grid {
        gap: 10px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__importance-card {
        gap: 0;
        grid-template-columns: 1fr;
        min-height: 52px;
        padding: 9px 10px 9px 12px;
    }

    .silk-home__importance-check {
        display: none;
    }

    .silk-home__importance-rank {
        left: auto;
        right: 10px;
        top: 10px;
        transform: scale(.82);
    }

    .silk-home__importance-rank.is-visible {
        transform: scale(1);
    }

    .silk-home__importance-label {
        font-size: 12px;
        line-height: 1.2;
        margin-left: 0;
        max-width: calc(100% - 28px);
        padding-right: 22px;
        text-overflow: clip;
        white-space: nowrap;
    }

    .silk-home__placement-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__perspective-grid {
        grid-template-columns: 1fr;
    }

    .silk-home__accent-inline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .silk-home__preference {
        padding-left: 0;
        padding-right: 0;
    }

    .silk-home__preference-panel {
        border-radius: 32px;
        margin: 0 16px;
        padding: 28px 0 0;
    }

    .silk-home__survey-step--editorial {
        gap: 34px;
    }

    .silk-home__survey-block--notes {
        grid-template-columns: 1fr;
    }

    .silk-home__survey-block {
        gap: 14px;
        margin-bottom: 28px;
    }

    .silk-home__survey-block-heading {
        gap: 8px;
    }

    .silk-home__perspective-card {
        gap: 8px;
        grid-template-columns: 42px minmax(0, 1fr) 16px;
        min-height: 64px;
        padding: 7px 10px 7px 8px;
    }

    .silk-home__perspective-card-art {
        height: 32px;
        width: 32px;
    }

    .silk-home__perspective-card-art img {
        max-height: 28px;
    }

    .silk-home__perspective-card-title {
        font-size: 12px;
        white-space: normal;
    }

    .silk-home__perspective-card-description {
        font-size: 10.5px;
    }

    .silk-home__perspective-card-checkbox {
        height: 16px;
        width: 16px;
    }

    .silk-home__info-bar-inner {
        grid-template-columns: 1fr;
        padding: 44px 20px;
    }

    .silk-home__info-bar-item {
        gap: 14px;
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 18px 0;
    }

    .silk-home__info-bar-item + .silk-home__info-bar-item::before {
        height: 1px;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .silk-home__info-bar-icon {
        height: 50px;
        width: 50px;
    }

    .silk-home__info-bar-icon svg {
        height: 24px;
        width: 24px;
    }

    .silk-home__info-bar-copy h3 {
        font-size: 16px;
    }

    .silk-home__info-bar-copy p {
        font-size: 14px;
        max-width: 32ch;
    }

    .silk-home__email-soft-close-transition {
        display: none;
    }

    .silk-home__email-soft-close-shell {
        padding: 100px 20px 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        position: relative;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card-shell {
        align-items: start;
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy {
        align-content: start;
        background: transparent;
        gap: 16px;
        padding: 0;
        position: relative;
        z-index: 1;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-kicker {
        background: #f4e4e1;
        border-color: rgba(255, 255, 255, .2);
        color: #607264;
        font-size: 11px;
        letter-spacing: .18em;
        min-height: 38px;
        padding: 0 16px;
    }

    #email-soft-close-title {
        color: #fbfbfa;
        font-family: "Newsreader", Georgia, serif;
        font-size: clamp(32px, 8.5vw, 40px);
        font-weight: 400;
        letter-spacing: -.016em;
        line-height: 1.04;
        margin-top: 0;
        max-width: 9.4ch;
        text-wrap: pretty;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        color: rgba(251, 251, 250, .92);
        font-size: 16px;
        line-height: 1.5;
        max-width: 25ch;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-benefits {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form {
        gap: 12px;
        margin-top: 8px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-field {
        width: 100%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        font-size: 16px;
        min-height: 54px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input {
        background: #fbfbfa;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 14px;
        box-shadow: none;
        color: #242424;
        padding: 0 18px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-label {
        left: 18px;
        top: 50%;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-form input:focus {
        border-color: #607264;
        box-shadow: 0 0 0 3px rgba(96, 114, 100, .08);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        background: #c96f72;
        border-color: #c96f72;
        border-radius: 14px;
        box-shadow: none;
        color: #fbfbfa;
        font-size: 16px;
        font-weight: 600;
        gap: 10px;
        justify-content: center;
        letter-spacing: 0;
        line-height: 1.2;
        padding: 0 18px;
        text-transform: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button span:last-child {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        transform: translateY(-1px);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button:focus-visible {
        background: #bb6369;
        border-color: #bb6369;
        box-shadow: 0 10px 28px rgba(191, 141, 144, .18);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy {
        color: rgba(251, 251, 250, .85);
        font-size: 13px;
        gap: 10px;
        margin-top: 0;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy a,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy a:link,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy a:visited {
        font-size: inherit;
        line-height: inherit;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-privacy-icon svg {
        color: rgba(251, 251, 250, .86);
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-success {
        color: #f6ead9;
        font-size: 13px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy::after {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy > * {
        position: relative;
        z-index: 1;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual {
        display: block;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual::before {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-visual img {
        display: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-actions {
        gap: 14px;
        margin-top: 0;
        max-width: none;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-botanical {
        display: none;
    }

    .silk-home__email-soft-close-card-shell {
        gap: 18px;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .silk-home__email-soft-close-copy {
        gap: 12px;
        padding: 24px 20px 22px;
    }

    .silk-home__email-soft-close-kicker {
        font-size: 11px;
        min-height: 38px;
        padding: 0 14px;
    }

    .silk-home__email-soft-close-script {
        font-size: 28px;
        margin-bottom: -2px;
    }

    #email-soft-close-title {
        font-size: clamp(34px, 10vw, 44px);
        max-width: none;
    }

    .silk-home__email-soft-close-copy p {
        font-size: 14px;
        max-width: 100%;
    }

    .silk-home__email-soft-close-benefits {
        gap: 10px;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .silk-home__email-soft-close-benefits li,
    .silk-home__email-soft-close-benefits li + li {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 0;
        padding: 10px 0 0;
    }

    .silk-home__email-soft-close-benefits li:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .silk-home__email-soft-close-benefit-icon {
        height: 36px;
        width: 36px;
    }

    .silk-home__email-soft-close-benefit-icon svg {
        height: 16px;
        width: 16px;
    }

    .silk-home__email-soft-close-benefits li span:last-child {
        font-size: 14px;
    }

    .silk-home__email-soft-close-form {
        gap: 10px;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .silk-home__email-soft-close-form input,
    .silk-home__email-soft-close-button {
        font-size: 16px;
        min-height: 54px;
    }

    .silk-home__email-soft-close-visual {
        min-height: 220px;
        order: 2;
    }

    .silk-home__email-soft-close-visual img {
        max-height: 240px;
        min-height: 220px;
        object-position: center top;
    }

    .silk-home__email-soft-close-stamp {
        height: 104px;
        right: 14px;
        top: 14px;
        width: 104px;
    }

    .silk-home__email-soft-close-stamp strong {
        font-size: 32px;
    }

    .silk-home__email-soft-close-privacy,
    .silk-home__email-soft-close-success {
        font-size: 12px;
    }

    .silk-home__email-soft-close-signature {
        margin-top: 12px;
    }

    .silk-home__email-soft-close-signature-name {
        font-size: 30px;
    }

    .silk-home__email-soft-close-signature-role {
        font-size: 10px;
        letter-spacing: .18em;
    }

    .silk-home__survey-popup-backdrop {
        align-items: flex-start;
        overflow-y: auto;
        padding: 14px;
    }

    .silk-home__survey-popup {
        max-height: none;
        margin: auto 0;
    }

    .silk-home__survey-popup-panel--desktop {
        display: none;
    }

    .silk-home__survey-popup-panel--mobile {
        display: block;
    }

    .silk-home__survey-popup-mobile-card {
        background:
            radial-gradient(circle at 14% 12%, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 34%),
            linear-gradient(135deg, #43513f 0%, #506049 44%, #495646 100%);
        border: 3px solid rgba(255, 255, 255, .96);
        border-radius: 26px;
        box-shadow:
            0 0 0 2px rgba(182, 155, 116, .48),
            0 24px 48px rgba(20, 22, 18, .24);
        overflow: hidden;
        padding: 22px 18px 20px;
        position: relative;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-card {
        border-radius: 26px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-card-shell {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-copy {
        padding: 22px 20px 20px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-copy p,
    .silk-home__survey-popup-card #email-soft-close-title {
        max-width: none;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-benefits {
        grid-template-columns: 1fr;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-benefits li,
    .silk-home__survey-popup-card .silk-home__email-soft-close-benefits li + li {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        padding-left: 0;
        padding-top: 10px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-benefits li:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-form {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-visual {
        display: block;
        min-height: 160px;
    }

    .silk-home__survey-popup-card .silk-home__email-soft-close-visual img {
        max-height: 200px;
        min-height: 160px;
        object-position: 60% center;
    }

    .silk-home__survey-popup-close {
        height: 38px;
        padding: 0 13px 0 14px;
        right: 6px;
        top: 8px;
    }

    .silk-home__survey-popup-close--mobile {
        height: 38px;
        padding: 0 13px 0 14px;
        right: 6px;
        top: 8px;
    }

    .silk-home__survey-popup-close span:last-child {
        font-size: 20px;
    }

    .silk-home__survey-popup-mobile-script {
        font-size: 24px;
    }

    .silk-home__survey-popup-mobile-title {
        font-size: 24px;
    }

    .silk-home__survey-popup-mobile-visual {
        min-height: 148px;
    }

    .silk-home__survey-popup-mobile-visual img {
        min-height: 148px;
    }

    .silk-home__survey-popup-mobile-stamp {
        height: 82px;
        padding: 8px;
        width: 82px;
    }

    .silk-home__survey-popup-mobile-form input,
    .silk-home__survey-popup-mobile-button {
        min-height: 54px;
    }

    .silk-home__survey-popup-mobile-form input,
    .silk-home__footer-signup input {
        border-radius: 14px;
        font-size: 16px;
        min-height: 54px;
        padding: 0 18px;
    }

    .silk-home__survey-popup-mobile-button {
        border-radius: 14px;
        font-size: 16px;
    }

    .silk-home__mobile-copy .silk-home__button,
    .silk-home__survey-nav-button,
    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button,
    .silk-home__survey-slidein-primary,
    .silk-home__survey-popup-mobile-button,
    .silk-home__footer-signup button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        font-size: var(--fs-button);
        letter-spacing: 0;
        text-transform: none;
        white-space: nowrap;
    }

    .silk-home__nav-cta,
    .silk-home__footer-signup button {
        font-size: var(--fs-body-sm);
        line-height: var(--lh-button);
    }

    .silk-home__mobile-copy .silk-home__button span {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
    }

    .silk-home__nav-cta,
    .silk-home__survey-nav-button,
    .silk-home__survey-slidein-primary,
    .silk-home__survey-popup-mobile-button,
    .silk-home__footer-signup button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        padding-left: 18px;
        padding-right: 18px;
    }

    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button {
        gap: 10px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .silk-home__survey-submit-button span:first-child,
    .silk-home__email-soft-close-button span:first-child,
    .silk-home__survey-slidein-primary span:first-child {
        text-wrap: nowrap;
        white-space: nowrap;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        letter-spacing: 0;
        text-transform: none;
    }

    .silk-home__collection::before {
        inset: 140px 6% 28px 28%;
        opacity: .65;
    }

    .silk-home__card img,
    .silk-home__card-media::after {
        animation: none;
    }

    .silk-home__card-media::after {
        opacity: .05;
        transform: none;
    }

    .silk-home__behind {
        border-radius: 0;
        margin: 0;
        padding-bottom: 22px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .silk-home__behind-intro,
    .silk-home__social {
        padding-left: 0;
        padding-right: 0;
    }

    .silk-home__behind-intro h2 {
        font-size: 44px;
        max-width: none;
    }

    .silk-home__behind-gallery {
        gap: 12px;
    }

    .silk-home__behind-gallery img {
        aspect-ratio: 1.05;
    }

    .silk-home__behind-card-copy {
        min-height: 0;
        padding: 18px 18px 24px;
    }

    .silk-home__behind-card-copy h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .silk-home__behind-card-copy p {
        font-size: 15px;
    }

    .silk-home__social {
        gap: 0;
    }

    .silk-home__footer {
        border-radius: 0;
        margin: 0;
        padding: 28px 20px 0;
    }

    .silk-home__footer::before {
        background-size: 110px auto;
        bottom: 46px;
        left: -22px;
    }

    .silk-home__footer-grid {
        column-gap: 14px;
        gap: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__footer-brand,
    .silk-home__footer-column {
        grid-column: 1 / -1;
        min-height: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .silk-home__footer-brand {
        align-items: start;
        display: grid;
        gap: 0;
        justify-items: start;
        order: 1;
        padding-bottom: 18px;
        text-align: left;
    }

    .silk-home__footer-brand img {
        margin: 0;
        max-width: 128px;
    }

    .silk-home__footer-brand-copy {
        display: none;
    }

    .silk-home__footer-column {
        border-left: 0;
        border-top: 1px solid rgba(183, 165, 138, .18);
        padding-left: 0;
        padding-top: 24px;
    }

    .silk-home__footer-column h3 {
        color: rgba(248, 238, 225, .82);
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        margin-bottom: 12px;
    }

    #footer-menu-title,
    #footer-social-title {
        font-size: inherit;
        letter-spacing: inherit;
        line-height: inherit;
    }

    .silk-home__footer-column p,
    .silk-home__footer-column a {
        color: rgba(251, 251, 250, .9);
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        line-height: var(--lh-body-compact);
    }

    .silk-home__footer-column a {
        margin-bottom: 8px;
        width: fit-content;
    }

    .silk-home__footer .silk-home__footer-column--signup {
        background: linear-gradient(180deg, #f4f2ee 0%, #ece4d8 100%);
        border: 1px solid #d8d5cf;
        border-radius: 24px;
        box-shadow: 0 12px 30px rgba(36, 36, 36, .1);
        display: grid;
        gap: 0;
        order: 2;
        padding: 22px 18px 20px;
    }

    .silk-home__footer .silk-home__footer-column--signup h3 {
        color: #607264;
        margin-bottom: 10px;
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-copy {
        color: #242424;
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        line-height: var(--lh-body-compact);
        margin: 0 0 14px;
        max-width: none;
    }

    .silk-home__footer-signup {
        gap: 10px;
        margin-top: 0;
    }

    .silk-home__footer-signup input {
        background: #fbfbfa;
        border: 1px solid rgba(96, 114, 100, .16);
        border-radius: 14px;
        color: #242424;
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        line-height: var(--lh-body-compact);
        min-height: 54px;
        padding: 0 18px;
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup button {
        background: var(--silk-rose);
        border: 1px solid var(--silk-rose);
        color: #fbfbfa;
        min-height: 54px;
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup button:hover,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup button:focus {
        background: #c96f72;
        border-color: #c96f72;
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy {
        color: #242424;
        font-family: var(--font-body);
        font-size: var(--fs-meta);
        line-height: var(--lh-meta);
        margin-top: 12px;
        max-width: none;
    }

    .silk-home__footer:not(.silk-home__footer--coming-soon-page) .silk-home__footer-column--signup .silk-home__footer-signup-privacy {
        font-size: var(--fs-meta);
    }

    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy a,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy a:link,
    .silk-home__footer .silk-home__footer-column--signup .silk-home__footer-signup-privacy a:visited {
        color: #242424;
    }

    .silk-home__footer:not(.silk-home__footer--coming-soon-page) .silk-home__footer-column--signup .silk-home__privacy-trigger,
    .silk-home__footer:not(.silk-home__footer--coming-soon-page) .silk-home__footer-column--signup .silk-home__privacy-trigger:link,
    .silk-home__footer:not(.silk-home__footer--coming-soon-page) .silk-home__footer-column--signup .silk-home__privacy-trigger:visited {
        font-size: 12px;
    }

    .silk-home__footer-column--menu {
        grid-column: 1;
        order: 3;
    }

    .silk-home__footer-column--social {
        grid-column: 2;
        order: 4;
        text-align: left;
    }

    .silk-home__footer-column--social a {
        align-items: center;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 999px;
        box-shadow: 0 10px 18px rgba(96, 114, 100, .08);
        display: flex;
        font-size: 15px;
        justify-content: center;
        margin-bottom: 8px;
        margin-left: 0;
        margin-right: 0;
        min-height: 36px;
        padding: 0 12px;
        transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out;
        width: min(128px, 100%);
    }

    .silk-home__footer-column--social a::after {
        display: none;
    }

    .silk-home__footer-column--social a:focus-visible {
        outline: 2px solid rgba(96, 114, 100, .34);
        outline-offset: 3px;
    }

    .silk-home__footer-column--social a:last-child {
        margin-bottom: 0;
    }

    @media (hover: hover) and (pointer: fine) {
        .silk-home__footer-column--social a:hover,
        .silk-home__footer-column--social a:focus-visible {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .18);
            box-shadow: 0 16px 27px rgba(96, 114, 100, .16);
            transform: translateY(-2px);
        }
    }

    @media (hover: none), (pointer: coarse) {
        .silk-home__footer-column--social a:active {
            box-shadow: 0 9px 15px rgba(96, 114, 100, .12);
            transform: scale(.98);
        }
    }

    .silk-home__footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .12);
        display: grid;
        gap: 0;
        justify-content: center;
        margin-top: 26px;
        order: 5;
        padding: 18px 0 24px;
        text-align: center;
    }

    .silk-home__footer-bottom span,
    .silk-home__footer-bottom a {
        width: fit-content;
    }

    .silk-home__footer-bottom a {
        display: none;
    }

    .silk-home__footer-bottom span {
        align-self: center;
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 0;
        order: 1;
        text-align: center;
        width: 100%;
    }

    .silk-home__footer-bottom a,
    .silk-home__footer-bottom span {
        color: rgba(251, 251, 250, .72);
        font-family: var(--font-body);
        font-size: var(--fs-meta);
        line-height: var(--lh-meta);
    }
}

@media (min-width: 1024px) {
    .silk-home__footer {
        margin-bottom: 0;
        padding: 18px clamp(24px, 3vw, 42px) 0;
    }

    .silk-home__footer-grid {
        align-items: flex-start;
        column-gap: clamp(20px, 2.5vw, 34px);
        row-gap: 12px;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr)
            minmax(0, 1fr)
            minmax(0, 2fr);
    }

    .silk-home__footer-brand,
    .silk-home__footer-column {
        min-height: 0;
        padding-bottom: 0;
        padding-top: 0;
    }

    .silk-home__footer-brand {
        align-content: start;
        align-self: start;
        display: grid;
        gap: 0;
        justify-items: start;
        max-width: 320px;
        text-align: left;
    }

    .silk-home__footer--coming-soon-page .silk-home__footer-brand {
        align-self: start;
    }

    .silk-home__footer-brand img {
        justify-self: start;
        margin: 0;
        max-width: 150px;
        width: 100%;
    }

    .silk-home__footer-brand-copy {
        color: rgba(251, 251, 250, .82);
        display: none;
        font-family: Inter, Arial, sans-serif;
        font-size: 14px;
        letter-spacing: -.01em;
        line-height: 1.6;
        margin: 18px 0 0;
        max-width: 286px;
        padding-left: 14px;
    }

    .silk-home__footer-column {
        align-content: start;
        display: grid;
        gap: 0;
        margin-top: 0;
        padding-left: clamp(18px, 2vw, 24px);
    }

    .silk-home__footer-column h3 {
        color: rgba(255, 245, 232, .76);
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        margin: 0 0 10px;
        text-transform: uppercase;
    }

    .silk-home__footer-column a,
    .silk-home__footer-column p {
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        line-height: var(--lh-body-compact);
    }

    .silk-home__footer-menu-desktop-link {
        display: block !important;
    }

    .silk-home__footer-column a {
        margin-bottom: 4px;
    }

    .silk-home__footer-column p {
        margin: 0 0 8px;
        max-width: 31ch;
    }

    .silk-home__footer-signup-desktop-link {
        color: rgba(251, 251, 250, .84);
        display: inline-flex;
        font-family: var(--font-body);
        font-size: var(--fs-meta);
        line-height: var(--lh-meta);
        margin-top: 16px;
        text-decoration: none;
        width: fit-content;
    }

    .silk-home__footer:not(.silk-home__footer--coming-soon-page) .silk-home__footer-column--signup .silk-home__footer-signup-privacy {
        display: none;
    }

    .silk-home__footer-signup-success {
        margin-top: 8px !important;
    }

    .silk-home__footer-bottom {
        align-items: center;
        gap: 10px 18px;
        justify-content: flex-start;
        margin-top: 14px;
        padding-top: 10px;
    }

    .silk-home__footer-bottom-link--privacy {
        display: none;
    }

    .silk-home__footer-bottom-link--unsubscribe {
        display: none;
    }

    .silk-home__footer-bottom a,
    .silk-home__footer-bottom span {
        font-family: var(--font-body);
        font-size: var(--fs-meta);
        line-height: var(--lh-meta);
    }
}

@media (max-width: 560px) {
    .silk-home__preference {
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 0;
    }

    .silk-home__preference-panel {
        border-radius: 32px;
        margin: 0 16px;
        padding: 28px 16px 0;
    }

    .silk-home__survey-showcase {
        padding: 0 16px;
    }

    .silk-home__survey-overlap-visual {
        margin: 14px -33px 0;
    }

    .silk-home__survey-teaser-copy h2 {
        font-size: clamp(30px, 10vw, 38px);
        max-width: 9ch;
    }

    .silk-home__survey-preview-progress {
        gap: 8px;
    }

    .silk-home__survey-preview-dots {
        gap: 6px;
    }

    .silk-home__survey-preview-dots span {
        height: 9px;
        width: 9px;
    }

    .silk-home__survey-preview {
        padding: 20px 14px;
    }

    .silk-home__survey-preview-grid {
        gap: 8px;
    }

    .silk-home__survey-preview-label {
        font-size: 10px;
        padding: 9px 5px 11px;
    }

    .silk-home__survey-preview-signature {
        font-size: 32px !important;
        right: 2px;
    }

    .silk-home__importance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__option-grid--airy {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .silk-home__option-grid--placement-scenes {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-block--placement .silk-home__style-image--placement-scene {
        aspect-ratio: 1.02 / 1;
    }

    .silk-home__survey-block--placement .silk-home__style-copy--placement-scene {
        min-height: 58px;
        padding: 8px 7px 10px;
    }

    .silk-home__survey-block--placement .silk-home__style-title--placement-scene {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-reveal,
    .hero-reveal-soft,
    .hero-reveal-image,
    .hero-reveal-image img,
    .silk-home__hero-image::after,
    .silk-home__hero-image-media,
    .silk-home__hero-sunlight,
    .silk-home__hero-particles span,
    .botanical-watermark,
    .botanical-watermark__inner,
    .botanical-watermark img,
    .silk-home__card img,
    .silk-home__card-media::after,
    .silk-home__heart {
        animation: none;
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
        transform: none;
        transition: none;
    }

    .botanical-watermark img {
        opacity: var(--botanical-watermark-opacity);
    }

    .silk-home__card-media::after {
        opacity: .05;
        transform: none;
    }

    .silk-home__hero-sunlight,
    .silk-home__hero-particles {
        display: none;
    }

    .silk-home__card img,
    .silk-home__card,
    .silk-home__card-media::after,
    .silk-home__heart,
    .silk-home__collection-header,
    .silk-home__collection.is-reveal-ready .silk-home__card {
        transition: none;
    }

    .silk-home__collection::before {
        display: none;
    }

    .silk-home__collection.is-reveal-ready .silk-home__collection-header,
    .silk-home__collection.is-reveal-ready .silk-home__card,
    .silk-home__collection.is-reveal-ready.is-visible .silk-home__collection-header,
    .silk-home__collection.is-reveal-ready.is-visible .silk-home__card {
        filter: none;
        opacity: 1;
        transform: none;
    }

    .silk-home__preference[data-survey-editorial],
    .silk-home__preference[data-survey-editorial] .silk-home__preference-panel,
    .silk-home__preference[data-survey-editorial] [data-survey-editorial-item],
    .silk-home__preference[data-survey-editorial] [data-survey-editorial-visual],
    .silk-home__preference[data-survey-editorial] [data-survey-editorial-image],
    .silk-home__preference[data-survey-editorial] .silk-home__survey-overlap-visual,
    .silk-home__preference[data-survey-editorial] .silk-home__survey-submit-button,
    .silk-home__preference[data-survey-editorial] .silk-home__survey-submit-button span[aria-hidden="true"],
    #blijf-op-de-hoogte [data-email-reveal-group],
    #blijf-op-de-hoogte [data-email-reveal-followup],
    .silk-home__info-bar [data-info-reveal-item] {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 390px) {
    .silk-home__survey-nav-button,
    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button,
    .silk-home__survey-slidein-primary,
    .silk-home__survey-popup-mobile-button,
    .silk-home__footer-signup button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        font-size: var(--fs-button);
        letter-spacing: 0;
        text-transform: none;
    }

    .silk-home__nav-cta,
    .silk-home__footer-signup button {
        font-size: var(--fs-body-sm);
    }

    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button {
        gap: 10px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-button {
        letter-spacing: 0;
        text-transform: none;
    }
}

.silk-maintenance {
    --silk-ink: #242424;
    --silk-muted: #6d6d6d;
    --silk-cream: #fbfbfa;
    --silk-paper: #f4f2ee;
    --silk-rose: #cc7f82;
    --silk-sage: #607264;
    --silk-border: #d8d5cf;
    background: var(--silk-cream);
    color: var(--silk-ink);
    display: grid;
    font-family: Inter, Arial, sans-serif;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    min-height: 100vh;
}

.silk-maintenance__visual {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.silk-maintenance__visual::after {
    background: linear-gradient(90deg, rgba(251, 251, 250, .08), rgba(251, 251, 250, .72));
    content: "";
    inset: 0;
    position: absolute;
}

.silk-maintenance__visual img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.silk-maintenance__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 7vw, 92px);
    position: relative;
}

.silk-maintenance__brand img {
    height: auto;
    margin-bottom: clamp(40px, 8vh, 84px);
    width: clamp(140px, 16vw, 210px);
}

.silk-maintenance__eyebrow {
    color: var(--silk-sage);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.2;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.silk-maintenance h1 {
    color: var(--silk-ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(52px, 5.4vw, 70px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: .95;
    margin: 0 0 clamp(38px, 4vw, 56px);
    max-width: 12ch;
    padding-bottom: .12em;
}

.silk-maintenance__content > p:not(.silk-maintenance__eyebrow) {
    color: var(--silk-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    margin: 0 0 34px;
    max-width: 640px;
}

.silk-maintenance__email,
.silk-maintenance__email:link,
.silk-maintenance__email:visited {
    color: var(--silk-ink);
    cursor: pointer;
    font-weight: 600;
    pointer-events: auto;
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .12em;
}

.silk-maintenance__email:hover,
.silk-maintenance__email:focus {
    color: var(--silk-rose-deep);
}

.silk-maintenance__button,
.silk-maintenance__button:link,
.silk-maintenance__button:visited {
    background: var(--silk-rose);
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(204, 127, 130, .18);
    color: #fff;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.2;
    min-height: 50px;
    padding: 15px 26px;
    text-decoration: none;
    text-transform: none;
}

.silk-maintenance__button:hover,
.silk-maintenance__button:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.silk-maintenance__error {
    color: #9f3f42;
    font-weight: 600;
}

.silk-maintenance__form {
    display: grid;
    gap: 12px;
    max-width: 360px;
    width: 100%;
}

.silk-maintenance__form label {
    color: var(--silk-ink);
    font-size: 14px;
    font-weight: 700;
}

.silk-maintenance__form input {
    border: 1px solid var(--silk-border);
    border-radius: 4px;
    color: var(--silk-ink);
    font: inherit;
    min-height: 48px;
    padding: 10px 12px;
}

.silk-maintenance__form button {
    background: var(--silk-rose);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    min-height: 50px;
    padding: 13px 22px;
}

.silk-not-found {
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(217, 177, 170, .18), transparent 38%),
        radial-gradient(circle at bottom right, rgba(183, 165, 138, .16), transparent 34%),
        linear-gradient(180deg, #fbfbfa 0%, #f7f4f0 100%);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(28px, 5vw, 48px) 20px;
}

.silk-not-found__shell {
    background:
        linear-gradient(180deg, rgba(251, 251, 250, .9) 0%, rgba(244, 242, 238, .96) 100%);
    border: 1px solid #d8d5cf;
    border-radius: 28px;
    box-shadow: 0 14px 36px rgba(36, 36, 36, .06);
    padding: clamp(30px, 5vw, 56px) clamp(22px, 5vw, 52px);
    text-align: center;
    width: min(100%, 740px);
}

.silk-not-found__brand {
    display: inline-flex;
    margin-bottom: 24px;
}

.silk-not-found__brand img {
    height: auto;
    width: min(236px, 68vw);
}

.silk-not-found__eyebrow {
    color: #b7a58a;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.2;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.silk-not-found h1 {
    color: #242424;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.4vw, 46px);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.08;
    margin: 0;
    text-wrap: balance;
}

.silk-not-found__body {
    color: #6d6d6d;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    margin: 20px auto 0;
    max-width: 34ch;
}

.silk-not-found__actions {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.silk-not-found__button,
.silk-not-found__button:link,
.silk-not-found__button:visited {
    align-items: center;
    background: #607264;
    border-radius: 999px;
    border: 1px solid #607264;
    box-shadow: none;
    color: #fffaf6;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.2;
    min-height: 54px;
    padding: 0 28px;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.silk-not-found__button:hover,
.silk-not-found__button:focus {
    background: #627466;
    border-color: #627466;
    color: #fffaf6;
    text-decoration: none;
    transform: translateY(-1px);
}

.silk-not-found__link,
.silk-not-found__link:link,
.silk-not-found__link:visited {
    color: #242424;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: rgba(183, 165, 138, .75);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.silk-not-found__link:hover,
.silk-not-found__link:focus {
    color: #607264;
    text-decoration-color: rgba(96, 114, 100, .7);
}

@media (min-width: 768px) {
    .silk-not-found__actions {
        flex-direction: row;
        gap: 18px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .silk-not-found {
        padding: 24px 20px;
    }

    .silk-not-found__shell {
        border-radius: 24px;
        padding: 28px 20px 30px;
    }

    .silk-not-found__brand {
        margin-bottom: 22px;
    }

    .silk-not-found__brand img {
        width: min(208px, 72vw);
    }

    .silk-not-found h1 {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.1;
    }

    .silk-not-found__body {
        font-size: 15px;
        line-height: 1.48;
        max-width: 30ch;
    }

    .silk-not-found__actions {
        margin-top: 26px;
        width: 100%;
    }

    .silk-not-found__button,
    .silk-not-found__button:link,
    .silk-not-found__button:visited {
        min-width: 0;
        padding: 0 22px;
        width: min(100%, 320px);
    }
}

.silk-contact {
    --silk-ink: #242424;
    --silk-muted: #6d6d6d;
    --silk-cream: #fbfbfa;
    --silk-paper: #f4f2ee;
    --silk-rose: #cc7f82;
    --silk-sage: #607264;
    --silk-gold: #b69b74;
    --silk-border: #d8d5cf;
    background: var(--silk-cream);
    color: var(--silk-ink);
    font-family: Inter, Arial, sans-serif;
    min-height: 100vh;
}

.silk-contact *,
.silk-contact *::before,
.silk-contact *::after {
    box-sizing: border-box;
}

.silk-contact__hero {
    align-items: center;
    display: grid;
    gap: clamp(32px, 6vw, 84px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    margin: 0 auto;
    max-width: 1280px;
    min-height: min(760px, calc(100vh - 86px));
    padding: clamp(42px, 7vw, 94px) clamp(20px, 5vw, 72px);
}

.silk-contact__hero-copy {
    max-width: 720px;
}

.silk-contact__eyebrow {
    color: var(--silk-sage);
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    margin: 0 0 18px;
    text-transform: uppercase;
}

.silk-contact h1,
.silk-contact h2 {
    color: var(--silk-ink);
    font-family: var(--font-heading);
}

.silk-contact h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    font-weight: 400;
    letter-spacing: var(--ls-hero);
    line-height: var(--lh-heading-tight);
    margin: 0 0 28px;
    max-width: 10.5ch;
}

.silk-contact__hero-copy > p:not(.silk-contact__eyebrow) {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
    margin: 0;
    max-width: 620px;
}

.silk-contact__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.silk-contact__quick-links a,
.silk-contact__quick-links a:link,
.silk-contact__quick-links a:visited {
    border: 1px solid rgba(216, 213, 207, .95);
    border-radius: 999px;
    color: var(--silk-ink);
    font-weight: 700;
    padding: 12px 18px;
    text-decoration: none;
}

.silk-contact__quick-links a:hover,
.silk-contact__quick-links a:focus {
    background: var(--silk-paper);
    color: var(--silk-sage);
    text-decoration: none;
}

.silk-contact__hero-media {
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(36, 36, 36, .12);
    overflow: hidden;
}

.silk-contact__hero-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.silk-contact__content {
    display: grid;
    gap: clamp(28px, 5vw, 72px);
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 110px);
}

.silk-contact__info {
    display: grid;
    gap: 16px;
}

.silk-contact__info > div,
.silk-contact__form-panel {
    background: #fff;
    border: 1px solid rgba(216, 213, 207, .8);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(36, 36, 36, .06);
}

.silk-contact__info > div {
    padding: 26px;
}

.silk-contact__info-icon {
    align-items: center;
    background: rgba(204, 127, 130, .12);
    border-radius: 999px;
    color: var(--silk-rose);
    display: inline-flex;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    margin-bottom: 18px;
    width: 44px;
}

.silk-contact__info h2 {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
    margin: 0 0 8px;
}

.silk-contact__info p,
.silk-contact__form-panel p {
    color: var(--silk-muted);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    margin: 0;
}

.silk-contact__info a,
.silk-contact__info a:link,
.silk-contact__info a:visited {
    color: var(--silk-sage);
    display: inline-block;
    font-weight: 800;
    margin-top: 12px;
    text-decoration: none;
}

.silk-contact__form-panel {
    padding: clamp(28px, 5vw, 52px);
}

.silk-contact__form-panel h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-editorial-h3);
    font-weight: 400;
    letter-spacing: var(--ls-editorial-h3);
    line-height: var(--lh-editorial-h3);
    margin: 0 0 26px;
}

.silk-contact__form {
    display: grid;
    gap: 18px;
}

.silk-contact__field-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.silk-contact__form label {
    display: grid;
    gap: 8px;
}

.silk-contact__form label > span {
    color: var(--silk-ink);
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    text-transform: uppercase;
}

.silk-contact__form input,
.silk-contact__form textarea {
    background: #fbfbfa;
    border: 1px solid rgba(216, 213, 207, .95);
    border-radius: 8px;
    color: var(--silk-ink);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    line-height: var(--lh-body-compact);
    min-height: 52px;
    padding: 14px 16px;
    width: 100%;
}

.silk-contact__form textarea {
    min-height: 160px;
    resize: vertical;
}

.silk-contact__form input:focus,
.silk-contact__form textarea:focus {
    border-color: var(--silk-rose);
    box-shadow: 0 0 0 4px rgba(204, 127, 130, .14);
    outline: 0;
}

.silk-contact__form .validation-message {
    color: #b94d56;
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    font-weight: 700;
    line-height: var(--lh-meta);
}

.silk-contact__button,
.silk-contact__button:link,
.silk-contact__button:visited {
    align-items: center;
    background: var(--silk-rose);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(204, 127, 130, .18);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 600;
    justify-content: center;
    justify-self: flex-start;
    letter-spacing: 0;
    line-height: var(--lh-button);
    min-height: 52px;
    padding: 15px 24px;
    text-decoration: none;
    text-transform: none;
}

.silk-contact__button:hover,
.silk-contact__button:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.silk-contact__confirmation {
    background: rgba(96, 114, 100, .1);
    border: 1px solid rgba(96, 114, 100, .24);
    border-radius: 8px;
    color: var(--silk-sage);
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    padding: 18px;
}

.silk-contact__confirmation strong {
    color: var(--silk-ink);
}

.silk-privacy {
    background:
        radial-gradient(circle at top left, rgba(204, 127, 130, .12), transparent 28%),
        radial-gradient(circle at top right, rgba(182, 155, 116, .12), transparent 30%),
        linear-gradient(180deg, var(--silk-cream) 0%, var(--silk-paper) 100%);
    color: var(--silk-ink);
    display: grid;
    gap: 28px;
    padding: 22px 18px 48px;
}

.silk-privacy *,
.silk-privacy *::before,
.silk-privacy *::after {
    box-sizing: border-box;
}

.silk-privacy__shell,
.silk-privacy__hero,
.silk-privacy__content {
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
}

.silk-privacy__shell {
    display: grid;
    gap: 24px;
}

.silk-privacy__hero-panel {
    align-items: stretch;
    background: linear-gradient(180deg, rgba(246, 243, 239, .96), rgba(244, 242, 238, .9));
    border: 1px solid rgba(216, 213, 207, .94);
    border-radius: 32px;
    box-shadow: 0 28px 72px rgba(74, 58, 38, .08);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
    overflow: hidden;
    position: relative;
}

.silk-privacy__hero-panel::before {
    background:
        radial-gradient(circle at 28% 30%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 43%),
        linear-gradient(90deg, rgba(246, 243, 239, .88) 0%, rgba(246, 243, 239, .42) 32%, rgba(246, 243, 239, 0) 54%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.silk-privacy__hero-copy-block,
.silk-privacy__hero-media {
    position: relative;
    z-index: 2;
}

.silk-privacy__hero-copy-block {
    align-content: center;
    display: grid;
    gap: 20px;
    padding: clamp(36px, 5vw, 64px);
}

.silk-privacy__hero-media {
    min-height: 100%;
}

.silk-privacy__hero-media::after {
    background:
        linear-gradient(270deg, rgba(246, 243, 239, .06) 0%, rgba(246, 243, 239, .16) 45%, rgba(246, 243, 239, .76) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .14) 0%, rgba(36, 36, 36, .04) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.silk-privacy__hero-media img {
    display: block;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.silk-privacy__hero-copy,
.silk-privacy__hero-note,
.silk-privacy__panel {
    background: rgba(251, 251, 250, .92);
    border: 1px solid rgba(216, 213, 207, .92);
    border-radius: 2rem;
    box-shadow: 0 24px 70px rgba(74, 58, 38, .08);
}

.silk-privacy__hero-copy {
    display: grid;
    gap: 1rem;
    padding: clamp(2rem, 4vw, 3rem);
}

.silk-privacy__hero-note {
    align-content: start;
    display: grid;
    gap: .95rem;
    padding: 1rem;
}

.silk-privacy__hero-note--form {
    align-content: stretch;
}

.silk-privacy__hero-card {
    background: linear-gradient(180deg, rgba(244, 242, 238, .96), rgba(251, 251, 250, .98));
    border: 1px solid rgba(216, 213, 207, .92);
    border-radius: 1.55rem;
    display: grid;
    gap: .7rem;
    padding: 1.3rem 1.2rem 1.15rem;
}

.silk-privacy__hero-card--form {
    align-content: start;
    min-height: 100%;
}

.silk-privacy__eyebrow {
    color: var(--silk-rose);
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    margin: 0;
    text-transform: uppercase;
}

.silk-privacy h1,
.silk-privacy h2 {
    color: var(--silk-ink);
    font-family: "Newsreader", Georgia, serif;
    margin: 0;
}

.silk-privacy h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    letter-spacing: var(--ls-hero);
    line-height: var(--lh-heading-tight);
    max-width: 9.7ch;
}

.silk-privacy h2 {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
}

.silk-privacy__lead,
.silk-privacy__hero-copy > p:not(.silk-privacy__eyebrow),
.silk-privacy__info-card p,
.silk-privacy__card-list li,
.silk-privacy__trust-copy p,
.silk-privacy__panel p,
.silk-privacy__hero-card p,
.silk-privacy__unsubscribe-info-block p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
}

.silk-privacy__lead {
    color: var(--silk-muted);
    margin: 0;
    max-width: 30rem;
}

.silk-privacy__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-items: start;
    margin-top: 8px;
}

.silk-privacy__action-button {
    min-width: 214px;
}

.silk-privacy__outline-button,
.silk-privacy__outline-button:link,
.silk-privacy__outline-button:visited {
    align-items: center;
    background: rgba(251, 251, 250, .84);
    border: 1px solid rgba(96, 114, 100, .26);
    border-radius: 999px;
    color: var(--silk-sage);
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 500;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    min-height: 56px;
    min-width: 168px;
    padding: 0 26px;
    text-decoration: none;
    text-transform: none;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.silk-privacy__outline-button:hover,
.silk-privacy__outline-button:focus {
    background: rgba(251, 251, 250, .98);
    border-color: rgba(182, 155, 116, .48);
    color: var(--silk-ink);
    text-decoration: none;
    transform: translateY(-1px);
}

.silk-privacy__card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.silk-privacy__info-card {
    background: rgba(251, 251, 250, .95);
    border: 1px solid rgba(216, 213, 207, .92);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(74, 58, 38, .06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 26px 24px 22px;
}

.silk-privacy__info-card h2 {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
    margin: 0;
    margin-top: 4px;
}

.silk-privacy__info-card > p {
    margin: 0;
}

.silk-privacy__icon-badge {
    align-items: center;
    background: rgba(204, 127, 130, .12);
    border-radius: 999px;
    color: var(--silk-rose);
    display: inline-flex;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.silk-privacy__icon-badge svg {
    fill: currentColor;
    height: 24px;
    width: 24px;
}

.silk-privacy__icon-badge--sage {
    background: rgba(96, 114, 100, .12);
    color: var(--silk-sage);
}

.silk-privacy__icon-badge--trust {
    flex-shrink: 0;
    height: 58px;
    width: 58px;
}

.silk-privacy__info-card p,
.silk-privacy__panel p,
.silk-privacy__hero-card p,
.silk-privacy__unsubscribe-info-block p {
    color: var(--silk-muted);
    margin: 0;
}

.silk-privacy__card-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}

.silk-privacy__card-list li {
    color: var(--silk-ink);
    padding-left: 28px;
    position: relative;
}

.silk-privacy__card-list li::before {
    color: var(--silk-sage);
    content: "✓";
    font-size: 1rem;
    font-weight: 700;
    left: 0;
    position: absolute;
    top: 0;
}

.silk-privacy__card-list a,
.silk-privacy__card-list a:link,
.silk-privacy__card-list a:visited {
    color: var(--silk-sage);
    text-decoration: underline;
    text-underline-offset: .16em;
}

.silk-privacy__trust-note {
    align-items: center;
    background: linear-gradient(90deg, rgba(96, 114, 100, .09), rgba(246, 243, 239, .96));
    border: 1px solid rgba(216, 213, 207, .94);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(74, 58, 38, .05);
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 26px 28px;
}

.silk-privacy__trust-copy {
    display: grid;
    gap: 8px;
}

.silk-privacy__trust-copy--cookies {
    gap: 14px;
}

.silk-privacy__trust-copy h2 {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
}

.silk-privacy__cookie-button,
.silk-privacy__cookie-button:link,
.silk-privacy__cookie-button:visited {
    justify-self: start;
    margin-top: 4px;
    min-width: 240px;
}

.silk-privacy__content {
    display: grid;
    gap: 1.15rem;
}

.silk-privacy__content--editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.silk-privacy__panel {
    display: grid;
    gap: .8rem;
    padding: 1.5rem 1.35rem 1.3rem;
}

.silk-privacy__panel a,
.silk-privacy__panel a:link,
.silk-privacy__panel a:visited {
    color: var(--silk-sage);
    text-decoration: underline;
    text-underline-offset: .14em;
}

.silk-privacy__field {
    display: grid;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.silk-privacy__field span {
    color: var(--silk-sage);
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    text-transform: uppercase;
}

.silk-privacy__field input {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(96, 114, 100, .18);
    border-radius: 999px;
    color: var(--silk-ink);
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    line-height: var(--lh-body-compact);
    min-height: 3.5rem;
    padding: 0 1.1rem;
}

.silk-privacy__field textarea {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(96, 114, 100, .18);
    border-radius: 18px;
    color: #2f4234;
    min-height: 6rem;
    padding: .95rem 1.1rem;
    resize: vertical;
}

.silk-privacy__field .validation-message {
    color: #9b5448;
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    line-height: var(--lh-meta);
}

.silk-privacy__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.silk-privacy__button,
.silk-privacy__button:link,
.silk-privacy__button:visited {
    align-items: center;
    background: #607264;
    border: 1px solid #607264;
    border-radius: 999px;
    color: #fbfbfa;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.2;
    min-height: 2.9rem;
    padding: 0 1.35rem;
    text-decoration: none;
    text-transform: none;
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.silk-privacy__button:hover,
.silk-privacy__button:focus {
    color: #fff;
    transform: translateY(-1px);
}

.silk-privacy__button--secondary,
.silk-privacy__button--secondary:link,
.silk-privacy__button--secondary:visited {
    background: transparent;
    border-color: rgba(96, 114, 100, .24);
    color: var(--silk-ink);
}

.silk-privacy__button--secondary:hover,
.silk-privacy__button--secondary:focus {
    color: var(--silk-ink);
}

.silk-privacy__button--submit,
.silk-privacy__button--submit:link,
.silk-privacy__button--submit:visited {
    min-width: 14rem;
}

.silk-privacy__status {
    border-radius: 1rem;
    margin: 0 0 1rem;
    padding: .9rem 1rem;
}

.silk-privacy__status--success {
    background: rgba(96, 114, 100, .12);
    color: var(--silk-sage);
}

.silk-privacy__status--error {
    background: rgba(203, 120, 98, .12);
    color: #8f4f42;
}

.silk-unsubscribe__hero-panel {
    box-shadow: 0 16px 34px rgba(74, 58, 38, .05);
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .82fr);
}

.silk-unsubscribe__hero-copy-block {
    align-content: start;
    gap: 16px;
    padding: clamp(34px, 4.4vw, 52px);
}

.silk-unsubscribe__form-shell,
.silk-unsubscribe__success-panel {
    display: grid;
    gap: 14px;
    max-width: 540px;
}

.silk-unsubscribe__form,
.silk-unsubscribe__success-panel {
    gap: 14px;
}

.silk-unsubscribe__success-panel p,
.silk-unsubscribe__help {
    margin: 0;
}

.silk-unsubscribe__form {
    display: grid;
    gap: 0;
}

.silk-unsubscribe__field {
    margin-bottom: 16px;
}

.silk-unsubscribe__field input,
.silk-unsubscribe__field textarea {
    box-shadow: none;
    width: 100%;
}

.silk-unsubscribe__field textarea {
    min-height: 108px;
}

.silk-unsubscribe__field .validation-message {
    margin-top: 2px;
}

.silk-unsubscribe__submit,
.silk-unsubscribe__submit:link,
.silk-unsubscribe__submit:visited {
    align-items: center;
    background: #607264;
    border: 1px solid #607264;
    border-radius: 999px;
    box-shadow: none;
    color: #fbfbfa;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0;
    line-height: var(--lh-button);
    min-height: 56px;
    padding: 0 26px;
    text-decoration: none;
    text-transform: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
    width: 100%;
}

.silk-unsubscribe__reason-toggle {
    align-self: start;
    background: transparent;
    border: 0;
    color: var(--silk-sage);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    line-height: var(--lh-body-compact);
    margin-top: 10px;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: .16em;
}

.silk-unsubscribe__reason-toggle:hover,
.silk-unsubscribe__reason-toggle:focus {
    color: var(--silk-ink);
}

.silk-unsubscribe__field--reason {
    margin-top: 12px;
}

.silk-unsubscribe__submit:hover,
.silk-unsubscribe__submit:focus {
    background: #738576;
    border-color: #738576;
    color: #fbfbfa;
    text-decoration: none;
    transform: translateY(-1px);
}

.silk-unsubscribe__submit[disabled] {
    cursor: not-allowed;
    opacity: .78;
    transform: none;
}

.silk-unsubscribe__help {
    color: var(--silk-muted);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-compact);
}

.silk-unsubscribe__card-grid {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
}

.silk-unsubscribe__card-grid .silk-privacy__info-card,
.silk-unsubscribe__hero-panel {
    box-shadow: none;
}

.silk-unsubscribe__card-grid .silk-privacy__info-card {
    background: rgba(251, 251, 250, .92);
}

@media (max-width: 900px) {
    .silk-home__survey-slidein {
        --survey-slidein-enter-duration: .58s;
        --survey-slidein-shell-animation: silk-home-slidein-enter-mobile;
        --survey-slidein-shell-exit-animation: silk-home-slidein-exit-mobile;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 18px;
        transform: translateX(-50%);
        width: min(340px, calc(100vw - 40px));
    }

    .silk-home__survey-slidein-shell {
        transform-origin: center bottom;
    }

    .silk-home__survey-slidein-content {
        background: #f7efe7;
        border: 2px solid #c59354;
        height: auto;
        max-height: calc(100vh - 48px);
        max-width: 340px;
        min-height: 0;
        min-width: 0;
        width: min(340px, calc(100vw - 40px));
    }

    .silk-home__survey-slidein-copy {
        display: grid;
        gap: 0;
        min-height: 0;
        justify-items: center;
        padding: 26px 22px 18px;
        text-align: center;
    }

    .silk-home__survey-slidein-floral--desktop,
    .silk-home__survey-slidein-pill-hero--desktop,
    .silk-home__survey-slidein-meta--desktop,
    .silk-home__survey-slidein-body--desktop,
    .silk-home__survey-slidein-micro--desktop,
    .silk-home__survey-slidein-thanks--desktop {
        display: none;
    }

    .silk-home__survey-slidein-footer-stack {
        align-content: start;
        display: grid;
        justify-items: center;
        max-width: 100%;
        width: 100%;
    }

    .silk-home__survey-slidein-floral--mobile {
        background: url("../img/home/survey-popup-flower-mobile.png") right center / contain no-repeat;
        display: block;
        height: 214px;
        opacity: .3;
        right: -8px;
        top: 84px;
        width: 84px;
    }

    .silk-home__survey-slidein-pill-hero--mobile {
        display: flex;
        justify-content: center;
        margin: 0 0 18px;
        width: 100%;
    }

    .silk-home__survey-slidein-pill-image-mobile {
        height: 68px;
        margin: 0 !important;
    }

    .silk-home__survey-slidein-title {
        font-family: "Newsreader", Georgia, serif;
        font-size: 30px;
        font-weight: 400;
        letter-spacing: -.02em;
        line-height: 1.05;
        margin: 0 auto 16px;
        max-width: 270px;
        text-align: center;
    }

    .silk-home__survey-slidein-title-line {
        white-space: normal;
    }

    .silk-home__survey-slidein-body--mobile {
        color: #6d6d6d;
        display: block;
        font-family: Inter, Arial, sans-serif;
        font-size: 17px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.55;
        margin: 0 auto 20px;
        max-width: 280px;
        text-align: center;
    }

    .silk-home__survey-slidein-pill-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin: 0 0 22px;
        max-width: 280px;
    }

    .silk-home__survey-slidein-primary {
        background: #c96f72;
        box-shadow: 0 10px 20px rgba(191, 141, 144, .16);
        font-family: var(--font-body);
        font-size: var(--fs-button);
        font-weight: 600;
        gap: 10px;
        letter-spacing: 0;
        line-height: var(--lh-button);
        margin: 0;
        min-height: 50px;
        padding: 0 18px;
        width: 100%;
    }

    .silk-home__survey-slidein-primary:hover,
    .silk-home__survey-slidein-primary:focus {
        background: #bb6369;
    }

    .silk-home__survey-slidein-primary-arrow {
        height: 18px;
        width: 18px;
    }

    .silk-home__survey-slidein-close {
        color: rgba(36, 36, 36, .82);
        font-size: 24px;
        height: 32px;
        opacity: 1;
        right: 28px;
        top: 18px;
        width: 32px;
        z-index: 4;
    }

    .silk-home__survey-slidein-thanks--mobile {
        color: #6d6d6d;
        display: block;
        font-family: Inter, Arial, sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.35;
        margin: 12px auto 0;
        text-align: center;
        width: 100%;
    }

    .silk-contact__hero,
    .silk-contact__content,
    .silk-contact__field-grid,
    .silk-privacy__content {
        grid-template-columns: 1fr;
    }

    .silk-contact__hero {
        min-height: 0;
    }

    .silk-contact__eyebrow,
    .silk-privacy__eyebrow,
    .silk-maintenance__eyebrow {
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
    }

    .silk-contact h1,
    .silk-privacy h1,
    .silk-maintenance h1 {
        font-size: var(--fs-hero);
        font-weight: 400;
        letter-spacing: var(--ls-hero);
        line-height: var(--lh-heading-tight);
    }

    .silk-contact__hero-copy > p:not(.silk-contact__eyebrow),
    .silk-privacy__lead,
    .silk-privacy__hero-copy > p:not(.silk-privacy__eyebrow),
    .silk-privacy__info-card p,
    .silk-privacy__card-list li,
    .silk-privacy__trust-copy p,
    .silk-privacy__panel p,
    .silk-privacy__hero-card p,
    .silk-privacy__unsubscribe-info-block p,
    .silk-maintenance__content > p:not(.silk-maintenance__eyebrow) {
        font-family: var(--font-body);
        font-size: var(--fs-body);
        letter-spacing: 0;
        line-height: var(--lh-body);
    }

    .silk-contact__button,
    .silk-contact__button:link,
    .silk-contact__button:visited,
    .silk-privacy__button,
    .silk-privacy__button:link,
    .silk-privacy__button:visited,
    .silk-privacy__outline-button,
    .silk-privacy__outline-button:link,
    .silk-privacy__outline-button:visited,
    .silk-maintenance__button,
    .silk-maintenance__button:link,
    .silk-maintenance__button:visited {
        font-size: var(--fs-button);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
        text-transform: none;
    }

    .silk-contact__hero-media {
        aspect-ratio: 16 / 11;
    }

    .silk-privacy {
        gap: 1rem;
        padding: 14px 10px 28px;
    }

    .silk-privacy__shell {
        gap: 16px;
    }

    .silk-privacy__hero-panel,
    .silk-privacy__hero-copy,
    .silk-privacy__hero-note,
    .silk-privacy__panel {
        border-radius: 1.5rem;
    }

    .silk-privacy__hero-panel {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .silk-privacy__hero-panel::before {
        background:
            linear-gradient(180deg, rgba(246, 243, 239, .2) 0%, rgba(246, 243, 239, .88) 100%);
        inset: auto 0 0;
        min-height: 40%;
    }

    .silk-privacy__hero-copy-block,
    .silk-privacy__hero-copy {
        padding: 24px 20px 22px;
    }

    .silk-privacy__hero-note {
        padding: .85rem;
    }

    .silk-privacy__hero-media {
        min-height: 260px;
        order: 1;
    }

    .silk-privacy__hero-copy-block {
        order: 2;
    }

    .silk-privacy h1 {
        font-size: 34px;
        line-height: var(--lh-heading-tight);
        max-width: none;
    }

    .silk-privacy__lead,
    .silk-privacy__hero-copy > p:not(.silk-privacy__eyebrow),
    .silk-privacy__info-card p,
    .silk-privacy__card-list li,
    .silk-privacy__trust-copy p,
    .silk-privacy__panel p,
    .silk-privacy__hero-card p,
    .silk-privacy__unsubscribe-info-block p {
        font-family: var(--font-body);
        font-size: var(--fs-body);
        line-height: var(--lh-body);
    }

    .silk-privacy__lead {
        color: var(--silk-muted);
    }

    .silk-privacy__actions {
        gap: .65rem;
        margin-top: 2px;
        width: 100%;
    }

    .silk-privacy__action-button,
    .silk-privacy__outline-button,
    .silk-privacy__outline-button:link,
    .silk-privacy__outline-button:visited {
        align-items: center;
        border-radius: 14px;
        font-family: var(--font-body);
        font-size: var(--fs-button);
        gap: 10px;
        justify-content: center;
        letter-spacing: 0;
        line-height: var(--lh-button);
        min-width: 0;
        padding: 0 18px;
        text-align: center;
        text-transform: none;
        width: 100%;
    }

    .silk-privacy__action-button {
        background: var(--bb-green);
        border: 1px solid var(--bb-green);
        box-shadow: none;
        color: var(--bb-white);
        font-weight: 600;
        min-height: 54px;
    }

    .silk-privacy__action-button:hover,
    .silk-privacy__action-button:focus {
        background: var(--bb-green-hover);
        border-color: var(--bb-green-hover);
        color: var(--bb-white);
    }

    .silk-privacy__outline-button,
    .silk-privacy__outline-button:link,
    .silk-privacy__outline-button:visited {
        background: #fbfbfa;
        border: 1px solid var(--bb-border);
        box-shadow: none;
        color: var(--bb-text);
        font-weight: 500;
        min-height: 54px;
    }

    .silk-privacy__outline-button:hover,
    .silk-privacy__outline-button:focus {
        background: var(--bb-soft);
        border-color: var(--bb-border);
        color: var(--bb-text);
    }

    .silk-privacy__card-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .silk-privacy__info-card {
        border-radius: 22px;
        gap: 12px;
        grid-template-rows: auto;
        padding: 20px 18px 18px;
    }

    .silk-privacy__info-card h2 {
        display: block;
        font-size: var(--fs-card-title);
        line-height: var(--lh-card-title);
    }

    .silk-privacy__info-card > p {
        min-height: 0;
    }

    .silk-privacy__icon-badge {
        height: 48px;
        width: 48px;
    }

    .silk-privacy__trust-note {
        gap: 14px;
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 20px 18px;
    }

    .silk-privacy__trust-copy--cookies {
        gap: 12px;
    }

    .silk-privacy__cookie-button,
    .silk-privacy__cookie-button:link,
    .silk-privacy__cookie-button:visited {
        justify-self: stretch;
        min-width: 0;
    }

    .silk-privacy__hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .silk-privacy__button,
    .silk-privacy__button:link,
    .silk-privacy__button:visited {
        width: 100%;
    }

    .silk-unsubscribe__hero-panel {
        grid-template-columns: 1fr;
    }

    .silk-unsubscribe__hero-copy-block {
        order: 1;
        padding: 24px 20px 16px;
    }

    .silk-unsubscribe__form-shell,
    .silk-unsubscribe__success-panel {
        max-width: none;
    }

    .silk-unsubscribe__hero-panel .silk-privacy__hero-media {
        display: none;
    }

    .silk-unsubscribe__field {
        margin-bottom: 12px;
    }

    .silk-unsubscribe__field textarea {
        min-height: 96px;
    }

    .silk-unsubscribe__reason-toggle {
        margin-top: 8px;
    }

    .silk-unsubscribe__submit,
    .silk-unsubscribe__submit:link,
    .silk-unsubscribe__submit:visited {
        min-height: 54px;
    }

    .silk-unsubscribe__card-grid {
        gap: 18px;
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

}

@media (max-width: 900px) {
    .silk-maintenance {
        grid-template-columns: 1fr;
    }

    .silk-maintenance__visual {
        min-height: 38vh;
    }

    .silk-maintenance__visual::after {
        background: linear-gradient(180deg, rgba(251, 251, 250, 0), rgba(251, 251, 250, .9));
    }

    .silk-maintenance__content {
        justify-content: flex-start;
        min-height: 62vh;
    }
}

@media (min-width: 768px) {
    .silk-home .silk-home__hero-title,
    .silk-home .hero-reveal--title {
        font-family: var(--font-heading);
        font-size: 56px;
        font-weight: 400;
        letter-spacing: var(--ls-hero);
        line-height: var(--lh-heading-tight);
    }

    .silk-home__hero-copy .silk-home__hero-title {
        max-width: none;
    }

    .silk-home__hero-copy .silk-home__hero-title .silk-home__hero-title-line {
        display: block;
        white-space: nowrap;
    }

    .silk-home__collection-intro h2,
    .silk-home .silk-home__survey-editorial-title,
    #behind-title,
    #email-soft-close-title {
        font-family: var(--font-heading);
        font-size: var(--fs-section);
        font-weight: 400;
        letter-spacing: var(--ls-heading);
        line-height: var(--lh-heading);
    }

    .silk-home__survey-editorial-title,
    #email-soft-close-title {
        text-wrap: wrap;
        white-space: normal;
    }

    #email-soft-close-title {
        max-width: 470px;
        text-align: left;
    }

    .silk-home__eyebrow,
    .silk-home__survey-editorial-badge,
    .silk-home__email-soft-close-kicker,
    .silk-home__survey-popup-kicker,
    .silk-home__footer-column h3 {
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        text-transform: uppercase;
    }

    .silk-home__hero-copy .silk-home__desktop-copy .silk-home__hero-body p,
    .silk-home__section-intro,
    .silk-home__survey-editorial-body p,
    .silk-home__behind-copy,
    .silk-home__social p,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        font-family: var(--font-body);
        font-size: var(--fs-body);
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.55;
    }

    .silk-home__survey-editorial-body p,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        font-size: var(--fs-body);
    }

    .silk-home__section-intro,
    .silk-home__behind-copy,
    .silk-home__social p {
        font-size: var(--fs-body-lg);
        line-height: var(--lh-body);
    }

    .silk-home__hero-copy .silk-home__desktop-copy .silk-home__gift p:not(.silk-home__eyebrow):not(.silk-home__script):not(.silk-home__signature) {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.45;
    }

    .silk-home__card-body h3,
    .silk-home__behind-card-copy h3 {
        font-family: var(--font-body);
        font-size: var(--fs-card-title);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-card-title);
    }

    .silk-home__card-body p {
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        font-weight: 400;
        letter-spacing: 0;
        line-height: var(--lh-body-compact);
    }

    .silk-home__nav-cta,
    .silk-home__nav-cta:link,
    .silk-home__nav-cta:visited {
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
        text-transform: none;
    }

    .silk-home__button--dark,
    .silk-home__button--dark:link,
    .silk-home__button--dark:visited,
    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button,
    .silk-home__survey-slidein-primary {
        font-family: var(--font-body);
        font-size: var(--fs-button);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
        text-transform: none;
    }

    .silk-home__footer-signup button {
        font-family: var(--font-body);
        font-size: var(--fs-body-sm);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
        text-transform: none;
    }

    .silk-home__button--secondary,
    .silk-home__button--secondary:link,
    .silk-home__button--secondary:visited,
    .silk-home__survey-nav-button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        font-family: var(--font-body);
        font-size: var(--fs-button);
        font-weight: 500;
        letter-spacing: 0;
        line-height: var(--lh-button);
        text-transform: none;
    }

    .silk-home__button span[aria-hidden="true"],
    .silk-home__survey-nav-button span[aria-hidden="true"],
    .silk-home__survey-submit-button span[aria-hidden="true"],
    .silk-home__email-soft-close-button span[aria-hidden="true"],
    .silk-home__survey-slidein-primary span[aria-hidden="true"] {
        align-items: center;
        display: inline-flex;
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        transform: none;
    }
}

@media (min-width: 768px) and (max-width: 799px) {
    :root {
        --fs-section: 42px;
        --fs-body-lg: 17px;
        --fs-body: 15px;
        --fs-body-sm: 14px;
        --lh-body: 1.55;
    }

    .silk-home .silk-home__hero-title,
    .silk-home .hero-reveal--title {
        font-size: 50px;
    }

    .silk-home__hero-copy .silk-home__hero-title .silk-home__hero-title-line {
        white-space: normal;
    }

    .silk-privacy h1 {
        font-size: 50px;
    }

    .silk-home__hero-copy .silk-home__desktop-copy .silk-home__hero-body p,
    .silk-home__section-intro,
    .silk-home__survey-editorial-body p,
    .silk-home__behind-copy,
    .silk-home__social p,
    .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-copy p {
        line-height: var(--lh-body);
    }
}

@media (min-width: 800px) and (max-width: 1024px) {
    .silk-privacy h1 {
        font-size: 46px;
    }

    .silk-privacy__lead,
    .silk-privacy__hero-copy > p:not(.silk-privacy__eyebrow),
    .silk-privacy__info-card p,
    .silk-privacy__card-list li,
    .silk-privacy__trust-copy p,
    .silk-privacy__panel p,
    .silk-privacy__hero-card p,
    .silk-privacy__unsubscribe-info-block p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .silk-home {
        --bb-bg: #fbfbfa;
        --bb-text: #242424;
        --bb-muted: #6d6d6d;
        --bb-green: #607264;
        --bb-green-hover: #738576;
        --bb-gold: #b7a58a;
        --bb-border: #d8d5cf;
        --bb-card: #f4f2ee;
        --bb-soft: #f1eeea;
        --bb-white: #fbfbfa;
        background: var(--bb-bg);
        color: var(--bb-text);
    }

    .silk-home h1,
    .silk-home h2,
    .silk-home h3,
    .silk-home h4,
    .silk-home__survey-step-header h3,
    .silk-home__survey-block-heading h4,
    #email-soft-close-title,
    .silk-home__info-bar-copy h3,
    .silk-home__behind-card-copy h3 {
        color: var(--bb-text);
        font-family: "Newsreader", Georgia, serif;
        font-weight: 500;
    }

    .silk-home h1 {
        font-family: var(--font-heading);
        font-size: var(--fs-hero);
        font-weight: 400;
        letter-spacing: var(--ls-hero);
        line-height: var(--lh-heading-tight);
        margin-bottom: 16px;
    }

    .silk-home h2 {
        font-size: var(--fs-section);
        font-weight: 400;
        letter-spacing: var(--ls-heading);
        line-height: var(--lh-heading);
        margin-bottom: 16px;
    }

    .silk-home h3,
    #email-soft-close-title,
    .silk-home__info-bar-copy h3,
    .silk-home__behind-card-copy h3 {
        font-family: var(--font-body);
        font-size: var(--fs-card-title);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-card-title);
        margin-bottom: 12px;
    }

    .silk-home h4,
    .silk-home__survey-block-heading h4 {
        font-size: 20px;
        letter-spacing: -.02em;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .silk-home__survey-step-header h3 {
        color: var(--bb-text);
        font-family: var(--font-heading);
        font-size: var(--fs-editorial-h3);
        font-weight: 400;
        letter-spacing: var(--ls-editorial-h3);
        line-height: var(--lh-editorial-h3);
        margin-bottom: 12px;
    }

    .silk-home__eyebrow,
    .silk-home__footer-column h3,
    .silk-home__survey-editorial-badge,
    .silk-home__email-soft-close-kicker,
    .silk-home__survey-popup-kicker {
        color: var(--bb-gold);
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        text-transform: uppercase;
    }

    .silk-home__eyebrow {
        line-height: 1.2;
        margin-bottom: 18px;
        white-space: nowrap;
    }

    .silk-home__hero-copy p:not(.silk-home__eyebrow):not(.silk-home__script):not(.silk-home__signature),
    .silk-home__mobile-body,
    .silk-home__mobile-note,
    .silk-home__section-intro,
    .silk-home__preference-copy p,
    .silk-home__behind-copy,
    .silk-home__info-bar-copy p,
    .silk-home__survey-step-header p,
    .silk-home__survey-block-heading p,
    .silk-home__email-soft-close-copy p {
        color: var(--bb-text);
        font-family: var(--font-body);
        font-size: var(--fs-body-lg);
        font-weight: 400;
        letter-spacing: 0;
        line-height: var(--lh-body);
    }

    .silk-home__survey-editorial-body p,
    .silk-home__survey-block-heading p,
    .silk-home__email-soft-close-copy p {
        font-size: var(--fs-body);
    }

    .silk-home__survey-step-header p,
    .silk-home__survey-block-heading p {
        font-size: var(--fs-body);
        line-height: 1.5;
    }

    .silk-home__survey-modal-progress-label,
    .silk-home__survey-kicker {
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        text-transform: uppercase;
    }

    .silk-home__survey-stage--modal .silk-home__style-title {
        font-family: var(--font-body);
        font-size: var(--fs-meta);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-meta);
    }

    .silk-home__survey-stage--modal .silk-home__importance-label {
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.28;
    }

    .silk-home__survey-stage--modal .silk-home__survey-textarea {
        font-family: var(--font-body);
        font-size: var(--fs-body);
        font-weight: 400;
        line-height: 1.5;
    }

    .silk-home__survey-modal-backdrop {
        align-items: center;
        backdrop-filter: blur(12px);
        background: rgba(252, 251, 248, .82);
        padding: 12px;
    }

    .silk-home__survey-modal {
        background: #FCFBF8;
        border: 1px solid rgba(231, 227, 220, .96);
        border-radius: 28px;
        box-shadow:
            0 22px 56px rgba(35, 43, 36, .14),
            0 6px 20px rgba(35, 43, 36, .05);
        height: auto;
        max-height: calc(100dvh - 24px);
        max-width: 100%;
        min-height: auto;
        width: min(100%, 760px);
    }

    .silk-home__survey-modal-shell {
        gap: 16px;
        grid-template-rows: auto minmax(0, 1fr);
        height: auto;
        min-height: 0;
        padding: 14px 14px 14px;
    }

    .silk-home__survey-modal-header {
        align-items: start;
        column-gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
        row-gap: 0;
    }

    .silk-home__survey-modal-progress-wrap {
        align-items: start;
        display: flex;
        justify-content: center;
        min-width: 0;
        padding-top: 1px;
    }

    .silk-home__survey-modal-stepper {
        margin-inline: auto;
        max-width: none;
        width: 100%;
    }

    .silk-home__survey-modal-progress-bar {
        display: grid;
        gap: 4px;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        height: 7px;
        margin: 6px 0 0;
        width: 100%;
    }

    .silk-home__survey-modal-progress-bar {
        background: transparent;
    }

    .silk-home__survey-modal-progress-bar span {
        background: #e6e0d7;
        border-radius: 999px;
        display: block;
        height: 100%;
        transition: background-color .22s ease;
    }

    .silk-home__survey-modal-progress-bar span.is-complete {
        background: #73866f;
    }

    .silk-home__survey-modal-stepper-item::after {
        margin-inline: 3px;
    }

    .silk-home__survey-modal-stepper-node {
        font-size: 14px;
        height: 30px;
        width: 30px;
    }

    .silk-home__survey-modal-stepper-node svg {
        height: 11px;
        width: 11px;
    }

    .silk-home__survey-modal-close {
        color: #1F231F;
        flex-shrink: 0;
        height: 30px;
        justify-self: end;
        width: 30px;
    }

    .silk-home__survey-modal-stepper {
        display: none;
    }

    .silk-home__survey-step-header--intro {
        gap: 6px;
        max-width: 308px;
    }

    .silk-home__survey-modal-body {
        gap: 0;
        grid-template-rows: minmax(0, 1fr) auto;
        min-height: 0;
        overflow: hidden;
    }

    .silk-home__survey-stage--modal {
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 20px;
        padding-right: 0;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header,
    .silk-home__survey-stage--modal .silk-home__survey-block-heading {
        gap: 12px;
        max-width: none;
    }

    .silk-home__survey-step-label {
        font-size: 12px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header h3,
    .silk-home__survey-stage--modal .silk-home__survey-block-heading h4 {
        color: #1F231F;
        font-family: var(--font-heading);
        font-size: var(--fs-editorial-h3);
        font-weight: 400;
        letter-spacing: var(--ls-editorial-h3);
        line-height: var(--lh-editorial-h3);
        margin-bottom: 0;
    }

    .silk-home__survey-stage--modal .silk-home__survey-step-header p,
    .silk-home__survey-stage--modal .silk-home__survey-block-heading p {
        color: rgba(31, 35, 31, .72);
        font-family: var(--font-body);
        font-size: 15px;
        line-height: var(--lh-body-compact);
        margin-bottom: 0;
        max-width: none;
    }

    .silk-home__survey-step--editorial {
        gap: 10px;
    }

    .silk-home__survey-stage--modal .silk-home__option-grid--airy,
    .silk-home__survey-stage--modal .silk-home__option-grid.silk-home__option-grid--survey-cards-two,
    .silk-home__survey-stage--modal .silk-home__option-grid.silk-home__option-grid--survey-cards-three {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-illustration-grid {
        gap: 10px;
        max-width: 100%;
    }

    .silk-home__survey-illustration-card {
        border-radius: 18px;
        gap: 10px;
        min-height: 158px;
        padding: 12px 10px 10px;
    }

    .silk-home__survey-illustration-tile {
        border-radius: 14px;
        height: 60px;
        width: 60px;
    }

    .silk-home__survey-illustration-icon {
        height: 34px;
        width: 34px;
    }

    .silk-home__survey-illustration-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .silk-home__survey-illustration-description {
        font-size: 12px;
        line-height: 1.38;
    }

    .silk-home__survey-illustration-card .silk-home__selection-check {
        right: 10px;
        top: 10px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--survey-card,
    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--placement-scene {
        --survey-answer-hover-background: #fff;
        --survey-answer-hover-border: #607264;
        --survey-answer-hover-shadow: 0 8px 16px rgba(96, 114, 100, .10);
        --survey-answer-hover-transform: scale(1.006);
        --survey-answer-hover-color: #1F231F;
        --survey-answer-selected-background: #607264;
        --survey-answer-selected-border: #607264;
        --survey-answer-selected-shadow: 0 12px 22px rgba(56, 71, 59, .18);
        --survey-answer-selected-transform: scale(1.01);
        --survey-answer-selected-color: #FBFBFA;
        background: #FFFFFF;
        border: 1px solid #E7E3DC;
        border-radius: 18px !important;
        box-sizing: border-box;
        box-shadow: none;
        grid-template-rows: 88px 18px auto !important;
        min-height: 142px !important;
        overflow: hidden;
        transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
        width: 100% !important;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--survey-card-no-swatches,
    .silk-home__survey-stage--modal .silk-home__style-option.silk-home__style-option--placement-scene {
        grid-template-rows: 88px auto !important;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-image,
    .silk-home__survey-stage--modal .silk-home__style-option--placement-scene .silk-home__style-image--placement-scene {
        aspect-ratio: auto;
        border-radius: 18px 18px 0 0 !important;
        height: 88px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-swatches {
        border-bottom: 0;
        display: grid;
        height: 18px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-copy,
    .silk-home__survey-stage--modal .silk-home__style-option--placement-scene .silk-home__style-copy--placement-scene {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 34px;
        padding: 8px 6px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option--survey-card .silk-home__style-title,
    .silk-home__survey-stage--modal .silk-home__style-option--placement-scene .silk-home__style-title--placement-scene {
        font-family: Inter, Arial, sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        text-wrap: balance;
        white-space: normal;
    }

    .silk-home__survey-block--gallery .silk-home__style-option {
        aspect-ratio: auto;
        grid-template-rows: 88px 18px auto;
        min-height: 142px;
    }

    .silk-home__survey-block--gallery .silk-home__style-image {
        aspect-ratio: auto;
        height: 88px;
    }

    .silk-home__survey-block--gallery .silk-home__style-swatches {
        display: grid;
    }

    .silk-home__survey-block--gallery .silk-home__style-copy {
        display: flex;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) {
        background: #fff;
        border-color: #607264;
        box-shadow: 0 8px 16px rgba(96, 114, 100, .10);
        color: #1F231F;
        transform: scale(1.006);
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card.is-selected {
        background: #607264;
        background-color: #607264 !important;
        border-color: #607264;
        border-width: 2px;
        box-shadow: 0 12px 22px rgba(56, 71, 59, .18);
        color: #FBFBFA !important;
        transform: scale(1.01);
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__style-title,
    .silk-home__survey-stage--modal .silk-home__survey-answer-card:hover:not(.is-selected) .silk-home__importance-label {
        color: #1F231F;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-card.is-selected .silk-home__style-title,
    .silk-home__survey-stage--modal .silk-home__survey-answer-card.is-selected .silk-home__importance-label {
        color: #FBFBFA;
        font-weight: 700;
    }

    .silk-home__survey-stage--modal .silk-home__selection-check,
    .silk-home__survey-stage--modal .silk-home__importance-check {
        right: 10px;
        top: 10px;
    }

    .silk-home__survey-stage--modal .silk-home__style-option.is-selected .silk-home__selection-check,
    .silk-home__survey-stage--modal .silk-home__importance-check.is-selected,
    .silk-home__survey-stage--modal .silk-home__importance-card.is-selected .silk-home__importance-check {
        background: #607264;
        border-color: #607264;
        box-shadow: none;
    }

    .silk-home__survey-stage--modal .silk-home__survey-answer-check::after {
        content: "";
    }

    .silk-home__survey-stage--modal .silk-home__survey-block--importance .silk-home__importance-grid,
    .silk-home__survey-stage--modal .silk-home__survey-block--perspective-pills .silk-home__importance-grid {
        gap: 8px 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .silk-home__survey-stage--modal .silk-home__importance-card {
        align-items: center;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 72px;
        padding: 8px 10px 8px 12px;
    }

    .silk-home__survey-stage--modal .silk-home__importance-check {
        align-self: center;
        background: #fff;
        border: 1px solid #607264;
        border-radius: 8px;
        box-sizing: border-box;
        color: transparent;
        display: inline-flex;
        flex: 0 0 auto;
        height: 18px;
        justify-self: end;
        left: auto;
        order: 2;
        position: relative;
        right: auto;
        top: auto;
        transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
        width: 18px;
    }

    .silk-home__survey-stage--modal .silk-home__importance-check::after {
        content: "";
    }

    .silk-home__survey-stage--modal .silk-home__importance-card:hover:not(.is-selected) .silk-home__importance-check,
    .silk-home__survey-stage--modal .silk-home__importance-card:focus-visible .silk-home__importance-check {
        background: #fff;
        border-color: #607264;
        box-shadow: none;
    }

    .silk-home__survey-modal-footer,
    .silk-home__survey-footer {
        background: #FBFAF7;
        bottom: 0;
        display: grid;
        gap: 12px;
        grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
        left: 0;
        margin-top: 0;
        padding: 12px 0 0;
        position: sticky;
        overflow: visible;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary,
    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary,
    .silk-home__survey-footer .silk-home__survey-nav-button,
    .silk-home__survey-footer .silk-home__email-soft-close-button,
    .silk-home__survey-footer .silk-home__survey-submit-button {
        width: 100%;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary {
        background: #fffdf9;
        border-color: rgba(219, 211, 200, .96);
        border-radius: 14px;
        color: #7d7468;
        justify-self: stretch;
        min-height: 44px;
        min-width: 0;
        opacity: 1;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary,
    .silk-home__survey-footer .silk-home__email-soft-close-button,
    .silk-home__survey-footer .silk-home__survey-submit-button {
        background: #E1E4DD;
        border: 1px solid #E1E4DD;
        border-radius: 14px;
        color: rgba(96, 114, 100, .45);
        font-size: 16px;
        font-weight: 700;
        justify-self: stretch;
        min-height: 44px;
        min-width: 0;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:not(:disabled) {
        background: #607264;
        border-color: #607264;
        color: #FFFFFF;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary:hover:not(:disabled),
    .silk-home__survey-modal-footer .silk-home__survey-nav-button--secondary:focus-visible:not(:disabled) {
        background: rgba(96, 114, 100, .08);
        border-color: rgba(96, 114, 100, .32);
        color: #607264;
        transform: none;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:hover:not(:disabled),
    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:focus-visible:not(:disabled),
    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:active:not(:disabled) {
        background: #556756;
        border-color: #556756;
        color: #FFFFFF;
        transform: none;
    }

    .silk-home__survey-modal-footer .silk-home__survey-nav-button--primary:disabled {
        background: #D3DCCF;
        border-color: #D3DCCF;
        color: rgba(96, 114, 100, .82);
        opacity: 1;
        transform: none;
    }

    .silk-home__mobile-note,
    .silk-home__survey-submit-note,
    .silk-home__email-soft-close-copy .silk-home__email-soft-close-privacy {
        color: var(--bb-muted);
    }

    .silk-home__gift {
        background: var(--bb-card);
        border: 1px solid var(--bb-border);
        border-radius: 18px;
        box-shadow: none;
        padding: 20px;
    }

    .silk-home__gift p,
    .silk-home__card-body p,
    .silk-home__survey-benefit-card p {
        font-size: var(--fs-body-sm);
        line-height: var(--lh-body-compact);
    }

    .silk-home__button,
    .silk-unsubscribe__submit,
    .silk-home__survey-nav-button,
    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button,
    .silk-home__survey-slidein-primary,
    .silk-home__survey-popup-mobile-button,
    .silk-home__footer-signup button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        align-items: center;
        border-radius: 14px;
        font-family: var(--font-body);
        font-size: var(--fs-button);
        font-weight: 600;
        gap: 10px;
        justify-content: center;
        letter-spacing: 0;
        line-height: var(--lh-button);
        min-height: 56px;
        padding: 0 20px;
        text-align: center;
        text-decoration: none;
        text-transform: none;
        width: 100%;
    }

    .silk-home__nav-cta,
    .silk-home__footer-signup button {
        font-size: var(--fs-body-sm);
        line-height: var(--lh-button);
    }

    .silk-home__survey-submit-button {
        min-height: 68px;
    }

    .silk-home__survey-nav-button {
        font-weight: 500;
    }

    .silk-home__survey-nav-button--primary,
    .silk-home__survey-submit-button {
        font-weight: 600;
    }

    .silk-home__button span,
    .silk-home__survey-nav-button span,
    .silk-home__survey-submit-button span,
    .silk-home__email-soft-close-button span,
    .silk-home__survey-slidein-primary span,
    .silk-home__survey-popup-mobile-button span,
    .silk-home__footer-signup button span {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        transform: none;
    }

    .silk-home__button--dark,
    .silk-home__button--dark:link,
    .silk-home__button--dark:visited,
    .silk-unsubscribe__submit,
    .silk-unsubscribe__submit:link,
    .silk-unsubscribe__submit:visited,
    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button,
    .silk-home__survey-slidein-primary,
    .silk-home__footer-signup button {
        background: var(--bb-green);
        border: 1px solid var(--bb-green);
        color: var(--bb-white);
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-button {
        background: #c96f72;
        border-color: #c96f72;
        color: #fbfbfa;
    }

    .silk-home__button--dark:hover,
    .silk-home__button--dark:focus,
    .silk-unsubscribe__submit:hover,
    .silk-unsubscribe__submit:focus,
    .silk-home__survey-submit-button:hover,
    .silk-home__survey-submit-button:focus,
    .silk-home__email-soft-close:not(.is-newsletter) .silk-home__email-soft-close-button:hover,
    .silk-home__email-soft-close:not(.is-newsletter) .silk-home__email-soft-close-button:focus,
    .silk-home__survey-slidein-primary:hover,
    .silk-home__survey-slidein-primary:focus,
    .silk-home__footer-signup button:hover,
    .silk-home__footer-signup button:focus {
        background: var(--bb-green-hover);
        border-color: var(--bb-green-hover);
    }

    .silk-home__survey-slidein .silk-home__survey-slidein-primary {
        background: var(--bb-green);
        border: 1px solid var(--bb-green);
        border-radius: 14px;
        box-shadow: none;
        font-size: var(--fs-button);
        font-weight: 600;
        line-height: var(--lh-button);
        min-height: 56px;
        padding: 0 20px;
    }

    .silk-home__survey-slidein .silk-home__survey-slidein-primary:hover,
    .silk-home__survey-slidein .silk-home__survey-slidein-primary:focus {
        background: var(--bb-green-hover);
        border-color: var(--bb-green-hover);
    }

    .silk-home__survey-slidein .silk-home__survey-slidein-primary span {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        transform: translateY(1px);
    }

    .silk-home__button--secondary,
    .silk-home__button--secondary:link,
    .silk-home__button--secondary:visited,
    .silk-home__survey-nav-button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        background: #fbfbfa;
        border: 1px solid var(--bb-border);
        box-shadow: none;
        color: var(--bb-text);
    }

    .silk-home__button--secondary:hover,
    .silk-home__button--secondary:focus,
    .silk-home__survey-nav-button:hover,
    .silk-home__survey-nav-button:focus,
    .silk-home__privacy-modal-link:hover,
    .silk-home__privacy-modal-link:focus {
        background: var(--bb-soft);
        border-color: var(--bb-border);
        color: var(--bb-text);
    }

    .silk-home__seal {
        background: var(--bb-green);
        height: 96px;
        width: 96px;
    }

    .silk-home__survey-benefit-card,
    .silk-home__survey-editorial-vip,
    .silk-home__info-bar-item {
        background: var(--bb-card);
        border: 1px solid var(--bb-border);
        border-radius: 18px;
        box-shadow: none;
    }

    .silk-home__collection,
    .silk-home__behind {
        padding-left: 24px;
        padding-right: 24px;
    }

    .silk-home__collection-header,
    .silk-home__behind-intro {
        margin-bottom: 24px;
    }

    .silk-home__section-intro {
        margin-bottom: 26px;
    }

    .silk-home__hero-image {
        min-height: 320px;
    }

    .silk-home__hero-copy {
        border-radius: 28px 28px 0 0;
        margin: -36px 16px 0;
        padding: 32px 22px 34px;
    }

    .silk-home__mobile-copy .silk-home__hero-actions {
        gap: 12px;
        margin-top: 22px;
    }

    .silk-home__mobile-body p {
        margin-bottom: 12px;
    }

    .silk-home__mobile-note {
        font-size: 14px;
        line-height: 1.45;
    }
}

@media (max-width: 374px) {
    .silk-home h1 {
        font-size: var(--fs-hero);
        line-height: var(--lh-heading-tight);
    }

    .silk-home__hero-image {
        min-height: 300px;
    }

    .silk-home__hero-copy {
        border-radius: 24px 24px 0 0;
        margin: -32px 14px 0;
        padding: 30px 20px 32px;
    }

    .silk-home__eyebrow {
        font-size: 12px;
        letter-spacing: .18em;
    }

    .silk-home__seal {
        height: 88px;
        left: 20px;
        width: 88px;
    }

    .silk-home__button,
    .silk-home__survey-nav-button,
    .silk-home__survey-submit-button,
    .silk-home__email-soft-close-button,
    .silk-home__survey-slidein-primary,
    .silk-home__survey-popup-mobile-button,
    .silk-home__footer-signup button,
    .silk-home__privacy-modal-link,
    .silk-home__privacy-modal-link:link,
    .silk-home__privacy-modal-link:visited {
        font-size: var(--fs-button);
        min-height: 54px;
    }
}

/* Authoritative mobile home rules: keep this block last so it wins mobile cascade. */
@media (max-width: 767px) {
    #blijf-op-de-hoogte.silk-home__email-soft-close-wrap {
        left: auto;
        margin-left: 0;
        margin-right: 0;
        right: auto;
        width: 100%;
    }

    #blijf-op-de-hoogte > .silk-home__info-bar {
        display: none;
    }

    .silk-home .silk-home__hero-title,
    .silk-home .hero-reveal--title {
        font-family: var(--font-heading);
        font-size: 34px;
        font-weight: 400;
        letter-spacing: var(--ls-hero);
        line-height: var(--lh-heading-tight);
        margin: 0 0 10px;
    }

    .silk-home__hero-copy .silk-home__hero-title {
        max-width: none;
        width: auto;
    }

    .silk-home__hero-copy .silk-home__hero-title .silk-home__hero-title-line {
        display: block;
    }

    .silk-home__collection-intro h2,
    .silk-home .silk-home__survey-editorial-title,
    #behind-title,
    #email-soft-close-title {
        font-family: var(--font-heading);
        font-size: var(--fs-section);
        font-weight: 400;
        letter-spacing: var(--ls-heading);
        line-height: var(--lh-heading);
    }

    .silk-home .hero-eyebrow,
    .silk-home .eyebrow,
    .silk-home .silk-home__eyebrow {
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: .18em;
        margin: 0 0 12px;
        text-align: justify;
        text-align-last: justify;
        white-space: normal;
        width: 100%;
    }

    .silk-home .silk-home__eyebrow::after {
        content: "";
        display: inline-block;
        width: 100%;
    }

    .silk-home__hero-copy .silk-home__desktop-copy > .silk-home__eyebrow {
        color: #b69b74;
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .silk-home__behind-intro .silk-home__eyebrow {
        color: #b69b74;
        font-family: var(--font-body);
        font-size: var(--fs-label);
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        margin: 0 0 14px;
        text-align: left;
        text-align-last: auto;
        text-transform: uppercase;
        white-space: nowrap;
        width: auto;
    }

    .silk-home__behind-intro .silk-home__eyebrow::after {
        content: none;
    }

    .silk-home__founder {
        padding: 40px 20px 34px;
    }

    .silk-home__founder-heading {
        text-align: center;
    }

    .silk-home__founder-eyebrow {
        color: var(--silk-rose);
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        margin: 0 0 8px;
        text-align: center;
        text-align-last: auto;
        text-transform: uppercase;
        white-space: nowrap;
        width: auto;
    }

    .silk-home__founder-eyebrow::after {
        content: none;
    }

    .silk-home .silk-home__founder-title {
        font-size: clamp(44px, 11vw, 50px);
        line-height: .94;
        margin: 0 0 18px;
        text-align: center;
    }

    .silk-home__founder-media {
        display: none;
        justify-content: center;
        padding-top: 0;
    }

    .silk-home__founder-media img {
        height: 72px;
        width: 72px;
    }

    .silk-home__founder-content {
        width: 100%;
    }

    .silk-home__founder-title--desktop,
    .silk-home__founder-copy--desktop,
    .silk-home__founder-outro--desktop {
        display: none;
    }

    .silk-home__founder-title--mobile,
    .silk-home__founder-intro-row,
    .silk-home__founder-copy--mobile,
    .silk-home__founder-outro--mobile {
        display: block;
    }

    .silk-home__founder-intro-row {
        align-items: end;
        column-gap: 16px;
        display: grid;
        grid-template-areas:
            "media title"
            "intro intro";
        grid-template-columns: 72px minmax(0, 1fr);
        margin-bottom: 1px;
        row-gap: 9px;
    }

    .silk-home__founder-intro-media {
        grid-area: media;
    }

    .silk-home__founder-intro-media img {
        aspect-ratio: 1;
        border-radius: 50%;
        display: block;
        height: 72px;
        object-fit: cover;
        width: 72px;
    }

    .silk-home__founder-intro-copy {
        display: contents;
        min-width: 0;
    }

    .silk-home .silk-home__founder-title {
        font-size: 30px;
        line-height: .96;
        margin: 0;
    }

    .silk-home .silk-home__founder-title--mobile {
        grid-area: title;
        align-self: end;
        justify-self: stretch;
        margin-left: 0;
        text-align: left;
        width: 100%;
    }

    .silk-home .silk-home__founder-title--mobile .silk-home__founder-title-line {
        display: block;
    }

    .silk-home__founder-copy,
    .silk-home__founder-outro,
    .silk-home__founder-highlight {
        font-size: 14px;
        line-height: var(--lh-body);
        max-width: 100%;
        text-align: left;
        width: 100%;
    }

    .silk-home__founder-intro-copy p,
    .silk-home__founder-copy p,
    .silk-home__founder-outro p {
        margin: 0 0 9px;
    }

    .silk-home__founder-intro-copy p {
        grid-area: intro;
        margin-top: 11px;
        text-align: left;
    }

    .silk-home__founder-highlight {
        font-size: 18px;
        margin: 10px 0;
    }

    .silk-home__founder-social-card {
        grid-template-columns: 16px minmax(0, 1fr);
        margin-top: 10px;
        max-width: none;
        padding: 14px;
        width: 100%;
    }

    .silk-home__founder-social-icons {
        gap: 10px;
        justify-content: center;
        margin-top: 12px;
    }

    .silk-home__founder-social-link {
        border-radius: 12px;
        height: 36px;
        width: 36px;
    }

    .silk-home__founder-social-link svg {
        height: 13px;
        width: 13px;
    }

    .silk-home__founder-social-link--facebook svg {
        height: 14px;
        width: 14px;
    }

    .silk-home__founder-social-link--instagram svg {
        height: 13px;
        width: 13px;
    }

    .silk-home__founder-social-link--pinterest svg {
        height: 13px;
        width: 13px;
    }

    .silk-home__founder-social-link--tiktok svg {
        height: 14px;
        width: 14px;
    }

    .silk-home__founder-social-title {
        font-size: 14px;
    }

    .silk-home__founder-social-body {
        font-size: 13px;
        line-height: 1.45;
    }

    .silk-home__behind {
        gap: 0;
    }

    .silk-home__behind-intro {
        padding-bottom: 0;
    }

    .silk-home__behind-intro #behind-title {
        color: #242424;
        margin: 0 0 18px;
        max-width: 280px;
    }

    .silk-home__behind-intro .silk-home__behind-accent {
        background: rgba(204, 127, 130, .32);
        height: 2px;
        margin-bottom: 24px;
        width: 64px;
    }

    .silk-home__hero-copy .silk-home__mobile-copy > .silk-home__eyebrow {
        font-size: 12px;
        letter-spacing: var(--ls-label);
        line-height: var(--lh-label);
        margin-bottom: 7px;
        text-align: left;
        text-align-last: auto;
        white-space: nowrap;
        width: auto;
    }

    .silk-home__hero-copy .silk-home__mobile-copy > .silk-home__eyebrow::after {
        content: none;
    }

    .silk-home__hero-copy > .botanical-watermark {
        display: none;
    }

    .silk-home__hero-copy {
        border-radius: 26px 26px 0 0;
        margin: 0 16px 0;
        padding: 22px 18px 18px;
        z-index: 4;
    }

    .silk-home__hero-image {
        min-height: 300px;
        overflow: hidden;
        z-index: 5;
    }

    .silk-home__hero-image-media {
        height: calc(100% + 10px);
        margin-bottom: -10px;
    }

    .silk-home__hero-image-media img {
        object-position: 60% 35%;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-shell {
        background:
            linear-gradient(
                180deg,
                #88937f 0%,
                #88937f 12%,
                #8d9885 26%,
                #93a089 42%,
                #84917c 70%,
                #7b8775 100%
            );
        margin-top: 0;
        padding: 46px 32px 36px;
        position: relative;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-shell::before {
        content: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close.is-newsletter .silk-home__email-soft-close-card {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        position: static;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-card-shell {
        gap: 14px;
        grid-template-columns: minmax(0, 1fr);
        margin: 0 auto;
        max-width: none;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-copy {
        gap: 12px;
        padding: 0;
        width: 100%;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-kicker {
        margin: 0;
    }

    #blijf-op-de-hoogte #email-soft-close-title {
        margin: 0;
        max-width: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-copy > p:not(.silk-home__email-soft-close-script) {
        font-size: var(--fs-body);
        line-height: var(--lh-body);
        margin: 0;
        max-width: none;
        overflow: visible;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-benefits {
        display: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-visual {
        display: block;
        gap: 0;
        min-height: 0;
        overflow: visible;
        position: static;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-visual::after {
        display: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-visual img {
        display: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-actions {
        gap: 14px;
        padding: 0;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-form {
        gap: 12px;
        margin-top: 2px;
        width: 100%;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-field {
        width: 100%;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-form input,
    #blijf-op-de-hoogte .silk-home__email-soft-close-button {
        border-radius: 18px;
        min-height: 58px;
        width: 100%;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-form input {
        background: rgba(251, 251, 250, .98);
        border: 1px solid rgba(255, 255, 255, .42);
        box-shadow: 0 12px 28px rgba(51, 60, 49, .12);
        color: #242424;
        padding: 0 20px;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-label {
        left: 20px;
        top: 50%;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-button {
        background: #607264;
        border-color: #607264;
        box-shadow: 0 12px 22px rgba(96, 114, 100, .22);
        gap: 10px;
        padding: 0 20px;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-form:focus-within .silk-home__email-soft-close-button {
        box-shadow: 0 16px 27px rgba(96, 114, 100, .25);
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-button span[aria-hidden="true"] {
        align-items: center;
        display: inline-flex;
        font-size: 16px;
        line-height: 1;
        transform: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-privacy {
        color: rgba(251, 251, 250, .8);
        font-size: 12px;
        gap: 8px;
        grid-template-columns: 16px minmax(0, 1fr);
        line-height: 1.45;
        margin: 0;
        max-width: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-botanical {
        display: none;
    }

    .silk-home__mobile-copy {
        display: grid;
        gap: 10px;
    }

    .silk-home__mobile-copy .silk-home__hero-actions {
        gap: 14px;
        grid-template-columns: minmax(0, 1fr);
        margin-top: 20px;
        width: 100%;
    }

    .silk-home .silk-home__button,
    .silk-home__mobile-copy .silk-home__button,
    .silk-home__hero-actions .silk-home__button {
        min-height: 54px;
        border-radius: 14px;
        padding: 0 18px;
        font-size: var(--fs-button);
        line-height: var(--lh-button);
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__hero-primary-mobile {
        font-family: var(--font-body);
        font-size: var(--fs-button);
        font-weight: 600;
        letter-spacing: 0;
        line-height: var(--lh-button);
        min-height: 56px;
        text-transform: none;
        width: 100%;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__hero-link-mobile,
    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__hero-link-mobile:link,
    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__hero-link-mobile:visited {
        align-self: center;
        background: none;
        border: 0;
        box-shadow: none;
        color: #607264;
        display: inline-flex;
        font-family: Inter, Arial, sans-serif;
        font-size: 16px;
        font-weight: 500;
        justify-content: center;
        letter-spacing: 0;
        line-height: 1.2;
        margin-top: 0;
        min-height: 0;
        padding: 0;
        text-decoration: none;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__hero-link-mobile:hover,
    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__hero-link-mobile:focus {
        color: #607264;
        text-decoration: none;
    }

    .silk-home__hero-actions .silk-home__button--secondary,
    .silk-home__hero-actions .silk-home__button--secondary:link,
    .silk-home__hero-actions .silk-home__button--secondary:visited {
        font-weight: 500;
    }

    .silk-unsubscribe .silk-unsubscribe__submit,
    .silk-unsubscribe .silk-unsubscribe__submit:link,
    .silk-unsubscribe .silk-unsubscribe__submit:visited {
        background: #607264;
        border: 1px solid #607264;
        border-radius: 14px;
        color: #fbfbfa;
        min-height: 54px;
    }

    .silk-unsubscribe .silk-unsubscribe__submit:hover,
    .silk-unsubscribe .silk-unsubscribe__submit:focus {
        background: #738576;
        border-color: #738576;
        color: #fbfbfa;
    }

    .silk-home .silk-home__button span,
    .silk-home__mobile-copy .silk-home__button span {
        font: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        transform: none;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__mobile-body {
        color: var(--bb-text) !important;
        font-family: var(--font-body) !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        line-height: var(--lh-body) !important;
        max-width: none;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__mobile-body p,
    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__mobile-body p + p {
        font-family: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        letter-spacing: inherit !important;
        line-height: inherit !important;
        margin: 0;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__script--mobile {
        font-size: 20px;
        line-height: 1.1;
        margin: 0;
    }

    .silk-home__gift--mobile {
        align-items: center;
        background: var(--bb-card);
        border: 1px solid var(--bb-border);
        border-radius: 18px;
        box-shadow: none;
        display: flex;
        gap: 10px;
        margin: 18px 0 0;
        max-width: none;
        padding: 10px 14px;
    }

    .silk-home__gift--mobile span {
        align-items: center;
        background: var(--silk-rose);
        border-radius: 50%;
        color: #fbfbfa;
        display: inline-flex;
        flex: 0 0 52px;
        font-size: 12px;
        font-weight: 600;
        height: 52px;
        justify-content: center;
        letter-spacing: -.01em;
        line-height: 1.2;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__gift--mobile p {
        color: var(--bb-text);
        font-family: var(--font-body);
        font-size: 13px !important;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.4 !important;
        margin: 0;
    }

    .silk-home__gift--mobile p strong {
        font-weight: 700;
    }

    .silk-home__mobile-note,
    .silk-home__section-intro,
    .silk-home__behind-copy,
    .silk-home__info-bar-copy p {
        font-size: var(--fs-body-lg);
        line-height: var(--lh-body);
    }

    .silk-home__collection-intro > .silk-home__section-intro.silk-home__mobile-copy {
        font-size: 14px;
        line-height: var(--lh-body);
        margin-bottom: 10px;
    }

    .silk-home__collection-header {
        gap: 8px;
        margin-bottom: 8px;
    }

    .silk-home__behind-intro .silk-home__behind-copy {
        color: #6d6d6d;
        font-family: var(--font-body);
        font-size: var(--fs-body-lg);
        font-weight: 400;
        letter-spacing: 0;
        line-height: var(--lh-body);
        margin: 0 0 8px;
        max-width: 300px;
    }

    .silk-home__behind-card-copy {
        background: transparent;
        border-top: 0;
        min-height: auto;
        padding: 18px 14px 14px;
    }

    .silk-home__behind-card-copy h3 {
        margin-bottom: 11px;
    }

    .silk-home__behind-card-copy p {
        margin: 0;
    }

    .silk-home__hero-copy .silk-home__mobile-copy .silk-home__mobile-note {
        color: var(--bb-muted) !important;
        font-family: var(--font-body) !important;
        font-size: var(--fs-body-lg) !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        line-height: var(--lh-body) !important;
        margin-top: 0;
        max-width: none;
        display: none;
    }

    .silk-home__survey-slidein .silk-home__survey-slidein-primary {
        background: #c96f72;
        border-color: #c96f72;
        box-shadow: 0 10px 20px rgba(191, 141, 144, .16);
        color: #fbfbfa;
    }

    .silk-home__survey-slidein .silk-home__survey-slidein-primary:hover,
    .silk-home__survey-slidein .silk-home__survey-slidein-primary:focus {
        background: #bb6369;
        border-color: #bb6369;
        color: #fbfbfa;
    }

    .silk-home .silk-home__seal,
    .silk-home__seal {
        width: 76px;
        height: 76px;
        left: auto;
        right: 20px;
        bottom: 20px;
        gap: 2px;
        font-size: 9.2px;
        line-height: 1.02;
        padding: 8px 7px 7px;
        transform: rotate(15deg);
        z-index: 6;
    }

    .silk-home .silk-home__seal-icon,
    .silk-home__seal-icon {
        color: transparent;
        font-size: 0;
        line-height: 1;
        text-shadow: none;
        transform: none;
        order: -1;
    }

    .silk-home .silk-home__seal-icon::before,
    .silk-home__seal-icon::before {
        color: var(--silk-gold);
        content: "♥";
        display: block;
        font-size: 11px;
        line-height: 1;
    }

.silk-home .silk-home__seal-text,
.silk-home__seal-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 2.04;
    max-width: 100%;
    text-align: center;
    transform: none;
}
}

@media (min-width: 900px) {
    .silk-home__preference {
        padding-bottom: 0;
        padding-inline: clamp(64px, 8vw, 128px);
        padding-top: 51px;
    }

    .silk-home__preference-shell {
        max-width: 1480px;
    }

    .silk-home__preference-panel {
        margin-inline: auto;
        max-width: 1480px;
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .silk-home__preference {
        padding-bottom: 26px;
        padding-top: 51px;
    }
}

/* Storefront source of truth: shop/product typography overrides above legacy template rules. */
.silk-catalog-overlay .title-flower h1,
.silk-product-detail-overlay .related h1,
.silk-product-detail-overlay .product-detail .detail h1 {
    color: #242424;
    font-family: var(--font-heading);
    font-size: var(--fs-section);
    font-weight: 400;
    letter-spacing: var(--ls-heading);
    line-height: var(--lh-heading);
}

.silk-catalog-overlay .title-flower p,
.silk-product-detail-overlay .silk-detail-copy .p1 {
    color: #6d6d6d;
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
}

.silk-catalog-overlay .product-title-flower .p-title {
    font-family: var(--font-body);
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-card-title);
}

.silk-product-detail-overlay .product-text .tab-content p {
    color: #6d6d6d;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--lh-body);
}

.silk-product-detail-overlay .silk-product-type,
.silk-product-detail-overlay .product-detail .detail .prince,
.silk-product-detail-overlay .product-detail .detail .fi-option .option,
.silk-product-detail-overlay .product-detail .detail .add-cart .btn-add-cart,
.silk-product-detail-overlay .product-detail .detail .add-cart .list-icon,
.silk-product-detail-overlay .product-text .nav-tabs li a {
    font-family: var(--font-body);
}

.silk-product-detail-overlay .silk-product-type,
.silk-product-detail-overlay .product-detail .detail .prince,
.silk-product-detail-overlay .product-detail .detail .fi-option .option {
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: var(--ls-label);
    line-height: var(--lh-label);
    text-transform: uppercase;
}

.silk-product-detail-overlay .product-detail .detail .add-cart .btn-add-cart {
    font-size: var(--fs-button);
    font-weight: 600;
    letter-spacing: 0;
    line-height: var(--lh-button);
    text-transform: none;
}

@media (max-width: 991px) {
    .silk-catalog-overlay .title-flower h1,
    .silk-product-detail-overlay .related h1,
    .silk-product-detail-overlay .product-detail .detail h1 {
        font-size: var(--fs-section);
        line-height: var(--lh-heading);
    }

    .silk-catalog-overlay .title-flower p,
    .silk-product-detail-overlay .silk-detail-copy .p1 {
        font-size: var(--fs-body-lg);
        line-height: var(--lh-body);
    }

    .silk-catalog-overlay .product-title-flower .p-title {
        font-size: var(--fs-card-title);
        line-height: var(--lh-card-title);
    }

    .silk-product-detail-overlay .product-text .tab-content p {
        font-size: var(--fs-body);
        line-height: var(--lh-body);
    }

    .silk-product-detail-overlay .product-detail .detail .add-cart .btn-add-cart {
        font-size: var(--fs-button);
    }
}

.silk-home .silk-home__cta-premium {
    --silk-cta-base-shadow: 0 12px 22px rgba(96, 114, 100, .22);
    --silk-cta-hover-shadow: 0 16px 27px rgba(96, 114, 100, .25);
    --silk-cta-active-shadow: 0 9px 15px rgba(96, 114, 100, .18);
    --silk-cta-overlay: rgba(255, 255, 255, .04);
    -webkit-tap-highlight-color: transparent;
    box-shadow: var(--silk-cta-base-shadow);
    isolation: isolate;
    overflow: hidden;
    position: relative;
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out;
}

.silk-home .silk-home__cta-premium::before {
    background: var(--silk-cta-overlay);
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 180ms ease-out;
    z-index: 0;
}

.silk-home .silk-home__cta-premium > span {
    position: relative;
    z-index: 1;
}

.silk-home .silk-home__cta-premium-arrow {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 1ch;
    transform: translateX(0);
    transition: transform 180ms ease-out;
}

.silk-home .silk-home__nav-cta.silk-home__cta-premium {
    --silk-cta-base-shadow: 0 14px 26px rgba(204, 127, 130, .18);
    --silk-cta-hover-shadow: 0 18px 31px rgba(204, 127, 130, .21);
    --silk-cta-active-shadow: 0 11px 18px rgba(204, 127, 130, .16);
}

.silk-home .silk-home__button--dark.silk-home__cta-premium,
.silk-home .silk-home__survey-nav-button--primary.silk-home__cta-premium,
.silk-home .silk-home__footer-signup button.silk-home__cta-premium {
    --silk-cta-base-shadow: 0 14px 26px rgba(204, 127, 130, .18);
    --silk-cta-hover-shadow: 0 18px 31px rgba(204, 127, 130, .21);
    --silk-cta-active-shadow: 0 11px 18px rgba(204, 127, 130, .16);
}

.silk-home .silk-home__email-soft-close-button.silk-home__cta-premium {
    --silk-cta-base-shadow: 0 12px 22px rgba(96, 114, 100, .22);
    --silk-cta-hover-shadow: 0 16px 27px rgba(96, 114, 100, .25);
    --silk-cta-active-shadow: 0 9px 15px rgba(96, 114, 100, .18);
}

.silk-home .silk-home__email-soft-close.is-vip .silk-home__email-soft-close-button.silk-home__cta-premium {
    --silk-cta-base-shadow: 0 18px 32px rgba(20, 22, 18, .18);
    --silk-cta-hover-shadow: 0 22px 37px rgba(20, 22, 18, .21);
    --silk-cta-active-shadow: 0 14px 24px rgba(20, 22, 18, .16);
    --silk-cta-overlay: rgba(255, 255, 255, .03);
}

.silk-home .silk-home__survey-slidein-primary.silk-home__cta-premium {
    --silk-cta-base-shadow: 0 10px 20px rgba(163, 92, 92, .14);
    --silk-cta-hover-shadow: 0 13px 24px rgba(163, 92, 92, .17);
    --silk-cta-active-shadow: 0 8px 15px rgba(163, 92, 92, .12);
}

.silk-home .silk-home__cta-premium:focus-visible {
    outline: 2px solid rgba(96, 114, 100, .34);
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .silk-home .silk-home__cta-premium:hover,
    .silk-home .silk-home__cta-premium:focus-visible {
        box-shadow: var(--silk-cta-hover-shadow);
        transform: translateY(-2px);
    }

    .silk-home .silk-home__cta-premium:hover::before,
    .silk-home .silk-home__cta-premium:focus-visible::before {
        opacity: 1;
    }

    .silk-home .silk-home__cta-premium:hover .silk-home__cta-premium-arrow,
    .silk-home .silk-home__cta-premium:focus-visible .silk-home__cta-premium-arrow {
        transform: translateX(4px);
    }

    .silk-home .silk-home__cta-premium:active {
        box-shadow: var(--silk-cta-active-shadow);
        transform: translateY(0);
    }

    .silk-home .silk-home__cta-premium:active .silk-home__cta-premium-arrow {
        transform: translateX(2px);
    }
}

@media (hover: none), (pointer: coarse) {
    .silk-home .silk-home__cta-premium:active {
        box-shadow: var(--silk-cta-active-shadow);
        transform: scale(.98);
    }

    .silk-home .silk-home__cta-premium:active::before {
        opacity: 1;
    }

    .silk-home .silk-home__cta-premium:active .silk-home__cta-premium-arrow {
        transform: translateX(3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .silk-home .silk-home__cta-premium,
    .silk-home .silk-home__cta-premium::before,
    .silk-home .silk-home__cta-premium-arrow {
        transition: none;
    }

    .silk-home .silk-home__cta-premium,
    .silk-home .silk-home__cta-premium:hover,
    .silk-home .silk-home__cta-premium:focus-visible,
    .silk-home .silk-home__cta-premium:active {
        transform: none;
    }

    .silk-home .silk-home__cta-premium::before,
    .silk-home .silk-home__cta-premium:hover::before,
    .silk-home .silk-home__cta-premium:focus-visible::before,
    .silk-home .silk-home__cta-premium:active::before {
        opacity: 0;
    }

    .silk-home .silk-home__cta-premium-arrow,
    .silk-home .silk-home__cta-premium:hover .silk-home__cta-premium-arrow,
    .silk-home .silk-home__cta-premium:focus-visible .silk-home__cta-premium-arrow,
    .silk-home .silk-home__cta-premium:active .silk-home__cta-premium-arrow {
        transform: none;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-label,
    #blijf-op-de-hoogte .silk-home__email-soft-close-form input,
    #blijf-op-de-hoogte .silk-home__email-soft-close-button {
        transition: none;
    }
}

#blijf-op-de-hoogte .silk-home__email-soft-close-form input::placeholder {
    color: transparent;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-form input:focus {
    border-color: #607264;
    box-shadow: 0 0 0 3px rgba(96, 114, 100, .08);
    outline: none;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-form:focus-within .silk-home__email-soft-close-button {
    background: #738576;
    border-color: #738576;
    box-shadow: 0 16px 27px rgba(96, 114, 100, .25);
}

#blijf-op-de-hoogte .silk-home__email-soft-close-button:disabled {
    cursor: progress;
    opacity: .86;
    transform: none;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-button:disabled:hover,
#blijf-op-de-hoogte .silk-home__email-soft-close-button:disabled:focus {
    background: #607264;
    border-color: #607264;
    box-shadow: 0 12px 22px rgba(96, 114, 100, .22);
    transform: none;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-spinner {
    animation: silk-newsletter-spinner .8s linear infinite;
    border: 2px solid rgba(251, 251, 250, .4);
    border-top-color: #fbfbfa;
    border-radius: 50%;
    display: inline-flex;
    height: 18px;
    width: 18px;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-button:focus-visible {
    background: #738576;
    border-color: #738576;
    box-shadow: 0 16px 27px rgba(96, 114, 100, .25);
}

@media (hover: hover) and (pointer: fine) {
    #blijf-op-de-hoogte .silk-home__email-soft-close-button:hover {
        background: #738576;
        border-color: #738576;
        box-shadow: 0 16px 27px rgba(96, 114, 100, .25);
        transform: translateY(-2px);
    }
}

#blijf-op-de-hoogte .silk-home__email-soft-close-button:active {
    background: #566857;
    border-color: #566857;
    box-shadow: 0 9px 15px rgba(96, 114, 100, .18);
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    #blijf-op-de-hoogte .silk-home__email-soft-close-button:hover:active {
        box-shadow: 0 9px 15px rgba(96, 114, 100, .18);
        transform: translateY(0);
    }
}

#blijf-op-de-hoogte .silk-home__email-soft-close-success--confirmed {
    color: #fbfbfa;
    display: grid;
    margin: 0;
    max-width: 34ch;
    row-gap: 0;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-success-title {
    display: block;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    text-wrap: balance;
}

#blijf-op-de-hoogte .silk-home__email-soft-close-success-body {
    color: rgba(251, 251, 250, .92);
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 35ch;
    text-wrap: balance;
}

@media (min-width: 901px) {
    #blijf-op-de-hoogte .silk-home__email-soft-close-success--confirmed {
        padding-top: 92px;
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-success-title {
        margin-bottom: clamp(64px, 5vw, 82px);
    }

    #blijf-op-de-hoogte .silk-home__email-soft-close-success-body {
        margin-bottom: 12px;
    }
}

@media (max-width: 900px) {
    #blijf-op-de-hoogte .silk-home__email-soft-close-success-body {
        font-size: var(--fs-body);
        line-height: var(--lh-body);
        max-width: none;
    }
}

@keyframes silk-newsletter-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Vraag 2 survey-modal: zachte eigenschap-cards zijn hier de bron van waarheid voor desktop en mobiel. */
.silk-home__survey-stage--modal .silk-home__survey-block--attributes .silk-home__survey-block-heading p {
    margin-bottom: 0;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-grid {
    display: grid;
    gap: 28px 32px;
    grid-template-columns: repeat(3, minmax(0, 248px));
    justify-content: center;
    margin: 18px auto 0;
    max-width: 840px;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-card {
    align-items: center;
    background: var(--survey-attribute-background);
    border: 1px solid rgba(96, 114, 100, .14);
    border-radius: 22px;
    box-shadow: none;
    box-sizing: border-box;
    color: #1F231F;
    display: grid;
    gap: 14px;
    grid-template-columns: 88px minmax(0, 1fr) 20px;
    grid-template-rows: 1fr;
    min-height: 196px;
    overflow: hidden;
    padding: 22px 20px;
    position: relative;
    text-align: left;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    width: 248px;
}

@media (hover: hover) and (pointer: fine) {
    .silk-home__survey-stage--modal .silk-home__survey-attribute-card:hover:not(.is-selected) {
        background: #fff;
        border-color: #607264;
        box-shadow: 0 14px 26px rgba(96, 114, 100, .14);
        color: #1F231F;
        transform: translateY(-2px) scale(1.006);
    }
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-card.is-selected {
    animation: silk-home-survey-card-select-pulse .22s ease;
    background: #607264;
    border: 2px solid #607264;
    box-shadow: 0 16px 28px rgba(56, 71, 59, .24);
    color: #FBFBFA;
    transform: scale(1.01);
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-card.is-selected .silk-home__survey-attribute-label {
    font-weight: 600;
    color: #FBFBFA;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-illustration {
    align-items: center;
    align-self: center;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(96, 114, 100, .12);
    border-radius: 50%;
    display: inline-flex;
    height: 84px;
    justify-content: center;
    margin-bottom: 0;
    width: 84px;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-illustration svg {
    display: block;
    height: 56px;
    width: 56px;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-label {
    align-self: center;
    color: #1F231F;
    display: block;
    font-family: "Newsreader", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.12;
    max-width: none;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-check {
    align-self: center;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(120, 126, 118, .42);
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: none;
    color: #fff;
    display: inline-flex;
    height: 22px;
    justify-self: end;
    position: relative;
    right: auto;
    top: auto;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
    width: 22px;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-check::after {
    font-size: 12px;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-card:hover:not(.is-selected) .silk-home__survey-attribute-check,
.silk-home__survey-stage--modal .silk-home__survey-attribute-card:focus-visible .silk-home__survey-attribute-check {
    background: #fff;
    border-color: rgba(79, 90, 80, .48);
    box-shadow: 0 0 0 2px rgba(96, 114, 100, .10);
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-card.is-selected .silk-home__survey-attribute-check {
    background: #FBFBFA;
    border-color: #FBFBFA;
    box-shadow: 0 0 0 2px rgba(96, 114, 100, .14);
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-helper {
    align-items: center;
    color: #607264;
    display: flex;
    font-family: "Newsreader", Georgia, serif;
    font-size: 19px;
    gap: 10px;
    justify-content: center;
    line-height: 1.2;
    margin: 10px auto 0;
    text-align: center;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-helper-icon {
    display: inline-flex;
    height: 22px;
    width: 22px;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-helper-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-helper-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.silk-home__survey-stage--modal .silk-home__survey-attribute-helper.is-pulsing {
    animation: silk-home-survey-helper-pulse .26s ease;
}

@keyframes silk-home-survey-helper-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .72;
        transform: scale(1.03);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .silk-home__survey-stage--modal .silk-home__survey-attribute-grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 14px;
        max-width: none;
    }

    .silk-home__survey-stage--modal .silk-home__survey-attribute-card {
        align-items: center;
        border-radius: 16px;
        gap: 8px;
        grid-template-columns: 40px minmax(0, 1fr) 18px;
        grid-template-rows: 1fr;
        min-height: 76px;
        padding: 10px 10px 10px 12px;
        width: 100%;
    }

    .silk-home__survey-stage--modal .silk-home__survey-attribute-illustration {
        height: 40px;
        margin-bottom: 0;
        width: 40px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-attribute-illustration svg {
        height: 26px;
        width: 26px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-attribute-label {
        align-self: center;
        font-size: 14px;
        line-height: 1.2;
        max-width: none;
    }

    .silk-home__survey-stage--modal .silk-home__survey-attribute-check {
        background: rgba(255, 255, 255, .78);
        border-radius: 8px;
        height: 18px;
        position: relative;
        right: auto;
        top: auto;
        width: 18px;
    }

    .silk-home__survey-stage--modal .silk-home__survey-attribute-helper {
        font-size: 15px;
        justify-content: flex-start;
        margin-top: 8px;
        text-align: left;
    }
}

.silk-home__signup-trap {
    height: 1px;
    left: -10000px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: auto;
    width: 1px;
}

/* Survey flow source of truth */
.silk-home__survey-flow-backdrop {
    align-items: center;
    background: rgba(27, 34, 29, .48);
    backdrop-filter: blur(10px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 1200;
}

.silk-home__survey-flow-modal {
    background: transparent;
    display: flex;
    justify-content: center;
    width: min(880px, calc(100vw - 48px));
}

.silk-home__survey-flow-shell {
    background: linear-gradient(180deg, #fdfbf7 0%, #f8f3ed 100%);
    border: 1px solid rgba(164, 177, 156, .42);
    border-radius: 28px;
    box-shadow: 0 28px 64px rgba(31, 35, 31, .18);
    box-sizing: border-box;
    color: #1f231f;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    height: min(680px, calc(100vh - 48px));
    max-width: 100%;
    overflow: hidden;
    padding: 24px 60px 40px;
    position: relative;
    width: 100%;
}

.silk-home__survey-flow-close {
    align-items: center;
    appearance: none;
    background: rgba(255, 255, 255, .76);
    border: 1.5px solid rgba(96, 114, 100, .18);
    border-radius: 999px;
    color: #607264;
    cursor: pointer;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: 28px;
    top: 24px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    width: 44px;
    z-index: 2;
}

.silk-home__survey-flow-close svg {
    display: block;
    height: 18px;
    width: 18px;
}

.silk-home__survey-flow-close path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.1;
}

.silk-home__survey-flow-progress-row,
.silk-home__survey-flow-badge-row,
.silk-home__survey-flow-title-row,
.silk-home__survey-flow-answer-row,
.silk-home__survey-flow-actions {
    margin: 0;
    width: 100%;
}

.silk-home__survey-flow-progress-row {
    padding-right: 64px;
}

.silk-home__survey-flow-progress {
    background: rgba(96, 114, 100, .12);
    border-radius: 999px;
    height: 6px;
    overflow: hidden;
    width: 100%;
}

.silk-home__survey-flow-progress span {
    background: linear-gradient(90deg, #607264 0%, #869681 100%);
    border-radius: inherit;
    display: block;
    height: 100%;
    transition: width .24s ease;
}

.silk-home__survey-flow-badge-row {
    align-items: center;
    display: flex;
    margin-top: 18px;
    min-height: 26px;
}

.silk-home__survey-flow-badge {
    align-items: center;
    background: rgba(96, 114, 100, .11);
    border: 1px solid rgba(96, 114, 100, .12);
    border-radius: 999px;
    color: #607264;
    display: inline-flex;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1;
    margin: 0;
    min-height: 24px;
    padding: 0 12px;
    text-transform: uppercase;
}

.silk-home__survey-flow-title {
    color: #1f231f;
    margin: 0;
    max-width: 640px;
    text-align: center;
}

.silk-home__survey-flow-title-row {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.silk-home__survey-flow-title-text {
    color: inherit;
    display: block;
    font-family: "Inter", Arial, sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.16;
}

.silk-home__survey-flow-title-text--desktop,
.silk-home__survey-flow-title-text--final {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.silk-home__survey-flow-title-text--mobile,
.silk-home__survey-flow-card-title--mobile {
    display: none;
}

.silk-home__survey-flow-answer-row {
    margin-top: 30px;
    min-height: 0;
}

.silk-home__survey-flow-answers-frame {
    box-sizing: border-box;
    height: 100%;
    min-height: 0;
}

.silk-home__survey-flow-answers-frame--layout-fourstack,
.silk-home__survey-flow-answers-frame--layout-stylesix {
    display: grid;
    grid-template-rows: minmax(0, 1fr);
}

.silk-home__survey-flow-answers-frame--layout-stylesix {
    align-items: stretch;
}

.silk-home__survey-flow-answer-grid {
    display: grid;
    height: 100%;
    min-height: 0;
}

.silk-home__survey-flow-answer-grid--layout-fourstack {
    align-content: space-between;
    grid-auto-rows: 80px;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 14px;
}

.silk-home__survey-flow-answer-grid--layout-stylesix {
    align-content: start;
    column-gap: 20px;
    grid-template-columns: repeat(3, 220px);
    grid-template-rows: repeat(2, 180px);
    justify-content: center;
    row-gap: 20px;
}

.silk-home__survey-flow-answer-card {
    appearance: none;
    background: #fffdfa;
    border: 1.5px solid rgba(96, 114, 100, .18);
    border-radius: 22px;
    box-shadow: 0 10px 22px rgba(82, 88, 78, .08);
    box-sizing: border-box;
    color: #1f231f;
    cursor: pointer;
    display: grid;
    min-width: 0;
    overflow: visible;
    padding: 0;
    position: relative;
    text-align: left;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
    width: 100%;
}

.silk-home__survey-flow-answer-card--layout-fourstack {
    align-items: stretch;
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-rows: 1fr;
    height: 80px;
    justify-self: center;
    max-width: 560px;
    width: min(100%, 500px);
}

.silk-home__survey-flow-answer-card--layout-stylesix {
    align-self: start;
    grid-template-rows: 130px 50px;
    height: 180px;
    justify-self: center;
    min-height: 0;
    width: 220px;
}

.silk-home__survey-flow-card-media {
    align-items: center;
    background: linear-gradient(180deg, rgba(245, 241, 236, .95) 0%, rgba(235, 242, 232, .88) 100%);
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-media {
    border-radius: 22px 0 0 22px;
    height: 100%;
    width: 80px;
}

.silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-media {
    border-radius: 22px 22px 0 0;
    min-height: 130px;
    padding: 0;
}

.silk-home__survey-flow-card-media svg {
    display: block;
    height: 46px;
    width: 46px;
}

.silk-home__survey-flow-card-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: var(--style-image-position, center);
    transform: scale(var(--style-image-scale, 1));
    width: 100%;
}

.silk-home__survey-flow-card-copy {
    align-items: center;
    display: flex;
    min-height: 0;
}

.silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-copy {
    padding: 0 54px 0 22px;
}

.silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-copy {
    height: 50px;
    justify-content: flex-start;
    padding: 0 42px 0 16px;
}

.silk-home__survey-flow-card-title {
    color: inherit;
    display: block;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.25;
}

.silk-home__survey-flow-card-title--desktop {
    display: block;
}

.silk-home__survey-flow-card-title--mobile {
    display: none;
}

.silk-home__survey-flow-check {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1.5px solid rgba(96, 114, 100, .22);
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(96, 114, 100, .12);
    color: transparent;
    display: inline-flex;
    height: 22px;
    justify-content: center;
    pointer-events: none;
    position: absolute;
    right: 16px;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
    width: 22px;
}

.silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-check {
    top: 50%;
    transform: translateY(-50%);
}

.silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-check {
    top: 14px;
}

.silk-home__survey-flow-check::after {
    content: "✓";
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.silk-home__survey-flow-answer-card.is-selected {
    background: #fffdf9;
    border-color: #607264;
    box-shadow: 0 16px 28px rgba(82, 88, 78, .14);
}

.silk-home__survey-flow-answer-card.is-selected .silk-home__survey-flow-check {
    background: #607264;
    border-color: #607264;
    box-shadow: 0 0 0 4px rgba(96, 114, 100, .11);
    color: #fff;
}

.silk-home__survey-flow-answer-card:focus-visible,
.silk-home__survey-flow-button:focus-visible,
.silk-home__survey-flow-close:focus-visible,
.silk-home__survey-flow-input:focus-visible,
.silk-home__survey-flow-textarea:focus-visible {
    outline: none;
}

.silk-home__survey-flow-answer-card:focus-visible {
    border-color: #607264;
    box-shadow: 0 0 0 4px rgba(96, 114, 100, .14), 0 18px 30px rgba(82, 88, 78, .12);
}

.silk-home__survey-flow-close:focus-visible {
    border-color: #607264;
    box-shadow: 0 0 0 4px rgba(96, 114, 100, .14);
}

@media (hover: hover) and (pointer: fine) {
    .silk-home__survey-flow-close:hover {
        border-color: rgba(96, 114, 100, .34);
        transform: translateY(-1px);
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close:hover {
        border-color: transparent;
        opacity: .65;
        transform: none;
    }

    .silk-home__survey-flow-answer-card:hover:not(.is-selected) {
        background: #fffefa;
        border-color: rgba(96, 114, 100, .34);
        box-shadow: 0 14px 24px rgba(82, 88, 78, .11);
        transform: translateY(-2px) scale(1.006);
    }

    .silk-home__survey-flow-button:hover:not(:disabled) {
        transform: translateY(-1px);
    }
}

.silk-home__survey-flow-actions {
    align-items: center;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) 192px;
    margin-top: 30px;
}

.silk-home__survey-flow-button {
    align-items: center;
    appearance: none;
    border: 1.5px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 44px;
    justify-content: center;
    line-height: 1;
    min-width: 0;
    padding: 0 22px;
    text-align: center;
    text-transform: none;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.silk-home__survey-flow-button-label--mobile {
    display: none;
}

.silk-home__survey-flow-button--primary {
    background: #607264;
    box-shadow: 0 10px 22px rgba(96, 114, 100, .18);
    color: #fff;
    grid-column: 3;
    justify-self: end;
    width: 192px;
}

.silk-home__survey-flow-button--secondary {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(96, 114, 100, .18);
    color: #607264;
    grid-column: 1;
    justify-self: start;
    width: 128px;
}

.silk-home__survey-flow-button:focus-visible {
    box-shadow: 0 0 0 4px rgba(96, 114, 100, .15);
}

.silk-home__survey-flow-button:disabled,
.silk-home__survey-flow-button[aria-disabled="true"] {
    cursor: default;
    opacity: .46;
    transform: none;
}

.silk-home__survey-flow-button--secondary.is-placeholder {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.silk-home__survey-flow-input {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid rgba(96, 114, 100, .18);
    border-radius: 18px;
    box-sizing: border-box;
    color: #1f231f;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    padding: 14px 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
}

.silk-home__survey-flow-input:focus-visible {
    border-color: #607264;
    box-shadow: 0 0 0 4px rgba(96, 114, 100, .12);
}

.silk-home__survey-flow-notes-panel {
    display: none;
}

.silk-home__survey-flow-modal.is-final-step {
    width: min(720px, calc(100vw - 48px));
}

.silk-home__survey-flow-backdrop.is-final-step {
    background: rgba(30, 32, 29, .38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-shell {
    align-items: center;
    background: #fbfbfa;
    border: 1px solid #d8d5cf;
    border-radius: 28px;
    box-shadow: 0 28px 90px rgba(30, 32, 29, .18);
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: calc(100vh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 42px 64px 38px;
    text-align: center;
}

.silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #242424;
    height: 36px;
    opacity: .9;
    right: 28px;
    top: 28px;
    width: 36px;
}

.silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close svg {
    height: 28px;
    width: 28px;
}

.silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close path {
    stroke-width: 1.8;
}

.silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-answer-row {
    margin-top: 0;
}

.silk-home__survey-flow-final-panel {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.silk-home__survey-flow-final-intro {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.silk-home__survey-flow-final-illustration-wrap {
    margin: 4px 0 28px;
    position: relative;
}

.silk-home__survey-flow-final-illustration-card {
    align-items: center;
    background: #f4f2ee;
    border: 1px solid #d8d5cf;
    border-radius: 24px;
    display: flex;
    height: 104px;
    justify-content: center;
    position: relative;
    width: 104px;
}

.silk-home__survey-flow-final-illustration-picture {
    align-items: center;
    display: flex;
    height: 98px;
    justify-content: center;
    width: 98px;
}

.silk-home__survey-flow-final-illustration-image {
    border-radius: 21px;
    display: block;
    height: 98px;
    object-fit: cover;
    width: 98px;
}

.silk-home__survey-flow-final-check-badge {
    align-items: center;
    background: #607264;
    border: 4px solid #fbfbfa;
    border-radius: 999px;
    bottom: -10px;
    color: #fbfbfa;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: -10px;
    width: 44px;
}

.silk-home__survey-flow-final-check-badge svg {
    display: block;
    height: 20px;
    width: 20px;
}

.silk-home__survey-flow-final-check-badge path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.silk-home__survey-flow-final-dot {
    background: rgba(217, 177, 170, .8);
    border-radius: 999px;
    display: block;
    height: 5px;
    position: absolute;
    width: 5px;
}

.silk-home__survey-flow-final-dot--left-top {
    left: -36px;
    top: 40px;
}

.silk-home__survey-flow-final-dot--left-mid {
    left: -50px;
    top: 66px;
}

.silk-home__survey-flow-final-dot--left-bottom {
    left: -34px;
    top: 92px;
}

.silk-home__survey-flow-final-dot--right-top {
    right: -36px;
    top: 40px;
}

.silk-home__survey-flow-final-dot--right-mid {
    right: -50px;
    top: 66px;
}

.silk-home__survey-flow-final-dot--right-bottom {
    right: -34px;
    top: 92px;
}

.silk-home__survey-flow-final-heading {
    color: #242424;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.04;
    margin: 0 0 18px;
    max-width: 620px;
}

.silk-home__survey-flow-final-heading-desktop,
.silk-home__survey-flow-final-heading-mobile {
    display: block;
}

.silk-home__survey-flow-final-heading-mobile {
    display: none;
}

.silk-home__survey-flow-final-divider {
    display: none;
}

.silk-home__survey-flow-final-body {
    color: #242424;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0 0 30px;
    max-width: 560px;
}

.silk-home__survey-flow-final-body--mobile {
    display: none;
}

.silk-home__survey-flow-final-reward {
    align-items: center;
    background: #f4f2ee;
    border: 1px solid #d8d5cf;
    border-radius: 20px;
    column-gap: 22px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    margin-bottom: 22px;
    max-width: 520px;
    min-height: 112px;
    padding: 22px 28px;
    text-align: left;
    width: 100%;
}

.silk-home__survey-flow-final-reward-icon {
    align-items: center;
    background: rgba(217, 177, 170, .32);
    border-radius: 999px;
    color: #607264;
    display: inline-flex;
    height: 68px;
    justify-content: center;
    width: 68px;
}

.silk-home__survey-flow-final-reward-icon svg {
    display: block;
    height: 34px;
    width: 34px;
}

.silk-home__survey-flow-final-reward-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.silk-home__survey-flow-final-reward-copy {
    min-width: 0;
}

.silk-home__survey-flow-final-reward-title {
    color: #607264;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.silk-home__survey-flow-final-reward-body {
    color: #242424;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
}

.silk-home__survey-flow-final-reward-body--mobile {
    display: none;
}

.silk-home__survey-flow-final-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
    width: 100%;
}

.silk-home__survey-flow-final-input-wrap {
    display: block;
    position: relative;
    width: 100%;
}

.silk-home__survey-flow-final-input-icon {
    color: #242424;
    height: 21px;
    left: 20px;
    opacity: .75;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
}

.silk-home__survey-flow-final-input-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}

.silk-home__survey-flow-final-input-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.silk-home__survey-flow-final-input {
    background: transparent;
    border: 1px solid #d8d5cf;
    border-radius: 12px;
    color: #242424;
    font-size: 16px;
    height: 56px;
    line-height: 1;
    padding: 0 18px 0 56px;
}

.silk-home__survey-flow-final-input::placeholder {
    color: #6d6d6d;
    opacity: .75;
}

.silk-home__survey-flow-final-input:focus-visible {
    border-color: #607264;
    box-shadow: 0 0 0 3px rgba(96, 114, 100, .12);
}

.silk-home__survey-flow-final-submit {
    gap: 22px;
    grid-column: auto;
    height: 58px;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
}

.silk-home__survey-flow-final-submit.is-submitting,
.silk-home__survey-flow-final-submit.is-success {
    cursor: default;
}

.silk-home__survey-flow-final-submit.is-submitting {
    background: #56685a !important;
}

.silk-home__survey-flow-final-submit.is-success {
    background: #718672 !important;
}

.silk-home__survey-flow-final-submit-arrow {
    align-items: center;
    display: inline-flex;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.silk-home__survey-flow-final-submit-arrow svg {
    display: block;
    height: 24px;
    width: 24px;
}

.silk-home__survey-flow-final-submit-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.silk-home__survey-flow-final-submit-spinner,
.silk-home__survey-flow-final-submit-icon {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.silk-home__survey-flow-final-submit-spinner {
    animation: silk-survey-submit-spinner .8s linear infinite;
    border: 2px solid rgba(251, 251, 250, .34);
    border-top-color: #fbfbfa;
    border-radius: 999px;
}

.silk-home__survey-flow-final-submit-icon svg {
    display: block;
    height: 24px;
    width: 24px;
}

.silk-home__survey-flow-final-submit-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.silk-home__survey-flow-final-microcopy {
    align-items: center;
    color: #6d6d6d;
    display: flex;
    font-family: var(--font-body);
    font-size: 13px;
    gap: 12px;
    line-height: 1.45;
    margin: 6px 0 0;
    text-align: left;
}

.silk-home__survey-flow-final-microcopy-icon {
    color: #607264;
    flex: 0 0 auto;
    height: 26px;
    opacity: .95;
    width: 26px;
}

.silk-home__survey-flow-final-microcopy-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}

.silk-home__survey-flow-final-microcopy-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.silk-home__survey-flow-final-microcopy-text--mobile {
    display: none;
}

.final-survey-modal .final-survey-modal__cta {
    background: #607264 !important;
    color: #fbfbfa;
    opacity: 1 !important;
}

.final-survey-modal .final-survey-modal__input::placeholder {
    font-weight: 400 !important;
    color: #6d6d6d;
    opacity: .7;
}

.final-survey-modal .final-survey-modal__reward-title-desktop {
    display: inline;
}

.final-survey-modal .final-survey-modal__reward-title-mobile {
    display: none;
}

.final-survey-modal .final-survey-modal__cta-text-desktop {
    display: inline;
}

.final-survey-modal .final-survey-modal__cta-text-mobile {
    display: none;
}

.silk-home__survey-flow-status {
    color: #607264;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}

.silk-home__survey-flow-status--success {
    background: #edf3ec;
    border: 1px solid #cad7c7;
    border-radius: 16px;
    padding: 14px 16px;
    text-align: center;
}

.silk-home__survey-flow-status--error {
    color: #a14f4f;
}

@keyframes silk-survey-submit-spinner {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) and (max-height: 640px) {
    .silk-home__survey-flow-backdrop {
        padding: 18px 24px;
    }

    .silk-home__survey-flow-shell {
        border-radius: 26px;
        height: min(680px, calc(100vh - 36px));
        padding: 16px 40px 24px;
    }

    .silk-home__survey-flow-progress {
        height: 5px;
    }

    .silk-home__survey-flow-badge-row {
        min-height: 22px;
    }

    .silk-home__survey-flow-badge {
        min-height: 22px;
    }

    .silk-home__survey-flow-title {
        max-width: 560px;
    }

    .silk-home__survey-flow-title-row,
    .silk-home__survey-flow-answer-row,
    .silk-home__survey-flow-actions {
        margin-top: 24px;
    }

    .silk-home__survey-flow-title-text {
        font-size: 22px;
        line-height: 1.14;
    }

    .silk-home__survey-flow-answer-grid--layout-fourstack {
        grid-auto-rows: 60px;
    }

    .silk-home__survey-flow-answer-grid--layout-stylesix {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        grid-template-rows: repeat(2, minmax(144px, 1fr));
    }

    .silk-home__survey-flow-answer-card {
        border-radius: 20px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack {
        grid-template-columns: 78px minmax(0, 1fr);
        height: 60px;
        width: min(100%, 480px);
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-media {
        border-radius: 20px 0 0 20px;
        width: 78px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix {
        grid-template-rows: minmax(96px, 1fr) 36px;
    }

    .silk-home__survey-flow-card-media svg {
        height: 42px;
        width: 42px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-copy {
        padding: 0 48px 0 18px;
    }

    .silk-home__survey-flow-card-title {
        font-size: 15px;
        line-height: 1.2;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-copy {
        height: 36px;
        padding: 0 36px 0 12px;
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-shell {
        max-height: calc(100vh - 36px);
        padding: 32px 44px 28px;
    }

    .silk-home__survey-flow-final-heading {
        font-size: 42px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .silk-home__survey-flow-answer-row.is-notes-step {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .silk-home__survey-flow-notes-panel {
        background: rgba(255, 253, 250, .76);
        border: 1px solid rgba(96, 114, 100, .14);
        border-radius: 18px;
        box-shadow: 0 10px 22px rgba(82, 88, 78, .04);
        display: block;
        margin: 0 auto;
        max-width: 500px;
        padding: 36px 20px 40px;
        text-align: left;
        width: min(100%, 500px);
    }

    .silk-home__survey-flow-notes-body {
        color: rgba(31, 35, 31, .76);
        font-family: "Inter", Arial, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.45;
        margin: 0 0 18px;
    }

    .silk-home__survey-flow-notes-input {
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(96, 114, 100, .18);
        border-radius: 14px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
        color: #1f231f;
        display: block;
        font-family: "Inter", Arial, sans-serif;
        font-size: 15px;
        line-height: 1.45;
        margin: 0;
        min-height: 192px;
        padding: 13px 14px;
        resize: vertical;
        width: 100%;
    }

    .silk-home__survey-flow-notes-input::placeholder {
        color: #6d6d6d;
        font: inherit;
        opacity: .78;
    }

    .silk-home__survey-flow-notes-input:focus-visible {
        border-color: #607264;
        box-shadow: 0 0 0 3px rgba(96, 114, 100, .10);
    }

    .final-survey-modal .final-survey-modal__title {
        font-family: "Inter", Arial, sans-serif !important;
        font-size: 50px;
        line-height: 1.04;
        font-weight: 400 !important;
        letter-spacing: -0.03em;
        color: #242424;
        margin: 0 0 18px;
        max-width: 700px;
        text-align: center;
    }

    .final-survey-modal .final-survey-modal__body {
        font-family: Inter, system-ui, sans-serif;
        font-size: 17px;
        line-height: 1.6;
        font-weight: 400;
        color: #242424;
        max-width: 610px;
        margin: 0 0 32px;
        text-align: center;
    }

    .final-survey-modal .final-survey-modal__cta:hover {
        background: #738576 !important;
    }
}

@media (max-width: 767px) {
    .silk-home__survey-flow-backdrop {
        align-items: stretch;
        padding: 6px;
    }

    .silk-home__survey-flow-modal {
        width: min(358px, calc(100vw - 12px));
        max-width: 100%;
    }

    .silk-home__survey-flow-shell {
        border-radius: 24px;
        height: min(832px, calc(100dvh - 12px));
        padding: 20px 30px 24px;
    }

    .silk-home__survey-flow-close {
        height: 42px;
        right: 16px;
        top: 16px;
        width: 42px;
    }

    .silk-home__survey-flow-progress-row {
        padding-right: 52px;
    }

    .silk-home__survey-flow-badge-row {
        margin-top: 18px;
        min-height: 24px;
    }

    .silk-home__survey-flow-title {
        max-width: 280px;
    }

    .silk-home__survey-flow-title-text {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 1.18;
    }

    .silk-home__survey-flow-title-text--desktop,
    .silk-home__survey-flow-card-title--desktop {
        display: none;
    }

    .silk-home__survey-flow-title-text--mobile,
    .silk-home__survey-flow-card-title--mobile,
    .silk-home__survey-flow-button-label--mobile {
        display: block;
    }

    .silk-home__survey-flow-card-title--desktop,
    .silk-home__survey-flow-button-label--desktop {
        display: none;
    }

    .silk-home__survey-flow-title-row {
        margin-top: 30px;
    }

    .silk-home__survey-flow-answer-row {
        margin-top: 28px;
    }

    .silk-home__survey-flow-answer-row.is-notes-step {
        display: flex;
        flex-direction: column;
        gap: 14px;
        justify-content: space-between;
    }

    .silk-home__survey-flow-notes-panel {
        background: rgba(255, 253, 250, .7);
        border: 1px solid rgba(96, 114, 100, .12);
        border-radius: 14px;
        box-shadow: none;
        display: block;
        margin: auto auto 0;
        max-width: 100%;
        padding: 14px 14px 14px;
        text-align: left;
    }

    .silk-home__survey-flow-notes-body {
        color: rgba(31, 35, 31, .76);
        font-family: "Inter", Arial, sans-serif;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.42;
        margin: 0 0 10px;
    }

    .silk-home__survey-flow-notes-input {
        background: rgba(255, 255, 255, .92);
        border: 1px solid rgba(96, 114, 100, .16);
        border-radius: 12px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
        color: #1f231f;
        display: block;
        font-family: "Inter", Arial, sans-serif;
        font-size: 13px;
        line-height: 1.42;
        margin: 0;
        min-height: 82px;
        padding: 11px 12px;
        resize: none;
        width: 100%;
    }

    .silk-home__survey-flow-notes-input::placeholder {
        color: #6d6d6d;
        font: inherit;
        opacity: .78;
    }

    .silk-home__survey-flow-notes-input:focus-visible {
        border-color: #607264;
        box-shadow: 0 0 0 3px rgba(96, 114, 100, .10);
    }

    .silk-home__survey-flow-answer-grid--layout-fourstack {
        align-content: start;
        grid-auto-rows: 60px;
        row-gap: 12px;
    }

    .silk-home__survey-flow-answer-grid--layout-stylesix {
        column-gap: 16px;
        grid-template-columns: repeat(2, 140px);
        grid-template-rows: repeat(3, 170px);
        justify-content: center;
        row-gap: 18px;
    }

    .silk-home__survey-flow-answer-card {
        border-radius: 18px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack {
        grid-template-columns: 60px minmax(0, 1fr);
        height: 60px;
        width: 100%;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-media {
        border-radius: 18px 0 0 18px;
        width: 60px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix {
        height: 170px;
        grid-template-rows: 130px 40px;
        justify-self: center;
        width: 140px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-media {
        border-radius: 18px 18px 0 0;
        min-height: 130px;
    }

    .silk-home__survey-flow-card-media svg {
        height: 34px;
        width: 34px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-copy {
        padding: 0 36px 0 16px;
    }

    .silk-home__survey-flow-card-title {
        font-size: 15px;
        line-height: 1.24;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-copy {
        height: 40px;
        padding: 0 26px 0 10px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-title {
        font-size: 14.5px;
        line-height: 1.16;
    }

    .silk-home__survey-flow-check {
        right: 10px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-check {
        height: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-check {
        height: 20px;
        top: 10px;
        width: 20px;
    }

    .silk-home__survey-flow-actions {
        grid-template-columns: 96px minmax(0, 1fr) 160px;
        margin-top: 24px;
    }

    .silk-home__survey-flow-button {
        height: 44px;
    }

    .silk-home__survey-flow-button--secondary {
        grid-column: 1;
        width: 96px;
    }

    .silk-home__survey-flow-button--primary {
        grid-column: 3;
        width: 160px;
    }

    .silk-home__survey-flow-backdrop.is-final-step {
        align-items: center;
        padding: 24px;
    }

    .silk-home__survey-flow-modal.is-final-step {
        max-width: 100%;
        width: min(720px, calc(100vw - 48px));
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-shell {
        border-radius: 28px;
        max-height: calc(100vh - 48px);
        padding: 36px 40px 32px;
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close {
        height: 36px;
        right: 24px;
        top: 24px;
        width: 36px;
    }

}

@media (max-width: 767px) and (max-height: 720px) {
    .silk-home__survey-flow-backdrop {
        padding: 6px;
    }

    .silk-home__survey-flow-modal {
        width: min(358px, calc(100vw - 12px));
    }

    .silk-home__survey-flow-shell {
        border-radius: 20px;
        height: min(832px, calc(100dvh - 12px));
        padding: 16px 20px 18px;
    }

    .silk-home__survey-flow-close {
        height: 38px;
        right: 12px;
        top: 12px;
        width: 38px;
    }

    .silk-home__survey-flow-progress {
        height: 4px;
    }

    .silk-home__survey-flow-badge-row {
        min-height: 20px;
    }

    .silk-home__survey-flow-badge {
        font-size: 11px;
        min-height: 20px;
        padding: 0 10px;
    }

    .silk-home__survey-flow-title-text {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 1.14;
    }

    .silk-home__survey-flow-answer-row {
        margin-top: 28px;
    }

    .silk-home__survey-flow-answer-row.is-notes-step {
        gap: 12px;
        justify-content: space-between;
    }

    .silk-home__survey-flow-notes-panel {
        margin: auto auto 0;
        padding: 12px 12px 12px;
    }

    .silk-home__survey-flow-notes-body {
        font-size: 12px;
        line-height: 1.34;
        margin-bottom: 8px;
    }

    .silk-home__survey-flow-notes-input {
        font-size: 12.5px;
        line-height: 1.36;
        min-height: 76px;
        padding: 10px 11px;
    }

    .silk-home__survey-flow-answer-grid--layout-fourstack {
        align-content: start;
        grid-auto-rows: 56px;
        row-gap: 10px;
    }

    .silk-home__survey-flow-answer-grid--layout-stylesix {
        column-gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        row-gap: 12px;
    }

    .silk-home__survey-flow-answer-card {
        border-radius: 16px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack {
        grid-template-columns: 56px minmax(0, 1fr);
        height: 56px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-media {
        border-radius: 16px 0 0 16px;
        width: 56px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix {
        grid-template-rows: minmax(0, 1fr) 36px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-media {
        border-radius: 16px 16px 0 0;
        min-height: 0;
    }

    .silk-home__survey-flow-card-media svg {
        height: 30px;
        width: 30px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-card-copy {
        padding: 0 32px 0 12px;
    }

    .silk-home__survey-flow-card-title {
        font-size: 14.5px;
        line-height: 1.2;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-card-copy {
        height: 36px;
        padding: 0 24px 0 8px;
    }

    .silk-home__survey-flow-check {
        right: 10px;
    }

    .silk-home__survey-flow-answer-card--layout-fourstack .silk-home__survey-flow-check {
        height: 18px;
        width: 18px;
    }

    .silk-home__survey-flow-answer-card--layout-stylesix .silk-home__survey-flow-check {
        height: 18px;
        top: 8px;
        width: 18px;
    }

    .silk-home__survey-flow-check::after {
        font-size: 11px;
    }

    .silk-home__survey-flow-actions {
        grid-template-columns: 96px minmax(0, 1fr) 160px;
        margin-top: 18px;
    }

    .silk-home__survey-flow-button {
        height: 42px;
    }

    .silk-home__survey-flow-button--secondary {
        grid-column: 1;
    }

    .silk-home__survey-flow-button--primary {
        grid-column: 3;
    }

}

@media (max-width: 640px) {
    .silk-home__survey-flow-backdrop.is-final-step {
        align-items: center;
        padding: 14px;
    }

    .silk-home__survey-flow-modal.is-final-step {
        width: min(calc(100vw - 28px), 420px);
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-shell {
        border-radius: 30px;
        box-shadow: 0 24px 80px rgba(30, 32, 29, .2);
        max-height: calc(100vh - 28px);
        padding: 30px 22px 26px;
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close {
        height: 36px;
        opacity: .95;
        right: 22px;
        top: 24px;
        width: 36px;
    }

    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-close svg {
        height: 30px;
        width: 30px;
    }

    .silk-home__survey-flow-final-illustration-wrap {
        margin: 44px 0 28px;
    }

    .silk-home__survey-flow-final-illustration-card {
        height: 96px;
        width: 96px;
    }

    .silk-home__survey-flow-final-illustration-picture,
    .silk-home__survey-flow-final-illustration-image {
        height: 64px;
        width: 64px;
    }

    .silk-home__survey-flow-final-check-badge {
        bottom: -9px;
        right: -9px;
    }

    .silk-home__survey-flow-final-dot {
        opacity: .75;
    }

    .silk-home__survey-flow-final-dot--left-top {
        left: -18px;
        top: 34px;
    }

    .silk-home__survey-flow-final-dot--left-mid {
        left: -28px;
        top: 58px;
    }

    .silk-home__survey-flow-final-dot--left-bottom {
        left: -14px;
        top: 82px;
    }

    .silk-home__survey-flow-final-dot--right-top {
        right: -18px;
        top: 34px;
    }

    .silk-home__survey-flow-final-dot--right-mid {
        right: -28px;
        top: 58px;
    }

    .silk-home__survey-flow-final-dot--right-bottom {
        right: -14px;
        top: 82px;
    }

    .silk-home__survey-flow-final-heading {
        font-size: clamp(44px, 11vw, 58px);
        letter-spacing: -0.035em;
        line-height: .98;
        margin: 0 0 22px;
        max-width: 340px;
    }

    .silk-home__survey-flow-final-heading-desktop {
        display: none;
    }

    .silk-home__survey-flow-final-heading-mobile {
        display: flex;
        flex-direction: column;
    }

    .silk-home__survey-flow-final-divider {
        align-items: center;
        display: flex;
        gap: 16px;
        height: 20px;
        justify-content: center;
        margin: 0 auto 22px;
        width: 220px;
    }

    .silk-home__survey-flow-final-divider-line {
        background: #d8d5cf;
        display: block;
        flex: 0 0 76px;
        height: 1px;
    }

    .silk-home__survey-flow-final-divider-heart {
        color: #d9b1aa;
        font-size: 18px;
        line-height: 1;
        opacity: .9;
    }

    .silk-home__survey-flow-final-body {
        font-size: 17px;
        line-height: 1.55;
        margin: 0 0 28px;
        max-width: 330px;
    }

    .silk-home__survey-flow-final-body--desktop {
        display: none;
    }

    .silk-home__survey-flow-final-body--mobile {
        display: block;
    }

    .silk-home__survey-flow-final-reward {
        column-gap: 18px;
        grid-template-columns: 72px minmax(0, 1fr);
        margin-bottom: 22px;
        min-height: 132px;
        padding: 20px;
    }

    .silk-home__survey-flow-final-reward-body--desktop {
        display: none;
    }

    .silk-home__survey-flow-final-reward-body--mobile {
        display: block;
    }

    .silk-home__survey-flow-final-input {
        border-radius: 12px;
        font-size: 16px;
    }

    .silk-home__survey-flow-final-submit {
        height: 58px;
    }

    .silk-home__survey-flow-final-microcopy {
        align-items: flex-start;
        font-size: 13px;
        margin-top: 4px;
    }

    .silk-home__survey-flow-final-microcopy-text--desktop {
        display: none;
    }

    .silk-home__survey-flow-final-microcopy-text--mobile {
        display: block;
    }
}

@media (max-width: 640px) and (max-height: 720px) {
    .silk-home__survey-flow-modal.is-final-step .silk-home__survey-flow-shell {
        border-radius: 24px;
        padding: 24px 20px 20px;
    }

    .silk-home__survey-flow-final-illustration-wrap {
        margin-top: 30px;
    }

    .silk-home__survey-flow-final-heading {
        font-size: clamp(38px, 10vw, 48px);
        margin-bottom: 18px;
    }

    .silk-home__survey-flow-final-body {
        margin-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .final-survey-modal {
        width: 358px;
        height: 832px;
        max-width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        overflow-y: auto;
        padding: 20px 18px 18px !important;
        scrollbar-width: none;
    }

    .final-survey-modal::-webkit-scrollbar {
        display: none;
    }

    .silk-home__survey-flow-backdrop.is-final-step {
        padding: 8px;
    }

    .silk-home__survey-flow-modal.is-final-step {
        width: 358px;
        max-width: calc(100vw - 16px);
    }

    .final-survey-modal .final-survey-modal__illustration-wrap {
        margin-top: 18px;
        margin-bottom: 16px;
    }

    .final-survey-modal .final-survey-modal__illustration-card {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .final-survey-modal .final-survey-modal__illustration-picture,
    .final-survey-modal .final-survey-modal__illustration-image {
        width: 66px;
        height: 66px;
    }

    .final-survey-modal .final-survey-modal__check-badge {
        width: 32px;
        height: 32px;
        right: -7px;
        bottom: -7px;
    }

    .final-survey-modal .final-survey-modal__check-badge svg {
        width: 16px;
        height: 16px;
    }

    .final-survey-modal .final-survey-modal__title {
        font-family: "Syne", Georgia, serif !important;
        font-weight: 400 !important;
        font-size: 38px;
        line-height: 1.02;
        letter-spacing: -0.035em;
        margin-bottom: 12px;
    }

    .final-survey-modal .silk-home__survey-flow-final-heading-desktop,
    .final-survey-modal .final-survey-modal__cta-text-desktop,
    .final-survey-modal .final-survey-modal__reward-title-desktop,
    .final-survey-modal .silk-home__survey-flow-final-body--desktop,
    .final-survey-modal .silk-home__survey-flow-final-reward-body--desktop,
    .final-survey-modal .silk-home__survey-flow-final-microcopy-text--desktop {
        display: none;
    }

    .final-survey-modal .silk-home__survey-flow-final-heading-mobile,
    .final-survey-modal .final-survey-modal__cta-text-mobile,
    .final-survey-modal .final-survey-modal__reward-title-mobile,
    .final-survey-modal .silk-home__survey-flow-final-body--mobile,
    .final-survey-modal .silk-home__survey-flow-final-reward-body--mobile,
    .final-survey-modal .silk-home__survey-flow-final-microcopy-text--mobile {
        display: block;
    }

    .final-survey-modal .final-survey-modal__divider {
        height: 12px;
        margin: 0 auto 14px;
        width: 172px;
    }

    .final-survey-modal .final-survey-modal__divider .silk-home__survey-flow-final-divider-line,
    .final-survey-modal .final-survey-modal__divider-line {
        flex-basis: 58px;
    }

    .final-survey-modal .final-survey-modal__divider .silk-home__survey-flow-final-divider-heart,
    .final-survey-modal .final-survey-modal__divider-heart {
        font-size: 14px;
    }

    .final-survey-modal .final-survey-modal__body {
        font-family: Inter, system-ui, sans-serif;
        font-size: 14px;
        line-height: 1.45;
        max-width: 292px;
        margin-bottom: 18px;
    }

    .final-survey-modal .final-survey-modal__reward {
        min-height: 96px;
        padding: 12px;
        border-radius: 18px;
        grid-template-columns: 46px 1fr;
        column-gap: 12px;
        margin-bottom: 14px;
    }

    .final-survey-modal .final-survey-modal__reward-icon {
        width: 44px;
        height: 44px;
    }

    .final-survey-modal .final-survey-modal__reward-icon svg {
        width: 24px;
        height: 24px;
    }

    .final-survey-modal .final-survey-modal__reward-title {
        font-family: "Syne", Georgia, serif !important;
        font-weight: 400;
        font-size: 21px;
        line-height: 1.05;
        margin-bottom: 5px;
    }

    .final-survey-modal .final-survey-modal__reward-body {
        font-size: 12.5px;
        line-height: 1.38;
    }

    .final-survey-modal .final-survey-modal__fields {
        gap: 12px;
        max-width: 100%;
    }

    .final-survey-modal .final-survey-modal__input {
        height: 52px;
        font-size: 14px;
        font-weight: 400;
    }

    .final-survey-modal .final-survey-modal__input::placeholder {
        font-weight: 400 !important;
        opacity: .65;
    }

    .final-survey-modal .final-survey-modal__input-icon {
        width: 18px;
        height: 18px;
        left: 18px;
    }

    .final-survey-modal .final-survey-modal__cta {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 54px;
        padding: 0 18px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        white-space: nowrap;
        background: #607264 !important;
        color: #fbfbfa;
        opacity: 1 !important;
        font-size: 15px;
        line-height: 1;
        box-sizing: border-box;
        justify-self: stretch;
        grid-column: auto;
    }

    .final-survey-modal .final-survey-modal__cta:disabled,
    .final-survey-modal .final-survey-modal__cta[aria-disabled="true"] {
        background: #607264 !important;
        color: #fbfbfa !important;
        opacity: 1 !important;
    }

    .final-survey-modal .final-survey-modal__cta-text {
        display: inline-flex;
        max-width: 100%;
        white-space: nowrap;
    }

    .final-survey-modal .final-survey-modal__cta-arrow {
        flex: 0 0 auto;
    }

    .final-survey-modal .final-survey-modal__microcopy {
        display: grid;
        grid-template-columns: 24px 1fr;
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.35;
        gap: 10px;
        align-items: start;
    }

    .final-survey-modal .final-survey-modal__microcopy-icon {
        width: 24px;
        height: 24px;
    }

    .final-survey-modal .silk-home__survey-flow-status {
        font-size: 12px;
        line-height: 1.35;
    }

    .final-survey-modal .silk-home__survey-flow-status--success {
        padding: 13px 14px;
    }
}
