:root {
    --black: #050505;
    --ink: #111;
    --white: #fff;
    --ivory: #f5f0e8;
    --muted: #81796f;
    --line: rgba(0,0,0,.12);
    --gold: #c9a767;
    --sans: "Segoe UI", Arial, sans-serif;
    --display: "Didot", "Bodoni 72", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: grid;
    grid-template-columns: 128px 1fr;
    align-items: center;
    gap: 20px;
    padding: 24px clamp(22px, 5vw, 72px);
    color: var(--white);
    background: linear-gradient(to bottom, rgba(0,0,0,.46), transparent);
    transition: background .35s ease, padding .35s ease, color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(5,5,5,.88);
    backdrop-filter: blur(18px);
    padding-block: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0;
    min-width: 0;
    width: 118px;
}

.brand-mark { width: 112px; height: 72px; object-fit: contain; filter: brightness(0) invert(1); opacity: .96; }

.site-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.1vw, 34px);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: none;
}

.site-nav a { opacity: .86; transition: opacity .25s ease; }
.site-nav a:hover { opacity: 1; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 38px;
    border: 0;
    background: transparent;
    color: currentColor;
}

.nav-toggle span { display: block; width: 28px; height: 2px; margin: 7px auto; background: currentColor; }

.hero-video {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background: #111;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.14) 48%, rgba(0,0,0,.42)),
        linear-gradient(0deg, rgba(0,0,0,.42), transparent 44%);
}

.hero-caption {
    position: absolute;
    left: clamp(22px, 8.5vw, 160px);
    bottom: clamp(60px, 13vh, 140px);
    width: min(520px, calc(100% - 44px));
    opacity: 1;
    transform: none;
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.hero-caption[data-reveal] { opacity: 1; transform: none; }

.hero-caption p,
.section-kicker {
    margin: 0 0 13px;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 750;
}

.hero-caption h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 8.8vw, 132px);
    line-height: .88;
    font-weight: 400;
}

.hero-caption span {
    display: block;
    margin-top: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255,255,255,.9);
}

.hero-caption a,
.cinema-band a,
.actions a,
.actions button,
.lux-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 44px;
    margin-top: 68px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.hero-caption a:hover,
.cinema-band a:hover,
.actions a:hover,
.actions button:hover,
.lux-form button:hover { background: currentColor; color: #111; transform: translateY(-2px); }

.hero-scroll {
    position: absolute;
    right: 38px;
    bottom: 50px;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    opacity: .8;
}

.split-section {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: clamp(36px, 8vw, 110px);
    padding: clamp(78px, 10vw, 150px) clamp(22px, 8vw, 150px);
}

.manifesto { background: var(--ivory); }

.home-philosophy {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    grid-template-columns: minmax(360px, .9fr) minmax(440px, 1fr);
    gap: clamp(54px, 7vw, 104px);
    padding: clamp(74px, 7vw, 104px) clamp(22px, 7vw, 110px) clamp(66px, 6vw, 92px);
    background: #fff;
}

.home-philosophy::before {
    content: none;
}

.home-philosophy::after {
    content: "";
    position: absolute;
    right: clamp(-150px, -8vw, -82px);
    bottom: clamp(12px, 2vw, 34px);
    z-index: -1;
    width: clamp(480px, 39vw, 650px);
    aspect-ratio: 29 / 32;
    background: url("/assets/images/lili-mark.svg") center / contain no-repeat;
    filter: grayscale(1);
    opacity: .02;
    pointer-events: none;
}

.home-philosophy > * {
    position: relative;
    z-index: 1;
}

.manifesto h2,
.cinema-band h2,
.section-title h2,
.minimal-hero h1,
.product-info h1,
.form-page h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 5.4vw, 92px);
    line-height: .98;
    font-weight: 400;
}

.home-philosophy h2 {
    max-width: 570px;
    font-size: clamp(50px, 5vw, 82px);
}

.home-philosophy .section-kicker {
    color: #151515;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .16em;
}

.manifesto p,
.form-page p,
.product-info p,
.minimal-hero span {
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
}

.home-philosophy p:not(.section-kicker) {
    max-width: 690px;
    color: #5f5a52;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 2.05;
    letter-spacing: .012em;
}

.philosophy-features {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(26px, 3vw, 42px);
    background: transparent;
}

.philosophy-features span {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 94px;
    padding: 17px 18px;
    color: #151515;
    background: transparent;
    border-right: 1px solid rgba(17,17,17,.12);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.philosophy-features span:last-child { border-right: 0; }

.philosophy-features strong {
    color: var(--gold);
    font-family: var(--display);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.digital-fitting-feature {
    display: grid;
    grid-template-columns: minmax(340px, .88fr) minmax(430px, 1.12fr);
    min-height: clamp(590px, 69vw, 780px);
    overflow: hidden;
    color: #fff;
    background: #0b0b0b;
}

.digital-fitting-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #262522;
}

.digital-fitting-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 64%, rgba(11,11,11,.24));
    pointer-events: none;
}

.digital-fitting-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.1s ease;
}

.digital-fitting-feature:hover .digital-fitting-media img { transform: scale(1.025); }

.digital-fitting-media span {
    position: absolute;
    right: 30px;
    bottom: 28px;
    z-index: 1;
    color: rgba(255,255,255,.82);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.digital-fitting-copy {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: start;
    padding: clamp(64px, 9vw, 144px) clamp(34px, 9vw, 150px);
    isolation: isolate;
}

.digital-fitting-copy > img {
    position: absolute;
    right: clamp(-76px, -4vw, -30px);
    bottom: clamp(-84px, -5vw, -42px);
    z-index: -1;
    width: clamp(320px, 34vw, 540px);
    filter: brightness(0) invert(1);
    opacity: .035;
    pointer-events: none;
}

.digital-fitting-copy .section-kicker {
    color: var(--gold);
    font-size: 12px;
}

.digital-fitting-copy h2 {
    max-width: 690px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(54px, 5.5vw, 92px);
    font-weight: 400;
    line-height: .95;
}

.digital-fitting-copy p:not(.section-kicker) {
    max-width: 590px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.68);
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.9;
}

.digital-fitting-copy a {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.72);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: border-color .25s ease, color .25s ease;
}

.digital-fitting-copy a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.digital-fitting-copy small {
    margin-top: 74px;
    color: rgba(255,255,255,.42);
    font-size: 11px;
    letter-spacing: .08em;
}

.collection-feature {
    display: block;
    padding-bottom: clamp(18px, 2.4vw, 38px);
    background: #fff;
}

.collection-feature-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 34px;
    padding: clamp(38px, 4vw, 56px) clamp(22px, 7vw, 110px) clamp(32px, 3.6vw, 48px);
    color: #151515;
    background: #fff;
}

.collection-feature-intro h2 {
    max-width: 620px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(46px, 4.6vw, 74px);
    font-weight: 400;
    line-height: .96;
}

.collection-feature-intro > a {
    align-self: end;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(17,17,17,.58);
    color: #151515;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: border-color .25s ease, color .25s ease;
}

.collection-feature-intro > a:hover { color: var(--gold); border-color: var(--gold); }

.collection-carousel {
    padding: 0 clamp(22px, 3vw, 54px);
    overflow: hidden;
}

.collection-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.collection-track::-webkit-scrollbar { display: none; }

.collection-carousel-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding-top: 20px;
}

.collection-carousel-rail {
    height: 1px;
    overflow: hidden;
    background: rgba(17,17,17,.18);
}

.collection-carousel-rail span {
    display: block;
    width: 30%;
    height: 100%;
    background: #151515;
    transform-origin: left center;
    transition: transform .25s ease;
}

.collection-carousel-controls div:last-child { display: flex; gap: 8px; }

.collection-carousel-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(17,17,17,.24);
    color: #151515;
    background: transparent;
    cursor: pointer;
    font-size: 19px;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.collection-carousel-controls button:hover {
    border-color: #151515;
    color: #fff;
    background: #151515;
}

.boutique-intro {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(360px, 1fr);
    gap: clamp(36px, 8vw, 110px);
    align-items: end;
    padding: clamp(68px, 8vw, 112px) clamp(22px, 8vw, 150px) clamp(38px, 5vw, 72px);
    color: #151515;
    background: #fff;
}

.boutique-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(50px, 5.6vw, 92px);
    font-weight: 400;
    line-height: .96;
}

.boutique-intro p:not(.section-kicker) {
    max-width: 620px;
    margin: 0;
    color: #5f5a52;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.9;
}

.boutique-intro a {
    display: inline-block;
    margin-top: 26px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(17,17,17,.62);
    color: #151515;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: border-color .25s ease, color .25s ease;
}

.boutique-intro a:hover { color: var(--gold); border-color: var(--gold); }

.lookbook-intro {
    padding: 0 0 clamp(34px, 5vw, 68px);
}

