:root {
    --black: #080808;
    --ink: #11100f;
    --charcoal: #171716;
    --gold: #cda95c;
    --gold-bright: #e2c47a;
    --cream: #f4f0e8;
    --paper: #fbfaf7;
    --grey: #8b8983;
    --line: rgba(17, 16, 15, .14);
    --white-line: rgba(255,255,255,.16);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Manrope", "DM Sans", Arial, sans-serif;
    --header-height: 84px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.6; overflow-x: hidden; }
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
::selection { color: var(--black); background: var(--gold-bright); }

.page-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; color: var(--gold); background: var(--black); transition: opacity .65s ease, visibility .65s ease; }
.page-loader.done { opacity: 0; visibility: hidden; }
.loader-lockup { display: flex; flex-direction: column; align-items: center; gap: 16px; letter-spacing: .52em; font-size: 14px; animation: loaderPulse 1.6s ease-in-out infinite; }
.loader-lockup .brand-mark { width: 54px; height: 54px; }
@keyframes loaderPulse { 50% { opacity: .45; transform: scale(.97); } }

.announcement { height: 34px; display: flex; align-items: center; justify-content: space-around; color: #d9d3c6; background: var(--black); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.site-header { position: absolute; top: 34px; left: 0; z-index: 100; width: 100%; min-height: var(--header-height); display: grid; grid-template-columns: 240px 1fr 240px; align-items: center; padding: 0 3.5vw; color: white; border-bottom: 1px solid rgba(255,255,255,.14); transition: background .35s, color .35s, transform .35s, min-height .35s; }
.site-header.light-header { color: var(--ink); background: var(--paper); border-color: var(--line); }
.site-header.fixed { position: fixed; top: 0; min-height: 68px; color: var(--ink); background: rgba(251,250,247,.95); border-color: var(--line); backdrop-filter: blur(16px); }
.site-header.hidden { transform: translateY(-110%); }
.wordmark, .footer-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .26em; }
.brand-mark { display: inline-flex; width: 30px; height: 30px; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; fill: currentColor; stroke: none; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.1vw, 36px); }
.desktop-nav a { position: relative; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -12px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 3px; }
.header-icon { position: relative; width: 38px; height: 38px; display: grid; place-items: center; color: inherit; background: none; border: 0; }
.header-icon svg { width: 19px; height: 19px; }
.action-count { position: absolute; top: 0; right: -1px; min-width: 16px; height: 16px; padding: 0 4px; display: grid; place-items: center; color: var(--black); background: var(--gold-bright); border-radius: 50px; font-size: 9px; font-weight: 700; }
.menu-toggle { display: none; width: 38px; height: 38px; padding: 11px 7px; background: none; border: 0; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: calc(100vh - 34px); color: white; background: var(--black); overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; transform-origin: center; animation: heroBackgroundZoom 18s ease-in-out infinite alternate; will-change: transform; }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.76) 0, rgba(0,0,0,.35) 45%, rgba(0,0,0,.05) 80%), linear-gradient(0deg, rgba(0,0,0,.42), transparent 45%); }
@keyframes heroBackgroundZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero-content { position: relative; z-index: 2; width: min(650px, 50vw); padding: clamp(190px, 23vh, 265px) 0 120px 7.8vw; }
.hero-kicker, .eyebrow { display: flex; align-items: center; gap: 10px; font-size: 9px; font-weight: 700; letter-spacing: .27em; text-transform: uppercase; }
.hero-kicker i { width: 36px; height: 1px; background: var(--gold); }
.hero h1 { margin: 26px 0 28px; font-size: clamp(72px, 9.2vw, 145px); line-height: .78; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 em, h2 em, blockquote em { color: var(--gold-bright); font-family: var(--serif); font-weight: 500; text-transform: none; }
.hero-content > p { max-width: 540px; color: rgba(255,255,255,.72); font-size: 15px; }
.hero-buttons { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 26px; border: 1px solid transparent; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--black); background: var(--gold-bright); border-color: var(--gold-bright); }
.button-gold:hover { background: #f0d797; border-color: #f0d797; }
.button-ghost { color: white; border-color: rgba(255,255,255,.45); }
.button-ghost:hover { background: white; color: var(--black); }
.button-dark { color: white; background: var(--ink); border-color: var(--ink); }
.button-full { width: 100%; }
.hero-meta { position: absolute; right: 3.5vw; bottom: 25px; left: 3.5vw; z-index: 2; display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue { position: absolute; bottom: 70px; left: 3.5vw; z-index: 2; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }
.scroll-cue i { width: 45px; height: 1px; background: var(--gold); }

.marquee { overflow: hidden; color: var(--gold-bright); background: var(--black); border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.marquee div { width: max-content; display: flex; align-items: center; gap: 38px; padding: 19px 0; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 18px; font-style: italic; letter-spacing: .06em; }
.marquee b { font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.drop-banner { display: grid; grid-template-columns: repeat(3, 1fr); color: white; background: var(--black); border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.drop-banner a { min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border-right: 1px solid var(--white-line); transition: background .25s, color .25s; }
.drop-banner a:hover { color: var(--black); background: var(--gold-bright); }
.drop-banner span, .drop-banner em { font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.drop-banner strong { max-width: 360px; font-size: clamp(25px, 2.5vw, 42px); line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }

.section { padding: 120px 5.5vw; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; }
.section-heading h2, .manifesto h2, .newsletter-copy h2, .collections-head h2, .related-section h2 { margin: 16px 0 0; font-size: clamp(44px, 5.6vw, 86px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.section-heading > p { max-width: 420px; margin: 0; color: #686660; }
.section-heading.compact { margin-bottom: 40px; }
.department-grid { display: grid; grid-template-columns: 1.12fr 1fr 1fr; grid-template-rows: repeat(2, minmax(280px, 32vw)); gap: 12px; }
.department-card { position: relative; overflow: hidden; color: white; background: #222; }
.department-card-tall { grid-row: span 2; }
.department-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; }
.department-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 58%); }
.department-card:hover img { transform: scale(1.045); filter: saturate(.78); }
.department-number { position: absolute; top: 22px; left: 22px; z-index: 2; font-size: 9px; letter-spacing: .2em; }
.department-card div { position: absolute; right: 28px; bottom: 26px; left: 28px; z-index: 2; }
.department-card div span { font-size: 8px; letter-spacing: .23em; text-transform: uppercase; }
.department-card h3 { margin: 2px 0 5px; font-size: clamp(30px, 3vw, 50px); letter-spacing: -.05em; text-transform: uppercase; }
.department-card b { display: block; max-height: 0; opacity: 0; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; transition: max-height .3s, opacity .3s; }
.department-card:hover b { max-height: 30px; opacity: 1; }

.dark-section { color: white; background: var(--black); }
.signature-section { min-height: 760px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; padding: 100px 6vw; }
.eyebrow.gold { color: var(--gold); }
.signature-copy h2 { margin: 20px 0 30px; color: var(--cream); font-size: clamp(74px, 10vw, 158px); line-height: .74; letter-spacing: -.08em; }
.signature-copy p { max-width: 485px; color: rgba(255,255,255,.58); }
.arrow-link { display: inline-flex; align-items: center; gap: 35px; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid currentColor; color: var(--gold-bright); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.arrow-link span { transition: transform .3s; }
.arrow-link:hover span { transform: translateX(7px); }
.arrow-link.dark { color: var(--ink); }
.signature-visual { position: relative; min-height: 610px; background: #eee5d5; overflow: hidden; }
.signature-visual img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; transition: transform .7s; }
.signature-visual:hover img { transform: scale(1.025); }
.signature-stamp { position: absolute; top: 0; right: 0; width: 122px; height: 122px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--black); background: var(--gold-bright); text-transform: uppercase; }
.signature-stamp span, .signature-stamp small { font-size: 7px; letter-spacing: .2em; }
.signature-stamp strong { font-size: 32px; line-height: 1; }
.signature-product { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; padding: 22px 25px; color: white; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

.product-tabs { display: flex; gap: 30px; margin: -20px 0 38px; border-bottom: 1px solid var(--line); }
.product-tabs button { padding: 14px 0; color: #77736c; background: none; border: 0; border-bottom: 2px solid transparent; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-tabs button.active { color: var(--ink); border-color: var(--gold); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 12px; }
.product-card { min-width: 0; }
.product-card.filtered-out { display: none; }
.product-media { position: relative; aspect-ratio: .83; overflow: hidden; background: #eeeae3; }
.product-media > a { display: block; width: 100%; height: 100%; }
.product-media img { width: 100%; height: 100%; padding: 14px; object-fit: contain; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-media img { transform: scale(1.02); }
.product-badge { position: absolute; top: 13px; left: 13px; padding: 6px 9px; color: var(--ink); background: rgba(251,250,247,.88); font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(6px); }
.icon-button { display: grid; place-items: center; background: none; border: 0; }
.product-wish { position: absolute; top: 11px; right: 11px; width: 34px; height: 34px; color: var(--ink); background: rgba(251,250,247,.88); border-radius: 50%; }
.product-wish svg { width: 17px; height: 17px; }
.product-wish.active svg { fill: var(--ink); }
.product-actions { position: absolute; right: 10px; bottom: 10px; left: 10px; display: flex; gap: 8px; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.product-card:hover .product-actions { opacity: 1; transform: none; }
.text-button, .round-add { min-height: 43px; color: var(--ink); background: rgba(251,250,247,.94); border: 0; }
.text-button { flex: 1; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.round-add { width: 43px; font-size: 22px; }
.product-info { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 15px 3px 0; }
.product-eyebrow { color: #8b877f; font-size: 7px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-info h3 { margin: 4px 0 0; font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.price { margin: 18px 0 0; font-size: 12px; font-weight: 700; white-space: nowrap; }
.price del, .detail-price del { margin-left: 7px; color: #99958d; font-weight: 400; }

.manifesto { min-height: 850px; display: grid; grid-template-columns: 1.05fr .95fr; background: #ebe7de; }
.manifesto-image { position: relative; min-height: 850px; overflow: hidden; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: none; }
.manifesto-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.22), transparent 35%); }
.manifesto-image > span { position: absolute; bottom: 25px; left: 28px; z-index: 2; color: white; font-size: 10px; letter-spacing: .25em; }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 8vw; }
.manifesto blockquote { margin: 30px 0; font-size: clamp(46px, 5.4vw, 82px); line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
.manifesto-copy > p { max-width: 510px; color: #625f58; }

.collections { padding: 120px 6vw; color: white; background: var(--black); }
.collections-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 55px; }
.collections-head h2 { margin: 0; }
.collection-row { display: grid; grid-template-columns: 80px 1.2fr 1fr auto; align-items: center; gap: 25px; padding: 34px 10px; border-top: 1px solid var(--white-line); transition: color .3s, padding .3s, background .3s; }
.collection-row:last-child { border-bottom: 1px solid var(--white-line); }
.collection-row:hover { padding-right: 24px; padding-left: 24px; color: var(--gold-bright); background: rgba(255,255,255,.035); }
.collection-row > span { color: var(--gold); font-size: 9px; letter-spacing: .15em; }
.collection-row h3 { margin: 0; font-size: clamp(27px, 3.2vw, 50px); font-weight: 500; letter-spacing: -.04em; text-transform: uppercase; }
.collection-row p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }
.collection-row b { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

.values-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--cream); }
.values-strip div { min-height: 235px; padding: 45px 34px; border-right: 1px solid var(--line); }
.values-strip span { color: var(--gold); font-size: 9px; letter-spacing: .15em; }
.values-strip h3 { margin: 30px 0 12px; font-size: 17px; text-transform: uppercase; }
.values-strip p { margin: 0; color: #716d65; font-size: 12px; }

.newsletter-section { min-height: 650px; display: grid; grid-template-columns: .9fr 1.1fr; color: white; background: #111; overflow: hidden; }
.newsletter-art { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 40%, #30291d 0, #15130f 45%, #090909 75%); }
.newsletter-art::before, .newsletter-art::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(205,169,92,.18); transform: rotate(45deg); }
.newsletter-art::after { width: 330px; height: 330px; }
.newsletter-art span { z-index: 1; color: var(--gold); font-family: var(--serif); font-size: clamp(180px, 28vw, 420px); line-height: 1; text-shadow: 0 0 60px rgba(205,169,92,.12); }
.newsletter-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 8vw; }
.newsletter-copy p { max-width: 525px; color: rgba(255,255,255,.58); }
.newsletter-form { width: 100%; max-width: 560px; display: grid; grid-template-columns: 1fr auto; align-items: end; margin-top: 28px; border-bottom: 1px solid rgba(255,255,255,.35); }
.newsletter-form label span { display: block; color: #8c877d; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.newsletter-form input { width: 100%; padding: 14px 0 16px; color: white; background: none; border: 0; outline: 0; font-size: 18px; }
.newsletter-form button { height: 48px; color: var(--gold-bright); background: none; border: 0; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.newsletter-copy small { margin-top: 12px; color: #6e6a63; font-size: 8px; }
.form-status { grid-column: 1 / -1; min-height: 20px; margin: 8px 0 0; color: var(--gold-bright) !important; font-size: 11px; }

.site-footer { padding: 70px 5vw 25px; color: #c9c4ba; background: #080808; border-top: 1px solid var(--white-line); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 34px; padding-bottom: 65px; }
.footer-logo { align-self: flex-start; color: white; font-size: 18px; }
.footer-logo .brand-mark { width: 42px; height: 42px; }
.footer-logo small { display: block; margin-left: 12px; color: #77736b; font-family: var(--serif); font-size: 11px; font-style: italic; letter-spacing: .06em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3 { margin: 0 0 16px; color: white; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.footer-links a { color: #8e8a82; font-size: 11px; transition: color .2s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--white-line); color: #5f5c57; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.shop-page { padding-top: 0; }
.shop-hero { padding: 170px 5.5vw 70px; color: white; background: radial-gradient(circle at 80% 10%, #3a2c19, transparent 35%), var(--black); }
.shop-hero h1 { margin: 15px 0 8px; font-size: clamp(65px, 9vw, 130px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.shop-hero p { max-width: 600px; color: rgba(255,255,255,.56); }
.shop-toolbar { position: sticky; top: 68px; z-index: 30; display: flex; align-items: center; justify-content: space-between; min-height: 68px; padding: 0 5.5vw; background: rgba(251,250,247,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.filter-trigger { display: flex; align-items: center; gap: 10px; background: none; border: 0; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.filter-trigger svg { width: 18px; }
.shop-count { color: #868178; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.shop-count strong { color: var(--ink); }
.sort-select { display: flex; align-items: center; gap: 10px; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.sort-select select { padding: 5px 25px 5px 4px; background: transparent; border: 0; outline: 0; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 35px; padding: 45px 4vw 100px; }
.filter-panel { padding-right: 25px; border-right: 1px solid var(--line); }
.filter-head { display: none; }
.filter-panel fieldset { margin: 0; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-panel legend { width: 100%; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.filter-panel label { display: flex; align-items: center; gap: 9px; margin: 9px 0; color: #65625c; font-size: 11px; }
.filter-panel input { accent-color: var(--black); }
.filter-panel .button, .filter-panel > .link-button { display: none; }
.shop-grid { grid-template-columns: repeat(3, 1fr); }
.no-products { display: none; min-height: 500px; place-items: center; align-content: center; text-align: center; }
.no-products.show { display: grid; }
.no-products span { color: #d3c19a; font-family: var(--serif); font-size: 120px; line-height: 1; }
.no-products h2 { margin: 0 0 20px; }

.product-page { padding-top: 120px; }
.breadcrumbs { display: flex; gap: 10px; padding: 25px 5vw; color: #8a867e; border-bottom: 1px solid var(--line); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs strong { color: var(--ink); }
.product-detail { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 750px; }
.product-gallery { padding: 35px 4vw 50px; background: #eeebe5; }
.main-product-image { position: relative; height: min(75vw, 740px); background: #e8e2d8; overflow: hidden; }
.main-product-image img { width: 100%; height: 100%; padding: 18px; object-fit: contain; transition: transform .35s; }
.main-product-image.zoomed img { transform: scale(1.55); cursor: zoom-out; }
.main-product-image > button { position: absolute; right: 18px; bottom: 18px; width: 42px; height: 42px; color: white; background: rgba(0,0,0,.7); border: 0; border-radius: 50%; font-size: 22px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px; }
.gallery-thumbs button { padding: 0; border: 1px solid transparent; background: #eeeae3; }
.gallery-thumbs button.active, .gallery-thumbs button:hover { border-color: var(--ink); }
.gallery-thumbs img { width: 100%; aspect-ratio: .82; padding: 6px; object-fit: contain; }
.gallery-angle-strip { margin-top: 12px; padding: 12px; background: #f7f3ec; border: 1px solid var(--line); }
.gallery-angle-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; color: #7a756d; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gallery-angle-head strong { color: var(--ink); }
.gallery-angle-track { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 3px; }
.gallery-angle-track button { flex: 0 0 120px; padding: 5px; background: #ede7dd; border: 1px solid transparent; text-align: left; }
.gallery-angle-track button.active, .gallery-angle-track button:hover { border-color: var(--ink); }
.gallery-angle-track img { width: 100%; aspect-ratio: .92; padding: 5px; object-fit: contain; background: #e5dfd5; }
.gallery-angle-track span { display: block; padding: 5px 2px 1px; color: #6c675f; font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.variant-stock { margin: 16px 0 0; color: #2d6a45; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.variant-stock.sold-out { color: #8a2f2a; }
.product-detail-note { display: flex; justify-content: space-between; padding-top: 18px; color: #77736c; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.product-copy { padding: 70px 7vw 60px 6vw; }
.product-copy h1 { margin: 18px 0 8px; font-size: clamp(44px, 5vw, 76px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.detail-price { margin: 20px 0 30px; font-size: 18px; font-weight: 700; }
.detail-description { color: #65615b; font-size: 14px; }
.option-block { margin-top: 30px; }
.option-block > div:first-child { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.option-block > div:first-child span { color: #7d7971; }
.color-options, .size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.color-options button, .size-options button { min-height: 42px; padding: 0 15px; background: white; border: 1px solid var(--line); font-size: 10px; }
.color-options button { display: flex; align-items: center; gap: 8px; }
.color-options i { width: 14px; height: 14px; background: var(--swatch, #d1a997); border: 1px solid rgba(0,0,0,.15); border-radius: 50%; }
.color-options button.active, .size-options button.active { border-color: var(--black); box-shadow: inset 0 0 0 1px var(--black); }
.detail-actions { display: grid; grid-template-columns: 1fr 54px; gap: 8px; margin-top: 34px; }
.detail-wish { color: var(--ink); background: white; border: 1px solid var(--line); font-size: 23px; }
.detail-wish.active { color: white; background: var(--ink); }
.detail-accordions { margin-top: 34px; border-top: 1px solid var(--line); }
.detail-accordions details { border-bottom: 1px solid var(--line); }
.detail-accordions summary { display: flex; justify-content: space-between; padding: 18px 0; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; list-style: none; }
.detail-accordions p { margin: 0 0 18px; color: #706c65; font-size: 12px; }
.related-section { position: relative; background: radial-gradient(circle at 12% 0, rgba(205,169,92,.16), transparent 30%), white; overflow: hidden; }
.related-section::before { content: ""; position: absolute; top: 0; right: 5.5vw; left: 5.5vw; height: 1px; background: var(--line); }
.related-heading { position: relative; align-items: center; margin-bottom: 24px; }
.related-heading p { max-width: 520px; margin: 0; color: #6f6a62; font-size: 13px; }
.match-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; }
.match-tags a { padding: 9px 13px; color: var(--ink); background: rgba(251,250,247,.78); border: 1px solid var(--line); border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s; }
.match-tags a:hover { color: var(--black); background: var(--gold-bright); border-color: var(--gold-bright); }
.recommendation-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.recommendation-panel { position: relative; min-width: 0; padding: 26px; background: rgba(251,250,247,.82); border: 1px solid var(--line); overflow: hidden; }
.recommendation-panel::after { content: ""; position: absolute; inset: auto -10% -45% 38%; height: 55%; background: radial-gradient(circle, rgba(205,169,92,.2), transparent 66%); pointer-events: none; }
.primary-panel { background: linear-gradient(135deg, #fbfaf7 0, #efe8dc 100%); }
.outfit-panel { color: white; background: linear-gradient(135deg, #11100f 0, #252019 100%); border-color: rgba(255,255,255,.12); }
.recommendation-panel-copy { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 10px 25px; align-items: end; margin-bottom: 20px; }
.recommendation-panel-copy .eyebrow { grid-column: 1 / -1; }
.recommendation-panel-copy h3 { margin: 0; font-size: clamp(28px, 3vw, 48px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.recommendation-panel-copy p { max-width: 300px; margin: 0; color: #77736c; font-size: 11px; }
.outfit-panel .recommendation-panel-copy p { color: rgba(255,255,255,.58); }
.recommendation-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 10px; }
.recommendation-card { position: relative; min-width: 0; }
.recommendation-card .product-card { height: 100%; }
.recommendation-card .product-media { background: #eee8dc; }
.outfit-panel .recommendation-card .product-info, .outfit-panel .recommendation-card .product-info a { color: white; }
.outfit-panel .recommendation-card .product-eyebrow, .outfit-panel .recommendation-card .price del { color: rgba(255,255,255,.48); }
.match-reason { position: absolute; top: 10px; left: 10px; z-index: 3; max-width: calc(100% - 20px); padding: 7px 9px; color: var(--black); background: var(--gold-bright); box-shadow: 0 10px 24px rgba(0,0,0,.12); font-size: 7px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; pointer-events: none; }
.recommendation-card .product-badge { top: 43px; }

.scrim { position: fixed; inset: 0; z-index: 190; visibility: hidden; opacity: 0; background: rgba(0,0,0,.58); backdrop-filter: blur(3px); transition: opacity .3s, visibility .3s; }
.scrim.open { visibility: visible; opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; z-index: 220; width: min(480px, 100%); height: 100%; display: flex; flex-direction: column; padding: 28px; background: var(--paper); box-shadow: -20px 0 50px rgba(0,0,0,.18); transform: translateX(105%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 7px 0 0; font-size: 25px; letter-spacing: -.04em; text-transform: uppercase; }
.drawer-head h2 small { color: var(--gold); font-size: 14px; }
.drawer-head button, .search-top button, .mobile-menu-top button, .modal-close { width: 40px; height: 40px; background: none; border: 0; font-size: 30px; font-weight: 300; }
.shipping-meter { padding: 17px 0; }
.shipping-meter p { margin: 0 0 8px; color: #77736c; font-size: 10px; }
.shipping-meter > div { height: 2px; background: #ddd8cf; }
.shipping-meter span { display: block; width: 0; height: 100%; background: var(--gold); transition: width .3s; }
.drawer-items { flex: 1; overflow-y: auto; }
.drawer-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 90px; height: 112px; padding: 5px; object-fit: contain; background: #ece8e0; }
.drawer-item h3 { margin: 0; font-size: 12px; }
.drawer-item p { margin: 3px 0; color: #7a766f; font-size: 9px; text-transform: uppercase; }
.cart-size-link { display: inline-block; margin-top: 5px; color: var(--gold); border-bottom: 1px solid currentColor; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cart-size-link:hover { color: var(--ink); }
.item-quantity { display: inline-flex; align-items: center; margin-top: 9px; border: 1px solid var(--line); }
.item-quantity button { width: 28px; height: 27px; background: none; border: 0; }
.item-quantity span { width: 25px; text-align: center; font-size: 10px; }
.drawer-item > button { align-self: flex-start; background: none; border: 0; color: #777; font-size: 20px; }
.drawer-item strong { display: block; margin-top: 8px; font-size: 11px; }
.drawer-empty { flex: 1; display: none; place-items: center; align-content: center; padding: 50px 20px; text-align: center; }
.drawer-empty.show { display: grid; }
.drawer-empty > span { color: #c7ad77; font-family: var(--serif); font-size: 90px; line-height: 1; }
.drawer-empty h3 { margin: 10px 0 6px; text-transform: uppercase; }
.drawer-empty p { max-width: 270px; margin: 0 0 20px; color: #77736c; font-size: 12px; }
.drawer-summary { padding-top: 22px; border-top: 1px solid var(--line); }
.drawer-summary > div { display: flex; justify-content: space-between; font-size: 14px; }
.drawer-summary p { color: #88847c; font-size: 9px; }

.search-panel { position: fixed; top: 0; right: 0; left: 0; z-index: 230; min-height: 440px; padding: 35px 7vw 50px; background: var(--paper); transform: translateY(-105%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.search-panel.open { transform: none; }
.search-top { display: flex; justify-content: space-between; align-items: center; }
.search-field { max-width: 1100px; display: grid; grid-template-columns: 40px 1fr; align-items: center; margin: 40px auto 20px; border-bottom: 1px solid var(--ink); }
.search-field svg { width: 25px; }
.search-field input { width: 100%; padding: 15px 0; background: none; border: 0; outline: 0; font-size: clamp(30px, 5vw, 68px); letter-spacing: -.04em; }
.search-suggestions { max-width: 1100px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: auto; color: #827e76; font-size: 9px; text-transform: uppercase; }
.search-suggestions button { padding: 7px 11px; background: white; border: 1px solid var(--line); font-size: 8px; text-transform: uppercase; }
.search-results { max-width: 1100px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 30px auto 0; }
.search-result { display: grid; grid-template-columns: 65px 1fr; gap: 10px; align-items: center; padding: 8px; background: white; }
.search-result img { width: 65px; height: 75px; padding: 4px; object-fit: contain; background: #ece8e0; }
.search-result h3 { margin: 0; font-size: 10px; }
.search-result span { color: #777; font-size: 9px; }

.modal { position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; visibility: hidden; opacity: 0; padding: 20px; background: rgba(0,0,0,.72); backdrop-filter: blur(5px); transition: opacity .3s, visibility .3s; }
.modal.open { visibility: visible; opacity: 1; }
.modal-dialog { position: relative; width: min(520px, 100%); max-height: calc(100vh - 40px); padding: 48px; background: var(--paper); overflow-y: auto; transform: translateY(18px); transition: transform .3s; }
.modal.open .modal-dialog { transform: none; }
.modal-close { position: absolute; top: 10px; right: 10px; z-index: 2; }
.modal-dialog h2 { margin: 10px 0; font-size: 38px; line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }
.modal-dialog > p { color: #77736c; }
.stack-form { display: grid; gap: 16px; margin-top: 25px; }
.stack-form label { color: #66625b; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.stack-form input, .stack-form select, .stack-form textarea { width: 100%; margin-top: 6px; padding: 12px 13px; background: white; border: 1px solid var(--line); outline: 0; font-size: 12px; text-transform: none; }
.stack-form input:focus, .stack-form select:focus, .stack-form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.link-button { padding: 0; color: inherit; background: none; border: 0; border-bottom: 1px solid currentColor; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.quick-dialog { width: min(940px, 100%); padding: 0; }
.quick-view { display: grid; grid-template-columns: 1fr 1fr; }
.quick-view-media { min-width: 0; background: #ebe7de; }
.quick-view-image { min-height: 600px; background: #ebe7de; }
.quick-view-image img { width: 100%; height: 100%; padding: 16px; object-fit: contain; }
.quick-gallery-thumbs { display: flex; gap: 7px; overflow-x: auto; padding: 10px 12px 0; background: #ebe7de; }
.quick-gallery-thumbs button { flex: 0 0 82px; padding: 4px; background: #f5f1e9; border: 1px solid transparent; }
.quick-gallery-thumbs button.active, .quick-gallery-thumbs button:hover { border-color: var(--ink); }
.quick-gallery-thumbs img { width: 100%; aspect-ratio: .82; object-fit: contain; }
.quick-angle-strip { margin: 0; background: #ebe7de; border: 0; border-top: 1px solid var(--line); }
.quick-angle-strip .gallery-angle-track button { flex-basis: 96px; background: #f5f1e9; }
.quick-view-copy { padding: 70px 50px 45px; }
.quick-view-copy h2 { font-size: 48px; }
.quick-view-copy > p { color: #6f6b64; }
.quick-sizes { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0; }
.quick-sizes button { min-width: 42px; height: 38px; background: white; border: 1px solid var(--line); font-size: 9px; }
.quick-sizes button.active { border-color: var(--black); box-shadow: inset 0 0 0 1px var(--black); }
.checkout-dialog { width: min(1050px, 100%); }
.checkout-steps { display: flex; gap: 25px; margin-bottom: 25px; color: #9a968f; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.checkout-steps .active { color: var(--ink); }
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; }
.checkout-layout aside { padding: 25px; background: #eeeae3; }
.checkout-layout aside h3 { margin-top: 0; font-size: 13px; text-transform: uppercase; }
.checkout-mini { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.checkout-mini span { color: #77736c; }
.checkout-total { display: flex; justify-content: space-between; margin-top: 20px; font-size: 16px; }
.form-note { margin: -5px 0 0; color: #88847c; font-size: 9px; text-align: center; }
.toast { position: fixed; right: 28px; bottom: 28px; z-index: 400; max-width: 350px; padding: 15px 20px; color: white; background: var(--ink); box-shadow: 0 12px 35px rgba(0,0,0,.25); opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .3s, transform .3s; font-size: 11px; }
.toast.show { opacity: 1; transform: none; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 80; width: 42px; height: 42px; display: grid; place-items: center; color: white; background: var(--ink); border: 0; border-radius: 50%; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.back-to-top.show { opacity: 1; transform: none; }
.toast.show + .back-to-top { bottom: 85px; }

.mobile-menu { position: fixed; inset: 0; z-index: 300; display: none; padding: 30px; color: white; background: var(--black); transform: translateX(105%); transition: transform .4s; }
.mobile-menu.open { transform: none; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; color: var(--gold); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.mobile-menu nav { display: flex; flex-direction: column; margin-top: 45px; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--white-line); font-size: clamp(31px, 9vw, 55px); line-height: 1; text-transform: uppercase; }
.mobile-menu nav span { color: var(--gold); font-size: 9px; }
.mobile-menu-foot { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; justify-content: space-between; color: #777; font-size: 10px; }
.mobile-menu-foot a { color: var(--gold-bright); }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .site-header { grid-template-columns: 190px 1fr 190px; padding: 0 2.5vw; }
    .desktop-nav { gap: 14px; }
    .desktop-nav a { font-size: 8px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .shop-layout { grid-template-columns: 230px 1fr; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .signature-section { grid-template-columns: .9fr 1.1fr; gap: 4vw; }
}

@media (max-width: 860px) {
    :root { --header-height: 68px; }
    .announcement span:not(:first-child), .desktop-nav, .desktop-only { display: none; }
    .site-header { top: 34px; grid-template-columns: 1fr auto; padding: 0 20px; }
    .site-header.fixed { top: 0; }
    .menu-toggle, .mobile-menu { display: block; }
    .hero { min-height: 790px; }
    .hero-image { object-position: 62% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18)), linear-gradient(0deg, rgba(0,0,0,.55), transparent); }
    .hero-content { width: 82%; padding: 190px 0 100px 7vw; }
    .hero h1 { font-size: clamp(65px, 14vw, 105px); }
    .hero-meta, .scroll-cue { display: none; }
    .section { padding: 85px 25px; }
    .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 40px; }
    .department-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 480px); }
    .department-card-tall { grid-row: span 2; }
    .signature-section { grid-template-columns: 1fr; padding: 80px 25px; }
    .signature-copy h2 { font-size: 96px; }
    .signature-visual { min-height: 520px; }
    .signature-visual img { min-height: 520px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card:hover .product-actions { opacity: 1; transform: none; }
    .manifesto { grid-template-columns: 1fr; }
    .manifesto-image { min-height: 650px; }
    .manifesto-copy { padding: 80px 35px; }
    .collections { padding: 85px 25px; }
    .collection-row { grid-template-columns: 45px 1fr auto; }
    .collection-row p { display: none; }
    .values-strip { grid-template-columns: 1fr 1fr; }
    .drop-banner { grid-template-columns: 1fr; }
    .drop-banner a { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--white-line); }
    .newsletter-section { grid-template-columns: 1fr; }
    .newsletter-art { min-height: 420px; }
    .newsletter-copy { padding: 75px 35px; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-logo { grid-column: 1 / -1; }
    .shop-hero { padding-top: 150px; }
    .shop-layout { display: block; padding: 30px 20px 80px; }
    .filter-panel { position: fixed; top: 0; bottom: 0; left: 0; z-index: 260; width: min(390px, 100%); padding: 25px; background: var(--paper); border: 0; overflow-y: auto; transform: translateX(-105%); transition: transform .35s; }
    .filter-panel.open { transform: none; }
    .filter-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: 700; text-transform: uppercase; }
    .filter-head button { background: none; border: 0; font-size: 28px; }
    .filter-panel .button, .filter-panel > .link-button { display: flex; margin-top: 18px; }
    .filter-panel > .link-button { width: max-content; margin-right: auto; margin-left: auto; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .product-page { padding-top: 102px; }
    .product-detail { grid-template-columns: 1fr; }
    .main-product-image { height: 105vw; max-height: 780px; }
    .product-copy { padding: 60px 8vw; }
    .related-heading { align-items: flex-start; }
    .recommendation-layout { grid-template-columns: 1fr; }
    .recommendation-panel-copy { grid-template-columns: 1fr; }
    .recommendation-panel-copy p { max-width: 560px; }
    .search-results { grid-template-columns: repeat(2, 1fr); }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-layout aside { order: -1; }
}

@media (max-width: 560px) {
    .announcement { justify-content: center; padding: 0 12px; text-align: center; }
    .wordmark { font-size: 12px; }
    .brand-mark { width: 27px; height: 27px; }
    .header-actions { gap: 0; }
    .header-icon { width: 34px; }
    .hero { min-height: 760px; }
    .hero-image { object-position: 68% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.05) 75%); }
    .hero-content { width: auto; padding: 385px 22px 70px; }
    .hero h1 { margin-top: 20px; font-size: 17vw; }
    .hero-content > p { font-size: 12px; }
    .hero-buttons { align-items: stretch; flex-direction: column; }
    .section { padding: 70px 16px; }
    .section-heading h2, .newsletter-copy h2, .collections-head h2 { font-size: 48px; }
    .department-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; }
    .department-card { min-width: 83vw; height: 540px; scroll-snap-align: start; }
    .department-card-tall { height: 540px; }
    .signature-section { padding: 70px 16px; }
    .signature-copy h2 { font-size: 74px; }
    .signature-visual, .signature-visual img { min-height: 420px; }
    .signature-stamp { width: 92px; height: 92px; }
    .product-tabs { gap: 20px; overflow-x: auto; }
    .product-grid, .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 7px; }
    .product-media { aspect-ratio: .78; }
    .product-info { display: block; padding-top: 10px; }
    .product-info h3 { font-size: 10px; }
    .product-eyebrow { font-size: 6px; }
    .price { margin-top: 5px; font-size: 10px; }
    .product-actions { right: 5px; bottom: 5px; left: 5px; opacity: 1; transform: none; }
    .text-button { display: none; }
    .round-add { margin-left: auto; }
    .product-badge { top: 7px; left: 7px; }
    .product-wish { top: 6px; right: 6px; }
    .manifesto-image { min-height: 580px; }
    .manifesto-copy { padding: 65px 20px; }
    .manifesto blockquote { font-size: 45px; }
    .collections { padding: 70px 16px; }
    .collections-head { display: block; }
    .collection-row { grid-template-columns: 34px 1fr; gap: 10px; padding: 24px 4px; }
    .collection-row b { display: none; }
    .collection-row h3 { font-size: 30px; }
    .values-strip { grid-template-columns: 1fr; }
    .values-strip div { min-height: auto; padding: 35px 24px; border-bottom: 1px solid var(--line); }
    .newsletter-art { min-height: 320px; }
    .newsletter-copy { padding: 60px 20px; }
    .newsletter-form { grid-template-columns: 1fr; }
    .newsletter-form button { justify-self: start; padding: 0; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-logo, .footer-top .footer-links:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
    .shop-hero { padding: 135px 20px 55px; }
    .shop-hero h1 { font-size: 64px; }
    .shop-toolbar { top: 68px; padding: 0 15px; }
    .shop-count { display: none; }
    .sort-select { gap: 3px; font-size: 7px; }
    .shop-layout { padding: 22px 7px 70px; }
    .breadcrumbs { padding: 18px 15px; overflow-x: auto; white-space: nowrap; }
    .product-gallery { padding: 12px 8px 25px; }
    .main-product-image { height: 118vw; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .gallery-angle-strip { padding: 10px; }
    .gallery-angle-head { display: block; }
    .gallery-angle-track button { flex-basis: 96px; }
    .product-detail-note { display: none; }
    .product-copy { padding: 45px 20px; }
    .product-copy h1 { font-size: 48px; }
    .related-section { padding-right: 8px; padding-left: 8px; }
    .related-section::before { right: 16px; left: 16px; }
    .match-tags { padding: 0 8px; }
    .recommendation-panel { padding: 18px 8px 22px; }
    .recommendation-panel-copy { padding: 0 8px; }
    .recommendation-grid { gap: 24px 7px; }
    .match-reason { top: 7px; left: 7px; padding: 6px 7px; font-size: 6px; }
    .recommendation-card .product-badge { top: 35px; }
    .search-panel { min-height: 100%; padding: 25px 20px; }
    .search-field { margin-top: 65px; }
    .search-field input { font-size: 35px; }
    .search-results { grid-template-columns: 1fr; max-height: 55vh; overflow-y: auto; }
    .drawer { padding: 20px 16px; }
    .quick-dialog { height: calc(100vh - 20px); }
    .quick-view { display: block; }
    .quick-view-image { min-height: 360px; height: 45vh; }
    .quick-gallery-thumbs button { flex-basis: 70px; }
    .quick-view-copy { padding: 35px 22px; }
    .quick-view-copy h2 { font-size: 35px; }
    .modal { padding: 10px; }
    .modal-dialog { padding: 42px 22px 25px; }
    .quick-dialog { padding: 0; }
    .form-row { grid-template-columns: 1fr; }
    .checkout-steps { gap: 12px; font-size: 7px; }
    .back-to-top { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.member-page { padding-top: 118px; background: var(--paper); }
.member-hero { padding: 92px 6vw 70px; color: white; background: radial-gradient(circle at 80% 10%, rgba(205,169,92,.28), transparent 35%), var(--black); }
.member-hero h1 { margin: 16px 0 12px; font-size: clamp(58px, 8vw, 112px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.member-hero p { max-width: 670px; margin: 0 0 26px; color: rgba(255,255,255,.62); }
.member-shell { padding: 55px 6vw 110px; }
.member-auth-card, .member-card { background: white; border: 1px solid var(--line); }
.member-auth-card { width: min(720px, 100%); margin: 0 auto; padding: clamp(24px, 4vw, 48px); }
.member-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.member-tabs a { position: relative; padding: 14px 8px; color: #868178; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-align: center; text-transform: uppercase; }
.member-tabs a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; content: ""; background: var(--ink); transform: scaleX(0); transition: transform .2s; }
.member-tabs a.active { color: var(--ink); }
.member-tabs a.active::after { transform: scaleX(1); }
.member-form { margin-top: 0; }
.member-note, .member-form-row { margin: -5px 0 0; color: #7c776e; font-size: 10px; }
.member-form-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.member-form-row a { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.check-line { display: inline-flex !important; align-items: center; gap: 9px; margin: 0; color: #6b675f !important; font-size: 10px !important; letter-spacing: 0 !important; text-transform: none !important; }
.check-line input { width: 15px; height: 15px; accent-color: var(--black); }
.member-alert { width: min(720px, 100%); margin: 0 auto 18px; padding: 13px 15px; border: 1px solid var(--line); font-size: 12px; }
.member-alert.error { color: #7d2d28; background: #f8e2df; border-color: #e3ada8; }
.member-alert.success { color: #1d5f3e; background: #e0f2e8; border-color: #a9d4ba; }
.member-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 20px; }
.member-card { padding: clamp(24px, 3vw, 38px); }
.member-card h2 { margin: 10px 0 20px; font-size: clamp(30px, 3.2vw, 48px); line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }
.member-profile dl { display: grid; gap: 15px; margin: 0 0 28px; }
.member-profile dl div { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.member-profile dt { color: #8a857d; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.member-profile dd { margin: 4px 0 0; font-weight: 600; }
.member-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.member-order-list { display: grid; }
.member-order-list > div { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.member-order-list > div:last-child { border-bottom: 0; }
.member-order-list p { display: flex; flex-direction: column; margin: 0; }
.member-order-list span { color: #827e76; font-size: 10px; }
.member-order-list b { font-size: 13px; }
.member-order-list em { padding: 5px 9px; color: #246748; background: #dff0e6; border-radius: 20px; font-size: 8px; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.member-empty { padding: 34px; color: #77736c; background: #f5f2ea; text-align: center; }
.member-empty strong { color: var(--ink); }

.legal-page { padding-top: 118px; background: var(--paper); }
.legal-hero { padding: 92px 6vw 70px; color: white; background: radial-gradient(circle at 80% 10%, rgba(205,169,92,.26), transparent 35%), var(--black); }
.legal-hero h1 { margin: 16px 0 12px; font-size: clamp(58px, 8vw, 112px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.legal-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.64); }
.legal-shell { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 55px 6vw 110px; }
.legal-card { padding: clamp(24px, 3vw, 40px); background: white; border: 1px solid var(--line); }
.legal-card > span { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.legal-card h2 { margin: 12px 0 16px; font-size: clamp(28px, 3vw, 46px); line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }
.legal-card p { color: #66625b; }

.size-scale-section { padding: 0 6vw 120px; }
.size-scale-head { max-width: 880px; margin-bottom: 28px; }
.size-scale-head h2 { margin: 12px 0 14px; font-size: clamp(42px, 5vw, 78px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.size-scale-head p { max-width: 760px; color: #66625b; }
.fit-note-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 26px 0 24px; }
.fit-note-grid article { padding: 22px; color: white; background: #0a0a0a; border: 1px solid rgba(205,169,92,.22); }
.fit-note-grid span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.fit-note-grid h3 { margin: 12px 0 8px; font-size: 25px; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.fit-note-grid p { margin: 0; color: rgba(255,255,255,.64); }
.size-scale-grid { display: grid; gap: 24px; }
.size-scale-card { overflow: hidden; color: white; background: radial-gradient(circle at 100% 0, rgba(205,169,92,.16), transparent 34%), #050505; border: 1px solid rgba(205,169,92,.24); box-shadow: 0 30px 80px rgba(0,0,0,.16); }
.size-scale-card header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: clamp(24px, 3vw, 36px); border-bottom: 1px solid rgba(255,255,255,.1); }
.size-scale-card header h3 { margin: 12px 0 0; font-size: clamp(34px, 4vw, 58px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.size-scale-card header p { max-width: 460px; margin: 0; color: rgba(255,255,255,.62); }
.size-scale-badge { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.size-table-wrap { overflow-x: auto; }
.size-scale-table { width: 100%; min-width: 980px; border-collapse: collapse; }
.size-scale-table th,
.size-scale-table td { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; white-space: nowrap; }
.size-scale-table thead th { color: white; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.06); }
.size-scale-table tbody th { color: white; font-weight: 800; }
.size-scale-table tbody td { color: rgba(255,255,255,.74); }
.size-scale-table tbody tr:nth-child(even) { background: rgba(255,255,255,.035); }
.size-scale-section + .size-scale-section { padding-top: 8px; }
.size-range-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 0 clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px); }
.size-range-card { overflow: hidden; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); }
.size-range-card h4 { margin: 0; padding: 18px 18px 16px; color: var(--gold); font-size: 18px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.1); }
.size-scale-table-small { min-width: 560px; }
.size-scale-table-small th,
.size-scale-table-small td { padding: 13px 14px; font-size: 13px; }

@media (max-width: 1180px) {
    .size-range-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .member-page { padding-top: 102px; }
    .member-hero { padding: 74px 24px 52px; }
    .member-shell { padding: 32px 20px 80px; }
    .member-grid { grid-template-columns: 1fr; }
    .member-card-head { flex-direction: column; }
    .legal-page { padding-top: 102px; }
    .legal-hero { padding: 74px 24px 52px; }
    .legal-shell { grid-template-columns: 1fr; padding: 32px 20px 80px; }
    .size-scale-section { padding: 0 20px 88px; }
    .fit-note-grid { grid-template-columns: 1fr; }
    .size-scale-card header { align-items: flex-start; flex-direction: column; }
    .size-range-grid { padding: 0 18px 18px; }
}

@media (max-width: 560px) {
    .member-hero h1 { font-size: 55px; }
    .member-auth-card, .member-card { padding: 22px; }
    .member-form-row { align-items: flex-start; flex-direction: column; gap: 10px; }
    .member-order-list > div { grid-template-columns: 1fr; gap: 6px; }
    .legal-hero h1 { font-size: 55px; }
    .legal-card { padding: 22px; }
    .size-scale-head h2 { font-size: 40px; }
    .size-scale-table th,
    .size-scale-table td { padding: 14px 16px; }
}
