/**
 * Soojin editorial presentation layer.
 */

@font-face {
    font-display: swap;
    font-family: "Cormorant Unicase";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/cormorant-unicase-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/cormorant-garamond-regular.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "Amsterdam";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/amsterdam.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Amsterdam One";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/amsterdam.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Beautique Display";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/beautique-display-regular.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "SVN Conqueror Didot";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/svn-conqueror-didot.otf") format("opentype");
}

@font-face {
    font-display: block;
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/fa-brands-400.woff2") format("woff2");
}

:root {
    --sj-color-ink: #241f1c;
    --sj-color-muted: #746b65;
    --sj-color-paper: #f7f3ee;
    --sj-color-surface: #eee5dc;
    --sj-color-accent: #a87963;
    --sj-color-accent-dark: #755042;
    --sj-color-line: rgb(36 31 28 / 18%);
    --sj-color-overlay: rgb(20 16 14 / 78%);
    --sj-color-white: #fff;

    --sj-font-display: "Playfair Display", "Times New Roman", serif;
    --sj-font-unicase: "Playfair Display", "Times New Roman", serif;
    --sj-font-ms-madi: "Playfair Display", "Times New Roman", serif;
    --sj-font-beautique-display: "Playfair Display", "Times New Roman", serif;
    --sj-font-conqueror-didot: "Playfair Display", "Times New Roman", serif;
    --sj-font-playfair-display: "Playfair Display", "Times New Roman", serif;
    --sj-font-wordmark: "Amsterdam One", "Amsterdam", cursive;
    --sj-font-brands: "Font Awesome 6 Brands";
    --sj-font-body: "Playfair Display", "Times New Roman", serif;
    --sj-font-size-xs: clamp(0.72rem, 0.68rem + 0.16vw, 0.82rem);
    --sj-font-size-sm: clamp(0.86rem, 0.82rem + 0.16vw, 0.96rem);
    --sj-font-size-body: clamp(1rem, 0.94rem + 0.25vw, 1.12rem);
    --sj-font-size-lead: clamp(1.2rem, 1.02rem + 0.7vw, 1.65rem);
    --sj-font-size-h3: clamp(2rem, 1.4rem + 2vw, 3.7rem);
    --sj-font-size-h2: clamp(2.8rem, 1.65rem + 4vw, 6.5rem);
    --sj-font-size-hero: clamp(4rem, 2rem + 8vw, 10rem);
    --sj-line-body: 1.75;
    --sj-line-display: 0.92;
    --sj-tracking-label: 0.16em;

    --sj-space-1: 0.375rem;
    --sj-space-2: 0.75rem;
    --sj-space-3: 1.25rem;
    --sj-space-4: 2rem;
    --sj-space-5: 3.25rem;
    --sj-space-6: 5rem;
    --sj-space-7: clamp(6rem, 11vw, 11rem);

    --sj-container: 90rem;
    --sj-container-copy: 48rem;
    --sj-gutter: clamp(1.25rem, 3vw, 3.75rem);
    --sj-header-height: 5.25rem;

    --sj-layer-base: 0;
    --sj-layer-header: 40;
    --sj-layer-overlay: 60;
    --sj-layer-skip: 80;

    --sj-breakpoint-sm: 36rem;
    --sj-breakpoint-md: 48rem;
    --sj-breakpoint-lg: 64rem;
    --sj-breakpoint-xl: 80rem;

    --sj-motion-fast: 180ms;
    --sj-motion-base: 420ms;
    --sj-motion-slow: 900ms;
    --sj-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.sj-editorial {
    background: var(--sj-color-paper);
    color: var(--sj-color-ink);
    font-family: var(--sj-font-body);
    font-size: var(--sj-font-size-body);
    font-weight: 400;
    line-height: var(--sj-line-body);
    overflow-x: clip;
}

.sj-editorial a,
.sj-editorial button,
.sj-editorial input,
.sj-editorial select,
.sj-editorial textarea {
    font-weight: 400;
}

.sj-editorial *,
.sj-editorial *::before,
.sj-editorial *::after {
    box-sizing: border-box;
}

.sj-editorial img,
.sj-editorial video {
    display: block;
    height: auto;
    max-width: 100%;
}

.sj-container {
    margin-inline: auto;
    max-width: var(--sj-container);
    padding-inline: var(--sj-gutter);
    width: 100%;
}

.sj-copy {
    max-width: var(--sj-container-copy);
}

.sj-section {
    padding-block: var(--sj-space-7);
    position: relative;
}

.sj-section--surface {
    background: var(--sj-color-surface);
}

.sj-display,
.sj-heading {
    font-family: var(--sj-font-display);
    font-weight: 400;
    line-height: var(--sj-line-display);
    margin-block: 0;
    text-wrap: balance;
}

.sj-display {
    font-size: var(--sj-font-size-hero);
}

.sj-heading--xl {
    font-size: var(--sj-font-size-h2);
}

.sj-heading--lg {
    font-size: var(--sj-font-size-h3);
}

.sj-eyebrow {
    font-size: var(--sj-font-size-xs);
    font-weight: 600;
    letter-spacing: var(--sj-tracking-label);
    text-transform: uppercase;
}

.sj-lead {
    font-family: var(--sj-font-display);
    font-size: var(--sj-font-size-lead);
    line-height: 1.45;
}

.sj-link,
.sj-cta {
    align-items: center;
    color: inherit;
    display: inline-flex;
    gap: var(--sj-space-2);
    position: relative;
    text-decoration: none;
}

.sj-link::after {
    background: currentColor;
    bottom: -0.2em;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--sj-motion-base) var(--sj-ease);
    width: 100%;
}

.sj-link:hover::after,
.sj-link:focus-visible::after {
    transform: scaleX(1);
}

.sj-cta {
    border: 1px solid currentColor;
    font-size: var(--sj-font-size-xs);
    justify-content: center;
    letter-spacing: var(--sj-tracking-label);
    min-height: 3rem;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    transition: background var(--sj-motion-fast) ease, color var(--sj-motion-fast) ease;
}

.sj-cta:hover,
.sj-cta:focus-visible {
    background: var(--sj-color-ink);
    color: var(--sj-color-paper);
}

.sj-media {
    background: var(--sj-color-surface);
    overflow: hidden;
    position: relative;
}

.sj-media > img,
.sj-media > video,
.sj-media > picture > img {
    height: 100%;
    object-fit: cover;
    object-position: var(--sj-focal-position, 50% 50%);
    width: 100%;
}

.sj-media > picture {
    display: block;
    height: 100%;
    width: 100%;
}

.sj-media--portrait {
    aspect-ratio: 3 / 4;
}

.sj-media--landscape {
    aspect-ratio: 16 / 10;
}

.sj-media--hero {
    aspect-ratio: 16 / 9;
    min-height: 34rem;
}

.sj-sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.sj-sr-only:focus,
.sj-skip-link:focus {
    background: var(--sj-color-paper);
    clip: auto;
    color: var(--sj-color-ink);
    height: auto;
    left: var(--sj-space-3);
    padding: var(--sj-space-2) var(--sj-space-3);
    top: var(--sj-space-3);
    width: auto;
    z-index: var(--sj-layer-skip);
}

[data-sj-reveal] {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity var(--sj-motion-slow) var(--sj-ease), transform var(--sj-motion-slow) var(--sj-ease);
}

[data-sj-reveal].is-visible,
.no-js [data-sj-reveal] {
    opacity: 1;
    transform: none;
}

.sj-placeholder {
    align-items: center;
    background:
        linear-gradient(135deg, rgb(117 80 66 / 12%), transparent 55%),
        var(--sj-color-surface);
    color: var(--sj-color-muted);
    display: flex;
    font-family: var(--sj-font-display);
    font-size: var(--sj-font-size-lead);
    justify-content: center;
    min-height: 100%;
    padding: var(--sj-space-4);
    text-align: center;
}

.sj-editorial :focus-visible {
    outline: 2px solid var(--sj-color-accent-dark);
    outline-offset: 4px;
}