.feature-tile {
    position: relative;
    flex: 0 0 calc((100% - 30px) / 4);
    aspect-ratio: .76;
    overflow: hidden;
    color: #fff;
    background: #ddd4ca;
    scroll-snap-align: start;
}

.feature-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.56), rgba(0,0,0,.08) 36%, transparent 62%);
}

.feature-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s ease, filter .45s ease;
}

.feature-tile:hover img { transform: scale(1.035); filter: saturate(1.04); }

.feature-count {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    opacity: .88;
}

.feature-copy {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    display: grid;
    justify-items: start;
    transform: translateY(16px);
    transition: transform .35s ease;
}

.feature-copy span {
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.feature-copy strong {
    font-family: var(--display);
    font-size: clamp(31px, 2.5vw, 43px);
    font-weight: 400;
    line-height: 1;
}

.feature-copy em {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(201,167,103,.82);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .35s ease, transform .35s ease;
}

.feature-copy b { color: var(--gold); font-size: 15px; line-height: .7; }
.feature-tile:hover .feature-copy { transform: translateY(0); }
.feature-tile:hover .feature-copy em { opacity: 1; transform: translateY(0); }

.cinema-band {
    min-height: 78vh;
    display: grid;
    align-items: end;
    padding: clamp(70px, 9vw, 140px) clamp(22px, 8vw, 150px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.24)),
        url('/assets/lili-new/hero-poster.webp') center / cover fixed;
}

.cinema-band div { width: min(680px, 100%); }
.cinema-band p:not(.section-kicker) { color: rgba(255,255,255,.88); line-height: 1.8; }
.cinema-band a { margin-top: 36px; }

.lookbook-row { padding: clamp(70px, 9vw, 130px) clamp(22px, 7vw, 110px); background: #fff; }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.lookbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }

.look-card {
    display: grid;
    gap: 15px;
    min-width: 0;
}

.look-card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eee8df;
}

.look-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.34), transparent 38%);
    opacity: 0;
    transition: opacity .45s ease;
}

.look-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease, filter .45s ease;
}

.look-card-media > span {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    color: rgba(255,255,255,.94);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
}

.look-card-actions {
    position: absolute;
    right: 18px;
    bottom: 16px;
    left: 18px;
    z-index: 2;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.look-card-actions a,
.look-card-actions button {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.72);
    color: #fff;
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(5px);
    font-size: 10px;
    font-family: inherit;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.look-card-actions a:hover,
.look-card-actions button:hover { border-color: #fff; color: #151515; background: #fff; }
.look-card:hover .look-card-media::after { opacity: 1; }
.look-card:hover img { transform: scale(1.045); filter: saturate(1.04); }
.look-card:hover .look-card-actions { opacity: 1; transform: translateY(0); }

.look-card-copy { min-width: 0; }

.look-card-copy p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.look-card-copy h3 {
    margin: 0;
    color: #151515;
    font-family: var(--display);
    font-size: clamp(25px, 2.1vw, 34px);
    font-weight: 400;
    line-height: 1;
}

.look-card-copy small {
    display: block;
    margin-top: 8px;
    color: rgba(17,17,17,.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.minimal-hero {
    min-height: 62vh;
    padding: 170px clamp(22px, 8vw, 150px) 70px;
    display: grid;
    align-content: end;
    background: #eee8df;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #fff;
}

.catalog-card { background: #fff; border-bottom: 1px solid #e8e0d5; }
.catalog-card > a { display: grid; place-items: center; min-height: 430px; background: #f2ede5; }
.catalog-card img { width: 92%; height: 390px; object-fit: contain; }
.catalog-card-copy { padding: 18px; }
.catalog-card p { margin: 0 0 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }
.catalog-card h2 { margin: 0 0 8px; font-family: var(--display); font-size: 30px; font-weight: 400; }
.catalog-card span { color: var(--muted); }
.catalog-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.catalog-card-actions a,
.catalog-card-actions button {
    min-height: 30px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #b99a5e;
    background: transparent;
    color: #111;
    font-family: inherit;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
}

.collections-hero {
    position: relative;
    display: grid;
    min-height: 86vh;
    overflow: hidden;
    place-items: end start;
    color: #fff;
    background: #111;
}

.collections-hero > img,
.collections-atelier-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.32) 48%, rgba(0,0,0,.08));
}

.collections-hero-copy {
    position: relative;
    z-index: 1;
    padding: 0 clamp(22px, 8vw, 150px) clamp(68px, 11vh, 126px);
    text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.collections-hero-copy .section-kicker { color: var(--gold); }

.collections-hero-copy h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(76px, 10vw, 158px);
    font-weight: 400;
    line-height: .82;
}

.collections-hero-copy span {
    display: block;
    margin-top: 22px;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.collections-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(460px, 1fr);
    gap: clamp(46px, 9vw, 148px);
    overflow: hidden;
    padding: clamp(82px, 9vw, 140px) clamp(22px, 8vw, 150px);
    background: #fff;
}

.collections-intro > img {
    position: absolute;
    right: clamp(-130px, -6vw, -62px);
    bottom: clamp(-136px, -7vw, -80px);
    width: clamp(400px, 34vw, 590px);
    filter: grayscale(1);
    opacity: .02;
    pointer-events: none;
}

.collections-intro > div { position: relative; z-index: 1; min-width: 0; }

.collections-intro h2,
.collections-section-title h2,
.collections-catalog-head h2,
.collections-atelier-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(56px, 6vw, 98px);
    font-weight: 400;
    line-height: .9;
}

.collections-intro p:not(.section-kicker),
.collections-catalog-head > p {
    max-width: 680px;
    margin: 0;
    color: #615b53;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 2;
}

.collections-intro-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
    border-top: 1px solid rgba(17,17,17,.14);
}

.collections-intro-meta span {
    display: grid;
    gap: 9px;
    padding: 18px 16px 12px;
    border-right: 1px solid rgba(17,17,17,.14);
    color: #27231f;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.collections-intro-meta span:last-child { border-right: 0; }
.collections-intro-meta strong { color: var(--gold); font-family: var(--display); font-size: 23px; font-weight: 400; letter-spacing: 0; }

.collections-signatures {
    padding: clamp(68px, 8vw, 118px) clamp(22px, 4vw, 68px) clamp(22px, 3vw, 44px);
    background: #f4f0eb;
}

.collections-section-title,
.collections-catalog-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
}

.collections-section-title { padding: 0 clamp(0px, 3vw, 50px) 38px; }

.collections-section-title > span {
    color: #9b7b45;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .18em;
}

.collections-signature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
}

.collections-signature-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #d4cbc1;
}

.collections-signature-card > a {
    position: relative;
    display: block;
    min-height: clamp(570px, 48vw, 760px);
}

.collections-signature-card img {
    width: 100%;
    height: 100%;
    min-height: clamp(570px, 48vw, 760px);
    object-fit: cover;
    transition: transform .9s ease, filter .45s ease;
}

.collections-signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,.08) 42%, transparent 68%);
}

.collections-signature-card > a > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255,255,255,.9);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
}

.collections-signature-card > a > div:last-child {
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
    color: #fff;
}

.collections-signature-card p,
.collections-piece-copy p {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.collections-signature-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 3.5vw, 56px);
    font-weight: 400;
    line-height: .95;
}

.collections-signature-card em {
    display: inline-flex;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(201,167,103,.8);
    font-size: 10px;
    font-style: normal;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.collections-signature-card:hover img { transform: scale(1.035); filter: saturate(1.04); }

.collections-catalog {
    padding: clamp(82px, 9vw, 140px) clamp(22px, 5vw, 82px) clamp(72px, 8vw, 126px);
    background: #fff;
}

.collections-catalog-head {
    display: grid;
    grid-template-columns: minmax(320px, .86fr) minmax(400px, 1fr);
    gap: clamp(44px, 8vw, 138px);
    padding: 0 clamp(0px, 3vw, 48px);
}

.collections-catalog-head > * { min-width: 0; }

.collections-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: clamp(34px, 5vw, 62px) clamp(0px, 3vw, 48px) 28px;
    border-bottom: 1px solid rgba(17,17,17,.16);
}

.collections-filter button {
    padding: 0 18px 13px 0;
    margin-right: 22px;
    border: 0;
    border-bottom: 1px solid transparent;
    color: #726b62;
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .25s ease, border-color .25s ease;
}

.collections-filter button:hover,
.collections-filter button.is-active {
    border-color: #151515;
    color: #151515;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 62px) clamp(14px, 2vw, 28px);
}

.collections-piece[hidden] { display: none; }

.collections-piece {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.collections-piece-media {
    position: relative;
    aspect-ratio: .75;
    overflow: hidden;
    background: #eee9e1;
}

.collections-piece-media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.collections-piece-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease, filter .45s ease;
}

.collections-piece-media.is-archive img {
    object-fit: contain;
 
}

