:root {
  --paper: #f4f1ea;
  --paper-deep: #e9e4db;
  --ink: #202421;
  --muted: #707570;
  --line: rgba(32, 36, 33, 0.18);
  --orange: #f5643d;
  --orange-deep: #de4927;
  --yellow: #edc957;
  --blue: #9bb7c7;
  --green: #a9bc9c;
  --white: #fffdf9;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  --serif: ui-serif, Georgia, Cambria, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

button { color: inherit; font: inherit; }

.site-shell { overflow: hidden; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

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

.section-pad { padding-inline: clamp(24px, 5.55vw, 80px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 5px 25px rgba(32, 36, 33, 0.04);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px clamp(24px, 5.55vw, 80px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img { display: block; width: 90px; height: auto; }

.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); margin-left: auto; }

.main-nav a, .text-link, .underlined-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav a { color: #555b56; transition: color 180ms ease; }
.main-nav a:hover, .text-link:hover, .underlined-link:hover { color: var(--orange-deep); }

.header-actions { display: flex; align-items: center; gap: 24px; }

.text-link span, .underlined-link span { margin-left: 4px; font-size: 15px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  background: var(--orange);
  color: #fffaf2;
  border: 1px solid var(--orange);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { background: var(--orange-deep); border-color: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(222, 73, 39, 0.18); }
.button span { font-size: 16px; line-height: 0; }
.button--small { min-height: 38px; padding-inline: 16px; }
.button--light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button--light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.menu-toggle { display: none; width: 38px; height: 38px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; margin: 4px auto; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(420px, 1.09fr);
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  min-height: min(760px, calc(100vh - 84px));
  max-width: 1440px;
  margin: 0 auto;
  padding-top: clamp(70px, 9vw, 130px);
  padding-bottom: clamp(68px, 8vw, 112px);
}

.eyebrow, .section-index, .lot-category, .lot-number, .art-header, .art-footer, .visual-caption, .hero-notes, .process-number, .sell-side-note, .footer-bottom {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 10px;
}

.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 25px; color: var(--muted); }
.eyebrow-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(245, 100, 61, 0.12); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; }
h1 { max-width: 630px; margin-bottom: 28px; font-size: clamp(65px, 8.9vw, 128px); line-height: 0.88; letter-spacing: -0.075em; }
h1 em, h2 em, .footer-statement em { color: var(--orange); font-family: var(--serif); font-weight: 500; letter-spacing: -0.055em; }

.hero-intro { max-width: 340px; margin-bottom: 35px; color: #5c625d; font-size: 16px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.underlined-link { display: inline-flex; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; }

.hero-notes { display: flex; gap: 27px; margin-top: clamp(65px, 8vw, 108px); color: var(--muted); }
.hero-notes div { display: flex; align-items: flex-start; gap: 9px; }
.hero-notes strong { color: var(--orange-deep); font-weight: 500; }
.hero-notes span { max-width: 72px; line-height: 1.45; }

.hero-visual { min-width: 0; }
.hero-art { position: relative; aspect-ratio: 1 / 1.06; max-width: 620px; margin-left: auto; overflow: hidden; background: #d9d7cb; color: var(--ink); }
.art-header, .art-footer { position: absolute; z-index: 3; left: 25px; right: 25px; display: flex; justify-content: space-between; }
.art-header { top: 22px; }
.art-footer { bottom: 20px; padding-top: 15px; border-top: 1px solid rgba(32, 36, 33, 0.35); }
.art-footer b { color: var(--orange-deep); font-weight: 500; }
.art-grid { position: absolute; inset: 0; opacity: 0.36; background-image: linear-gradient(rgba(255, 255, 255, .48) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .48) 1px, transparent 1px); background-size: 13.333% 13.333%; }
.art-grid::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 55% 44%, transparent 0 16%, rgba(32, 36, 33, .06) 16.2% 16.5%, transparent 16.8% 29%, rgba(32, 36, 33, .06) 29.2% 29.5%, transparent 29.8% 43%, rgba(32, 36, 33, .07) 43.2% 43.5%, transparent 43.8%); }
.lamp-shadow { position: absolute; left: 17%; right: 12%; bottom: 20%; height: 7%; border-radius: 50%; background: rgba(41, 49, 46, .18); filter: blur(15px); transform: rotate(-8deg); }
.lamp { position: absolute; top: 19%; left: 30%; width: 42%; height: 61%; transform: rotate(-7deg); }
.lamp-shade { position: absolute; top: 0; left: 0; width: 100%; height: 35%; border-radius: 52% 52% 12% 12% / 70% 70% 16% 16%; background: #f3e5c9; border: 3px solid var(--ink); box-shadow: inset -16px -6px 0 rgba(245, 100, 61, .18); }
.lamp-shade::after { content: ''; position: absolute; left: -4%; right: -4%; bottom: -4px; height: 10px; border-bottom: 3px solid var(--ink); border-radius: 50%; }
.lamp-neck { position: absolute; left: 46%; top: 31%; width: 9%; height: 27%; background: var(--ink); }
.lamp-body { position: absolute; left: 25%; top: 50%; width: 54%; height: 32%; border: 3px solid var(--ink); border-radius: 60% 60% 44% 44% / 30% 30% 70% 70%; background: var(--orange); box-shadow: inset -15px -12px 0 rgba(32, 36, 33, .13); }
.lamp-base { position: absolute; left: 10%; bottom: 4%; width: 80%; height: 8%; border: 3px solid var(--ink); border-radius: 50%; background: #f3e5c9; }
.art-sticker { position: absolute; right: 12%; top: 25%; display: grid; place-items: center; width: 82px; height: 82px; border: 1px solid var(--ink); border-radius: 50%; color: var(--orange-deep); font-family: var(--mono); font-size: 10px; line-height: 1.15; text-align: center; transform: rotate(13deg); }
.art-label { position: absolute; z-index: 3; bottom: 23%; left: 25px; right: 25px; display: flex; justify-content: space-between; align-items: flex-end; }
.art-label > div:first-child { display: grid; gap: 8px; }
.art-label span, .art-price small { font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; }
.art-label strong { font-size: clamp(18px, 2vw, 26px); font-weight: 500; letter-spacing: -.04em; }
.art-price { display: grid; gap: 5px; text-align: right; }
.art-price strong { font-size: 21px; font-weight: 500; }
.visual-caption { display: flex; justify-content: space-between; max-width: 620px; margin: 15px 0 0 auto; color: var(--muted); }
.visual-caption b { color: var(--orange-deep); font-size: 15px; font-weight: 400; }

.ticker { overflow: hidden; padding: 15px 0 14px; background: var(--orange); color: #fff9ee; }
.ticker-track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 35px; padding-right: 35px; font-family: var(--serif); font-size: 18px; font-style: italic; white-space: nowrap; }
.ticker i { color: #ffe0b7; font-size: 17px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { display: grid; grid-template-columns: 1fr 4fr; gap: 10px; max-width: 1440px; margin: 0 auto; padding-top: clamp(110px, 15vw, 220px); padding-bottom: clamp(110px, 14vw, 200px); }
.section-index { padding-top: 13px; color: var(--orange-deep); }
.section-index span { color: var(--muted); }
.intro-content { max-width: 930px; }
.intro h2 { max-width: 870px; margin-bottom: 48px; font-size: clamp(45px, 7vw, 94px); line-height: .97; letter-spacing: -.07em; }
.intro-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-left: 21%; }
.intro-lower p { max-width: 405px; margin: 0; color: #646a65; font-size: 15px; line-height: 1.65; }
.intro-lower .underlined-link { align-self: end; justify-self: start; }

.lots-section { max-width: 1440px; margin: 0 auto; padding-bottom: clamp(120px, 15vw, 220px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 43px; }
.section-heading .eyebrow { margin-bottom: 15px; }
.section-heading h2, .process-heading h2 { margin: 0; font-size: clamp(38px, 5.4vw, 68px); line-height: .98; letter-spacing: -.07em; }
.lots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(35px, 5.55vw, 80px) 28px; }
.lot-card { min-width: 0; }
.lot-card--feature { grid-row: span 2; }
.lot-image { position: relative; aspect-ratio: 1.02 / 1; overflow: hidden; }
.lot-card--feature .lot-image { aspect-ratio: .98 / 1; }
.lot-number { position: absolute; z-index: 2; top: 20px; left: 20px; }
.watch-button { position: absolute; z-index: 4; top: 13px; right: 14px; width: 38px; height: 38px; border: 1px solid rgba(32, 36, 33, .28); border-radius: 50%; background: rgba(244, 241, 234, .52); font-size: 22px; line-height: 1; cursor: pointer; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.watch-button:hover { background: var(--paper); transform: scale(1.08); }
.watch-button.is-watched { background: var(--orange); border-color: var(--orange); color: #fff; }
.lot-image--chair { background: #b9c7b5; }
.lot-image--vessel { background: #d6baa2; }
.lot-image--print { background: #c0c7ce; }
.lot-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(255, 255, 255, .22), transparent 42%, rgba(32, 36, 33, .08)); pointer-events: none; }
.image-note { position: absolute; z-index: 2; bottom: 18px; left: 20px; font-family: var(--serif); font-size: clamp(16px, 2vw, 22px); font-style: italic; line-height: 1.05; }

.chair-shape { position: absolute; top: 17%; left: 26%; width: 49%; height: 69%; transform: rotate(-10deg); }
.chair-seat { position: absolute; left: 10%; top: 47%; width: 70%; height: 25%; border: 5px solid var(--ink); border-radius: 5px 22px 8px 14px; background: #d56c46; transform: skewY(8deg); box-shadow: inset -8px -8px 0 rgba(32, 36, 33, .12); }
.chair-back { position: absolute; top: 1%; left: 19%; width: 51%; height: 52%; border: 5px solid var(--ink); border-radius: 38% 35% 7% 7%; background: #d56c46; transform: skewY(7deg); box-shadow: inset -8px -11px 0 rgba(32, 36, 33, .12); }
.chair-frame { position: absolute; top: 30%; left: 11%; width: 72%; height: 66%; border-right: 5px solid var(--ink); border-bottom: 5px solid var(--ink); border-radius: 0 0 35% 0; transform: skewY(-15deg); }
.chair-frame::before, .chair-frame::after { content: ''; position: absolute; bottom: -23%; width: 5px; height: 80%; background: var(--ink); transform: rotate(-12deg); }
.chair-frame::before { left: 8%; }.chair-frame::after { right: 15%; }

.vessel-shape { position: absolute; top: 20%; left: 35%; width: 34%; height: 56%; }
.vessel-lip { position: absolute; top: 0; left: 0; width: 100%; height: 17%; border: 4px solid var(--ink); border-radius: 50%; background: #d6baa2; }
.vessel-body { position: absolute; left: 4%; top: 8%; width: 92%; height: 83%; border: 4px solid var(--ink); border-top: 0; border-radius: 15% 15% 48% 48% / 12% 12% 24% 24%; background: linear-gradient(90deg, rgba(32, 36, 33, .12), transparent 25% 70%, rgba(255, 255, 255, .18)); }
.vessel-body::after { content: ''; position: absolute; left: 35%; bottom: -9%; width: 30%; height: 13%; border: 4px solid var(--ink); border-top: 0; border-radius: 0 0 50% 50%; }

.print-shape { position: absolute; inset: 16% 21%; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 13%; border: 4px solid var(--ink); background: var(--yellow); transform: rotate(6deg); box-shadow: 13px 15px 0 rgba(32, 36, 33, .9); }
.print-shape span { display: block; width: 100%; height: 9px; background: var(--orange); }
.print-shape span:nth-child(2) { width: 70%; background: var(--ink); }.print-shape span:nth-child(3) { width: 86%; background: #f2eee2; }
.print-shape b { margin-top: 8px; font-family: var(--mono); font-size: clamp(9px, 1.1vw, 13px); line-height: 1.2; letter-spacing: .08em; }

.lot-details { display: flex; justify-content: space-between; gap: 22px; padding: 17px 0 14px; }
.lot-details h3 { max-width: 250px; margin: 6px 0 0; font-size: clamp(20px, 2.1vw, 27px); line-height: 1; letter-spacing: -.045em; }
.lot-category { margin: 0; color: var(--muted); font-size: 9px; }
.lot-bid { display: grid; align-content: end; gap: 5px; text-align: right; white-space: nowrap; }
.lot-bid span { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.lot-bid strong { font-size: 19px; font-weight: 500; }
.lot-footer { display: flex; justify-content: space-between; gap: 15px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.lot-footer b { color: var(--orange-deep); font-size: 13px; font-weight: 400; }
.mobile-only { display: none; }

.categories-section { padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(100px, 12vw, 170px); background: var(--paper-deep); }
.section-heading--compact { max-width: 1440px; margin: 0 auto 48px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1440px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { position: relative; min-height: 235px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px 20px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.category-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: 0 12px 26px rgba(32, 36, 33, .1); }
.category-card span, .category-card small { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.category-card i { position: absolute; top: 17px; right: 20px; font-size: 20px; font-style: normal; }
.category-card strong { font-size: clamp(26px, 3vw, 42px); font-weight: 500; letter-spacing: -.07em; }
.category-card small { max-width: 130px; line-height: 1.35; }
.category-card--orange { background: var(--orange); color: #fffaf2; }.category-card--orange small { color: #ffe1d5; }
.category-card--blue { background: var(--blue); }.category-card--green { background: var(--green); }.category-card--yellow { background: var(--yellow); }

.process-section { max-width: 1440px; margin: 0 auto; padding-top: clamp(120px, 15vw, 215px); padding-bottom: clamp(120px, 15vw, 220px); }
.process-heading { display: grid; grid-template-columns: 1fr 4fr; gap: 10px; margin-bottom: 95px; }
.process-heading .eyebrow { margin-bottom: 18px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.process-item { position: relative; min-height: 240px; padding: 0 40px 0 0; border-top: 1px solid var(--ink); }
.process-item + .process-item { padding-left: 30px; border-left: 1px solid var(--line); }
.process-number { display: block; padding-top: 13px; color: var(--orange-deep); }
.process-item h3 { margin: 54px 0 16px; font-size: 28px; letter-spacing: -.06em; }
.process-item p { max-width: 280px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.process-arrow { position: absolute; right: 0; bottom: 6px; color: var(--orange-deep); font-size: 23px; }
.process-item + .process-item .process-arrow { right: 30px; }

.manifesto { display: grid; place-items: center; min-height: 530px; padding-top: 90px; padding-bottom: 90px; background: var(--ink); color: var(--paper); text-align: center; }
.manifesto-mark { display: grid; place-items: center; width: 74px; height: 74px; margin-bottom: 34px; border: 1px solid rgba(244, 241, 234, .5); border-radius: 50%; color: var(--orange); font-size: 27px; animation: breathe 4s ease-in-out infinite; }
.manifesto p { max-width: 860px; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(36px, 5.5vw, 73px); font-style: italic; line-height: 1.03; letter-spacing: -.055em; }
.manifesto > span { color: #9ca09b; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
@keyframes breathe { 50% { transform: rotate(90deg) scale(1.08); } }

.sell-section { padding-top: clamp(100px, 12vw, 175px); padding-bottom: clamp(100px, 12vw, 175px); }
.sell-card { position: relative; display: flex; align-items: center; min-height: 490px; max-width: 1440px; margin: 0 auto; overflow: hidden; padding: clamp(45px, 7vw, 100px); background: var(--orange); color: #fffaf2; }
.sell-content { position: relative; z-index: 2; max-width: 460px; }
.sell-content .eyebrow { color: #ffe1d5; }.sell-content h2 { margin: 0 0 22px; font-size: clamp(54px, 7.5vw, 102px); line-height: .88; letter-spacing: -.08em; }
.sell-content > p:not(.eyebrow) { max-width: 320px; margin-bottom: 30px; color: #ffe1d5; font-size: 15px; line-height: 1.55; }
.sell-orbit { position: absolute; top: -45%; right: -4%; width: 70%; aspect-ratio: 1; border: 1px solid rgba(255, 250, 242, .52); border-radius: 50%; transform: rotate(-17deg); }
.sell-orbit::before, .sell-orbit::after { content: ''; position: absolute; inset: 12%; border: 1px solid rgba(255, 250, 242, .42); border-radius: 50%; }.sell-orbit::after { inset: 26%; }
.sell-orbit span { position: absolute; width: 10px; height: 10px; background: var(--paper); border-radius: 50%; }.sell-orbit span:nth-child(1) { top: 34%; left: 4%; }.sell-orbit span:nth-child(2) { right: 16%; bottom: 13%; width: 18px; height: 18px; background: var(--yellow); }.sell-orbit span:nth-child(3) { top: 8%; right: 32%; background: var(--ink); }
.sell-side-note { position: absolute; right: 29px; bottom: 23px; z-index: 2; display: grid; gap: 8px; color: #ffe1d5; text-align: right; }

.site-footer { padding: 0 clamp(24px, 5.55vw, 80px) 22px; background: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 30px; max-width: 1440px; min-height: 270px; margin: 0 auto; padding: 54px 0 60px; }
.footer-main .brand img { width: 125px; }
.footer-statement { margin: 0; font-size: clamp(25px, 3vw, 38px); line-height: .95; letter-spacing: -.06em; }
.footer-statement em { color: var(--orange); }
.footer-contact { display: grid; justify-items: end; gap: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }.footer-contact span { color: var(--muted); }.footer-contact a { border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; max-width: 1440px; margin: 0 auto; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-bottom a { color: var(--ink); transition: color 180ms ease; }.footer-bottom a:hover { color: var(--orange-deep); }

.toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; max-width: 300px; padding: 14px 17px; background: var(--ink); color: var(--paper); box-shadow: 0 8px 25px rgba(32, 36, 33, .18); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; line-height: 1.4; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }.toast.is-visible { opacity: 1; transform: translateY(0); }

.js .reveal { opacity: 0; transform: translateY(25px); transition: opacity 650ms ease, transform 650ms ease; }.js .reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal-delay-1 { transition-delay: 100ms; }.reveal-delay-2 { transition-delay: 200ms; }

@media (max-width: 900px) {
  .header-inner { min-height: 72px; }.brand img { width: 78px; }
  .main-nav { gap: 22px; }.main-nav a { font-size: 11px; }.header-actions { gap: 13px; }.text-link { display: none; }
  .hero { grid-template-columns: 1fr; gap: 68px; min-height: auto; }.hero-copy { max-width: 650px; }.hero-visual { width: min(100%, 620px); margin: 0 auto; }.hero-art { margin: 0; }
  .hero-notes { margin-top: 60px; }.intro { grid-template-columns: 1fr 4fr; }.intro-lower { padding-left: 0; }
  .category-card { min-height: 205px; padding-inline: 15px; }.category-card i { right: 15px; }.process-item { padding-right: 25px; }.process-item + .process-item { padding-left: 20px; }.process-item + .process-item .process-arrow { right: 20px; }
}

@media (max-width: 650px) {
  .section-pad { padding-inline: 20px; }.desktop-only { display: none !important; }.mobile-only { display: inline-flex; }
  .header-inner { padding-inline: 20px; }.header-actions { margin-left: auto; }.menu-toggle { display: block; }.main-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 10px 20px 25px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 12px 25px rgba(32, 36, 33, .08); transform: translateY(-130%); transition: transform 250ms ease; }.main-nav.is-open { transform: translateY(0); }.main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink); }
  .hero { gap: 48px; padding-top: 62px; }.eyebrow { margin-bottom: 21px; font-size: 9px; }.hero h1 { margin-bottom: 24px; font-size: clamp(58px, 18vw, 96px); }.hero-intro { margin-bottom: 28px; font-size: 15px; }.hero-actions { gap: 18px; }.hero-actions .button { min-height: 44px; padding-inline: 17px; }.hero-actions .underlined-link { font-size: 11px; }.hero-notes { justify-content: space-between; gap: 10px; margin-top: 54px; }.hero-notes div { gap: 5px; font-size: 8px; }.hero-notes span { max-width: 56px; }
  .hero-art { aspect-ratio: .92 / 1; }.art-header, .art-footer { left: 17px; right: 17px; font-size: 8px; }.art-label { left: 17px; right: 17px; bottom: 22%; }.art-label strong { font-size: 17px; }.art-price strong { font-size: 17px; }.art-sticker { right: 8%; width: 66px; height: 66px; font-size: 8px; }.visual-caption { font-size: 8px; }
  .ticker span { gap: 24px; padding-right: 24px; font-size: 16px; }.intro { display: block; padding-top: 100px; padding-bottom: 110px; }.intro .section-index { margin-bottom: 32px; }.intro h2 { margin-bottom: 33px; font-size: clamp(45px, 14vw, 72px); }.intro-lower { display: block; }.intro-lower p { margin-bottom: 26px; }
  .section-heading { display: block; margin-bottom: 30px; }.section-heading h2, .process-heading h2 { font-size: clamp(42px, 13vw, 66px); }.lots-grid { display: block; }.lot-card { margin-bottom: 57px; }.lot-card--feature .lot-image, .lot-image { aspect-ratio: 1 / .98; }.lot-details { padding-top: 14px; }.lot-details h3 { font-size: 22px; }.all-lots-link { margin-top: -14px; }
  .categories-section { padding-top: 92px; padding-bottom: 100px; }.section-heading--compact { margin-bottom: 30px; }.category-grid { grid-template-columns: repeat(2, 1fr); }.category-card { min-height: 180px; }.category-card strong { font-size: 29px; }.category-card small { font-size: 8px; }
  .process-section { padding-top: 105px; padding-bottom: 110px; }.process-heading { display: block; margin-bottom: 65px; }.process-heading .section-index { margin-bottom: 34px; }.process-list { display: block; }.process-item, .process-item + .process-item { min-height: 210px; padding: 0 30px 0 0; border-left: 0; border-top: 1px solid var(--ink); }.process-item + .process-item { padding-left: 0; }.process-item h3 { margin-top: 42px; font-size: 25px; }.process-item + .process-item .process-arrow { right: 0; }
  .manifesto { min-height: 440px; }.manifesto p { font-size: clamp(37px, 11vw, 62px); }.sell-section { padding-block: 80px; }.sell-card { min-height: 530px; align-items: flex-start; padding: 48px 25px; }.sell-content h2 { font-size: clamp(58px, 17vw, 90px); }.sell-orbit { top: 39%; right: -25%; width: 140%; }.sell-side-note { right: 20px; bottom: 19px; font-size: 8px; }
  .footer-main { display: block; min-height: 0; padding: 45px 0 40px; }.footer-main .brand { margin-bottom: 45px; }.footer-statement { margin-bottom: 45px; font-size: 31px; }.footer-contact { justify-items: start; }.footer-bottom { flex-wrap: wrap; gap: 12px 24px; padding-top: 15px; line-height: 1.4; }.footer-bottom a { width: 100%; }
  .toast { right: 20px; bottom: 20px; left: 20px; max-width: none; }
}

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