.sj-site-header {
    color: var(--sj-color-white);
    left: 0;
    padding-block: 1rem;
    position: fixed;
    right: 0;
    top: var(--wp-admin--admin-bar--height, 0px);
    transition: background var(--sj-motion-base) var(--sj-ease), color var(--sj-motion-base) var(--sj-ease), opacity 800ms var(--sj-ease);
    z-index: var(--sj-layer-header);
}

.sj-site-header.is-solid {
    background: rgb(178 152 123 / 96%);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 14px rgb(0 0 0 / 12%);
    color: var(--sj-color-white);
}

.sj-product-page {
    min-height: 70vh;
    padding-block: calc(var(--sj-header-height) + var(--sj-space-5)) var(--sj-space-7);
}

.sj-product-page__content {
    max-width: var(--sj-container);
}

.sj-product-detail {
    padding-block: calc(var(--sj-header-height) + var(--sj-space-5)) var(--sj-space-7);
}

.sj-product-detail h1 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.sj-product-detail h2,
.sj-product-detail .sj-product-detail__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sj-product-detail h3,
.sj-product-detail .sj-product-detail__feedback-title {
    font-size: 1.125rem;
    font-weight: 400;
}

.sj-product-detail p {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.sj-site-header__inner,
.sj-site-header__actions,
.sj-overlay__bar {
    align-items: center;
    display: flex;
}

.sj-site-header__inner {
    height: auto;
    min-height: var(--sj-header-height);
    justify-content: space-between;
}

.sj-site-header__brand,
.sj-collection-menu__brand,
.sj-collection-page__brand {
    align-items: center;
    color: inherit;
    display: inline-flex;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
}

.sj-site-header__brand,
.sj-site-header__wordmark {
    color: inherit;
    font-family: var(--sj-font-display);
    font-size: 1.65rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sj-social-link {
    align-items: center;
    color: inherit;
    display: inline-flex;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 1.5rem;
    text-decoration: none;
}

.sj-social-link__icon {
    font-family: var(--sj-font-brands);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.sj-site-header__brand a {
    color: inherit;
    display: inline-flex;
    text-decoration: none;
}

.sj-site-header .custom-logo-link img,
.sj-site-header__brand .custom-logo {
    height: auto;
    max-height: 3.25rem;
    max-width: 4rem !important;
    width: auto !important;
}

.sj-nav__list,
.sj-footer-nav,
.sj-overlay-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sj-nav__list {
    align-items: center;
    display: flex;
    gap: clamp(1.2rem, 2.2vw, 2.75rem);
}

.sj-nav--desktop {
    position: relative;
}

.sj-nav__link,
.sj-nav__list a {
    color: inherit;
    font-size: var(--sj-font-size-xs);
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.sj-collection-dropdown {
    background: var(--sj-color-paper);
    border: 1px solid var(--sj-color-line);
    box-shadow: 0 1rem 2.5rem rgb(36 31 28 / 16%);
    color: var(--sj-color-ink);
    left: var(--sj-collection-dropdown-offset, 50%);
    min-width: 13rem;
    padding: var(--sj-space-2);
    position: absolute;
    top: calc(100% + var(--sj-space-2));
    transform: translateX(-50%);
    z-index: calc(var(--sj-layer-header) + 1);
}

.sj-collection-dropdown ul {
    display: grid;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sj-collection-dropdown a {
    display: block;
    padding: 0.65rem 0.75rem;
}

.sj-collection-dropdown a:hover,
.sj-collection-dropdown a:focus-visible {
    background: var(--sj-color-surface);
    outline: none;
}

.sj-site-header__actions {
    gap: var(--sj-space-3);
}

.sj-language {
    align-items: center;
    display: flex;
    font-size: var(--sj-font-size-xs);
    gap: var(--sj-space-1);
    letter-spacing: 0.1em;
}

.sj-icon-button {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    min-height: 2.75rem;
    min-width: 2.75rem;
    padding: var(--sj-space-2);
}

.sj-collection-trigger {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font-size: var(--sj-font-size-xs);
    letter-spacing: 0.12em;
    padding: var(--sj-space-2);
    text-decoration: none;
    text-transform: uppercase;
}

.sj-nav-toggle {
    display: none;
}

.sj-nav-toggle__icon {
    display: grid;
    gap: 0.25rem;
    width: 1.35rem;
}

.sj-nav-toggle__icon span {
    background: currentColor;
    height: 1px;
    width: 100%;
}

.sj-overlay {
    background: var(--sj-color-paper);
    color: var(--sj-color-ink);
    inset: 0;
    overflow: auto;
    padding: var(--sj-gutter);
    position: fixed;
    z-index: var(--sj-layer-overlay);
}

.sj-overlay:not([hidden]) {
    animation: sj-overlay-in var(--sj-motion-base) var(--sj-ease) both;
}

/* Single collection — a quiet, centered composition inspired by the supplied art direction. */
.sj-collection-page {
    --sj-collection-paper: #e2dcd1;
    --sj-collection-ink: #504e4e;
    --sj-collection-accent: #92701f;
    background: var(--sj-collection-paper);
    color: var(--sj-collection-ink);
    min-height: 100svh;
    overflow: hidden;
    padding-top: calc(var(--sj-header-height) + 1.25rem);
}

.sj-collection-page__hero {
    display: grid;
    grid-template-columns: minmax(10rem, 0.78fr) minmax(19rem, 25.3rem) minmax(10rem, 1fr);
    grid-template-rows: 1fr;
    margin: 0 auto;
    max-width: 58rem;
    min-height: min(41rem, calc(100svh - 9rem));
    position: relative;
}

.sj-collection-page__artwork {
    filter: invert(1);
    height: auto;
    left: -0.1rem;
    max-width: 20.2rem;
    position: absolute;
    top: clamp(-8.75rem, -7vw, -5rem);
    width: 42%;
    z-index: 1;
}

.sj-collection-page__title {
    align-self: center;
    font-family: var(--sj-font-display);
    grid-column: 1 / 2;
    position: relative;
    z-index: 1;
}

@media (min-width: 48rem) {
    .sj-collection-page__title {
        transform: translateX(-100px);
    }
}

.sj-collection-page__eyebrow,
.sj-collection-page__subtitle {
    font-size: 18px;
    letter-spacing: 0.12em;
    margin: 0;
}

.sj-collection-page__eyebrow {
    color: var(--sj-collection-accent);
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.sj-collection-page__title h1 {
    font-family: inherit;
    font-size: clamp(2.45rem, 2rem + 2.35vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.12;
    margin: 0;
    max-width: 8ch;
    text-transform: uppercase;
}

.sj-collection-page__subtitle {
    margin-top: 1rem;
}

.sj-collection-page__image {
    align-self: center;
    display: block;
    grid-column: 2 / 3;
    height: auto;
    min-height: 0;
    position: relative;
    width: 100%;
}

.sj-collection-page__image .sj-collection-page__photo {
    display: block;
    filter: none;
    height: auto;
    width: 100%;
}

.sj-collection-page__image:hover .sj-collection-page__photo,
.sj-collection-page__image:focus-visible .sj-collection-page__photo {
    transform: none;
}

.sj-collection-page__categories {
    align-self: center;
    grid-column: 3 / 4;
    margin-left: clamp(2rem, 4vw, 4rem);
    margin-top: 4.5rem;
    position: relative;
    z-index: 1;
}

.sj-collection-page__categories ul {
    display: grid;
    gap: 1.05rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sj-collection-page__categories a {
    align-items: center;
    color: var(--sj-color-white);
    display: flex;
    font-family: var(--sj-font-display);
    font-size: var(--sj-font-size-sm);
    gap: 1.2rem;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.sj-collection-page__categories a i {
    background: currentColor;
    display: block;
    height: 1px;
    position: relative;
    transition: width var(--sj-motion-base) var(--sj-ease);
    width: clamp(1.75rem, 3vw, 3.25rem);
}

.sj-collection-page__categories a i::after {
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: 0.42rem;
    position: absolute;
    right: -0.1rem;
    top: calc(50% - 0.21rem);
    width: 0.42rem;
}

.sj-collection-page__categories li.is-current a,
.sj-collection-page__categories a:hover,
.sj-collection-page__categories a:focus-visible {
    color: var(--sj-collection-accent);
}

.sj-collection-page__categories a:hover i,
.sj-collection-page__categories a:focus-visible i {
    width: clamp(2.75rem, 4.5vw, 4.5rem);
}

.sj-collection-results {
    background: #fcfaf2;
}

.sj-collection-results .sj-product-card img {
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    width: 100%;
}

@keyframes sj-overlay-in {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.sj-overlay__bar {
    justify-content: space-between;
    margin-bottom: var(--sj-space-5);
}

.sj-collection-menu {
    background: #172318;
    color: var(--sj-color-white);
    isolation: isolate;
    padding: 0;
}

.sj-collection-menu--page {
    min-height: 100svh;
    padding-top: calc(var(--sj-header-height) + 1.25rem);
    position: relative;
    z-index: auto;
}

.sj-collection-menu__backdrop,
.sj-collection-menu__shade {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.sj-collection-menu__backdrop {
    background: center / cover no-repeat url("../assets/collection/collection-menu-background-2026.jpg");
    filter: saturate(0.7);
    z-index: -2;
}

.sj-collection-menu__shade {
    background: linear-gradient(90deg, rgb(7 16 10 / 68%), rgb(7 16 10 / 43%) 50%, rgb(7 16 10 / 60%)), rgb(7 16 10 / 18%);
    z-index: -1;
}

.sj-collection-menu__bar {
    align-items: center;
    display: flex;
    height: auto;
    min-height: var(--sj-header-height);
    justify-content: space-between;
    padding-block: 0.85rem;
    position: relative;
}

.sj-collection-menu__brand {
    color: inherit;
}

.sj-collection-menu__brand a {
    color: inherit;
    display: inline-flex;
    text-decoration: none;
}

.sj-collection-menu__nav {
    justify-self: center;
}

.sj-collection-menu__close {
    justify-self: end;
}

.sj-collection-menu__mobile-toggle {
    display: none;
    justify-self: end;
}

.sj-collection-menu__close {
    font-family: var(--sj-font-display);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}

.sj-collection-menu__layout {
    align-items: center;
    display: grid;
    gap: clamp(2.25rem, 5vw, 7rem);
    grid-template-columns: minmax(32rem, 46.5rem) minmax(10rem, 15rem);
    min-height: calc(100svh - var(--sj-header-height));
    padding-bottom: clamp(2.5rem, 5vh, 5rem);
    padding-top: clamp(1rem, 2vh, 2rem);
}

.sj-collection-menu__mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sj-collection-menu__title-card,
.sj-collection-tile {
    aspect-ratio: 1;
    min-width: 0;
}

.sj-collection-menu__title-card {
    align-items: center;
    background: #f3f0ed;
    display: flex;
    grid-row: span 2;
    justify-content: center;
    padding: 13%;
}

.sj-collection-menu__title-card img {
    height: auto;
    max-height: 100%;
    width: min(100%, 12.4rem);
}

.sj-collection-tile {
    color: var(--sj-color-white);
    display: grid;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.sj-collection-tile__media,
.sj-collection-tile__content {
    grid-area: 1 / 1;
}

.sj-collection-tile__media {
    background: #342f2c;
}

.sj-collection-tile__media::after {
    background: rgb(13 13 13 / 24%);
    content: "";
    inset: 0;
    position: absolute;
}

.sj-collection-tile__media img {
    filter: none;
    height: 100%;
    object-fit: cover;
    object-position: var(--sj-focal-position, 50% 50%);
    transition: filter var(--sj-motion-slow) var(--sj-ease), transform var(--sj-motion-slow) var(--sj-ease);
    width: 100%;
}

.sj-collection-tile__content {
    bottom: 0;
    display: grid;
    gap: 0.4rem;
    left: 0;
    padding: 1rem;
    position: absolute;
    right: 0;
    transition: background-color var(--sj-motion-base) var(--sj-ease), color var(--sj-motion-base) var(--sj-ease);
    z-index: 1;
}

.sj-collection-tile--ao-dai .sj-collection-tile__media::after {
    background: linear-gradient(to bottom, rgb(13 13 13 / 8%) 35%, rgb(13 13 13 / 74%) 100%);
}

.sj-collection-tile__title,
.sj-collection-tile__subtitle,
.sj-collection-menu__links {
    font-family: var(--sj-font-unicase);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sj-collection-tile__title {
    font-size: clamp(0.74rem, 0.72rem + 0.25vw, 1rem);
}

.sj-collection-tile__subtitle {
    font-family: var(--sj-font-body);
    font-size: clamp(0.62rem, 0.56rem + 0.14vw, 0.72rem);
    letter-spacing: 0.05em;
}

.sj-collection-tile:hover .sj-collection-tile__media img,
.sj-collection-tile:focus-visible .sj-collection-tile__media img {
    filter: none;
    transform: scale(1.08);
}

.sj-collection-tile:hover .sj-collection-tile__content,
.sj-collection-tile:focus-visible .sj-collection-tile__content {
    background: rgb(255 255 255 / 90%);
    color: var(--sj-color-ink);
}

.sj-collection-menu__links {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sj-collection-menu__links-title {
    font-size: var(--sj-font-size-xs);
    margin: 0 0 1.25rem;
}

.sj-collection-menu__links ul {
    display: grid;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sj-collection-menu__links a {
    color: inherit;
    font-size: clamp(0.68rem, 0.62rem + 0.25vw, 0.9rem);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

.sj-collection-menu__links a:hover,
.sj-collection-menu__links a:focus-visible {
    color: #f7d8ba;
}

.sj-overlay-nav {
    display: grid;
    gap: var(--sj-space-3);
    margin-bottom: var(--sj-space-5);
}

.sj-overlay-nav a {
    color: inherit;
    font-family: var(--sj-font-display);
    font-size: var(--sj-font-size-h3);
    line-height: 1;
    text-decoration: none;
}

.sj-site-footer {
    background: #b2987b;
    color: var(--sj-color-paper);
    padding-block: var(--sj-space-6) var(--sj-space-3);
}

.sj-site-footer__grid {
    display: grid;
    gap: var(--sj-space-5);
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(12rem, 1fr));
}

.sj-site-footer__wordmark {
    font-family: var(--sj-font-display);
    font-size: 1.65rem;
    line-height: 1;
    margin: 0;
}

.sj-site-footer__tagline {
    color: rgb(247 243 238 / 65%);
}

.sj-site-footer__address {
    display: grid;
    font-size: var(--sj-font-size-xs);
    font-style: normal;
    gap: var(--sj-space-1);
    line-height: 1.45;
    margin-top: var(--sj-space-4);
    max-width: 22rem;
}

.sj-site-footer__social {
    display: flex;
    gap: var(--sj-space-2);
    margin-top: var(--sj-space-3);
}

.sj-site-footer__social .sj-social-link {
    border: 1px solid rgb(247 243 238 / 45%);
    border-radius: 50%;
    min-height: 2.25rem;
    min-width: 2.25rem;
    transition: background-color 180ms ease, color 180ms ease;
}

.sj-site-footer__social .sj-social-link:hover,
.sj-site-footer__social .sj-social-link:focus-visible {
    background: var(--sj-color-paper);
    color: #b2987b;
}

.sj-footer-nav,
.sj-contact-actions {
    display: grid;
    gap: var(--sj-space-2);
}

.sj-footer-nav a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.sj-site-footer__legal {
    border-top: 1px solid rgb(247 243 238 / 18%);
    display: flex;
    font-size: var(--sj-font-size-xs);
    justify-content: space-between;
    margin-top: var(--sj-space-6);
    padding-top: var(--sj-space-3);
}

body.sj-scroll-locked {
    overflow: hidden;
}

.sj-hero {
    color: var(--sj-color-white);
    display: grid;
    min-height: max(42rem, 100svh);
    position: relative;
}

.sj-hero__media,
.sj-hero__shade,
.sj-hero__content {
    grid-area: 1 / 1;
}

.sj-hero__media {
    inset: 0;
    position: absolute;
}

.sj-hero__media img,
.sj-hero__media video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sj-hero__fallback {
    height: 100%;
    width: 100%;
}

.sj-hero__shade {
    background: linear-gradient(90deg, rgb(14 10 9 / 64%), transparent 72%), linear-gradient(to top, rgb(14 10 9 / 46%), transparent 55%);
    position: relative;
    min-width: 0;
}

.sj-hero__content {
    align-content: end;
    display: grid;
    gap: var(--sj-space-3);
    padding-bottom: clamp(4rem, 9vw, 8rem);
    padding-top: calc(var(--sj-header-height) + var(--sj-space-5));
    position: relative;
}

.sj-story__grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 7vw, 8rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.sj-story--media-right .sj-story__media {
    order: 2;
}

.sj-story__copy {
    display: grid;
    gap: var(--sj-space-3);
}

.sj-story__body > :first-child,
.sj-story__copy > :first-child {
    margin-top: 0;
}

.sj-gallery-section {
    overflow: hidden;
}

.sj-gallery-track {
    display: flex;
    gap: var(--sj-space-3);
    margin-top: var(--sj-space-5);
    overflow-x: auto;
    padding-inline: var(--sj-gutter);
    scrollbar-width: none;
}

.sj-gallery-card {
    aspect-ratio: 3 / 4;
    flex: 0 0 clamp(15rem, 28vw, 27rem);
    margin: 0;
}

.sj-gallery-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sj-gallery-card figcaption {
    background: linear-gradient(to top, rgb(20 16 14 / 70%), transparent);
    bottom: 0;
    color: var(--sj-color-white);
    inset-inline: 0;
    padding: var(--sj-space-4) var(--sj-space-3) var(--sj-space-3);
    position: absolute;
}

.sj-contact-journey {
    min-height: 65vh;
}

/* ==========================================================================
   Contact Page — Editorial Presentation (matching production)
   ========================================================================== */

.sj-contact-page {
    background-color: var(--sj-color-paper);
    color: var(--sj-color-ink);
}

.sj-contact-hero {
    align-items: center;
    background-image: var(--sj-contact-hero-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: clamp(22rem, 38vw, 34rem);
    padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
    padding-top: calc(var(--sj-header-height) + clamp(2rem, 5vw, 4rem));
    position: relative;
    text-align: center;
    width: 100%;
}

.sj-contact-hero__overlay {
    background-color: rgba(0, 0, 0, 0.45);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.sj-contact-hero__container {
    position: relative;
    z-index: 2;
}

.sj-contact-hero__title {
    color: #fff !important;
    font-family: var(--sj-font-playfair-display);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.sj-contact-body {
    max-width: var(--sj-container);
    padding-block: clamp(3rem, 6vw, 5.5rem);
}

.sj-contact-intro {
    margin-inline: auto;
    max-width: 60rem;
    text-align: center;
}

.sj-contact-intro__title {
    color: var(--sj-color-ink);
    font-family: var(--sj-font-playfair-display);
    font-size: clamp(1.85rem, 2.4vw, 2.75rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: var(--sj-space-4);
    text-align: center;
}

.sj-contact-intro__narrative {
    color: var(--sj-color-ink);
    font-family: var(--sj-font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.8;
    margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
    padding-inline: clamp(0rem, 4vw, 3.5rem);
    text-align: justify;
    text-justify: inter-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sj-contact-intro__narrative p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: var(--sj-space-3);
}

.sj-contact-split {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 4.5vw, 3.5rem);
    grid-template-columns: 1fr 1fr;
}

.sj-contact-visual {
    margin: 0;
}

.sj-contact-feature {
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(36, 31, 28, 0.08);
    margin: 0;
    overflow: hidden;
}

.sj-contact-feature__img {
    aspect-ratio: 768 / 512;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform var(--sj-motion-slow) var(--sj-ease);
    width: 100%;
}

.sj-contact-feature:hover .sj-contact-feature__img {
    transform: scale(1.02);
}

.sj-contact-details {
    display: flex;
    flex-direction: column;
    padding-top: var(--sj-space-2);
}

.sj-contact-card {
    display: flex;
    flex-direction: column;
}

.sj-contact-card__label {
    color: rgba(36, 31, 28, 0.55);
    font-family: var(--sj-font-display);
    font-size: clamp(0.75rem, 0.82vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.sj-contact-card__value {
    color: #131313;
    font-family: var(--sj-font-display);
    font-size: clamp(1.25rem, 1.6vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.sj-contact-card__link {
    color: #131313;
    font-family: var(--sj-font-display);
    font-size: clamp(1.25rem, 1.6vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--sj-motion-fast) var(--sj-ease);
}

.sj-contact-card__link:hover,
.sj-contact-card__link:focus-visible {
    color: #b2987b;
}

.sj-contact-card--address {
    border-bottom: 1px solid rgba(36, 31, 28, 0.14);
    border-top: 1px solid rgba(36, 31, 28, 0.14);
    margin-block: clamp(1.5rem, 2.5vw, 2.25rem);
    padding-block: clamp(1.5rem, 2.5vw, 2rem);
}

.sj-contact-card--social .sj-contact-card__label {
    margin-bottom: 0.85rem;
}

.sj-contact-social {
    align-items: center;
    display: flex;
    gap: 0.85rem;
}

.sj-contact-social__link {
    align-items: center;
    border-radius: 50%;
    color: #131313;
    display: inline-flex;
    height: 2.5rem;
    justify-content: center;
    text-decoration: none;
    transition: color var(--sj-motion-fast) var(--sj-ease), transform var(--sj-motion-fast) var(--sj-ease);
    width: 2.5rem;
}

.sj-contact-social__link:hover,
.sj-contact-social__link:focus-visible {
    color: #b2987b;
    transform: translateY(-2px);
}

.sj-contact-social__icon {
    display: block;
    height: 1.25rem;
    width: 1.25rem;
}

@media (max-width: 48rem) {
    .sj-contact-hero__title {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    .sj-contact-intro__title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    .sj-contact-intro__narrative {
        font-size: 1.0625rem;
        padding-inline: 0;
        text-align: left;
    }

    .sj-contact-split {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .sj-contact-details {
        padding-top: 0;
    }

    .sj-contact-card__value,
    .sj-contact-card__link {
        font-size: clamp(1.15rem, 4.5vw, 1.35rem);
    }
}

/* Home — cinematic editorial sequence. */
.sj-home {
    --sj-home-camel: #b2987b;
    --sj-home-paper: #b2987b;
    background: var(--sj-home-camel);
    color: var(--sj-color-white);
}

.sj-home :is(h1, h2, h3, h4, h5, h6, p, a, span, button, li) {
    color: var(--sj-color-white) !important;
}

.sj-home .sj-home-joy__copy,
.sj-home .sj-home-joy__copy * {
    color: var(--sj-color-white) !important;
}

.sj-home-opening,
.sj-home-movie {
    background: var(--sj-home-camel);
    color: var(--sj-color-white);
}

.sj-home-hero {
    --sj-hero-slide-top: 10rem;
    --sj-hero-slide-height: min(36rem, calc(100svh - 12rem));
    display: grid;
    min-height: max(46rem, 100svh, calc(var(--sj-hero-slide-top) + var(--sj-hero-slide-height) + 6rem));
    overflow: hidden;
    padding-bottom: clamp(3rem, 6vw, 6rem);
    padding-top: var(--sj-header-height);
    position: relative;
}

.sj-home-hero__media,
.sj-home-hero__veil,
.sj-home-hero__link,
.sj-home-loader {
    inset: 0;
    position: absolute;
}

.sj-home-hero__media {
    background: var(--sj-home-camel);
}

.sj-home-hero__media video,
.sj-home-hero__fallback,
.sj-home-hero__fallback picture,
.sj-home-hero__fallback img {
    height: 100%;
    width: 100%;
}

.sj-home-hero__veil {
    background: linear-gradient(90deg, rgb(105 78 58 / 78%) 0 31%, rgb(105 78 58 / 32%) 62%, rgb(105 78 58 / 18%));
    z-index: 1;
}

.sj-home-hero__link {
    z-index: 2;
}

.sj-home-hero__link:focus-visible {
    outline: 2px solid var(--sj-color-white);
    outline-offset: -0.5rem;
}

.sj-home-loader {
    align-items: center;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 500ms ease;
    z-index: 10;
}

.sj-home-loader__wash {
    background: color-mix(in srgb, var(--sj-home-camel) 94%, white);
    inset: 0;
    position: absolute;
    transition: opacity 1400ms var(--sj-ease);
}

.sj-home-loader__wordmark {
    color: var(--sj-color-white);
    font-family: var(--sj-font-display);
    font-size: clamp(1.25rem, 1.5vw, 1.65rem);
    letter-spacing: 0.12em;
    position: relative;
    text-transform: uppercase;
    transition: opacity 550ms ease, transform 800ms var(--sj-ease);
}

.sj-home-loader__signal {
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 50%;
    height: 2.5rem;
    left: calc(50% - 1.25rem);
    position: absolute;
    top: calc(50% + 2.75rem);
    width: 2.5rem;
}

.sj-home-loader__signal::after {
    animation: sj-home-loading 900ms linear infinite;
    border: 1px solid transparent;
    border-radius: inherit;
    border-top-color: rgb(255 255 255 / 78%);
    content: "";
    inset: -1px;
    position: absolute;
}

@keyframes sj-home-loading {
    to { transform: rotate(360deg); }
}

.sj-intro-playing .sj-home-loader {
    opacity: 1;
}

.sj-intro-playing .sj-site-header {
    opacity: 0;
}

.sj-intro-playing .sj-home-hero__panels,
.sj-intro-playing .sj-home-hero__content {
    opacity: 0;
    transform: translateY(2rem);
}

.sj-intro-playing.sj-intro-revealing .sj-home-loader__wash {
    opacity: 0;
}

.sj-intro-playing.sj-intro-revealing .sj-home-loader__signal {
    opacity: 0;
}

.sj-intro-playing.sj-intro-revealing .sj-home-loader__wordmark {
    opacity: 0;
    transform: translateY(-1rem);
}

.sj-intro-playing.sj-intro-revealing .sj-site-header,
.sj-intro-playing.sj-intro-revealing .sj-home-hero__content,
.sj-intro-playing.sj-intro-revealing .sj-home-hero__panels {
    opacity: 1;
    transform: none;
}

.sj-home-hero__panels {
    display: flex;
    height: var(--sj-hero-slide-height);
    left: calc(50% - 12.5rem);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    position: absolute;
    right: 0;
    scroll-behavior: auto;
    -ms-overflow-style: none;
    scrollbar-color: transparent transparent;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    top: var(--sj-hero-slide-top);
    transition: opacity 1200ms var(--sj-ease), transform 1200ms var(--sj-ease);
    -webkit-overflow-scrolling: touch;
    z-index: 2;
}

.sj-home-hero__panels::-webkit-scrollbar,
.sj-home-collection__rail::-webkit-scrollbar {
    background: transparent;
    display: none;
    height: 0;
    width: 0;
}

.sj-home-hero__panel {
    background: transparent;
    flex: 0 0 min(26.875rem, 40vw);
    min-width: 0;
    opacity: 0;
    transform: translateX(3rem);
}

/* Prevent a 1px light seam from sub-pixel image sizing in the horizontal rail. */
.sj-home-hero__panel > a,
.sj-home-hero__panel > a > picture {
    display: block;
    height: 100%;
    width: 100%;
}

.sj-home-hero__panel > a > picture > img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: var(--sj-focal-position, 50% 50%);
    width: 100%;
}

.sj-home-hero__panel:first-child {
    opacity: 1;
    transform: none;
}

.sj-intro-revealing .sj-home-hero__panel:not(:first-child),
body:not(.sj-intro-playing) .sj-home-hero__panel:not(:first-child) {
    animation: sj-home-panel-in 1100ms var(--sj-ease) forwards;
    animation-delay: calc(100ms + (var(--sj-panel-index) * 300ms));
}

@keyframes sj-home-panel-in {
    to {
        opacity: 1;
        transform: none;
    }
}

.sj-home-hero__content {
    bottom: auto;
    display: grid;
    gap: 1rem;
    left: max(var(--sj-gutter), calc(50% - 23.125rem));
    margin: 0;
    max-width: none;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: calc(var(--sj-hero-slide-top) + var(--sj-hero-slide-height) - 2.5em);
    transition: opacity 1200ms var(--sj-ease) 350ms, transform 1200ms var(--sj-ease) 350ms;
    width: min(31rem, calc(100% - (2 * var(--sj-gutter))));
    z-index: 3;
}

.sj-home-hero__title,
.sj-home-collection__heading h2,
.sj-home-joy__heading h2,
.sj-home-photo__content h2 {
    font-family: var(--sj-font-display);
    font-weight: 400;
    margin: 0;
    white-space: pre-line;
}

.sj-home-hero__title {
    font-family: var(--sj-font-ms-madi);
    font-size: clamp(2.8rem, 3.4vw, 4.1rem);
    letter-spacing: 0;
    line-height: 0.7;
}

.sj-home-hero__eyebrow,
.sj-home-hero__brand {
    font-family: var(--sj-font-display);
    font-size: var(--sj-font-size-xs);
    letter-spacing: 0.08em;
    margin: 0;
    text-transform: none;
}

.sj-home-hero__eyebrow {
    margin-top: 1.5rem;
}

.sj-home-concept {
    display: grid;
    gap: 2rem;
    padding-block: clamp(3.75rem, 7.5vw, 7.5rem);
    padding-left: max(var(--sj-gutter), calc(50% - 23.125rem));
}

.sj-home-concept h2 {
    font-family: var(--sj-font-ms-madi);
    font-size: clamp(2rem, 2.4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
}

.sj-home-hero__title--playfair {
    font-family: var(--sj-font-playfair-display);
    line-height: 0.75;
}

.sj-home-concept__title {
    font-family: var(--sj-font-playfair-display) !important;
}

.sj-home-concept__title a {
    color: inherit;
    text-decoration: none;
}

.sj-home-line-link {
    align-items: center;
    color: inherit;
    display: inline-flex;
    font-family: var(--sj-font-display);
    font-style: italic;
    font-weight: 400;
    gap: 1.25rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    width: fit-content;
}

.sj-home .sj-home-line-link,
.sj-home .sj-home-concept__title a,
.sj-home a {
    font-weight: 400;
}

.sj-home .sj-home-line-link {
    font-size: 18px;
    font-weight: 400;
}

.sj-home-line-link::after {
    background: currentColor;
    content: "";
    height: 1px;
    transition: width var(--sj-motion-base) var(--sj-ease);
    width: 2.5rem;
}

.sj-home-line-link::before {
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: 0.45rem;
    order: 3;
    transform: translateX(-1.65rem);
    width: 0.45rem;
}

.sj-home-line-link:hover::after,
.sj-home-line-link:focus-visible::after {
    width: 4rem;
}

.sj-home-movie {
    cursor: pointer;
    padding-bottom: clamp(7rem, 13vw, 13rem);
    position: relative;
}

.sj-home-movie__frame {
    aspect-ratio: 9 / 16;
    margin-inline: auto;
    width: min(34rem, calc(100% - (2 * var(--sj-gutter))));
}

.sj-home-movie__frame video,
.sj-home-movie__frame iframe {
    border: 0;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sj-home-movie__link {
    inset: 0;
    position: absolute;
    z-index: 2;
}

.sj-home-movie__link:focus-visible {
    outline: 2px solid var(--sj-color-white);
    outline-offset: -0.5rem;
}

.sj-home-collection {
    background: #f7f4ec;
    min-height: max(54rem, 100svh);
    overflow: visible;
    padding-block: clamp(4.5rem, 6.5vw, 7rem) clamp(4rem, 6vw, 6rem);
    position: relative;
}

.sj-home-collection__heading {
    color: #35452a;
    left: clamp(60%, 63vw, 67%);
    pointer-events: none;
    position: absolute;
    top: clamp(3.5rem, 5vw, 5.5rem);
    z-index: 2;
}

.sj-home-collection__overline {
    line-height: 0;
    margin: 0 0 clamp(1rem, 1.5vw, 1.75rem);
    transform: none;
    width: clamp(17rem, 21vw, 25rem);
}

.sj-home-collection__heading img {
    display: block;
    filter: none;
    height: auto;
    width: 100%;
}

.sj-home-collection__heading h2 {
    line-height: 0;
    margin: 0;
    width: clamp(17rem, 21vw, 25rem);
}

.sj-home-collection__rail {
    display: flex;
    height: min(68vh, 36rem);
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    width: 58%;
    -webkit-overflow-scrolling: touch;
}

@media (hover: hover) and (pointer: fine) {
    .sj-home-hero__panels,
    .sj-home-collection__rail {
        cursor: grab;
    }

    .sj-home-hero__panels.is-dragging,
    .sj-home-collection__rail.is-dragging {
        cursor: grabbing;
        user-select: none;
    }
}

.sj-home-collection__card {
    flex: 0 0 clamp(15rem, 19.5vw, 23.5rem);
    height: 100%;
    margin: 0;
}

.sj-home-collection__card:nth-child(3n + 1) {
    filter: saturate(0.8);
}

.sj-home-collection__card > a {
    display: block;
    height: 100%;
}

.sj-home-collection__links {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.25vw, 1.4rem);
    left: clamp(60%, 63vw, 67%);
    position: absolute;
    top: clamp(26rem, 33vw, 36rem);
    z-index: 2;
}

.sj-home-collection__links .sj-home-line-link {
    color: #857038;
    font-family: var(--sj-font-display);
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
}

.sj-home .sj-home-collection__heading {
    color: #35452a !important;
}

.sj-home .sj-home-collection__links .sj-home-line-link {
    color: #857038 !important;
    font-family: var(--sj-font-display);
    font-style: normal;
    font-weight: 400;
}

.sj-home-collection__links .sj-home-line-link::after {
    width: 1.75rem;
}

.sj-home-collection__links .sj-home-line-link:hover::after,
.sj-home-collection__links .sj-home-line-link:focus-visible::after {
    width: 2.75rem;
}

.sj-home-joy {
    background: var(--sj-home-paper);
    cursor: pointer;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
}

.sj-home-joy__link {
    inset: 0;
    position: absolute;
    z-index: 5;
}

.sj-home-joy__link:focus-visible {
    outline: 2px solid var(--sj-color-white);
    outline-offset: -0.5rem;
}

.sj-home-joy__backdrop {
    filter: grayscale(1);
    height: clamp(52rem, 58vw, 64rem);
    width: 100%;
}

.sj-home-joy__backdrop::after {
    background: rgb(238 235 229 / 18%);
    content: "";
    inset: 0;
    position: absolute;
}

.sj-home-joy__heading {
    color: var(--sj-color-white);
    left: 39%;
    position: absolute;
    top: 1.5rem;
    z-index: 2;
}

.sj-home-joy__heading h2 {
    line-height: 0;
    width: clamp(15rem, 16.5vw, 19.766rem);
}

.sj-home-joy__heading h2 img {
    display: block;
    height: auto;
    width: 100%;
}

.sj-home-joy__heading p {
    font-family: var(--sj-font-display);
    font-size: 1.45rem;
    letter-spacing: 0.14em;
    margin: 1rem 0 0;
    text-transform: uppercase;
}

.sj-home-joy__lower {
    min-height: 19rem;
    padding: 5rem var(--sj-gutter) 3rem;
    position: relative;
}

.sj-home-joy__portrait {
    aspect-ratio: 3 / 4;
    bottom: 0;
    left: 54.5%;
    position: absolute;
    width: min(26.5vw, 31.6rem);
}

.sj-home-joy__copy {
    color: var(--sj-color-white);
    font-family: var(--sj-font-display);
    font-size: 18px;
    font-weight: 400 !important;
    letter-spacing: 0.05em;
    margin-left: max(6rem, calc((100vw - 90rem) / 2));
    max-width: 32rem;
    text-align: justify;
    text-justify: inter-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sj-home-joy__copy p,
.sj-home-joy__copy span,
.sj-home-joy__copy .sj-brand-wordmark {
    font-family: var(--sj-font-display) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

.sj-home-joy__actions {
    bottom: 1.5rem;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(15rem, 1fr));
    left: 64.5%;
    position: absolute;
    right: 1rem;
}

.sj-home-box-link {
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--sj-home-camel) 58%, white);
    color: var(--sj-color-white);
    display: flex;
    font-family: var(--sj-font-display);
    justify-content: center;
    min-height: 4.8rem;
    text-decoration: none;
    transition: background var(--sj-motion-base) ease, color var(--sj-motion-base) ease;
}

.sj-home-box-link:hover,
.sj-home-box-link:focus-visible {
    background: var(--sj-home-camel);
    color: white;
}

.sj-home-photo {
    color: var(--sj-color-white);
    cursor: pointer;
    display: grid;
    min-height: clamp(34rem, 72vw, 47rem);
    overflow: hidden;
    position: relative;
}

.sj-home-photo__media,
.sj-home-photo__content {
    grid-area: 1 / 1;
}

.sj-home-photo__link {
    inset: 0;
    position: absolute;
    z-index: 2;
}

.sj-home-photo__link:focus-visible {
    outline: 2px solid var(--sj-color-white);
    outline-offset: -0.5rem;
}

.sj-home-photo:hover .sj-home-line-link::after,
.sj-home-photo:focus-within .sj-home-line-link::after {
    width: 4rem;
}

.sj-home-photo__media::after {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 40%, rgb(0 0 0 / 35%) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.sj-home-photo__content {
    align-self: end;
    display: grid;
    gap: 0.5rem;
    justify-items: center;
    margin-inline: auto;
    max-width: 44rem;
    padding: 1.5rem var(--sj-gutter) clamp(1.25rem, 3.5vw, 2.25rem);
    position: relative;
    text-align: center;
}

.sj-home-photo__eyebrow {
    font-family: var(--sj-font-playfair-display) !important;
    font-size: clamp(2rem, 2.4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    text-transform: none;
}

.sj-home-photo__content h2 {
    font-family: var(--sj-font-display);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    font-weight: inherit;
    letter-spacing: 0.08em;
}

.sj-home-photo__content > p:not(.sj-home-photo__eyebrow) {
    font-size: 18px;
    margin: 0;
}

.sj-page-intro {
    background: var(--sj-color-accent-dark);
    color: var(--sj-color-white);
    padding-top: calc(var(--sj-header-height) + var(--sj-space-7));
}

.sj-qa {
    padding-block: var(--sj-space-7);
}

.sj-qa-category {
    display: grid;
    gap: var(--sj-space-5);
    grid-template-columns: minmax(14rem, 0.6fr) minmax(0, 1.4fr);
    padding-block: var(--sj-space-5);
}

.sj-qa-category + .sj-qa-category {
    border-top: 1px solid var(--sj-color-line);
}

.sj-accordion__item {
    border-top: 1px solid var(--sj-color-line);
}

.sj-accordion__item:last-child {
    border-bottom: 1px solid var(--sj-color-line);
}

.sj-accordion__item h3 {
    margin: 0;
}

.sj-accordion__trigger {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    font-family: var(--sj-font-display);
    font-size: var(--sj-font-size-lead);
    justify-content: space-between;
    padding-block: var(--sj-space-3);
    text-align: left;
    width: 100%;
}

.sj-accordion__panel {
    max-width: var(--sj-container-copy);
    padding-bottom: var(--sj-space-4);
}

.sj-empty-state {
    border: 1px solid var(--sj-color-line);
    max-width: 56rem;
    padding: var(--sj-space-5);
}

@media (min-width: 48rem) and (max-width: 74.99rem) {
    .sj-home-hero {
        --sj-hero-slide-top: 7rem;
        --sj-hero-slide-height: min(32rem, calc(100svh - 10rem));
        min-height: max(48rem, calc(var(--sj-hero-slide-top) + var(--sj-hero-slide-height) + 6rem));
        padding-bottom: 4rem;
    }

    .sj-home-hero__panels {
        height: var(--sj-hero-slide-height);
        left: 20%;
        top: var(--sj-hero-slide-top);
    }

    .sj-home-hero__panel {
        flex-basis: clamp(15rem, 38vw, 21rem);
    }

    .sj-home-hero__content {
        left: var(--sj-gutter);
        width: min(27rem, calc(100% - (2 * var(--sj-gutter))));
    }

    .sj-home-concept {
        padding-block: 4.5rem 5.5rem;
        padding-left: var(--sj-gutter);
    }

    .sj-home-movie {
        padding-bottom: 8rem;
    }

    .sj-home-collection {
        min-height: 0;
        padding-block: clamp(3rem, 5vw, 4.5rem) 4.5rem;
        position: relative;
    }

    @media (max-width: 63.99rem) {
        .sj-home-collection__heading {
            align-items: flex-end;
            display: flex;
            flex-direction: column;
            left: auto;
            margin-left: auto;
            margin-right: var(--sj-gutter);
            position: relative;
            top: 0;
            width: fit-content;
        }

        .sj-home-collection__overline {
            margin-bottom: 1.5rem;
            transform: none;
            width: min(20rem, 60vw);
        }

        .sj-home-collection__heading h2 {
            margin: 0;
            width: min(20rem, 60vw);
        }

        .sj-home-collection__rail {
            height: min(32rem, 56vw);
            margin-top: 2rem;
            width: 100%;
        }

        .sj-home-collection__card {
            flex-basis: clamp(16rem, 32vw, 21rem);
        }

        .sj-home-collection__links {
            column-gap: 1.5rem;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            left: auto;
            padding: 2.5rem var(--sj-gutter) 0;
            position: relative;
            row-gap: 1.25rem;
            top: auto;
        }

        .sj-home-collection__links .sj-home-line-link {
            font-size: 16px;
            letter-spacing: 0.08em;
            min-width: 0;
            text-transform: uppercase;
            width: 100%;
        }
    }

    .sj-home-joy__lower {
        align-items: end;
        display: grid;
        gap: 2rem;
        grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.65fr);
        min-height: 0;
        padding: 3rem var(--sj-gutter) 0;
    }

    .sj-home-joy__portrait {
        bottom: auto;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        left: auto;
        max-width: 20rem;
        position: relative;
        width: 100%;
    }

    .sj-home-joy__copy {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        max-width: 34rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 47.99rem) {
    :root {
        --sj-header-height: 4.5rem;
        --sj-gutter: 1.25rem;
    }

    html {
        overflow-x: hidden;
    }

    body.sj-editorial {
        max-width: 100%;
        overflow-x: hidden;
    }

    .sj-site-header {
        min-height: calc(5.25rem + env(safe-area-inset-top, 0px));
        padding-bottom: 1.25rem;
        padding-top: calc(env(safe-area-inset-top, 0px) + 1.25rem);
    }

    .sj-site-header__inner {
        height: auto;
        min-height: 3.25rem;
    }

    .sj-site-header__brand,
    .sj-collection-menu__brand,
    .sj-collection-page__brand {
        padding-bottom: 0.35rem;
        padding-top: 0.35rem;
    }

    .sj-brand-wordmark,
    .sj-site-header__wordmark,
    .sj-collection-page__brand,
    .sj-collection-menu__brand {
        font-size: 1.35rem;
    }

    .sj-nav--desktop {
        display: none;
    }

    .sj-nav-toggle {
        align-items: center;
        display: inline-flex;
        justify-content: center;
    }

    .sj-mobile-nav {
        display: flex;
        flex-direction: column;
        padding-top: calc(env(safe-area-inset-top, 0px) + var(--sj-gutter));
    }

    .sj-mobile-nav[hidden] {
        display: none;
    }

    .sj-mobile-nav .sj-overlay__bar {
        justify-content: flex-end;
    }

    .sj-mobile-nav .sj-overlay-nav,
    .sj-mobile-nav .sj-nav__list {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: var(--sj-space-5);
        width: 100%;
    }

    .sj-mobile-nav .sj-overlay-nav li,
    .sj-mobile-nav .sj-nav__list li {
        display: block;
        width: 100%;
    }

    .sj-mobile-nav .sj-overlay-nav a,
    .sj-mobile-nav .sj-nav__list a,
    .sj-mobile-nav .sj-nav__link {
        color: inherit;
        display: block;
        font-family: var(--sj-font-display);
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0.08em;
        line-height: 1.4;
        padding-block: 0.35rem;
        text-decoration: none;
        text-transform: uppercase;
        width: 100%;
    }

    .sj-site-header .sj-collection-trigger {
        display: none;
    }

    .sj-collection-page {
        overflow: visible;
    }

    .sj-collection-menu__bar {
        height: auto;
        min-height: calc(5.25rem + env(safe-area-inset-top, 0px));
        padding-bottom: 1.25rem;
        padding-top: calc(env(safe-area-inset-top, 0px) + 1.25rem);
    }

    .sj-collection-menu__nav {
        display: none;
    }

    .sj-collection-menu--page .sj-collection-menu__close {
        display: none;
    }

    .sj-collection-menu__mobile-toggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .sj-collection-page__hero {
        display: flex;
        flex-direction: column;
        margin: 0;
        min-height: 0;
        padding: 4.5rem var(--sj-gutter) 3.5rem;
    }

    .sj-collection-page__artwork {
        left: var(--sj-gutter);
        max-width: 15rem;
        top: 0.4rem;
        width: 51%;
    }

    .sj-collection-page__title {
        margin: 0 0 1.75rem;
        transform: none;
    }

    .sj-collection-page__title h1 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
    }

    .sj-collection-page__image {
        order: 2;
    }

    .sj-collection-page__categories {
        margin: 2.25rem 0 0;
        order: 3;
    }

    .sj-collection-page__categories ul {
        gap: 1rem;
    }

    .sj-collection-menu__layout {
        align-items: start;
        gap: 2rem;
        grid-template-columns: 1fr;
        min-height: 0;
        padding-bottom: 2.5rem;
    }

    .sj-collection-menu__mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sj-collection-menu__title-card {
        grid-row: auto;
    }

    .sj-collection-menu__links {
        align-self: auto;
    }

    .sj-collection-menu__links ul {
        gap: 0.7rem;
    }

    .sj-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .sj-story__grid,
    .sj-qa-category {
        grid-template-columns: 1fr;
    }

    .sj-hero .sj-display {
        font-size: clamp(2.8rem, 10.5vw, 3.4rem);
        hyphens: auto;
        overflow-wrap: anywhere;
        text-wrap: pretty;
    }

    .sj-hero .sj-cta {
        max-width: 100%;
        width: 100%;
    }

    .sj-story--media-right .sj-story__media {
        order: 0;
    }

    .sj-hero__shade {
        background: linear-gradient(to top, rgb(14 10 9 / 70%), transparent 75%);
    }

    .sj-site-footer__legal {
        align-items: center;
        flex-direction: row;
        font-size: clamp(0.5rem, 2.5vw, var(--sj-font-size-xs));
        gap: 0.5rem;
    }

    .sj-site-footer__legal span {
        white-space: nowrap;
    }

    .sj-home-hero {
        --sj-hero-slide-top: 5.5rem;
        --sj-hero-slide-height: clamp(16rem, 38vh, 22rem);
        min-height: max(40rem, calc(var(--sj-hero-slide-top) + var(--sj-hero-slide-height) + 12rem));
        padding-bottom: 3.5rem;
        padding-top: var(--sj-header-height);
    }

    .sj-home-hero__veil {
        background: linear-gradient(to top, rgb(105 78 58 / 82%), rgb(105 78 58 / 18%) 72%);
    }

    .sj-home-hero__panels {
        height: var(--sj-hero-slide-height);
        left: 16%;
        right: 0;
        top: var(--sj-hero-slide-top);
    }

    .sj-home-hero__panel {
        flex-basis: 62%;
    }

    .sj-home-hero__content {
        align-self: auto;
        bottom: auto;
        left: 0;
        margin: 0;
        padding: 0 var(--sj-gutter);
        position: absolute;
        top: calc(var(--sj-hero-slide-top) + var(--sj-hero-slide-height) - 1.25rem);
        width: 100%;
    }

    .sj-home-hero__title {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem);
        line-height: 1.15;
        max-width: min(26rem, 100%);
    }

    .sj-home-hero__title--playfair {
        line-height: 1.15;
    }

    .sj-home-concept {
        padding-block: 3.75rem 5.25rem;
        padding-left: var(--sj-gutter);
    }

    .sj-home-movie {
        padding-bottom: 7rem;
    }

    .sj-home-movie__frame {
        width: min(28rem, calc(100% - (2 * var(--sj-gutter))));
    }

    .sj-home-collection {
        min-height: 0;
        padding-block: clamp(2.5rem, 6vw, 3.5rem) 3.75rem;
        position: relative;
    }

    .sj-home-collection__heading {
        align-items: flex-end;
        display: flex;
        flex-direction: column;
        left: auto;
        margin-left: auto;
        margin-right: var(--sj-gutter);
        position: relative;
        top: 0;
        width: fit-content;
    }

    .sj-home-collection__overline {
        margin-bottom: 1.25rem;
        transform: none;
        width: min(18rem, 75vw);
    }

    .sj-home-collection__heading h2 {
        margin: 0;
        width: min(18rem, 75vw);
    }

    .sj-home-collection__rail {
        height: 22rem;
        margin-top: 2rem;
        width: 100%;
    }

    .sj-home-collection__card {
        flex-basis: 13.5rem;
    }

    .sj-home-collection__links {
        column-gap: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        left: auto;
        max-width: 100%;
        padding: 2rem var(--sj-gutter) 0;
        position: relative;
        row-gap: 1rem;
        top: auto;
    }

    .sj-home-collection__links .sj-home-line-link {
        font-size: 15px;
        letter-spacing: 0.06em;
        min-width: 0;
        text-transform: uppercase;
        width: 100%;
    }

    .sj-home-joy__backdrop {
        height: 39.2rem;
    }

    .sj-home-joy__heading {
        left: var(--sj-gutter);
        top: 3rem;
    }

    .sj-home-joy__heading h2 {
        width: min(22rem, 80vw);
    }

    .sj-home-joy__portrait {
        bottom: auto;
        left: auto;
        margin: -9.6rem 0 0 auto;
        position: relative;
        width: 57.6%;
    }

    .sj-home-joy__lower {
        padding: 0 var(--sj-gutter) 4rem;
    }

    .sj-home-joy__copy {
        margin: 3rem 0 0;
    }

    .sj-home-joy__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 3rem;
        position: static;
    }

    .sj-home-photo {
        min-height: 42rem;
    }

    .sj-home-photo__content {
        gap: 0.5rem;
    }
}

/* Brand name treatment: keep all visible Soojin Bridal wordmarks consistent. */
.sj-brand-wordmark,
.sj-site-header__wordmark,
.sj-collection-page__brand,
.sj-collection-menu__brand,
.sj-site-footer__wordmark,
.sj-home-loader__wordmark {
    font-family: var(--sj-font-wordmark);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --sj-motion-fast: 1ms;
        --sj-motion-base: 1ms;
        --sj-motion-slow: 1ms;
    }

    [data-sj-reveal] {
        opacity: 1;
        transform: none;
    }

    .sj-home-loader {
        display: none;
    }

    .sj-home-hero__panel {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .sj-editorial *,
    .sj-editorial *::before,
    .sj-editorial *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

.sj-feedback__listing {
    padding-top: 30px;
}

.sj-feedback__grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 3rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sj-feedback__trigger {
    background: var(--sj-color-accent-dark);
    border: 1px solid var(--sj-color-accent-dark);
    border-radius: clamp(1.75rem, 3vw, 3rem);
    color: inherit;
    cursor: pointer;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 0;
    text-align: center;
    width: 100%;
}

.sj-feedback__media {
    transition: transform var(--sj-motion-slow) var(--sj-ease);
}

.sj-feedback__card-label {
    align-items: center;
    background: var(--sj-color-paper);
    color: var(--sj-color-ink);
    display: flex;
    justify-content: center;
    min-height: 3.5rem;
    padding: var(--sj-space-2) var(--sj-space-3) var(--sj-space-3);
    text-align: center;
    text-transform: none;
}

.sj-feedback__trigger:hover .sj-feedback__media,
.sj-feedback__trigger:focus-visible .sj-feedback__media {
    transform: scale(0.985);
}

.sj-feedback__trigger:hover .sj-feedback__card-label,
.sj-feedback__trigger:focus-visible .sj-feedback__card-label {
    color: var(--sj-color-ink);
}

.sj-feedback__card-label,
.sj-feedback-modal__status {
    font-size: var(--sj-font-size-xs);
    letter-spacing: var(--sj-tracking-label);
}

.sj-feedback-modal__status {
    text-transform: uppercase;
}

.sj-feedback-modal {
    align-items: center;
    background: var(--sj-color-overlay);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: var(--sj-layer-overlay);
}

.sj-feedback-modal[hidden] {
    display: none;
}

.sj-feedback-modal__panel {
    color: var(--sj-color-ink);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: min(58.5rem, calc(100vh - 2rem));
    height: min(58.5rem, calc(100dvh - 2rem));
    max-width: min(72.8rem, calc(100vw - 2rem));
    width: min(72.8rem, calc(100vw - 2rem));
}

.sj-feedback-modal__bar,
.sj-feedback-modal__controls {
    align-items: center;
    color: var(--sj-color-white);
    display: flex;
    justify-content: space-between;
    min-height: 4rem;
    padding-block: var(--sj-space-2);
}

.sj-feedback-modal__controls {
    gap: var(--sj-space-2);
    justify-content: center;
}

.sj-feedback-modal__media {
    min-height: 0;
    position: relative;
}

.sj-feedback-modal__stage {
    align-items: center;
    background: var(--sj-color-ink);
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    touch-action: pan-y;
}

.sj-feedback-modal__side-control {
    align-items: center;
    background: var(--sj-color-accent-dark);
    border: 1px solid rgb(255 255 255 / 65%);
    color: var(--sj-color-white);
    cursor: pointer;
    display: inline-flex;
    font-size: 2rem;
    height: 3rem;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    z-index: 1;
}

.sj-feedback-modal__side-control:hover,
.sj-feedback-modal__side-control:focus-visible {
    background: var(--sj-color-paper);
    color: var(--sj-color-ink);
}

.sj-feedback-modal__side-control--previous {
    left: var(--sj-space-2);
}

.sj-feedback-modal__side-control--next {
    right: var(--sj-space-2);
}

.sj-feedback-modal__spinner {
    animation: sj-spin 0.8s linear infinite;
    border: 3px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
    border-top-color: var(--sj-color-paper);
    height: 2.75rem;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.75rem;
    z-index: 2;
}

.sj-feedback-modal__spinner[hidden] {
    display: none;
}

@keyframes sj-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.sj-feedback__slide {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.sj-feedback__slide img {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity var(--sj-motion-fast) var(--sj-ease);
    width: 100%;
}

.sj-feedback__slide img.is-loading {
    opacity: 0;
}

.sj-feedback__hero {
    align-items: center;
    color: var(--sj-color-white);
    justify-content: center;
    height: clamp(20rem, 34vh, 28rem);
    min-height: clamp(20rem, 34vh, 28rem);
    overflow: hidden;
    padding-top: 0;
    position: relative;
}

.sj-feedback__hero :is(.sj-home-hero__title, .sj-home-hero__eyebrow, .sj-home-hero__brand) {
    color: inherit;
}

.sj-feedback__hero-content {
    align-items: center;
    display: flex;
    height: 100%;
    inset: auto;
    justify-content: center;
    max-width: none;
    /* Center the title in the visible hero area below the fixed menu. */
    padding-top: var(--sj-header-height);
    padding-inline: var(--sj-gutter);
    position: relative;
    text-align: center;
    transform: none;
    width: 100%;
}

.sj-feedback__hero-message {
    font-family: var(--sj-font-display);
    font-size: clamp(2rem, 1.3rem + 2vw, 3.25rem);
    letter-spacing: 0.04em;
    margin: 0;
}

.sj-feedback__hero-content :is(.sj-home-hero__title, .sj-home-hero__eyebrow, .sj-home-hero__brand) {
    display: none;
}

@media (max-width: 47.99rem) {
    .sj-feedback__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sj-feedback-modal {
        padding: var(--sj-space-2);
    }

    .sj-feedback-modal__panel {
        height: calc(100vh - (2 * var(--sj-space-2)));
        height: calc(100dvh - (2 * var(--sj-space-2)));
        max-width: calc(100vw - (2 * var(--sj-space-2)));
        width: calc(100vw - (2 * var(--sj-space-2)));
    }

    .sj-feedback__hero {
        height: clamp(16rem, 28vh, 22rem);
        min-height: clamp(16rem, 28vh, 22rem);
        padding-top: 0;
    }
}