.collections-piece-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.5), transparent 38%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.collections-piece-media > span {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    color: rgba(255,255,255,.94);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .15em;
    text-shadow: 0 1px 12px rgba(0,0,0,.28);
}

.collections-piece-actions {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.collections-piece-actions a,
.collections-piece-actions button {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.76);
    color: #fff;
    background: rgba(0,0,0,.16);
    backdrop-filter: blur(5px);
    cursor: pointer;
    font-family: inherit;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.collections-piece:hover .collections-piece-media::after { opacity: 1; }
.collections-piece:hover .collections-piece-media img { transform: scale(1.045); filter: saturate(1.04); }
.collections-piece:hover .collections-piece-actions { opacity: 1; transform: translateY(0); }

.collections-piece-copy p { color: #8b764f; }

.collections-piece-copy h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(29px, 2.2vw, 38px);
    font-weight: 400;
    line-height: .95;
}

.collections-piece-copy > span {
    display: block;
    margin-top: 9px;
    color: #81796f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.collections-atelier-cta {
    position: relative;
    display: grid;
    min-height: 68vh;
    overflow: hidden;
    place-items: center start;
    color: #fff;
    background: #332b24;
}

.collections-atelier-cta > div {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34) 52%, rgba(0,0,0,.04));
}

.collections-atelier-cta article {
    position: relative;
    z-index: 1;
    max-width: 730px;
    padding: clamp(72px, 9vw, 148px);
}

.collections-atelier-cta .section-kicker { color: var(--gold); }

.collections-atelier-cta a {
    display: inline-flex;
    gap: 13px;
    margin-top: 34px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.74);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .25s ease, border-color .25s ease;
}

.collections-atelier-cta a:hover { color: var(--gold); border-color: var(--gold); }

.product-showcase {
    display: grid;
    grid-template-columns: 1.05fr .85fr;
    gap: clamp(34px, 6vw, 90px);
    padding: 140px clamp(22px, 7vw, 130px) 80px;
    min-height: 100vh;
    background: #f5f0e8;
}

.product-media { display: grid; place-items: center; background: #fff; min-height: 720px; }
.product-media img { width: 88%; max-height: 680px; object-fit: contain; }
.product-info { align-self: center; }
.product-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.product-meta span { border-top: 1px solid var(--line); padding-top: 12px; color: var(--muted); }
.product-meta strong { display: block; margin-top: 5px; color: #111; }
.product-info ul { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; list-style: none; }
.product-info li { border: 1px solid var(--line); padding: 8px 11px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.actions a,
.actions button { color: #111; margin-top: 22px; }

.gown-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr);
    min-height: 100vh;
    color: #fff;
    background: #141210;
}

.gown-hero-media {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #26221f;
}

.gown-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.05), rgba(0,0,0,.08) 58%, rgba(0,0,0,.34));
    pointer-events: none;
}

.gown-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.gown-hero-media > span {
    position: absolute;
    bottom: 30px;
    left: clamp(22px, 4vw, 62px);
    z-index: 1;
    color: rgba(255,255,255,.88);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.gown-hero-copy {
    display: grid;
    align-content: center;
    min-width: 0;
    padding: 146px clamp(34px, 6vw, 96px) 68px;
    background: #141210;
}

.gown-back {
    width: fit-content;
    margin-bottom: clamp(40px, 6vw, 82px);
    color: rgba(255,255,255,.64);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .17em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.gown-back:hover { color: var(--gold); }

.gown-hero-copy .section-kicker,
.gown-private-fitting .section-kicker { color: var(--gold); }

.gown-hero-copy h1 {
    max-width: 640px;
    margin: 0;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(70px, 6.5vw, 114px);
    font-weight: 400;
    line-height: .84;
}

.gown-description {
    max-width: 570px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.68);
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
}

.gown-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(34px, 5vw, 54px);
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.gown-hero-meta span {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 17px 12px 17px 0;
}

.gown-hero-meta small {
    color: rgba(255,255,255,.46);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gown-hero-meta strong {
    color: rgba(255,255,255,.9);
    font-family: var(--display);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
}

.gown-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.gown-actions a,
.gown-actions button {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.56);
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.gown-actions a:hover,
.gown-actions button:hover,
.gown-actions .is-primary {
    border-color: var(--gold);
    color: #17130e;
    background: var(--gold);
}

.gown-spin-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding: 17px 0 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.58);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.gown-spin-prompt span {
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .15em;
    line-height: 1.6;
    text-transform: uppercase;
}

.gown-spin-prompt strong {
    flex: 0 0 auto;
    color: var(--gold);
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
}

.gown-craft {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(480px, 1fr);
    gap: clamp(52px, 9vw, 148px);
    overflow: hidden;
    padding: clamp(90px, 10vw, 162px) clamp(22px, 8vw, 150px);
    background: #fff;
}

.gown-craft > img {
    position: absolute;
    right: clamp(-146px, -7vw, -72px);
    bottom: clamp(-162px, -8vw, -88px);
    width: clamp(410px, 38vw, 650px);
    filter: grayscale(1);
    opacity: .02;
    pointer-events: none;
}

.gown-craft > div { position: relative; z-index: 1; min-width: 0; }

.gown-craft h2,
.gown-private-fitting h2,
.gown-related h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 6.5vw, 104px);
    font-weight: 400;
    line-height: .88;
}

.gown-craft-copy > p,
.gown-private-fitting article > p:not(.section-kicker) {
    max-width: 720px;
    margin: 0;
    color: #615b53;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 2;
}

.gown-materials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 38px;
    border-top: 1px solid rgba(17,17,17,.14);
}

.gown-materials span {
    display: grid;
    gap: 13px;
    min-height: 94px;
    padding: 18px 14px 12px 0;
    border-right: 1px solid rgba(17,17,17,.14);
    color: #292622;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .15em;
    line-height: 1.5;
    text-transform: uppercase;
}

.gown-materials span:not(:first-child) { padding-left: 16px; }
.gown-materials span:last-child { border-right: 0; }
.gown-materials b { color: var(--gold); font-family: var(--display); font-size: 22px; font-weight: 400; letter-spacing: 0; }

.gown-private-fitting {
    position: relative;
    display: grid;
    min-height: 76vh;
    overflow: hidden;
    place-items: center start;
    color: #fff;
    background: #211b17;
}

.gown-private-fitting > img,
.gown-private-fitting > div {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gown-private-fitting > img { object-fit: cover; object-position: center; }
.gown-private-fitting > div { background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.48) 48%, rgba(0,0,0,.12)); }

.gown-private-fitting article {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: clamp(72px, 9vw, 148px);
}

.gown-private-fitting article > p:not(.section-kicker) {
    max-width: 640px;
    margin-top: 24px;
    color: rgba(255,255,255,.76);
}

.gown-fitting-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 34px;
}

.gown-fitting-actions a,
.gown-related-head > a {
    display: inline-flex;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .17em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.gown-fitting-actions a:hover { color: var(--gold); }

.gown-related {
    padding: clamp(82px, 9vw, 138px) clamp(22px, 5vw, 82px) clamp(72px, 8vw, 120px);
    background: #fff;
}

.gown-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    padding: 0 clamp(0px, 3vw, 48px) 38px;
}

.gown-related-head > a { color: #111; }
.gown-related-head > a:hover { color: #9b7b45; }

.gown-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 30px);
}

.gown-related-card { display: grid; gap: 0; min-width: 0; }

.gown-related-card > div {
    position: relative;
    aspect-ratio: .78;
    overflow: hidden;
    background: #eee9e1;
}

.gown-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .45s ease;
}

.gown-related-card > div span {
    position: absolute;
    top: 16px;
    right: 16px;
    color: rgba(255,255,255,.94);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .15em;
    text-shadow: 0 1px 12px rgba(0,0,0,.28);
}

.gown-related-card p {
    margin: 16px 0 6px;
    color: #8b764f;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gown-related-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(30px, 2.4vw, 42px);
    font-weight: 400;
    line-height: .95;
}

.gown-related-card:hover img { transform: scale(1.035); filter: saturate(1.04); }

.smiles-hero {
    position: relative;
    display: grid;
    min-height: 88vh;
    overflow: hidden;
    place-items: end start;
    color: #fff;
    background: #3e3632;
}

.smiles-hero > img,
.smiles-strength > img,
.smiles-strength > div {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.smiles-hero > img { object-fit: cover; object-position: center 42%; }

.smiles-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.28) 54%, rgba(0,0,0,.08));
}

.smiles-hero-copy {
    position: relative;
    z-index: 1;
    padding: 0 clamp(22px, 8vw, 150px) clamp(68px, 10vh, 116px);
    text-shadow: 0 2px 18px rgba(0,0,0,.2);
}

.smiles-hero-copy .section-kicker,
.smiles-strength .section-kicker { color: var(--gold); }

