:root {
  --ink: #0c0d0e;
  --panel: #151617;
  --panel-light: #1d1e1f;
  --line: #353433;
  --gold: #c6a878;
  --gold-light: #e2c89a;
  --cream: #f1ede6;
  --muted: #aaa9a6;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--cream); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
button, input, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #111; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.container-wide { width: min(100% - 96px, 1380px); margin-inline: auto; }

.announcement { height: 28px; display: flex; align-items: center; justify-content: center; gap: 13px; background: #151515; color: #b9ad98; font-size: 8px; font-weight: 700; letter-spacing: .33em; }
.announcement-line { display: inline-block; width: 24px; height: 1px; background: #7c6c54; }
.site-header { position: relative; z-index: 20; height: 88px; background: #0c0d0e; border-bottom: 1px solid #262626; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { color: var(--gold); font-family: Georgia, serif; font-size: 44px; line-height: .7; font-weight: 400; transform: scaleX(.72); }
.brand-type { display: flex; flex-direction: column; gap: 3px; }
.brand-type strong { color: var(--cream); font-size: 15px; letter-spacing: .28em; font-weight: 500; white-space: nowrap; }
.brand-type small { color: var(--gold); font-size: 8px; letter-spacing: .38em; font-weight: 600; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 3.2vw, 48px); height: 100%; margin-left: 7%; }
.primary-nav a { position: relative; display: flex; align-items: center; height: 100%; color: #b6b5b2; font-size: 11px; letter-spacing: .055em; transition: color .2s; }
.primary-nav a:hover, .primary-nav a.active { color: var(--cream); }
.primary-nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); }
.header-link { display: flex; align-items: center; gap: 24px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; }
.header-link span { font-size: 17px; font-weight: 400; }
.header-link:hover { color: white; }
.menu-toggle { display: none; }

.eyebrow { display: inline-block; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .23em; line-height: 1.4; }
.eyebrow-line { display: inline-flex; align-items: center; gap: 15px; }
.eyebrow-line::before { content: ''; width: 29px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 31px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; font-size: 9px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; font-weight: 400; line-height: 1; }
.button-gold { background: var(--gold); color: #141310; }
.button-gold:hover { background: #e0c494; }
.button-outline { border-color: #8a795f; color: var(--cream); background: transparent; }
.button-outline:hover { background: var(--gold); border-color: var(--gold); color: #111; }
.text-link, .underlined-link { display: inline-flex; align-items: center; gap: 16px; color: var(--cream); font-size: 9px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; transition: color .2s; }
.text-link span, .underlined-link span { font-size: 17px; font-weight: 400; }
.text-link:hover, .underlined-link:hover { color: var(--gold-light); }
.underlined-link { border-bottom: 1px solid var(--gold); padding-bottom: 9px; }

.hero { position: relative; height: min(720px, calc(100vh - 116px)); min-height: 570px; overflow: hidden; background: #10100f; }
.hero-media { position: absolute; inset: 0; background: url('/images/hero.png') center 33% / cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,9,.94) 0%, rgba(8,9,9,.78) 25%, rgba(8,9,9,.17) 57%, rgba(8,9,9,.03) 100%), linear-gradient(0deg, rgba(8,9,9,.38), transparent 24%); }
.hero-inner { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero-copy { width: min(660px, 53%); margin-top: -15px; }
.hero h1 { margin: 22px 0 23px; font-size: clamp(64px, 6.25vw, 100px); line-height: .95; letter-spacing: -.035em; }
.hero-copy > p { width: min(445px, 100%); color: #c6c4be; font-size: 13px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 36px; }
.hero-bottom { position: absolute; left: 0; right: 0; bottom: 31px; display: flex; justify-content: space-between; color: #dad3c7; font-size: 9px; letter-spacing: .21em; }

.intro-section { min-height: 250px; display: grid; grid-template-columns: 70px 1.25fr 1fr; align-items: center; gap: 48px; border-bottom: 1px solid var(--line); }
.intro-emblem { align-self: center; color: var(--gold); font-family: var(--serif); font-size: 57px; }
.intro-lead { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3vw, 43px); line-height: 1.08; }
.intro-lead em { color: var(--gold-light); }
.intro-copy { max-width: 370px; margin: 0 0 0 auto; color: var(--muted); font-size: 12px; line-height: 2; }

.collection-section { padding-block: 110px 125px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 36px; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(46px, 4.3vw, 69px); letter-spacing: -.03em; line-height: 1; }
.section-heading-side { max-width: 330px; display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.section-heading-side p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { position: relative; min-height: 390px; overflow: hidden; background: #1b1b1b; }
.category-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .6s ease; }
.category-card:hover img { transform: scale(1.065); }
.category-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, transparent 42%, rgba(0,0,0,.86) 100%); }
.category-number { position: absolute; top: 22px; left: 23px; color: #e0d8c8; font-size: 9px; letter-spacing: .14em; }
.category-content { position: absolute; bottom: 25px; left: 23px; right: 23px; display: grid; grid-template-columns: 1fr auto; align-items: end; }
.category-content small { grid-column: 1 / -1; margin-bottom: 7px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.category-content strong { font-family: var(--serif); font-size: 40px; font-weight: 400; line-height: 1; }
.category-arrow { font-size: 23px; line-height: 1; transition: transform .2s; }
.category-card:hover .category-arrow { transform: translate(3px, -3px); }

.featured-section { padding: 105px 0 120px; background: #141516; border-block: 1px solid #282828; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.product-card { min-width: 0; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; display: block; }
.product-image-wrap { position: relative; display: block; aspect-ratio: 1.1 / 1; overflow: hidden; background: #1c1c1b; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.product-card:hover img { transform: scale(1.06); filter: brightness(1.08); }
.image-corner { position: absolute; top: 17px; right: 19px; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; font-size: 16px; line-height: 1; opacity: 0; transform: translateY(5px); transition: opacity .2s, transform .2s; }
.product-card:hover .image-corner { opacity: 1; transform: translateY(0); }
.product-meta { display: flex; justify-content: space-between; margin-top: 21px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.product-name { display: block; margin: 9px 0 4px; font-family: var(--serif); font-size: 39px; line-height: 1; }
.product-subtitle { display: block; color: var(--muted); font-size: 11px; }
.product-discover { display: inline-flex; align-items: center; gap: 15px; margin-top: 25px; padding-bottom: 8px; border-bottom: 1px solid #736752; color: var(--cream); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.product-discover span { font-size: 16px; font-weight: 400; }

.story-feature { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 560px; margin-block: 120px; background: #191a1a; }
.story-feature-image { min-height: 560px; overflow: hidden; }
.story-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.story-feature-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(50px, 7vw, 108px); }
.story-feature h2 { margin: 23px 0 22px; font-size: clamp(48px, 5vw, 75px); line-height: .98; letter-spacing: -.025em; }
.story-feature p { max-width: 375px; color: var(--muted); font-size: 12px; line-height: 1.95; }
.story-feature .button { margin-top: 23px; }
.auction-teaser { padding: 88px 0; background: #24211d; border-block: 1px solid #3a342b; }
.auction-teaser-inner { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 60px; }
.auction-teaser h2 { margin: 17px 0 0; font-size: clamp(45px, 5vw, 76px); line-height: .98; }
.auction-teaser-inner > div:last-child { display: flex; flex-direction: column; align-items: start; gap: 24px; }
.auction-teaser p { max-width: 310px; margin: 0; color: #beb9b1; font-size: 12px; line-height: 1.8; }

.page-banner { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; background-color: #151515; background-repeat: no-repeat; }
.page-banner-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,12,.98) 0%, rgba(11,12,12,.93) 35%, rgba(11,12,12,.5) 65%, rgba(11,12,12,.25) 100%); }
.page-banner-content { position: relative; padding-block: 75px; }
.page-banner h1 { max-width: 750px; margin: 21px 0 13px; font-size: clamp(58px, 6vw, 89px); letter-spacing: -.03em; line-height: .94; }
.page-banner p { max-width: 480px; margin: 23px 0 0; color: #c1c0bc; font-size: 12px; line-height: 1.9; }
.store-banner { background-image: url('/images/diamond-ring.png'); background-size: 60% auto; background-position: right 7% center; }
.about-banner { background-image: url('/images/atelier.png'); background-size: 65% auto; background-position: right center; }
.auction-banner { background-image: url('/images/ruby-pendant.png'); background-size: 63% auto; background-position: right center; }

.store-section { padding-top: 95px; padding-bottom: 130px; }
.store-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 41px; }
.store-heading h2 { margin: 12px 0 0; font-size: clamp(48px, 4.5vw, 68px); line-height: 1; }
.store-heading > p { max-width: 290px; margin: 0 0 5px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.store-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 19px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filter-list { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.filter-button { min-height: 37px; padding: 0 15px; border: 1px solid transparent; background: transparent; color: #aeadab; font-size: 10px; white-space: nowrap; transition: color .2s, border-color .2s, background .2s; }
.filter-button:hover { color: white; }
.filter-button.active { border-color: var(--gold); background: rgba(198,168,120,.1); color: var(--gold-light); }
.store-tools { display: flex; align-items: center; gap: 12px; }
.search-box, .sort-box { height: 40px; display: flex; align-items: center; border: 1px solid #474641; }
.search-box { width: 205px; gap: 9px; padding: 0 10px; }
.search-box svg { width: 16px; height: 16px; fill: none; stroke: #a8a59e; stroke-width: 1.6; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--cream); font-size: 10px; }
.search-box input::placeholder { color: #868480; }
.sort-box { position: relative; min-width: 140px; }
.sort-box select { appearance: none; width: 100%; height: 100%; padding: 0 24px 0 12px; border: 0; outline: 0; background: transparent; color: #cbc7bf; font-size: 10px; cursor: pointer; }
.sort-box select option { background: #222; }
.sort-box::after { content: '⌄'; position: absolute; right: 10px; top: 8px; color: var(--gold); pointer-events: none; }
.results-line { display: flex; justify-content: space-between; margin: 30px 0 22px; color: #a9a29a; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.store-grid { row-gap: 56px; }
.store-note { display: flex; gap: 22px; align-items: center; margin-top: 95px; padding: 30px 35px; border: 1px solid #5b503e; background: #181714; }
.store-note-icon { color: var(--gold); font-family: Georgia, serif; font-size: 40px; line-height: 1; }
.store-note strong { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.store-note p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.empty-state { grid-column: 1 / -1; padding: 85px 20px; border: 1px solid var(--line); text-align: center; }
.empty-state > span { color: var(--gold); font-size: 45px; }
.empty-state h3 { margin: 8px 0; font-size: 38px; }
.empty-state p { color: var(--muted); font-size: 12px; }

.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-block: 120px 110px; }
.about-intro h2 { margin: 17px 0 0; font-size: clamp(52px, 5.7vw, 82px); line-height: .96; }
.about-intro > div:last-child { padding-top: 33px; max-width: 490px; }
.about-intro p { color: #b8b6b0; font-size: 13px; line-height: 2.05; }
.about-intro p + p { margin-top: 22px; }
.about-image-block { position: relative; height: 560px; overflow: hidden; }
.about-image-block img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.about-image-block::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.48), transparent 35%); }
.about-image-caption { position: absolute; left: 31px; bottom: 26px; z-index: 1; color: white; font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.values-section { padding-block: 115px 120px; }
.values-header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 47px; }
.values-header h2 { margin: 0; font-size: clamp(51px, 5vw, 72px); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-grid article { padding: 33px 45px 0 0; }
.value-grid article + article { padding-left: 45px; border-left: 1px solid var(--line); }
.value-grid article > span { color: var(--gold); font-size: 10px; letter-spacing: .15em; }
.value-grid h3 { margin: 35px 0 11px; font-size: 32px; }
.value-grid p { max-width: 310px; color: var(--muted); font-size: 11px; line-height: 1.9; }
.about-quote { padding: 86px 0 80px; background: #201e1a; text-align: center; }
.quote-mark { display: block; height: 53px; color: var(--gold); font-family: var(--serif); font-size: 93px; line-height: 1; }
.about-quote blockquote { max-width: 760px; margin: 18px auto 21px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 68px); line-height: 1.05; }
.about-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-block: 102px; }
.about-cta h2 { margin: 16px 0 0; font-size: clamp(48px, 4.5vw, 70px); }

.auctions-section { padding-block: 105px 130px; }
.auctions-intro { max-width: 620px; margin-bottom: 53px; }
.auctions-intro h2 { margin: 15px 0; font-size: clamp(48px, 5vw, 72px); line-height: 1; }
.auctions-intro p { max-width: 440px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.auction-list { display: grid; gap: 20px; }
.auction-card { display: grid; grid-template-columns: 290px minmax(0,1fr) 135px; gap: 40px; min-height: 275px; border: 1px solid var(--line); background: #151617; }
.auction-card-image { position: relative; overflow: hidden; background: #222; }
.auction-card-image img { width: 100%; height: 100%; object-fit: cover; }
.auction-image-index { position: absolute; left: 17px; bottom: 16px; color: white; font-size: 9px; letter-spacing: .14em; }
.auction-card-main { padding: 30px 0; }
.auction-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.auction-lots { color: #a09b92; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.auction-card h3 { margin: 16px 0 8px; font-size: 44px; line-height: 1; }
.auction-card-main > p { max-width: 470px; margin-bottom: 16px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.auction-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-bottom: 20px; color: #d1cdc4; font-size: 10px; }
.auction-meta span + span::before { content: '•'; margin-right: 23px; color: var(--gold); }
.auction-card .underlined-link { font-size: 8px; }
.auction-date { display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 30px 0; border-left: 1px solid var(--line); }
.auction-date strong { font-family: var(--serif); font-size: 65px; font-weight: 400; line-height: .8; }
.auction-date span { margin-top: 14px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.auctions-empty { width: 100%; }
.auctions-empty .button { margin-top: 17px; }
.auction-info { padding-block: 82px; background: #211f1b; }
.auction-info-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.auction-info h2 { margin: 14px 0 0; font-size: clamp(48px, 5vw, 72px); line-height: 1; }
.auction-info p { max-width: 390px; margin: 0 0 8px; color: #c1bab0; font-size: 12px; line-height: 1.9; }

.site-footer { border-top: 1px solid #3a352e; background: #101111; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; padding-block: 76px 82px; }
.footer-intro p { margin: 23px 0 0; color: var(--muted); font-family: var(--serif); font-size: 25px; font-style: italic; }
.footer-links { display: flex; gap: clamp(70px, 8vw, 130px); padding-right: 7%; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-heading { margin-bottom: 11px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.footer-links a { color: #c4c0b8; font-size: 11px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 25px 27px; border-top: 1px solid #30302e; color: #8f8e89; font-size: 9px; letter-spacing: .04em; }

.piece-dialog { width: min(980px, calc(100vw - 36px)); max-height: min(850px, calc(100vh - 36px)); padding: 0; border: 1px solid #61563f; background: #171818; color: var(--cream); box-shadow: 0 30px 90px rgba(0,0,0,.7); }
.piece-dialog::backdrop { background: rgba(0,0,0,.8); backdrop-filter: blur(7px); }
.dialog-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 590px; }
.dialog-image { background: #181818; }
.dialog-image img { width: 100%; height: 100%; object-fit: cover; }
.dialog-details { position: relative; padding: 53px 48px 38px; overflow-y: auto; }
.dialog-close { position: absolute; top: 16px; right: 20px; padding: 0; border: 0; background: transparent; color: var(--cream); font-size: 34px; font-weight: 300; line-height: 1; }
.dialog-details h2 { margin: 14px 0 2px; font-size: 59px; line-height: 1; }
.dialog-subtitle { color: var(--gold-light); font-family: var(--serif); font-size: 23px; font-style: italic; }
.dialog-rule { height: 1px; margin: 23px 0; background: var(--line); }
.dialog-description { color: #bebbb4; font-size: 11px; line-height: 1.9; }
.dialog-details h3 { margin: 31px 0 13px; color: var(--gold); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .19em; }
.spec-list { margin: 0; border-top: 1px solid var(--line); }
.spec-list > div { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.spec-list dt { color: #98958f; }
.spec-list dd { margin: 0; color: var(--cream); text-align: right; }
.dialog-footnote { margin: 27px 0 0; color: var(--gold); font-family: var(--serif); font-size: 23px; font-style: italic; }
.load-error, .not-found-inner { min-height: 55vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.load-error h1, .not-found-inner h1 { margin: 20px 0 8px; font-size: clamp(55px, 6vw, 82px); }
.load-error p, .not-found-inner p { color: var(--muted); font-size: 13px; }
.load-error .button, .not-found-inner .button { margin-top: 20px; }
.not-found-page { min-height: 100vh; display: grid; place-items: center; }
.not-found-inner { width: min(100% - 48px, 900px); }

@media (max-width: 1100px) {
  .container-wide { width: min(100% - 60px, 1380px); }
  .primary-nav { margin-left: 0; gap: 21px; }
  .header-link { display: none; }
  .hero-copy { width: min(600px, 62%); }
  .category-card { min-height: 330px; }
  .category-content strong { font-size: 34px; }
  .auction-card { grid-template-columns: 240px minmax(0,1fr) 105px; gap: 25px; }
  .auction-card h3 { font-size: 38px; }
  .auction-meta span + span::before { margin-right: 12px; }
  .store-toolbar { align-items: flex-start; flex-direction: column; }
  .store-tools { width: 100%; justify-content: flex-end; }
}

@media (max-width: 760px) {
  .container-wide { width: min(100% - 38px, 1380px); }
  .announcement { height: 24px; font-size: 7px; letter-spacing: .18em; }
  .site-header { height: 73px; }
  .brand-type strong { font-size: 12px; }
  .brand-type small { font-size: 7px; }
  .brand-mark { font-size: 37px; }
  .menu-toggle { width: 38px; height: 38px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid #504836; background: transparent; }
  .menu-toggle span { width: 17px; height: 1px; background: var(--gold); }
  .primary-nav { position: absolute; top: 73px; left: 0; right: 0; height: auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid #514630; background: #111212; }
  .primary-nav.open { display: flex; }
  .primary-nav a { height: 45px; padding: 0 5px; font-size: 12px; }
  .primary-nav a.active::after { bottom: 7px; right: auto; width: 25px; height: 1px; }
  .hero { height: 650px; min-height: 0; }
  .hero-media { background-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,9,9,.93), rgba(8,9,9,.62) 50%, rgba(8,9,9,.15)), linear-gradient(0deg, rgba(8,9,9,.5), transparent 30%); }
  .hero-copy { width: min(580px, 82%); }
  .hero h1 { font-size: clamp(61px, 11vw, 82px); }
  .hero-bottom { font-size: 8px; }
  .intro-section { grid-template-columns: 48px 1fr; gap: 14px 18px; padding-block: 50px; }
  .intro-emblem { font-size: 42px; }
  .intro-lead { font-size: 34px; }
  .intro-copy { grid-column: 2; margin: 0; }
  .collection-section { padding-block: 80px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .section-heading-side { max-width: 500px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 360px; }
  .featured-section { padding-block: 80px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 25px 18px; }
  .featured-grid .product-card:last-child { display: none; }
  .product-name { font-size: 33px; }
  .story-feature { grid-template-columns: 1fr; margin-block: 80px; }
  .story-feature-image { min-height: 350px; height: 350px; }
  .story-feature-content { padding: 55px 40px 65px; }
  .auction-teaser { padding-block: 70px; }
  .auction-teaser-inner { grid-template-columns: 1fr; gap: 23px; }
  .page-banner { min-height: 400px; background-size: auto 100%; background-position: right center; }
  .page-banner-shade { background: linear-gradient(90deg, rgba(11,12,12,.99), rgba(11,12,12,.84) 49%, rgba(11,12,12,.52)); }
  .page-banner h1 { max-width: 600px; font-size: clamp(53px, 9vw, 72px); }
  .page-banner p { max-width: 390px; }
  .store-section { padding-block: 75px 90px; }
  .store-heading { align-items: start; flex-direction: column; gap: 14px; }
  .store-heading > p { max-width: 450px; }
  .filter-list { width: 100%; }
  .filter-button { padding-inline: 12px; }
  .store-tools { justify-content: flex-start; }
  .about-intro { grid-template-columns: 1fr; gap: 20px; padding-block: 80px; }
  .about-intro > div:last-child { padding-top: 0; }
  .about-image-block { height: 400px; }
  .values-section { padding-block: 85px; }
  .values-header { align-items: start; flex-direction: column; gap: 15px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article, .value-grid article + article { padding: 27px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .value-grid h3 { margin-top: 18px; }
  .about-cta { flex-direction: column; align-items: start; padding-block: 75px; }
  .auctions-section { padding-block: 75px 90px; }
  .auction-card { grid-template-columns: 185px 1fr; gap: 20px; min-height: 245px; }
  .auction-date { display: none; }
  .auction-card-main { padding: 22px 15px 22px 0; }
  .auction-card h3 { font-size: 35px; }
  .auction-card-top { align-items: start; flex-direction: column; }
  .auction-meta { font-size: 9px; }
  .auction-meta span + span::before { display: none; }
  .auction-info-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-top { padding-block: 60px; }
  .footer-links { gap: 45px; padding-right: 0; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-image { height: 300px; }
  .dialog-details { padding: 36px 30px; }
}

@media (max-width: 520px) {
  .hero { height: 610px; }
  .hero-media { background-position: 67% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,9,9,.88), rgba(8,9,9,.58)), linear-gradient(0deg, rgba(8,9,9,.7), transparent 48%); }
  .hero-copy { width: 100%; margin-top: 30px; }
  .hero h1 { font-size: clamp(56px, 15vw, 70px); }
  .hero-copy > p { max-width: 315px; font-size: 11px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 27px; }
  .hero-bottom { bottom: 23px; }
  .hero-bottom span:first-child { max-width: 175px; line-height: 1.5; }
  .intro-section { grid-template-columns: 1fr; gap: 15px; }
  .intro-copy { grid-column: 1; }
  .intro-emblem { line-height: 1; }
  .section-heading h2 { font-size: 49px; }
  .category-grid { gap: 11px; }
  .category-card { min-height: 255px; }
  .category-number { top: 14px; left: 14px; font-size: 8px; }
  .category-content { left: 14px; right: 14px; bottom: 17px; }
  .category-content small { font-size: 7px; }
  .category-content strong { font-size: 29px; }
  .category-arrow { font-size: 17px; }
  .product-grid { gap: 26px 12px; }
  .product-image-wrap { aspect-ratio: .9 / 1; }
  .product-meta { font-size: 7px; letter-spacing: .07em; }
  .product-name { font-size: 28px; }
  .product-subtitle { font-size: 10px; }
  .product-discover { margin-top: 17px; font-size: 7px; }
  .story-feature-content { padding: 45px 24px 55px; }
  .story-feature h2 { font-size: 55px; }
  .page-banner { min-height: 375px; }
  .page-banner h1 { font-size: 55px; }
  .page-banner p { font-size: 11px; }
  .filter-list { gap: 4px; }
  .filter-button { min-height: 35px; font-size: 9px; padding-inline: 9px; }
  .store-tools { gap: 7px; }
  .search-box { width: 55%; }
  .sort-box { min-width: 0; width: 45%; }
  .results-line { font-size: 7px; }
  .store-note { padding: 22px; align-items: flex-start; }
  .store-note strong { font-size: 22px; }
  .about-image-block { height: 310px; }
  .about-intro h2, .values-header h2, .about-cta h2 { font-size: 54px; }
  .about-quote blockquote { font-size: 46px; }
  .auction-card { grid-template-columns: 1fr; gap: 0; }
  .auction-card-image { height: 220px; }
  .auction-card-main { padding: 27px 22px 30px; }
  .auction-card h3 { font-size: 42px; }
  .auction-meta { gap: 8px 14px; }
  .footer-top { flex-direction: column; gap: 45px; }
  .footer-links { gap: 70px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .dialog-image { height: 245px; }
  .dialog-details h2 { font-size: 50px; }
}

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