.smiles-hero-copy h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(76px, 10vw, 156px);
    font-weight: 400;
    line-height: .82;
}

.smiles-hero-copy span {
    display: block;
    margin-top: 22px;
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .2em;
    line-height: 1.7;
    text-transform: uppercase;
}

.smiles-intro,
.smiles-certificate {
    position: relative;
    display: grid;
    grid-template-columns: minmax(350px, .9fr) minmax(480px, 1fr);
    gap: clamp(52px, 9vw, 150px);
    overflow: hidden;
    padding: clamp(88px, 10vw, 154px) clamp(22px, 8vw, 150px);
    background: #fff;
}

.smiles-watermark {
    position: absolute;
    right: clamp(-134px, -6vw, -62px);
    bottom: clamp(-160px, -8vw, -92px);
    width: clamp(410px, 37vw, 640px);
    filter: grayscale(1);
    opacity: .02;
    pointer-events: none;
}

.smiles-intro > div,
.smiles-certificate > div {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.smiles-intro h2,
.smiles-pledge h2,
.smiles-certificate h2,
.smiles-strength h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 6.4vw, 104px);
    font-weight: 400;
    line-height: .88;
}

.smiles-intro p:not(.section-kicker),
.smiles-pledge-copy > p:not(.section-kicker),
.smiles-certificate-copy > p,
.smiles-strength article > p:not(.section-kicker) {
    max-width: 720px;
    margin: 0 0 20px;
    color: #625c54;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 2;
}

.smiles-intro-note {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(17,17,17,.15);
}

.smiles-intro-note strong {
    color: var(--gold);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
}

.smiles-intro-note span {
    color: #292622;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .15em;
    line-height: 1.5;
    text-transform: uppercase;
}

.smiles-pledge {
    display: grid;
    grid-template-columns: minmax(390px, .94fr) minmax(430px, 1.06fr);
    min-height: 790px;
    overflow: hidden;
    background: #f3efea;
}

.smiles-pledge-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #d7c4b5;
}

.smiles-pledge-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.smiles-pledge:hover .smiles-pledge-media img { transform: scale(1.025); }

.smiles-pledge-media span {
    position: absolute;
    bottom: 28px;
    left: 32px;
    color: rgba(255,255,255,.9);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .18em;
    text-shadow: 0 1px 14px rgba(0,0,0,.28);
    text-transform: uppercase;
}

.smiles-pledge-copy {
    display: grid;
    align-content: center;
    padding: clamp(72px, 9vw, 146px);
}

.smiles-pledge h2 em { color: #a47f47; font-style: normal; }
.smiles-pledge-copy > p:not(.section-kicker) { margin-top: 26px; }

.smiles-pledge-points {
    display: grid;
    margin-top: 30px;
    border-top: 1px solid rgba(17,17,17,.14);
}

.smiles-pledge-points span {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(17,17,17,.14);
    color: #292622;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .15em;
    line-height: 1.5;
    text-transform: uppercase;
}

.smiles-pledge-points b {
    color: var(--gold);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
}

.smiles-certificate { background: #f5f0eb; }

.smiles-certificate-copy span {
    display: inline-flex;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(17,17,17,.22);
    color: #9a7a43;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.smiles-strength {
    position: relative;
    display: grid;
    min-height: 76vh;
    overflow: hidden;
    place-items: center start;
    color: #fff;
    background: #15110e;
}

.smiles-strength > img { object-fit: cover; object-position: center; }
.smiles-strength > div { background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.48) 50%, rgba(0,0,0,.12)); }

.smiles-strength article {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: clamp(72px, 9vw, 148px);
}

.smiles-strength article > p:not(.section-kicker) {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255,255,255,.76);
}

.smiles-strength a {
    display: inline-flex;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255,255,255,.8);
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .17em;
    text-transform: uppercase;
    transition: color .25s ease, border-color .25s ease;
}

.smiles-strength a:hover { border-color: var(--gold); color: var(--gold); }

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

.spin-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
}

.spin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
}

.spin-modal-panel {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: #f7f4ef;
    box-shadow: 0 24px 74px rgba(0,0,0,.36);
}

.spin-modal-close {
    position: absolute;
    top: 15px;
    right: 17px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #111;
    font-family: var(--display);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.spin-modal-head {
    padding: 24px 64px 18px 26px;
    border-bottom: 1px solid #e4ddd4;
}

.spin-modal-head p,
.spin-modal-foot span {
    margin: 0;
    color: #9d7b3e;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.spin-modal-head h2 {
    margin: 5px 0 0;
    color: #111;
    font-family: var(--display);
    font-size: 36px;
    font-weight: 400;
}

.spin-modal-stage {
    position: relative;
    display: grid;
    min-height: min(650px, 68vh);
    place-items: center;
    overflow: hidden;
    background: #aaaaac;
}

.spin-viewer {
    width: 100%;
    min-height: min(650px, 68vh);
}

.spin-viewer .product-viewer__image {
    max-height: min(650px, 68vh);
    object-fit: contain;
}

.spin-modal-loader {
    position: absolute;
    z-index: 1;
    color: #8a8175;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.spin-modal-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.spin-modal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 26px 20px;
}

.spin-modal-scrubber {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 14px;
    color: #777067;
}

.spin-modal-scrubber input {
    --spin-progress: 0%;
    width: 100%;
    height: 18px;
    flex: 1;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
}

.spin-modal-scrubber input::-webkit-slider-runnable-track {
    height: 2px;
    background: linear-gradient(90deg, #9d7b3e var(--spin-progress), #d0c8bd var(--spin-progress));
}

.spin-modal-scrubber input::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -7px;
    appearance: none;
    border: 1px solid #9d7b3e;
    border-radius: 50%;
    background: #f7f4ef;
    box-shadow: 0 0 0 4px rgba(157,123,62,.12);
}

.spin-modal-scrubber input::-moz-range-track {
    height: 2px;
    background: #d0c8bd;
}

.spin-modal-scrubber input::-moz-range-progress {
    height: 2px;
    background: #9d7b3e;
}

.spin-modal-scrubber input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 1px solid #9d7b3e;
    border-radius: 50%;
    background: #f7f4ef;
    box-shadow: 0 0 0 4px rgba(157,123,62,.12);
}

.spin-modal-scrubber strong {
    color: #111;
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
}

body.spin-modal-open { overflow: hidden; }

.about-hero {
    position: relative;
    display: grid;
    min-height: 86vh;
    overflow: hidden;
    place-items: end start;
    color: #fff;
    background: #d7c9bb;
}

.about-hero > img,
.about-quote > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.08) 56%, rgba(0,0,0,.06));
}

.about-hero-copy {
    position: relative;
    z-index: 1;
    padding: 0 clamp(22px, 8vw, 150px) clamp(66px, 10vh, 112px);
    text-shadow: 0 2px 18px rgba(0,0,0,.2);
}

.about-hero-copy .section-kicker { color: rgba(255,255,255,.82); }

.about-hero-copy h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(74px, 10vw, 154px);
    font-weight: 400;
    line-height: .82;
}

.about-hero-copy span {
    display: block;
    margin-top: 20px;
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.about-intro,
.about-journey {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, .86fr) minmax(480px, 1fr);
    gap: clamp(48px, 9vw, 146px);
    overflow: hidden;
    padding: clamp(84px, 10vw, 150px) clamp(22px, 8vw, 150px);
    background: #fff;
}

.about-watermark {
    position: absolute;
    right: clamp(-110px, -5vw, -50px);
    bottom: clamp(-150px, -7vw, -80px);
    width: clamp(380px, 35vw, 590px);
    filter: grayscale(1);
    opacity: .02;
    pointer-events: none;
}

.about-intro > div,
.about-journey > div,
.about-section-head > * {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.about-intro h2,
.about-signature h2,
.about-lili h2,
.about-journey h2,
.about-section-head h2,
.about-milestone-copy h2 {
    max-width: 720px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(54px, 5.7vw, 94px);
    font-weight: 400;
    line-height: .92;
}

.about-intro p:not(.section-kicker),
.about-lili p:not(.section-kicker),
.about-journey-detail > p,
.about-section-head > p,
.about-milestone-copy > p {
    max-width: 720px;
    margin: 0 0 22px;
    color: #625c54;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 2;
}

.about-intro-note {
    display: grid;
    gap: 6px;
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid rgba(17,17,17,.16);
}

.about-intro-note span,
.about-signature-copy > span,
.about-journey-title > span,
.about-lili-media > span {
    color: #9a7a43;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.about-intro-note strong {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 400;
}

.about-signature {
    display: grid;
    grid-template-columns: minmax(340px, .88fr) minmax(460px, 1.12fr);
    min-height: 760px;
    overflow: hidden;
    background: #f2eee9;
}

.about-signature-copy {
    display: grid;
    align-content: center;
    justify-items: start;
    padding: clamp(72px, 9vw, 145px);
}

.about-signature h2 em {
    color: #a47f47;
    font-style: normal;
}

.about-signature-copy > span {
    margin-top: 32px;
    padding-top: 14px;
    border-top: 1px solid rgba(17,17,17,.25);
}

.about-signature-media,
.about-lili-media {
    position: relative;
    overflow: hidden;
}

.about-signature-media img,
.about-lili-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-signature:hover .about-signature-media img,
.about-lili:hover .about-lili-media img { transform: scale(1.025); }

.about-lili {
    display: grid;
    grid-template-columns: minmax(420px, 1.06fr) minmax(360px, .94fr);
    min-height: 780px;
    overflow: hidden;
    color: #fff;
    background: #111;
}

.about-lili-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(17,17,17,.4));
}

.about-lili-media > span {
    position: absolute;
    bottom: 28px;
    left: 32px;
    z-index: 1;
    color: rgba(255,255,255,.68);
}

.about-lili-copy {
    display: grid;
    align-content: center;
    padding: clamp(68px, 8vw, 136px);
}

.about-lili-copy .section-kicker { color: var(--gold); }

.about-lili-copy p:not(.section-kicker) {
    margin-top: 30px;
    color: rgba(255,255,255,.68);
}

.about-journey { background: #fff; }

.about-journey-title > span {
    display: block;
    margin-top: 22px;
}

.about-journey-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 46px;
    border-top: 1px solid rgba(17,17,17,.14);
}

.about-journey-steps article {
    display: grid;
    gap: 13px;
    min-height: 114px;
    padding: 20px 18px 14px;
    border-right: 1px solid rgba(17,17,17,.14);
}

.about-journey-steps article:last-child { border-right: 0; }
.about-journey-steps strong { color: var(--gold); font-family: var(--display); font-size: 22px; font-weight: 400; }
.about-journey-steps span { color: #27231f; font-size: 11px; font-weight: 750; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }

.about-quote {
    position: relative;
    display: grid;
    min-height: 72vh;
    overflow: hidden;
    place-items: center start;
    color: #fff;
    background: #15110e;
}

.about-quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34) 45%, rgba(0,0,0,.08));
}

.about-quote blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(72px, 9vw, 148px);
}

.about-quote span,
.about-quote cite {
    color: var(--gold);
    font-size: 11px;
    font-style: normal;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.about-quote p {
    margin: 18px 0 24px;
    font-family: var(--display);
    font-size: clamp(60px, 7vw, 112px);
    line-height: .88;
}

.about-accessories {
    padding: clamp(78px, 9vw, 140px) 0 clamp(64px, 8vw, 112px);
    overflow: hidden;
    background: #fff;
}

.about-section-head {
    display: grid;
    grid-template-columns: minmax(310px, .84fr) minmax(400px, 1fr);
    gap: clamp(48px, 8vw, 138px);
    align-items: end;
    padding: 0 clamp(22px, 8vw, 150px) clamp(42px, 5vw, 76px);
}

.about-section-head > p { margin: 0; }

.about-accessory-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 clamp(22px, 4vw, 70px);
}

.about-accessory-track figure {
    position: relative;
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    background: #eee9e1;
}

.about-accessory-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.about-accessory-track figure:hover img { transform: scale(1.035); }

.about-accessory-track figcaption {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255,255,255,.92);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    text-shadow: 0 1px 12px rgba(0,0,0,.36);
}

.about-milestones {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(600px, 1.2fr);
    gap: clamp(38px, 5vw, 80px);
    align-items: center;
    padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 120px);
    background: #f5f2ee;
}

.about-milestone-copy > p:not(.section-kicker) { margin-top: 30px; }

.about-milestone-copy a {
    display: inline-flex;
    gap: 13px;
    margin-top: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(17,17,17,.58);
    color: #151515;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .25s ease, border-color .25s ease;
}

.about-milestone-copy a:hover { color: var(--gold); border-color: var(--gold); }

.about-milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-milestone-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: .72;
    object-fit: cover;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #111;
}

.process-list article {
    min-height: 340px;
    padding: 34px;
    color: #fff;
    background: #141414;
}
.process-list span { color: var(--gold); }
.process-list h2 { font-family: var(--display); font-size: 38px; font-weight: 400; }
.process-list p { color: #bdb7ad; line-height: 1.75; }

.contact-page {
    display: grid;
    grid-template-columns: minmax(420px, .92fr) minmax(600px, 1.08fr);
    min-height: 100vh;
    background: #fff;
}

.contact-portrait {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
    background: #1c1714;
}

.contact-portrait > img,
.contact-portrait > div {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-portrait > img {
    object-fit: cover;
    object-position: center top;
}

.contact-portrait > div {
    background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.06) 62%, rgba(0,0,0,.16));
}

.contact-portrait article {
    position: absolute;
    right: clamp(24px, 6vw, 84px);
    bottom: clamp(54px, 9vh, 100px);
    left: clamp(24px, 6vw, 84px);
    z-index: 1;
}

.contact-portrait .section-kicker { color: var(--gold); }

.contact-portrait h1,
.contact-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(62px, 6.4vw, 104px);
    font-weight: 400;
    line-height: .86;
}

.contact-portrait article > span {
    display: block;
    max-width: 460px;
    margin-top: 20px;
    color: rgba(255,255,255,.82);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .18em;
    line-height: 1.7;
    text-transform: uppercase;
}

.contact-workspace {
    position: relative;
    display: grid;
    align-content: center;
    gap: 30px;
    min-width: 0;
    overflow: hidden;
    padding: 132px clamp(28px, 6vw, 104px) 68px;
    background: #fff;
}

.contact-workspace::before {
    content: "";
    position: absolute;
    right: clamp(-160px, -8vw, -88px);
    bottom: clamp(-164px, -9vw, -92px);
    width: clamp(390px, 34vw, 590px);
    aspect-ratio: 29 / 32;
    background: url("/assets/images/lili-mark.svg") center / contain no-repeat;
    filter: grayscale(1);
    opacity: .02;
    pointer-events: none;
}

.contact-intro,
.contact-form,
.contact-details {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.contact-intro p:not(.section-kicker) {
    max-width: 650px;
    margin: 22px 0 0;
    color: #625c54;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(17,17,17,.16);
}

.contact-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-form-head p,
.contact-form-head span,
.contact-form small {
    margin: 0;
    color: #8d754d;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .16em;
    line-height: 1.6;
    text-transform: uppercase;
}

.contact-form-head p { color: #171513; }

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

.contact-fields label {
    gap: 7px;
    min-width: 0;
    color: #756c62;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .14em;
}

.contact-field-wide { grid-column: 1 / -1; }

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
    min-width: 0;
    border: 1px solid #ddd5cb;
    padding: 12px 13px;
    color: #171513;
    background: rgba(250,248,245,.88);
    font-size: 14px;
    transition: border-color .25s ease, background .25s ease;
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus {
    border-color: #a9874c;
    background: #fff;
}

.contact-fields textarea { min-height: 92px; }

.contact-form > button {
    min-height: 46px;
    border: 1px solid #171513;
    color: #fff;
    background: #171513;
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .17em;
    text-transform: uppercase;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.contact-form > button:hover {
    border-color: var(--gold);
    color: #171513;
    background: var(--gold);
}

.contact-form-errors {
    padding: 12px 14px;
    border-left: 2px solid #9d5d50;
    background: #fbf4f1;
}

.contact-form-errors p {
    margin: 0;
    color: #854c43;
    font-size: 12px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: 1.25fr 1fr .86fr;
    border-top: 1px solid rgba(17,17,17,.14);
}

.contact-details > div {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 17px 14px 4px 0;
    border-right: 1px solid rgba(17,17,17,.14);
}

.contact-details > div:not(:first-child) { padding-left: 14px; }
.contact-details > div:last-child { border-right: 0; }

.contact-details span {
    color: #9a7a43;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
    min-width: 0;
    color: #292622;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.contact-details a:hover { color: #9a7a43; }

.form-page {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: clamp(34px, 7vw, 100px);
    padding: 160px clamp(22px, 8vw, 150px) 90px;
    min-height: 100vh;
}

.lux-form {
    display: grid;
    gap: 16px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e4dbcf;
}

label { display: grid; gap: 8px; color: #6f675d; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
input, select, textarea { width: 100%; border: 1px solid #d8cec0; padding: 13px 14px; background: #fbf8f3; color: #111; outline: none; }
textarea { min-height: 130px; resize: vertical; }
.lux-form button { margin-top: 10px; color: #111; }

.tryon-page {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(540px, 1.22fr);
    gap: clamp(44px, 7vw, 110px);
    min-height: 100vh;
    padding: 160px clamp(22px, 7vw, 110px) 90px;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
}

.tryon-page::before {
    content: "";
    position: absolute;
    left: clamp(-180px, -10vw, -100px);
    bottom: clamp(-132px, -7vw, -72px);
    z-index: -1;
    width: clamp(390px, 32vw, 570px);
    aspect-ratio: 29 / 32;
    background: url("/assets/images/lili-mark.svg") center / contain no-repeat;
    filter: grayscale(1);
    opacity: .022;
    pointer-events: none;
}

.tryon-intro h1,
.tryon-result-copy h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 6.4vw, 102px);
    font-weight: 400;
    line-height: .92;
}

.tryon-intro {
    align-self: center;
    padding-bottom: 46px;
}

.tryon-intro .section-kicker {
    color: #a78346;
    font-size: 11px;
    letter-spacing: .2em;
}

.tryon-intro > p:not(.section-kicker),
.tryon-result-copy > p:not(.section-kicker) {
    max-width: 620px;
    color: #666057;
    font-family: "Optima", "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 2;
}

.tryon-guide {
    display: grid;
    gap: 13px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid rgba(17,17,17,.15);
}

.tryon-guide span {
    display: flex;
    gap: 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
}

.tryon-guide strong { color: #292622; font-weight: 750; text-transform: uppercase; }

.tryon-workspace {
    display: grid;
    grid-template-columns: minmax(220px, .78fr) minmax(310px, 1fr);
    align-items: start;
    background: #fff;
    border: 1px solid rgba(17,17,17,.13);
}

.tryon-intro,
.tryon-workspace,
.tryon-form {
    min-width: 0;
}

.tryon-form label,
.tryon-form input,
.tryon-form select,
.tryon-form textarea {
    min-width: 0;
    max-width: 100%;
}

.tryon-garment-preview {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #e8e5e0;
}

.tryon-garment-preview img {
    width: 100%;
    height: 100%;
    min-height: 690px;
    object-fit: cover;
}

.tryon-garment-preview::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(0deg, rgba(0,0,0,.68), transparent);
    pointer-events: none;
}

.tryon-garment-preview div {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    display: grid;
    gap: 7px;
}

.tryon-garment-preview span,
.tryon-garment-preview strong {
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .19em;
    text-shadow: 0 1px 12px rgba(0,0,0,.68);
    text-transform: uppercase;
}

.tryon-garment-preview strong {
    color: rgba(255,255,255,.68);
    font-size: 9px;
    font-weight: 650;
}

.tryon-form {
    width: 100%;
    gap: 18px;
    padding: 30px 32px 34px;
    border: 0;
}

.tryon-form-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 3px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17,17,17,.12);
}

.tryon-form-head .section-kicker { margin: 0; color: #151515; font-size: 11px; }
.tryon-form-head span { color: #9c7c45; font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }

.tryon-form label {
    gap: 9px;
    color: #71675b;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .15em;
}

.tryon-form input,
.tryon-form select,
.tryon-form textarea {
    border-color: rgba(17,17,17,.18);
    padding: 13px 14px;
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.tryon-form input:focus,
.tryon-form select:focus,
.tryon-form textarea:focus {
    border-color: #9c7c45;
    box-shadow: 0 0 0 3px rgba(156,124,69,.1);
}

.tryon-form textarea { min-height: 108px; }

.tryon-upload input {
    padding: 7px;
    color: #6f675d;
    font-size: 11px;
    letter-spacing: .04em;
}

.tryon-upload input::file-selector-button {
    margin-right: 13px;
    padding: 8px 12px;
    border: 0;
    color: #fff;
    background: #151515;
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tryon-upload small {
    color: #9a9085;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: none;
}

.tryon-form-errors {
    padding: 12px 14px;
    border-left: 2px solid #9e6b49;
    color: #784b3f;
    background: #fbf7f3;
}

.tryon-form-errors p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

.tryon-consent {
    display: flex;
    gap: 10px;
    align-items: start;
    color: #5f584f;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: .08em;
}

.tryon-consent input {
    width: auto;
    margin-top: 3px;
}

.tryon-form button {
    gap: 15px;
    min-height: 49px;
    margin-top: 7px;
    border-color: #151515;
    color: #fff;
    background: #151515;
}

.tryon-form button:hover {
    color: #fff;
    background: #9c7c45;
    border-color: #9c7c45;
}

.tryon-result-page {
    display: grid;
    grid-template-columns: minmax(430px, .88fr) minmax(560px, 1.12fr);
    min-height: 100vh;
    padding-top: 112px;
    background: #fff;
}

.tryon-result-copy {
    position: relative;
    align-self: center;
    min-width: 0;
    overflow: hidden;
    padding: clamp(46px, 6vw, 96px);
}

.tryon-result-mark {
    position: absolute;
    right: -96px;
    bottom: -104px;
    width: 410px;
    filter: grayscale(1);
    opacity: .025;
    pointer-events: none;
}

.tryon-result-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 620px;
}

.tryon-result-heading .section-kicker { margin: 0; }

.tryon-result-heading > span {
    color: #967945;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tryon-result-copy h1 {
    position: relative;
    max-width: 650px;
    margin-top: 20px;
    font-size: clamp(74px, 6vw, 110px);
    line-height: .83;
}

.tryon-result-copy h1 span:not(:last-child)::after { content: " "; }

.tryon-status {
    display: inline-flex;
    margin-top: 13px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tryon-result-details {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    margin-top: 38px;
    border-block: 1px solid rgba(17,17,17,.13);
}

.tryon-result-details > span {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 15px 13px 16px 0;
    border-right: 1px solid rgba(17,17,17,.13);
}

.tryon-result-details > span:not(:first-child) { padding-left: 13px; }
.tryon-result-details > span:last-child { border-right: 0; }

.tryon-result-details small {
    color: #a3834a;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.tryon-result-details strong {
    color: #292622;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.tryon-result-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
    max-width: 620px;
    margin-top: 28px;
}

.tryon-result-actions a {
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(17,17,17,.55);
    color: #151515;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tryon-result-actions .tryon-result-primary {
    padding: 14px 17px;
    border: 1px solid #171513;
    color: #fff;
    background: #171513;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.tryon-result-actions .tryon-result-primary:hover {
    border-color: var(--gold);
    color: #171513;
    background: var(--gold);
}

.tryon-result-note {
    position: relative;
    display: block;
    margin-top: 32px;
    color: #81796f;
    line-height: 1.6;
}

.tryon-result-media {
    position: relative;
    display: grid;
    min-height: calc(100vh - 112px);
    padding: 42px 42px 38px;
    place-items: center;
    overflow: hidden;
    background: #aaa9aa;
}

.tryon-result-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tryon-result-media-head,
.tryon-result-media-foot {
    position: absolute;
    right: 24px;
    left: 24px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.92);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tryon-result-media-head { top: 17px; }
.tryon-result-media-foot { bottom: 15px; }

.tryon-result-media img[hidden],
.tryon-processing[hidden] {
    display: none;
}

.tryon-processing {
    display: grid;
    justify-items: center;
    gap: 20px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tryon-processing span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: tryon-spin 1.1s linear infinite;
}

@keyframes tryon-spin { to { transform: rotate(360deg); } }

.status-toast {
    position: fixed;
    right: 22px;
    top: 96px;
    z-index: 80;
    padding: 13px 16px;
    background: #111;
    color: #fff;
}

.site-footer {
    color: rgba(255,255,255,.72);
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(320px, 1.1fr) minmax(280px, .9fr);
    gap: clamp(32px, 6vw, 104px);
    padding: clamp(62px, 7vw, 104px) clamp(22px, 7vw, 110px) clamp(48px, 6vw, 82px);
}

.footer-brand,
.footer-contact,
.footer-links,
.footer-links div {
    display: grid;
    align-content: start;
}

.footer-mark {
    width: 116px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-brand p {
    max-width: 250px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.78);
    font-family: var(--display);
    font-size: 26px;
    line-height: 1.18;
}

.footer-label {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.footer-contact h2 {
    max-width: 430px;
    margin: 0 0 24px;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 400;
    line-height: .94;
}

.footer-contact > span,
.footer-contact > a:not(.footer-cta) {
    margin-top: 8px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.55;
}

.footer-cta {
    display: inline-flex;
    width: fit-content;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,167,103,.82);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-cta span { color: var(--gold); font-size: 15px; }

.footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.footer-links div { gap: 12px; }

.footer-links a {
    width: fit-content;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    transition: color .25s ease;
}

.footer-links a:hover,
.footer-contact > a:not(.footer-cta):hover,
.footer-bottom a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px clamp(22px, 7vw, 110px);
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.42);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .16em;
    text-transform: uppercase;
}

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.login-body { min-height: 100vh; display: grid; place-items: center; background: #f5f0e8; }
.login-panel, .admin-form { background: #fff; padding: 32px; display: grid; gap: 16px; width: min(430px, 92vw); }
.admin-body { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; background: #f5f0e8; }
.admin-side { background: #111; color: #fff; padding: 24px; display: grid; align-content: start; gap: 24px; }
.admin-side nav, .admin-side form { display: grid; gap: 10px; }
.admin-side a, .admin-side button { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.2); padding: 11px; text-align: left; }
.admin-main { padding: 34px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 26px; }
.admin-head h1 { font-family: var(--display); font-size: 54px; font-weight: 400; margin: 0; }
.admin-stats, .admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.admin-grid { grid-template-columns: repeat(2, 1fr); }
.admin-stats article, .admin-card { background: #fff; padding: 20px; border: 1px solid #e0d6c9; }
.admin-stats span { font-family: var(--display); font-size: 44px; }
.admin-row { display: grid; gap: 5px; padding: 12px 0; border-bottom: 1px solid #e0d6c9; }
.admin-row small, .admin-row p { color: #776e63; margin: 0; }
.product-admin-row { grid-template-columns: 70px 1fr 1fr auto; align-items: center; }
.product-admin-row img { width: 58px; height: 74px; object-fit: contain; background: #eee8df; }
.checkline { display: flex; gap: 10px; align-items: center; }
.checkline input { width: auto; }
.delete-form button { color: #8b1538; background: transparent; border: 1px solid #8b1538; padding: 12px 16px; margin-top: 16px; }

@media (max-width: 1100px) {
    .site-header { grid-template-columns: 1fr auto; }
    .site-nav { display: none; }
    .nav-toggle {
        display: block;
        position: fixed;
        right: 18px;
        top: 22px;
        z-index: 70;
        background: rgba(0,0,0,.18);
    }
    .site-nav.is-open {
        display: grid;
        position: absolute;
        left: 0;
        right: 0;
        top: 74px;
        gap: 0;
        background: rgba(5,5,5,.96);
        padding: 18px 22px;
    }
    .site-nav.is-open > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .home-philosophy { background-attachment: scroll; }
    .philosophy-features { grid-template-columns: 1fr; }
    .philosophy-features span {
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.12);
    }
    .philosophy-features span:last-child { border-bottom: 0; }
    .digital-fitting-feature { grid-template-columns: minmax(300px, .9fr) minmax(380px, 1.1fr); }
    .digital-fitting-copy { padding-inline: clamp(32px, 6vw, 70px); }
    .boutique-intro { grid-template-columns: 1fr; }
    .feature-tile { flex-basis: calc((100% - 10px) / 2.2); }
    .lookbook-grid, .catalog-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
    .split-section, .product-showcase, .form-page { grid-template-columns: 1fr; }
    .contact-page { grid-template-columns: minmax(0, 1fr); }
    .contact-portrait { min-height: 76vh; }
    .contact-workspace { padding-top: 82px; }
    .gown-hero { grid-template-columns: minmax(0, 1fr); }
    .gown-hero-media { min-height: 84vh; }
    .gown-hero-copy { padding-top: 78px; }
    .gown-craft { grid-template-columns: minmax(0, 1fr); }
    .smiles-intro,
    .smiles-certificate { grid-template-columns: minmax(0, 1fr); }
    .smiles-pledge { grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr); }
    .collections-intro,
    .collections-catalog-head { grid-template-columns: minmax(0, 1fr); }
    .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-intro,
    .about-journey,
    .about-section-head { grid-template-columns: minmax(0, 1fr); }
    .about-signature { grid-template-columns: minmax(280px, .82fr) minmax(380px, 1.18fr); }
    .about-lili { grid-template-columns: minmax(380px, 1fr) minmax(330px, 1fr); }
    .about-milestones { grid-template-columns: 1fr; }
    .tryon-page, .tryon-result-page { grid-template-columns: minmax(0, 1fr); }
    .tryon-page { min-height: 0; gap: 42px; align-content: start; }
    .tryon-result-media { min-height: 70vh; }
    .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .site-header { padding: 16px 18px; }
    .brand { width: 84px; }
    .brand-mark { width: 82px; height: 54px; }
    .hero-video { min-height: 680px; }
    .hero-caption { left: 18px; bottom: 70px; }
    .hero-caption h1 { font-size: 56px; }
    .hero-caption p { font-size: 11px; }
    .hero-caption span { font-size: 11px; line-height: 1.8; }
    .hero-caption a { width: 100%; margin-top: 42px; }
    .hero-scroll { display: none; }
    .cinema-band { background-attachment: scroll; }
    .split-section, .lookbook-row, .minimal-hero, .product-showcase, .form-page { padding-inline: 18px; }
    .philosophy-features span {
        min-height: 74px;
        font-size: 12px;
        padding: 18px 16px;
    }
    .boutique-intro { padding-inline: 18px; }
    .home-philosophy::before { left: 18px; }
    .home-philosophy::after { width: 210px; right: 18px; bottom: 24px; }
    .digital-fitting-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .digital-fitting-media { min-height: 560px; }
    .digital-fitting-media span { right: 18px; bottom: 18px; }
    .digital-fitting-copy { padding: 58px 18px 62px; }
    .digital-fitting-copy h2 { font-size: 58px; }
    .digital-fitting-copy p:not(.section-kicker) { font-size: 16px; }
    .digital-fitting-copy small { margin-top: 52px; line-height: 1.7; }
    .collection-feature-intro {
        align-items: start;
        grid-template-columns: 1fr;
        padding-inline: 18px;
    }
    .collection-feature-intro h2 { font-size: 55px; }
    .collection-carousel { padding-inline: 18px; }
    .feature-tile {
        flex-basis: 84vw;
        min-height: 590px;
        aspect-ratio: auto;
    }
    .feature-copy { right: 20px; bottom: 22px; left: 20px; transform: none; }
    .feature-copy em { opacity: 1; transform: none; }
    .lookbook-grid, .catalog-grid, .process-list { grid-template-columns: 1fr; }
    .look-card-media::after { opacity: 1; }
    .look-card-actions { opacity: 1; transform: none; }
    .footer-main { padding-inline: 18px; }
    .footer-links { gap: 22px; }
    .footer-bottom {
        display: grid;
        gap: 9px;
        padding-inline: 18px;
    }
    .catalog-card > a { min-height: 360px; }
    .product-media { min-height: 500px; }
    .product-meta { grid-template-columns: 1fr; }
    .contact-page { width: 100%; max-width: 100vw; overflow: hidden; }
    .contact-portrait { min-height: 680px; }
    .contact-portrait article { right: 18px; bottom: 56px; left: 18px; }
    .contact-portrait h1,
    .contact-intro h2 { font-size: 62px; }
    .contact-workspace { width: 100%; max-width: 100vw; gap: 26px; padding: 68px 18px 58px; }
    .contact-intro p:not(.section-kicker) { max-width: min(320px, calc(100vw - 54px)); overflow-wrap: anywhere; }
    .contact-fields { grid-template-columns: minmax(0, 1fr); }
    .contact-form { width: 100%; max-width: 100%; overflow: hidden; }
    .contact-form-head { align-items: start; flex-direction: column; gap: 7px; }
    .contact-fields,
    .contact-fields label,
    .contact-fields input,
    .contact-fields select,
    .contact-fields textarea { width: 100%; max-width: 100%; min-width: 0; }
    .contact-field-wide { grid-column: auto; }
    .contact-fields textarea { min-height: 116px; }
    .contact-details { grid-template-columns: minmax(0, 1fr); }
    .contact-details > div {
        min-height: 60px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.14);
    }
    .contact-details > div:not(:first-child) { padding-left: 0; }
    .contact-details > div:last-child { border-bottom: 0; }
    .gown-hero-media { min-height: 680px; }
    .gown-hero-media img { object-position: center top; }
    .gown-hero-media > span { bottom: 22px; left: 18px; }
    .gown-hero { width: 100%; max-width: 100vw; overflow: hidden; }
    .gown-hero-copy { width: 100%; max-width: 100vw; overflow: hidden; padding: 58px 18px 64px; }
    .gown-hero-copy > * { min-width: 0; max-width: 100%; }
    .gown-back { margin-bottom: 42px; }
    .gown-hero-copy h1 { max-width: 100%; font-size: 54px; overflow-wrap: anywhere; }
    .gown-description { max-width: 100%; font-size: 15px; overflow-wrap: anywhere; }
    .gown-hero-meta { grid-template-columns: minmax(0, 1fr); }
    .gown-hero-meta span {
        min-height: 60px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .gown-hero-meta span:last-child { border-bottom: 0; }
    .gown-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
    .gown-actions a,
    .gown-actions button { width: 100%; min-width: 0; padding-inline: 8px; }
    .gown-actions .is-primary { grid-column: 1 / -1; }
    .gown-spin-prompt { align-items: start; flex-direction: column; gap: 8px; }
    .gown-craft { gap: 28px; padding: 74px 18px; }
    .gown-craft h2,
    .gown-private-fitting h2,
    .gown-related h2 { font-size: 62px; }
    .gown-materials { grid-template-columns: minmax(0, 1fr); }
    .gown-materials span {
        min-height: 70px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.14);
    }
    .gown-materials span:not(:first-child) { padding-left: 0; }
    .gown-materials span:last-child { border-bottom: 0; }
    .gown-private-fitting { min-height: 640px; }
    .gown-private-fitting > img { object-position: 58% center; }
    .gown-private-fitting article { padding: 68px 18px; }
    .gown-related { padding: 72px 18px 80px; overflow: hidden; }
    .gown-related-head { align-items: start; flex-direction: column; padding: 0 0 28px; }
    .gown-related-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .gown-related-grid::-webkit-scrollbar { display: none; }
    .gown-related-card { flex: 0 0 82vw; scroll-snap-align: start; }
    .smiles-hero { min-height: 680px; }
    .smiles-hero > img { object-position: 58% center; }
    .smiles-hero-copy { padding: 0 18px 72px; }
    .smiles-hero-copy h1 { font-size: 82px; }
    .smiles-hero-copy span { max-width: 300px; }
    .smiles-intro,
    .smiles-certificate,
    .smiles-pledge { width: 100%; max-width: 100vw; overflow: hidden; }
    .smiles-intro,
    .smiles-certificate { gap: 28px; padding: 74px 18px; }
    .smiles-intro > div,
    .smiles-certificate > div,
    .smiles-pledge-copy { width: 100%; max-width: 100%; min-width: 0; }
    .smiles-intro p:not(.section-kicker),
    .smiles-pledge-copy > p:not(.section-kicker),
    .smiles-certificate-copy > p,
    .smiles-strength article > p:not(.section-kicker) {
        width: min(310px, calc(100vw - 72px));
        max-width: min(310px, calc(100vw - 72px));
        overflow-wrap: anywhere;
    }
    .smiles-intro-note {
        grid-template-columns: auto 1fr;
        gap: 9px 13px;
    }
    .smiles-pledge { grid-template-columns: minmax(0, 1fr); min-height: 0; }
    .smiles-pledge-media { min-height: 560px; }
    .smiles-pledge-media span { right: 18px; bottom: 20px; left: 18px; }
    .smiles-pledge-copy { padding: 68px 18px 72px; }
    .smiles-intro h2,
    .smiles-pledge h2,
    .smiles-certificate h2,
    .smiles-strength h2 { max-width: 100%; font-size: 56px; overflow-wrap: anywhere; }
    .smiles-strength { min-height: 640px; }
    .smiles-strength > img { object-position: 64% center; }
    .smiles-strength article { padding: 68px 18px; }
    .collections-hero { min-height: 680px; }
    .collections-hero > img { object-position: 64% center; }
    .collections-hero-copy { padding-inline: 18px; }
    .collections-hero-copy h1 { font-size: 86px; }
    .collections-hero-copy span { max-width: 290px; line-height: 1.7; }
    .collections-intro { gap: 26px; padding: 74px 18px; }
    .collections-intro-meta { grid-template-columns: 1fr; }
    .collections-intro-meta span {
        min-height: 66px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.14);
    }
    .collections-intro-meta span:last-child { border-bottom: 0; }
    .collections-signatures { padding: 70px 18px 26px; }
    .collections-section-title { padding: 0 0 28px; }
    .collections-signature-grid {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .collections-signature-grid::-webkit-scrollbar { display: none; }
    .collections-signature-card { flex: 0 0 84vw; scroll-snap-align: start; }
    .collections-signature-card > a,
    .collections-signature-card img { min-height: 590px; }
    .collections-catalog { padding: 72px 18px 78px; }
    .collections-catalog-head { gap: 24px; padding: 0; }
    .collections-filter {
        gap: 0;
        flex-wrap: nowrap;
        margin: 38px 0 24px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .collections-filter::-webkit-scrollbar { display: none; }
    .collections-filter button { flex: 0 0 auto; }
    .collections-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .collections-piece-media::after { opacity: 1; }
    .collections-piece-actions { opacity: 1; transform: none; }
    .collections-atelier-cta { min-height: 590px; }
    .collections-atelier-cta > img { object-position: 64% center; }
    .collections-atelier-cta article { padding: 70px 18px; }
    .about-hero { min-height: 680px; }
    .about-hero > img { object-position: 63% center; }
    .about-hero-copy { padding-inline: 18px; }
    .about-hero-copy h1 { font-size: 84px; }
    .about-hero-copy span { max-width: 280px; line-height: 1.7; }
    .about-intro,
    .about-journey { gap: 28px; padding: 74px 18px; }
    .about-intro p:not(.section-kicker),
    .about-lili p:not(.section-kicker),
    .about-journey-detail > p,
    .about-section-head > p,
    .about-milestone-copy > p { max-width: 100%; overflow-wrap: anywhere; }
    .about-signature,
    .about-lili { grid-template-columns: 1fr; min-height: 0; }
    .about-signature-copy,
    .about-lili-copy { padding: 68px 18px 72px; }
    .about-signature-media { min-height: 590px; order: -1; }
    .about-lili-media { min-height: 570px; }
    .about-lili-media::after { background: linear-gradient(0deg, rgba(17,17,17,.36), transparent 38%); }
    .about-journey-steps { grid-template-columns: 1fr; }
    .about-journey-steps article {
        min-height: 78px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.14);
    }
    .about-journey-steps article:last-child { border-bottom: 0; }
    .about-quote { min-height: 590px; }
    .about-quote > img { object-position: 68% center; }
    .about-quote blockquote { padding: 68px 18px; }
    .about-quote p { font-size: 66px; }
    .about-accessories { padding-block: 72px 58px; }
    .about-section-head { gap: 24px; padding: 0 18px 36px; }
    .about-accessory-track {
        display: flex;
        gap: 10px;
        padding-inline: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .about-accessory-track::-webkit-scrollbar { display: none; }
    .about-accessory-track figure {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }
    .about-milestones { gap: 34px; padding: 72px 18px; }
    .about-milestone-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .about-milestone-grid::-webkit-scrollbar { display: none; }
    .about-milestone-grid img { flex: 0 0 82vw; scroll-snap-align: start; }
    .tryon-page { width: 100%; max-width: 100vw; padding: 132px 18px 52px; }
    .tryon-intro { width: 100%; max-width: calc(100vw - 36px); padding-bottom: 0; overflow: hidden; }
    .tryon-intro > p:not(.section-kicker) { max-width: 100%; overflow-wrap: anywhere; }
    .tryon-workspace { width: 100%; max-width: calc(100vw - 36px); grid-template-columns: minmax(0, 1fr); overflow: hidden; }
    .tryon-form { padding: 26px 20px 28px; }
    .tryon-garment-preview img { min-height: 390px; max-height: 520px; }
    .tryon-form-head { align-items: start; flex-direction: column; gap: 8px; }
    .tryon-result-page { width: 100%; max-width: 100vw; overflow: hidden; padding-top: 86px; }
    .tryon-result-copy { width: 100%; max-width: 100vw; padding: 42px 18px; }
    .tryon-result-heading { align-items: start; flex-direction: column; gap: 8px; }
    .tryon-result-copy h1 {
        max-width: 100%;
        font-size: 62px;
        overflow-wrap: anywhere;
    }
    .tryon-result-copy h1 span { display: block; max-width: calc(100vw - 36px); }
    .tryon-result-copy h1 span:not(:last-child)::after { content: ""; }
    .tryon-result-copy > p:not(.section-kicker) {
        width: min(340px, calc(100vw - 36px));
        max-width: min(340px, calc(100vw - 36px));
        overflow-wrap: anywhere;
    }
    .tryon-result-details { grid-template-columns: minmax(0, 1fr); }
    .tryon-result-details > span,
    .tryon-result-details > span:not(:first-child) {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.13);
    }
    .tryon-result-details > span:last-child { border-bottom: 0; }
    .tryon-result-actions { align-items: start; flex-direction: column; }
    .tryon-result-media { width: 100%; max-width: 100vw; height: 720px; min-height: 0; padding: 36px 12px 32px; }
    .tryon-result-media-head,
    .tryon-result-media-foot { right: 12px; left: 12px; font-size: 8px; letter-spacing: .12em; }
    .tryon-result-media-head span,
    .tryon-result-media-foot span {
        max-width: 48%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .spin-modal { padding: 12px; }
    .spin-modal-panel { max-height: calc(100vh - 24px); }
    .spin-modal-stage,
    .spin-viewer { min-height: min(470px, 62vh); }
    .spin-viewer .product-viewer__image { max-height: min(470px, 62vh); }
    .spin-modal-foot { padding-inline: 18px; }
    .admin-body, .admin-stats, .admin-grid { grid-template-columns: 1fr; }
}
