/* ==========================================================================
   A Cut Above Auction — public site (ACA-WEBSITE-V1)
   --------------------------------------------------------------------------
   Warm paper, warm ink, and the monogram's brass used sparingly — for rules,
   lot numbers, the odd italic. The objects are the colour on the page: every
   photograph sits whole on a plate painted with its own studio backdrop.

   Three faces, each with one job:
     Bodoni Moda       the house's voice — titles, numbers, the sale's name
                       (it is the monogram's own Didone)
     Source Serif 4    reading — catalogue entries, the story, lot titles
     Instrument Sans   the working parts — navigation, labels, buttons, forms

   The Shop (ACA Store, /shop) mirrors these tokens so the two read as one.
   ========================================================================== */

/* --- tokens --------------------------------------------------------------- */

:root {
  --paper: #f6f1e8;
  --paper-2: #ede5d6;       /* linen: the alternate band */
  --card: #fbf8f2;          /* forms and raised surfaces */
  --field: #d8d5cf;         /* plate ground before a photograph paints it */

  --ink: #1c1a15;
  --ink-2: #3b372e;
  --muted: #6c6556;
  --faint: #9a9282;
  --rule: #ddd3c1;
  --rule-2: #c7baa1;

  --brass: #a8874c;         /* the monogram's C */
  --brass-2: #7a6130;       /* brass for text on paper — 5:1 */
  --brass-3: #cfae6f;       /* brass for text on night */

  --night: #1e1b16;
  --night-2: #2b2720;
  --on-night: #efe7d8;
  --on-night-2: #b3a995;

  --sold: #8a3324;

  --f-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  --f-text: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --f-ui: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1560px;
  --gutter: clamp(16px, 3.2vw, 52px);
  --mast-h: 76px;
  --bar-h: 40px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (max-width: 1023px) {
  :root { --mast-h: 64px; }
}

/* --- reset ---------------------------------------------------------------- */

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

/* One step up for the desktop reading size; phones are untouched. */
@media (min-width: 1200px) { html { font-size: 17px; } }
@media (min-width: 1600px) { html { font-size: 17.5px; } }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--mast-h) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
em { font-style: italic; }

:focus-visible { outline: 2px solid var(--brass-2); outline-offset: 3px; }
.section--night :focus-visible, .salebar :focus-visible, .foot :focus-visible { outline-color: var(--brass-3); }

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

.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; }

.skiplink { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: var(--paper); padding: 12px 20px; font: 500 14px var(--f-ui); }
.skiplink:focus { left: 12px; top: 12px; }

/* --- layout primitives ------------------------------------------------------ */

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(48px, 5.6vw, 92px); }
.section--rule { border-top: 1px solid var(--rule); }
.section--linen { background: var(--paper-2); }
.section--flush { padding-top: 0; }
.section--tight { padding-block: clamp(36px, 4.2vw, 64px); }
.section--night { background: var(--night); color: var(--on-night); }

.grid { display: grid; gap: clamp(32px, 3.4vw, 48px) clamp(16px, 2vw, 28px); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* --- type ------------------------------------------------------------------ */

.kicker {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font: 500 .75rem/1.3 var(--f-ui);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-2);
}
.kicker::before { content: ''; flex: none; width: 28px; height: 1px; background: var(--brass); }
.section--night .kicker { color: var(--brass-3); }
.prose .kicker { font-size: .75rem; line-height: 1.3; color: var(--brass-2); }

.head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px 48px;
  margin-bottom: clamp(28px, 3.4vw, 48px);
}
.head__main { max-width: 48rem; }
.head__title { font: 400 clamp(2.125rem, 1.45rem + 2.2vw, 3.625rem)/1.04 var(--f-display); letter-spacing: -.015em; }
.head__title em { color: var(--brass-2); }
.head__lede { margin-top: 16px; font-size: 1.125rem; line-height: 1.55; color: var(--ink-2); max-width: 40em; }
.head__end { display: flex; align-items: center; gap: 24px; }

.prose p { font-size: 1.125rem; line-height: 1.65; color: var(--ink-2); }
.prose p + p { margin-top: 1em; }
.prose a { color: var(--ink); text-decoration-color: var(--brass); text-underline-offset: 3px; }
.prose--large p { font-size: clamp(1.1875rem, 1.05rem + .45vw, 1.375rem); line-height: 1.6; }
.prose--night p { color: var(--on-night-2); }
.prose--night i { color: var(--on-night); }

/* Privacy and Website terms (ACA-WEBSITE-LAUNCH-CLOSEOUT-1): one readable column. */
.legal { max-width: 42rem; padding-bottom: clamp(24px, 4vw, 56px); }
.legal .legal__lede { font: 400 clamp(1.1875rem, 1.05rem + .45vw, 1.375rem)/1.55 var(--f-text); color: var(--ink); }
.legal h2 { margin: 2em 0 .45em; font: 400 clamp(1.375rem, 1.2rem + .5vw, 1.625rem)/1.2 var(--f-display); color: var(--ink); }
.legal .legal__updated { margin-top: 2.4em; font: .8125rem/1.5 var(--f-ui); color: var(--muted); }

.smallprint { margin-top: 24px; font: .875rem/1.55 var(--f-ui); color: var(--muted); }
.smallprint a { color: var(--ink-2); }

.crumbs { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 24px; font: .8125rem/1.4 var(--f-ui); color: var(--muted); }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- icons, buttons, links ---------------------------------------------------- */

.i { flex: none; transition: transform .25s var(--ease); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px;
  border: 1px solid var(--ink); border-radius: 0;
  background: transparent; color: var(--ink);
  font: 500 .9375rem/1 var(--f-ui); letter-spacing: .005em;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn:hover .i--arrow { transform: translateX(3px); }
.btn:hover .i--out { transform: translate(2px, -2px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #36322a; border-color: #36322a; }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--on-night { border-color: rgba(239, 231, 216, .45); color: var(--on-night); }
.btn--on-night:hover { background: var(--on-night); color: var(--night); border-color: var(--on-night); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: .875rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.more {
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px; border-bottom: 1px solid var(--brass);
  font: 500 .9375rem/1.2 var(--f-ui); color: var(--ink);
  text-decoration: none; white-space: nowrap;
  transition: border-color .2s;
}
.more:hover { border-color: var(--ink); }
.more--quiet { border-color: var(--rule-2); color: var(--ink-2); font-weight: 400; }
.actions .more { align-self: center; margin-left: 12px; }
.more:hover .i--arrow { transform: translateX(3px); }
.more:hover .i--out { transform: translate(2px, -2px); }

/* --- the sale bar --------------------------------------------------------------- */

.salebar { background: var(--night); color: var(--on-night); font: .8125rem/1 var(--f-ui); }
.salebar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--bar-h); }
.salebar__sale { display: flex; align-items: center; gap: 12px; min-width: 0; color: inherit; text-decoration: none; white-space: nowrap; }
.salebar__sale:hover .salebar__title { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); }
.salebar__dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--brass-3); animation: pulse 2.6s var(--ease) infinite; }
.salebar__label { font-weight: 500; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-3); }
.salebar__title { font: italic 400 .9375rem/1 var(--f-display); overflow: hidden; text-overflow: ellipsis; }
.salebar__when { color: var(--on-night-2); }
.salebar__count { color: var(--on-night-2); padding-left: 12px; border-left: 1px solid rgba(239, 231, 216, .2); }
.salebar__count:empty { display: none; }
.salebar__cta { display: inline-flex; align-items: center; gap: 6px; flex: none; color: var(--on-night); font-weight: 500; text-decoration: none; }
.salebar__cta:hover { color: var(--brass-3); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(207, 174, 111, .55); }
  70% { box-shadow: 0 0 0 7px rgba(207, 174, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(207, 174, 111, 0); }
}

/* --- the masthead -------------------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s;
}
.masthead.is-stuck { box-shadow: 0 1px 0 var(--rule), 0 10px 30px -18px rgba(28, 26, 21, .25); }
.masthead__in { display: flex; align-items: center; gap: 36px; height: var(--mast-h); }

.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; color: var(--ink); text-decoration: none; }
.brand__mark { width: 58px; height: auto; }
.brand__word { width: 212px; height: auto; }

.nav__list { display: flex; gap: clamp(22px, 2.4vw, 38px); }
.nav__list a {
  position: relative; display: block; padding: 8px 0;
  font: 500 .9375rem/1 var(--f-ui); color: var(--ink-2); text-decoration: none;
}
.nav__list a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after, .nav__list a[aria-current]::after { transform: scaleX(1); }
.nav__list a[aria-current] { color: var(--ink); }
.nav__sheet-foot { display: none; }

.masthead__end { display: flex; align-items: center; gap: 12px; }

.menubtn {
  display: none; align-items: center; gap: 10px;
  height: 40px; padding: 0 14px;
  border: 1px solid var(--rule-2); background: none; cursor: pointer;
  font: 500 .875rem/1 var(--f-ui);
}
.menubtn__bars { position: relative; width: 16px; height: 10px; }
.menubtn__bars i { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), top .3s var(--ease); }
.menubtn__bars i:first-child { top: 1px; }
.menubtn__bars i:last-child { top: 7px; }
.menubtn[aria-expanded='true'] .menubtn__bars i:first-child { top: 4px; transform: rotate(45deg); }
.menubtn[aria-expanded='true'] .menubtn__bars i:last-child { top: 4px; transform: rotate(-45deg); }

@media (max-width: 1023px) {
  .masthead__in { gap: 12px; }
  .brand { gap: 10px; }
  .brand__mark { width: 46px; }
  .brand__word { width: 168px; }
  .masthead__bid { display: none; }
  .menubtn { display: inline-flex; }

  .nav {
    position: fixed; left: 0; right: 0; bottom: 0; top: var(--sheet-top, var(--mast-h));
    z-index: 40; overflow-y: auto;
    padding: 12px var(--gutter) 40px;
    background: var(--paper);
    visibility: hidden; opacity: 0; transform: translateY(-6px);
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { padding: 16px 0; border-bottom: 1px solid var(--rule); font: 400 2.125rem/1.1 var(--f-display); color: var(--ink); }
  .nav__list a::after { display: none; }
  .nav__list a[aria-current] { color: var(--brass-2); font-style: italic; }
  .nav__sheet-foot { display: block; margin-top: 28px; }
  .nav__sale { display: block; padding: 18px 20px; background: var(--paper-2); color: inherit; text-decoration: none; }
  .nav__sale .kicker { margin-bottom: 8px; }
  .nav__sale-title { display: block; font: italic 400 1.5rem/1.15 var(--f-display); }
  .nav__contact { margin-top: 20px; font: .9375rem/1.6 var(--f-ui); color: var(--ink-2); }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 760px) {
  .salebar__label, .salebar__when { display: none; }
}
@media (max-width: 600px) {
  .salebar__cta { display: none; }
  .salebar__sale { width: 100%; }
  .salebar__count { margin-left: auto; }
}
@media (max-width: 380px) {
  .brand__word { width: 136px; }
}

/* --- plates: the photographs ------------------------------------------------------ */

.plate {
  position: relative; overflow: hidden;
  aspect-ratio: var(--ratio, 4 / 5);
  background: linear-gradient(var(--pt, var(--field)), var(--pb, var(--field)));
}
.plate img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(var(--zoom, 1));
  transition: transform .8s var(--ease), opacity .4s;
}
.plate--cover img { object-fit: cover; }

.chip {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 6px 10px;
  background: rgba(246, 241, 232, .94);
  font: .75rem/1.2 var(--f-ui); color: var(--ink-2);
}
.chip b { font-weight: 600; color: var(--ink); }

/* --- cards -------------------------------------------------------------------------- */

.card__link { display: block; color: inherit; text-decoration: none; }
.card__link:hover .plate img { transform: scale(calc(var(--zoom, 1) * 1.035)); }
.card__link:hover .card__title { text-decoration: underline; text-decoration-color: var(--rule-2); text-underline-offset: 4px; }
.card__meta {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 14px;
  font: 500 .6875rem/1.3 var(--f-ui); letter-spacing: .13em; text-transform: uppercase;
}
.card__no { flex: none; color: var(--brass-2); }
.card__dept { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card--lot .card__dept { text-align: right; }
.card__sold { color: var(--sold); }
.card__title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: 6px;
  font: 400 1.0625rem/1.35 var(--f-text); color: var(--ink);
}
.card__fig { display: block; margin-top: 8px; font: .875rem/1.4 var(--f-ui); color: var(--muted); }
.card__fig--price { font-size: .9375rem; font-weight: 500; color: var(--ink); }

/* --- the rail: a row that scrolls sideways ------------------------------------------ */

.rail {
  --rail-pad: max(var(--gutter), calc((100% - var(--maxw)) / 2 + var(--gutter)));
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--rail-pad);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail:focus-visible { outline-offset: -2px; }
.rail__track { display: flex; gap: clamp(16px, 2vw, 28px); width: max-content; padding-inline: var(--rail-pad); padding-bottom: 8px; }
.rail__track > li { width: clamp(236px, 21vw, 292px); scroll-snap-align: start; }
.rail__end a {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 12px;
  aspect-ratio: 4 / 5; padding: 24px;
  background: var(--night); color: var(--on-night); text-decoration: none;
}
.rail__end-k { font: 500 .6875rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--brass-3); }
.rail__end-t { font: 400 1.75rem/1.12 var(--f-display); }
.rail__end .more { align-self: flex-start; color: var(--on-night); border-color: var(--brass); }
.rail__end a:hover .i--out { transform: translate(2px, -2px); }

.rail__ctl { display: flex; gap: 8px; }
.rail__btn {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--rule-2); background: none; cursor: pointer; color: var(--ink);
  transition: border-color .2s, background-color .2s, opacity .2s;
}
.rail__btn:hover:not(:disabled) { border-color: var(--ink); background: var(--card); }
.rail__btn:disabled { opacity: .35; cursor: default; }

/* --- countdown, status, facts ---------------------------------------------------------- */

.count { display: flex; margin: 24px 0 4px; border-block: 1px solid var(--rule); }
.count[hidden] { display: none; }
.count__cell { display: flex; align-items: baseline; gap: 8px; padding: 12px 24px 12px 0; margin-right: 24px; border-right: 1px solid var(--rule); }
.count__cell:last-child { border-right: 0; margin-right: 0; }
.count__cell b { font: 400 2.25rem/1 var(--f-display); font-variant-numeric: lining-nums tabular-nums; }
.count__cell small { font: 500 .6875rem/1 var(--f-ui); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.count--live { padding: 14px 0; font: 500 .9375rem var(--f-ui); color: var(--ink); }

.status { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); animation: pulse 2.6s var(--ease) infinite; }
.status__dot--soft { background: var(--rule-2); animation: none; }

.facts { display: grid; margin-top: 24px; border-top: 1px solid var(--rule); }
.facts--two { grid-template-columns: 1fr 1fr; column-gap: 24px; }
.facts__item { padding: 13px 0; border-bottom: 1px solid var(--rule); }
.facts dt { font: 500 .6875rem/1.3 var(--f-ui); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin-top: 4px; font: .9375rem/1.45 var(--f-ui); color: var(--ink); }
.facts dd a { color: var(--ink); text-decoration-color: var(--brass); text-underline-offset: 3px; }
.facts--list .facts__item { display: grid; grid-template-columns: 10em minmax(0, 1fr); gap: 16px; align-items: baseline; }
.facts--list dd { margin-top: 0; }

/* --- temporary content ---------------------------------------------------------------- */

.draft {
  margin-top: 40px; max-width: 54rem;
  padding: 22px 24px;
  border: 1px dashed var(--brass);
  background: repeating-linear-gradient(135deg, rgba(168, 135, 76, .07) 0 10px, rgba(168, 135, 76, 0) 10px 20px), var(--card);
}
.draft__tag { display: inline-block; padding: 4px 8px; background: var(--brass-2); color: var(--paper); font: 600 .6875rem/1 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; }
.draft__title { margin-top: 12px; font: 400 1.375rem/1.2 var(--f-display); }
.draft__body { margin-top: 6px; font: .9375rem/1.55 var(--f-ui); color: var(--ink-2); }
.draft--small { margin-top: 24px; padding: 16px 18px; }
.draft--small .draft__title { font-size: 1.125rem; }
.flag { margin-left: 6px; padding: 2px 6px; background: var(--brass-2); color: var(--paper); font: 600 .625rem/1 var(--f-ui); font-style: normal; letter-spacing: .12em; text-transform: uppercase; vertical-align: middle; }

/* --- page heads ---------------------------------------------------------------------- */

.pagehead { padding: clamp(32px, 4.4vw, 64px) 0 clamp(28px, 3.6vw, 48px); }
.pagehead__title { max-width: 18ch; font: 400 clamp(2.75rem, 1.5rem + 4.6vw, 5.5rem)/1 var(--f-display); letter-spacing: -.02em; }
.pagehead__lede { max-width: 38em; margin-top: 22px; font-size: clamp(1.125rem, 1rem + .35vw, 1.3125rem); line-height: 1.55; color: var(--ink-2); }
.pagehead .draft { margin-top: 32px; }
.pagehead--short { padding: clamp(28px, 3.4vw, 44px) 0 clamp(20px, 2.6vw, 32px); }

.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.jump a, .collections a, .filters button {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--rule-2); border-radius: 999px; background: transparent;
  font: 500 .875rem/1.2 var(--f-ui); color: var(--ink-2); text-decoration: none; cursor: pointer;
  transition: border-color .2s, background-color .2s, color .2s;
}
.jump a:hover, .collections a:hover, .filters button:hover { border-color: var(--ink); color: var(--ink); background: var(--card); }

/* --- HOME: the sale front ------------------------------------------------------------------ */

.front { padding: clamp(24px, 2.6vw, 40px) 0 clamp(36px, 4vw, 64px); }
.front__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr); gap: clamp(32px, 4vw, 64px); align-items: center; }
.front__title { font: 400 clamp(3.25rem, 1.5rem + 5.2vw, 6.25rem)/.95 var(--f-display); letter-spacing: -.025em; }
.front__title em { color: var(--brass-2); }
.front__when { display: flex; flex-wrap: wrap; gap: 4px 18px; margin-top: 22px; font: 500 1.0625rem/1.4 var(--f-ui); }
.front__when span + span { color: var(--muted); }
.front__lede { max-width: 32em; margin-top: 18px; font-size: clamp(1.125rem, 1.02rem + .38vw, 1.3125rem); line-height: 1.55; color: var(--ink-2); }
.front__facts { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 28px; font: .8125rem/1.4 var(--f-ui); color: var(--muted); }
.front__facts li { display: inline-flex; align-items: center; gap: 8px; }
.front__facts li::before { content: ''; width: 4px; height: 4px; background: var(--brass); transform: rotate(45deg); }

.front__plates { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.front__plate { position: relative; }
.front__plate a { display: block; height: 100%; }
.front__plate--a { grid-row: 1 / span 2; }
.front__plate--b .plate, .front__plate--c .plate { aspect-ratio: auto; height: 100%; }
.front__plate--b, .front__plate--c { min-height: 0; }
.front__plate:hover .plate img { transform: scale(calc(var(--zoom, 1) * 1.03)); }

@media (max-width: 1023px) {
  .front__in { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .front__copy { display: contents; }
  .front__plates { order: 1; margin-top: 28px; }
  .front__lede, .front .actions, .front__facts { order: 2; }
  .front__lede { margin-top: 28px; }
}

/* --- HOME: how ACA works -------------------------------------------------------------------- */

.ways { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 48px); }
.way__img { display: block; margin-bottom: 22px; }
.way__img:hover .plate img { transform: scale(1.03); }
.way__no { padding-top: 16px; border-top: 1px solid var(--ink); font: italic 400 1.25rem/1 var(--f-display); color: var(--brass-2); }
.way__title { margin: 10px 0 12px; font: 400 clamp(1.625rem, 1.3rem + 1vw, 2.125rem)/1.1 var(--f-display); }
.way__text { max-width: 30em; margin-bottom: 18px; color: var(--ink-2); }

/* --- HOME: the Shop ---------------------------------------------------------------------------- */

.collections { margin-top: 40px; }
.collections__label { font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.collections ul { display: flex; flex-wrap: wrap; gap: 8px; }
.collections small, .filters small { font-size: .75rem; color: var(--muted); }

/* --- HOME: collecting areas ---------------------------------------------------------------------- */

.areas { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.areas__list { border-bottom: 1px solid var(--rule); }
.areas__row a {
  display: grid; grid-template-columns: 40px minmax(0, 1fr) minmax(0, 1.1fr) 24px; gap: 20px; align-items: baseline;
  padding: 26px 0; border-top: 1px solid var(--rule);
  color: inherit; text-decoration: none;
}
.areas__no { font: 500 .75rem/1 var(--f-ui); color: var(--muted); font-variant-numeric: tabular-nums; }
.areas__name { font: 400 clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem)/1.05 var(--f-display); transition: color .25s, transform .35s var(--ease); }
.areas__blurb { font-size: .96875rem; line-height: 1.5; color: var(--muted); }
.areas__thumb { display: none; }
.areas__go { color: var(--brass); opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .3s var(--ease); align-self: center; }
.areas__row a:hover .areas__name, .areas__row a.is-on .areas__name, .areas__row a:focus-visible .areas__name { color: var(--brass-2); transform: translateX(6px); }
.areas__row a:hover .areas__go, .areas__row a.is-on .areas__go { opacity: 1; transform: none; }
.areas__stage { position: sticky; top: calc(var(--mast-h) + 32px); display: grid; }
.areas__fig { grid-area: 1 / 1; opacity: 0; transition: opacity .5s var(--ease); }
.areas__fig.is-on { opacity: 1; }
.areas__fig figcaption { margin-top: 12px; font: .8125rem/1.45 var(--f-ui); color: var(--muted); }

/* --- HOME: the studio (night) ----------------------------------------------------------------------- */

.studio__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.studio__fig figcaption { margin-top: 12px; font: .8125rem/1.45 var(--f-ui); color: var(--on-night-2); }
.studio__title { margin-bottom: 24px; font: 400 clamp(2.25rem, 1.5rem + 2.4vw, 3.75rem)/1.04 var(--f-display); letter-spacing: -.015em; }
.studio__title em { color: var(--brass-3); }
.studio__motto { font: italic 400 clamp(1.75rem, 1rem + 2vw, 2.625rem)/1.14 var(--f-display); letter-spacing: -.015em; }
@media (min-width: 1024px) { .studio__motto span { white-space: nowrap; } }
.studio__motto span { display: block; }
.studio__motto span:nth-child(3) { color: var(--brass-3); }
.studio__text { max-width: 34em; margin-top: 28px; font-size: 1.125rem; line-height: 1.65; color: var(--on-night-2); }

/* --- HOME: the collection ------------------------------------------------------------------------------ */

.legacy__in { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: end; }
.legacy__quote p { font: italic 400 clamp(1.875rem, 1.1rem + 2.3vw, 3rem)/1.12 var(--f-display); letter-spacing: -.015em; }
@media (min-width: 1024px) { .legacy__quote p span { white-space: nowrap; } }
.legacy__quote p span { display: block; }
.legacy__quote p span:nth-child(2) { padding-left: 1.2em; }
.legacy__quote p span:nth-child(3) { color: var(--brass-2); }
.legacy__copy .more { margin-top: 24px; }

/* --- HOME: selling --------------------------------------------------------------------------------------- */

.sellnote__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.sellnote__views { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sellnote__title { font: 400 clamp(2rem, 1.4rem + 2vw, 3.25rem)/1.06 var(--f-display); letter-spacing: -.01em; }
.sellnote__text { max-width: 32em; margin-top: 18px; font-size: 1.125rem; color: var(--ink-2); }

/* --- HOME: calendar ------------------------------------------------------------------------------------------ */

.cal { border-top: 1px solid var(--ink); }
.cal__row {
  display: grid; grid-template-columns: 150px 220px minmax(0, 1fr) 170px; gap: 24px; align-items: baseline;
  padding: 24px 0; border-bottom: 1px solid var(--rule);
}
.cal__tag { justify-self: start; white-space: nowrap; padding: 5px 9px; border: 1px solid var(--ink); font: 600 .6875rem/1 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; }
.cal__row--now .cal__tag { background: var(--ink); color: var(--paper); }
.cal__tag--soft { border-color: var(--rule-2); color: var(--muted); }
.cal__tag--past { border-color: transparent; padding-left: 0; color: var(--muted); }
.cal__when { font: .875rem/1.4 var(--f-ui); color: var(--ink-2); }
.cal__when small { color: var(--muted); font-size: .8125rem; }
.cal__title { font: 400 1.625rem/1.15 var(--f-display); color: var(--ink); text-decoration: none; }
a.cal__title:hover { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 4px; }
.cal__row--past .cal__title { color: var(--ink-2); }
.cal__note { font-size: .9375rem; line-height: 1.5; color: var(--muted); }
.cal__act { justify-self: end; }

/* --- AUCTIONS ------------------------------------------------------------------------------------------------ */

.feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature__mosaic { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(3, auto); gap: 10px; }
.feature__tile { display: block; }
.feature__tile--0 { grid-row: 1 / span 3; }
.feature__tile--0 .plate { aspect-ratio: auto; height: 100%; }
.feature__tile:hover .plate img { transform: scale(1.03); }
.feature__title { font: 400 clamp(2.5rem, 1.4rem + 3.6vw, 4.5rem)/1 var(--f-display); letter-spacing: -.02em; }
.feature__title a { color: inherit; text-decoration: none; }
.feature__title em { color: var(--brass-2); }
.feature__when { margin-top: 16px; font: 500 1rem/1.4 var(--f-ui); }
.feature__lede { margin-top: 18px; font-size: 1.0625rem; color: var(--ink-2); }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); }
.steps--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { padding-top: 20px; border-top: 1px solid var(--ink); }
.step__no { display: block; font: italic 400 2.75rem/1 var(--f-display); color: var(--brass); }
.step__title { margin: 14px 0 10px; font: 400 1.625rem/1.15 var(--f-display); }
.step p { font-size: 1rem; line-height: 1.6; color: var(--ink-2); }


.archive { border-top: 1px solid var(--ink); }
.archive__row { display: grid; grid-template-columns: 190px minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 48px); align-items: start; padding: 36px 0; border-bottom: 1px solid var(--rule); }
.archive__year { font: 400 3.5rem/1 var(--f-display); color: var(--brass); font-variant-numeric: lining-nums; }
.archive__date { margin-top: 12px; font: 500 .875rem/1.4 var(--f-ui); color: var(--ink-2); }
.archive__place { font: .8125rem/1.4 var(--f-ui); color: var(--muted); }
.archive__title { font: 400 clamp(1.75rem, 1.4rem + 1vw, 2.25rem)/1.1 var(--f-display); }
.archive__note { max-width: 34em; margin: 12px 0 20px; color: var(--ink-2); }
.archive__links { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.archive__pics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.archive__pics--type { display: flex; align-items: center; justify-content: center; aspect-ratio: 12 / 5; border: 1px solid var(--rule); background: var(--paper-2); }
.archive__mark { padding: 16px; font: italic 400 1.375rem/1.2 var(--f-display); color: var(--muted); text-align: center; }

/* --- THE SALE ------------------------------------------------------------------------------------------------- */

.salehead { padding: 20px 0 clamp(56px, 7vw, 96px); }
.salehead__in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.salehead__title { font: 400 clamp(3rem, 1.4rem + 5vw, 6.25rem)/.96 var(--f-display); letter-spacing: -.025em; }
.salehead__title em { color: var(--brass-2); }
.salehead__when { margin-top: 20px; font: 500 1rem/1.4 var(--f-ui); }
.salehead__about { margin-top: 28px; max-width: 38em; }
.salehead__side { position: sticky; top: calc(var(--mast-h) + 24px); }
.salehead__plate { display: block; }
.salehead__plate:hover .plate img { transform: scale(1.02); }

.filters { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 36px; }
.filters[hidden] { display: none; }
.filters__group { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button[aria-pressed='true'] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filters button[aria-pressed='true'] small { color: rgba(246, 241, 232, .6); }
.filters__status { font: .8125rem var(--f-ui); color: var(--muted); }
[data-lot-grid] > [hidden] { display: none; }

.catalogue-cta {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 24px; align-items: center;
  margin-top: clamp(48px, 5vw, 72px); padding: 28px 32px;
  background: var(--night); color: var(--on-night); text-decoration: none;
  transition: background-color .2s;
}
.catalogue-cta:hover { background: var(--night-2); }
.catalogue-cta:hover .i--out { transform: translate(3px, -3px); }
.catalogue-cta__k { font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--brass-3); }
.catalogue-cta__t { font: 400 clamp(1.375rem, 1.1rem + .9vw, 1.875rem)/1.15 var(--f-display); }
.catalogue-cta__i { color: var(--brass-3); }

/* --- A LOT -------------------------------------------------------------------------------------------------------- */

.lot { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; padding-top: 24px; }
.lot__gallery { position: sticky; top: calc(var(--mast-h) + 20px); }
.lot__main { position: relative; }
.lot__count { position: absolute; right: 12px; bottom: 12px; padding: 5px 9px; background: rgba(246, 241, 232, .94); font: 500 .75rem/1 var(--f-ui); color: var(--ink-2); font-variant-numeric: tabular-nums; }
.lot__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.lot__thumb { flex: 0 0 76px; padding: 2px; border: 1px solid transparent; transition: border-color .2s; }
.lot__thumb:hover { border-color: var(--rule-2); }
.lot__thumb[aria-current] { border-color: var(--ink); }
.lot__no { display: flex; gap: 16px; font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--brass-2); }
.lot__no span + span { color: var(--muted); }
.lot__title { margin-top: 14px; font: 400 clamp(1.875rem, 1.3rem + 1.7vw, 2.875rem)/1.1 var(--f-display); letter-spacing: -.01em; }
.lot__price { margin-top: 24px; padding: 18px 0; border-block: 1px solid var(--rule); }
.lot__price span { display: block; font: 500 .6875rem/1.3 var(--f-ui); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.lot__price b { display: block; margin-top: 4px; font: 400 1.875rem/1.1 var(--f-display); }
.lot__ship { margin-top: 10px; font: .875rem/1.45 var(--f-ui); color: var(--ink-2); }
.lot__sale { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; font: .875rem/1.45 var(--f-ui); color: var(--ink-2); }
.lot__sale .i { margin-top: 1px; color: var(--brass); }
.lot__sale a { color: var(--ink); text-decoration-color: var(--brass); text-underline-offset: 3px; }
.lot__entry { margin-top: 36px; }
.lot__entry p { font-size: 1.0625rem; }
.lot__fields { margin-top: 28px; border-top: 1px solid var(--rule); }
.lot__fields div { display: grid; grid-template-columns: 8em minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.lot__fields dt { font: 500 .6875rem/1.6 var(--f-ui); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.lot__fields dd { font-size: 1rem; line-height: 1.55; color: var(--ink-2); }
.lotnav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 72px; padding-top: 24px; border-top: 1px solid var(--rule); font: 500 .9375rem var(--f-ui); }
.lotnav a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; }
.lotnav a:hover { color: var(--brass-2); }

/* --- SELL -------------------------------------------------------------------------------------------------------------- */

.sellhead { padding: clamp(28px, 3.6vw, 52px) 0 clamp(40px, 4.6vw, 72px); }
.sellhead__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(32px, 4vw, 64px); align-items: center; }
.sellhead__title { font: 400 clamp(3rem, 1.4rem + 4.8vw, 6rem)/.96 var(--f-display); letter-spacing: -.025em; }
.sellhead__title em { color: var(--brass-2); }
.sellhead__lede { max-width: 32em; margin-top: 24px; font-size: clamp(1.125rem, 1rem + .35vw, 1.3125rem); line-height: 1.55; color: var(--ink-2); }
.sellhead__views { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sellhead__view { position: relative; }
.sellhead__view span { position: absolute; left: 10px; bottom: 10px; padding: 5px 9px; background: rgba(246, 241, 232, .94); font: 500 .75rem/1 var(--f-ui); color: var(--ink-2); }
.sellhead__guide figcaption { margin-top: 14px; font: .8125rem/1.5 var(--f-ui); color: var(--muted); }

.checklist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.checklist--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.checklist li { padding: clamp(22px, 2.4vw, 32px); border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.checklist__i { display: block; color: var(--brass-2); }
.checklist h3 { margin: 16px 0 8px; font: 400 1.5rem/1.15 var(--f-display); }
.checklist p { font-size: 1rem; line-height: 1.55; color: var(--ink-2); }
.checklist--compact li { padding: clamp(18px, 1.8vw, 24px); }
.checklist--compact h3 { margin: 0 0 6px; font-size: 1.3125rem; }
.checklist--compact p { font-size: .9375rem; }

.handles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.handles h3 { margin: 14px 0 6px; font: 400 1.375rem/1.15 var(--f-display); }
.handles p { font-size: .9375rem; line-height: 1.5; color: var(--muted); }
.handles__text { display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: var(--paper-2); }
.handles__text h3 { margin-top: 0; }
.handles__text p { color: var(--ink-2); }

.start { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.start__title { font: 400 clamp(2.25rem, 1.6rem + 1.8vw, 3.25rem)/1.05 var(--f-display); }
.start__intro > p:not(.kicker) { margin-top: 16px; font-size: 1.0625rem; color: var(--ink-2); }
.start__intro b { font-weight: 600; color: var(--ink); }
.start__alt { display: grid; gap: 12px; margin-top: 24px; }
.start__alt li { display: flex; gap: 12px; align-items: center; font: .9375rem/1.4 var(--f-ui); color: var(--ink-2); }
.start__alt .i { color: var(--brass); }
.start__alt a { color: var(--ink); font-weight: 500; text-decoration-color: var(--brass); text-underline-offset: 3px; }
.start__intro .draft--small { margin-top: 28px; }
.start__next { font: .875rem/1.55 var(--f-ui) !important; color: var(--muted) !important; margin-top: 24px !important; }

/* --- forms --------------------------------------------------------------------------------------------------------------- */

.form { padding: clamp(24px, 3vw, 40px); background: var(--card); border: 1px solid var(--rule); }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.field label, .field legend { padding: 0; font: 500 .84375rem/1.3 var(--f-ui); color: var(--ink-2); }
.field legend { margin-bottom: 8px; }
.field small { font-weight: 400; color: var(--faint); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--paper); border: 1px solid var(--rule-2); border-radius: 0;
  font: 1rem/1.4 var(--f-ui); color: var(--ink);
  transition: border-color .2s;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brass); outline-offset: 0; border-color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.field textarea::placeholder { color: var(--faint); }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span { display: inline-block; padding: 10px 14px; border: 1px solid var(--rule-2); background: var(--paper); font: 500 .875rem/1.2 var(--f-ui); color: var(--ink-2); cursor: pointer; transition: all .2s; }
.choice span:hover { border-color: var(--ink); }
.choice input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.choice input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }
.form .actions { margin-top: 8px; }
.form__note { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font: .84375rem/1.5 var(--f-ui); color: var(--muted); }
.form__note .i { margin-top: 1px; color: var(--brass); }
.form__nojs { display: none; font: .9375rem/1.55 var(--f-ui); }

/* The honeypot: off the screen for every visitor, present only for a machine. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* What the form says once it has sent, or failed to. */
.form__status {
  margin-top: 18px; padding: 14px 16px;
  font: .9375rem/1.55 var(--f-ui);
  border: 1px solid var(--rule); background: var(--card); color: var(--ink);
}
.form__status--ok  { border-color: var(--brass); }
.form__status--err { border-color: var(--rule-2); color: var(--ink-2); }
.form__status a { color: inherit; }

/* --- ABOUT ------------------------------------------------------------------------------------------------------------------ */

.abouthead { padding: clamp(40px, 6vw, 88px) 0 clamp(40px, 5vw, 64px); }
.abouthead__title { max-width: 15ch; font: 400 clamp(2.875rem, 1.4rem + 4.8vw, 6rem)/.98 var(--f-display); letter-spacing: -.025em; }
.abouthead__title em { color: var(--brass-2); }
.abouthead__lede { max-width: 40em; margin-top: 24px; font-size: clamp(1.125rem, 1rem + .35vw, 1.3125rem); line-height: 1.55; color: var(--ink-2); }

.triptych { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: clamp(10px, 1.4vw, 20px); align-items: end; }
.triptych__fig--1 { transform: translateY(-40px); }
.triptych figcaption { margin-top: 10px; font: .8125rem/1.45 var(--f-ui); color: var(--muted); }

.story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr); gap: clamp(32px, 6vw, 96px); }
.story__pull { position: sticky; top: calc(var(--mast-h) + 32px); font: italic 400 clamp(1.75rem, 1.3rem + 1.3vw, 2.5rem)/1.18 var(--f-display); }

.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); }
.pillars--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pillars li { padding-top: 20px; border-top: 1px solid var(--ink); }
.pillars h2, .pillars h3 { margin-bottom: 10px; font: 400 1.5rem/1.15 var(--f-display); }
.pillars p { font-size: 1rem; line-height: 1.6; color: var(--ink-2); }

.glance { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.glance__side .draft { margin-top: 0; }

/* --- CONTACT --------------------------------------------------------------------------------------------------------------------- */

.ways-to { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 16px; }
.ways-to--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.ways-to--two .ways-to__card { min-height: 0; gap: 14px; padding: clamp(24px, 2.4vw, 32px); }
.ways-to--two .ways-to__i { margin-bottom: 6px; }
.ways-to__card {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  min-height: 210px; padding: 28px;
  border: 1px solid var(--rule-2); color: inherit; text-decoration: none;
  transition: border-color .2s, background-color .2s;
}
a.ways-to__card:hover { border-color: var(--ink); background: var(--card); }
.ways-to__card--lead { background: var(--ink); border-color: var(--ink); color: var(--paper); }
a.ways-to__card--lead:hover { background: #36322a; }
.ways-to__i { margin-bottom: auto; color: var(--brass); }
.ways-to__k { font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ways-to__card--lead .ways-to__k { color: var(--brass-3); }
.ways-to__v { font: 400 clamp(2rem, 1.4rem + 2vw, 3rem)/1.05 var(--f-display); font-variant-numeric: lining-nums; }
/* A telephone number and an email address are read, not admired: the interface
   face, at a size that carries across a room (ACA-WEBSITE-TUNE-1). */
.ways-to__v--tel { font: 500 clamp(2.125rem, 1.35rem + 2.6vw, 3.25rem)/1.1 var(--f-ui); letter-spacing: -.01em; }
.ways-to__v--mail { font: 500 clamp(1.25rem, .95rem + 1vw, 1.75rem)/1.25 var(--f-ui); letter-spacing: -.005em; overflow-wrap: anywhere; }
.ways-to__v--small { font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem); line-height: 1.3; overflow-wrap: anywhere; }

.routes { margin-top: 20px; border-top: 1px solid var(--rule); }
.routes li { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.routes h3 { font: 400 1.375rem/1.2 var(--f-display); }
.routes p { margin: 6px 0 12px; font-size: 1rem; color: var(--ink-2); }

/* --- FOOTER ---------------------------------------------------------------------------------------------------------------------- */

.foot { padding: clamp(56px, 7vw, 88px) 0 28px; background: var(--night); color: var(--on-night); }
.foot__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr); gap: clamp(32px, 5vw, 72px); }
.foot__brand img { width: 88px; }
.foot__brand .foot__word { width: 184px; height: auto; margin-top: 18px; }
.foot__motto { max-width: 17em; margin-top: 14px; font: italic 400 1.125rem/1.4 var(--f-display); color: var(--on-night-2); }
.foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.4fr); gap: 32px; }
.foot__cols h2 { margin-bottom: 14px; font: 500 .6875rem/1.3 var(--f-ui); letter-spacing: .16em; text-transform: uppercase; color: var(--brass-3); }
.foot__cols li { margin-bottom: 10px; line-height: 1.35; }
.foot__cols a { font: .875rem/1.35 var(--f-ui); color: var(--on-night); text-decoration: none; opacity: .88; }
.foot__cols a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }
.foot__contact p { font: .875rem/1.75 var(--f-ui); color: var(--on-night-2); }
.foot__contact a { opacity: 1; }
.foot__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 32px;
  margin-top: clamp(40px, 5vw, 64px); padding-top: 22px;
  border-top: 1px solid rgba(239, 231, 216, .14);
  font: .78125rem/1.5 var(--f-ui); color: var(--on-night-2);
}
.foot__legal a { color: var(--on-night); text-decoration: underline; text-decoration-color: rgba(207, 174, 111, .5); text-underline-offset: 3px; }
.foot__legal a:hover { text-decoration-color: var(--brass-3); }
.foot__preview span { display: inline-block; margin-right: 8px; padding: 2px 7px; border: 1px solid var(--brass); color: var(--brass-3); font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; }


/* --- the doors: bid, buy, sell, ask (ACA-WEBSITE-TUNE-1) --------------------------- */

.doors__in { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); gap: clamp(20px, 2.2vw, 36px); align-items: stretch; }
.door {
  position: relative; display: grid; align-content: center; gap: 6px;
  padding: clamp(14px, 1.7vw, 22px) clamp(8px, 1vw, 16px) clamp(14px, 1.7vw, 22px) 0;
  color: var(--ink); text-decoration: none;
}
.door__k { font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .16em; text-transform: uppercase; color: var(--brass-2); }
.door__t { display: flex; align-items: baseline; gap: 12px; font: 400 clamp(1.5rem, 1.2rem + .9vw, 2rem)/1.1 var(--f-display); letter-spacing: -.01em; }
.door__d { max-width: 44ch; font: .9375rem/1.5 var(--f-ui); color: var(--muted); }
.door__go { flex: none; color: var(--brass-2); transition: transform .25s var(--ease); }
.door__go svg { display: block; }
.door:hover .door__go { transform: translateX(4px); }

.door--lead { gap: 0; padding: 0; background: var(--night); color: var(--on-night); align-content: start; }
.door__pic { display: block; }
.door__copy { position: relative; display: grid; gap: 10px; padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.4vw, 34px) clamp(24px, 2.6vw, 36px); }
.door--lead .door__k { color: var(--brass-3); }
.door--lead .door__t { align-items: center; font-size: clamp(1.875rem, 1.3rem + 1.9vw, 2.75rem); line-height: 1.02; }
.door--lead .door__go { color: var(--brass-3); }
.door--lead .door__t em { color: var(--brass-3); }
.door--lead .door__d { max-width: 32ch; color: var(--on-night-2); }
.door--lead .door__go { color: var(--brass-3); }
.door--lead:hover { background: #262219; }

.doors__rest { display: grid; align-content: stretch; }
.doors__rest .door + .door { border-top: 1px solid var(--rule); }
.doors__rest .door:hover .door__t { color: var(--brass-2); }

@media (max-width: 900px) {
  .doors__in { grid-template-columns: minmax(0, 1fr); }
  .doors__rest .door:first-child { border-top: 1px solid var(--rule); }
}


/* --- Auctions: a sale record, not a second front page (ACA-WEBSITE-TUNE-3) ------- */

.pagehead--index { padding-bottom: clamp(16px, 2vw, 26px); }
.pagejump { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 18px; }
.pagejump a { font: 500 .8125rem/1.3 var(--f-ui); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid var(--rule); }
.pagejump a:hover { color: var(--ink); border-color: var(--brass); }

.saleline { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .66fr); gap: clamp(24px, 3.4vw, 56px); align-items: start; padding-top: clamp(20px, 2.4vw, 32px); border-top: 2px solid var(--ink); }
.saleline__title { margin-top: 10px; font: 400 clamp(2.25rem, 1.5rem + 2.4vw, 3.5rem)/1.04 var(--f-display); letter-spacing: -.02em; }
.saleline__title a { color: inherit; text-decoration: none; }
.saleline__title a:hover { color: var(--brass-2); }
.saleline__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; margin-top: clamp(20px, 2.2vw, 30px); border-top: 1px solid var(--rule); }
.saleline__facts > div { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--rule); }
.saleline__facts dt { font: 500 .6875rem/1.3 var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.saleline__facts dd { margin: 6px 0 0; font: .9375rem/1.4 var(--f-ui); color: var(--ink); }
.saleline .actions { margin-top: clamp(20px, 2.2vw, 28px); }
.saleline__strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.saleline__strip a { display: block; color: inherit; text-decoration: none; }
.saleline__strip span { display: block; margin-top: 8px; font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.saleline__strip a:hover span { color: var(--brass-2); }

/* The sale in preparation reads as the same kind of record as the sale that is
   open, one degree quieter: a lighter rule, a smaller title, a picture instead
   of a strip of lots, because it has no lot pages to send anyone to. */
.saleline--next { border-top-width: 1px; align-items: center; }
.saleline--next .saleline__title { font-size: clamp(1.875rem, 1.35rem + 1.7vw, 2.75rem); }
.saleline__lede { max-width: 38em; margin-top: 14px; font-size: 1.0625rem; line-height: 1.55; color: var(--ink-2); }
.saleline__pic a { display: block; }
.saleline__pic figcaption { margin-top: 12px; font: .8125rem/1.5 var(--f-ui); color: var(--muted); }

@media (max-width: 900px) {
  .saleline { grid-template-columns: minmax(0, 1fr); }
  .saleline__strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .saleline__strip span { font-size: .6875rem; }
}


/* --- the next sale on Home, and its own page (ACA-WEBSITE-SALE3-INTEGRATION) --- */

/* Home says the least of any page about the next sale: one photograph, its
   name, one line. Auctions keeps the record; this is a door. */
.upnext {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(20px, 3.2vw, 52px); align-items: center;
  color: inherit; text-decoration: none;
}
.upnext__pic { display: block; }
.upnext__k { display: block; font: 500 .75rem/1.3 var(--f-ui); letter-spacing: .16em; text-transform: uppercase; color: var(--brass-2); }
.upnext__t {
  margin-top: 12px; font: 400 clamp(1.875rem, 1.3rem + 1.7vw, 2.75rem)/1.08 var(--f-display);
}
.upnext__t a { display: inline-flex; align-items: baseline; gap: 14px; flex-wrap: wrap; color: inherit; text-decoration: none; }
.upnext__t em { color: var(--brass-2); }
.upnext__t a:hover { color: var(--brass-2); }
.upnext__d { display: block; max-width: 34em; margin-top: 14px; font-size: 1.0625rem; line-height: 1.55; color: var(--ink-2); }
.upnext__more { margin-top: 18px; }
.upnext__pic:hover .plate img { transform: scale(calc(var(--zoom, 1) * 1.035)); }

.salehead--next { padding-bottom: clamp(20px, 2.4vw, 36px); }
.section--pull { padding-top: clamp(28px, 3vw, 44px); }
.salehead--next .salehead__title { font-size: clamp(2.375rem, 1.4rem + 3vw, 4rem); }
.salehead--next .salehead__when { margin-top: 16px; }
.salehead--next .salehead__about { margin-top: 20px; }
.salehead--next .actions { margin-top: 24px; }
.facts--tight { margin-top: 18px; max-width: 30em; }
.facts--tight .facts__item { padding: 10px 0; }
.nexthero figcaption { margin-top: 12px; font: .8125rem/1.5 var(--f-ui); color: var(--muted); }
.nextband figcaption { margin-top: 12px; font: .8125rem/1.5 var(--f-ui); color: var(--muted); }
.card--preview .card__title { margin-top: 6px; }
.nextend { max-width: 44em; }
.nextend__title { font: 400 clamp(1.75rem, 1.3rem + 1.4vw, 2.375rem)/1.1 var(--f-display); }
.nextend__text { margin-top: 14px; font-size: 1.0625rem; line-height: 1.6; color: var(--ink-2); }
.nextend .actions { margin-top: 26px; }

@media (max-width: 900px) {
  .upnext { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}

/* --- the Shop's teaser: four objects, nothing to click (ACA-WEBSITE-REVIEW-CLOSEOUT) --- */

.pagehead--shop .pagehead__title { max-width: 26ch; font-size: clamp(2.5rem, 1.5rem + 3.4vw, 4.25rem); }
.teaser { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 24px); }
.teaser__item figcaption { margin-top: 12px; font: .8125rem/1.5 var(--f-ui); color: var(--muted); }

@media (max-width: 760px) {
  .teaser { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 380px) {
  .teaser__item figcaption { font-size: .75rem; }
}

/* --- responsive --------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .handles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cal__row { grid-template-columns: 140px 190px minmax(0, 1fr) 150px; }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .feature, .salehead__in, .lot, .areas, .studio__in, .legacy__in, .sellnote__in, .sellhead__in, .start, .story, .glance { grid-template-columns: minmax(0, 1fr); }
  .salehead__side, .lot__gallery, .story__pull { position: static; }
  .areas__stage { display: none; }
  .areas__row a { grid-template-columns: minmax(0, 1fr) 72px; gap: 6px 16px; padding: 20px 0; align-items: center; }
  .areas__no, .areas__go { display: none; }
  .areas__name { grid-column: 1; }
  .areas__blurb { grid-column: 1; grid-row: 2; }
  .areas__thumb { display: block; grid-column: 2; grid-row: 1 / span 2; }
  .foot__in { grid-template-columns: minmax(0, 1fr); }
  .archive__row { grid-template-columns: 150px minmax(0, 1fr); }
  .archive__pics { grid-column: 2; }
  .legacy__in { align-items: start; }
  .salehead__side { max-width: 560px; }
  .triptych__fig--1 { transform: none; }
}

@media (max-width: 800px) {
  .ways, .steps { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .ways { gap: 32px; }
  .way { display: grid; grid-template-columns: 38% minmax(0, 1fr); column-gap: 18px; align-items: start; }
  .way__img { grid-row: 1 / span 4; margin-bottom: 0; }
  .way__no { padding-top: 10px; }
  .way__title { margin: 6px 0 8px; font-size: 1.5rem; }
  .way__text { font-size: .96875rem; margin-bottom: 12px; }
  .ways-to { grid-template-columns: minmax(0, 1fr); }
  .ways-to__card { min-height: 0; }
  .ways-to__i { margin-bottom: 12px; }
  .checklist, .checklist--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars--three { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .cal__row { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 16px; padding: 20px 0; }
  .cal__tag { grid-column: 1; grid-row: 1; }
  .cal__title { grid-column: 1 / -1; grid-row: 2; }
  .cal__when { grid-column: 1; grid-row: 3; }
  .cal__act { grid-column: 2; grid-row: 3; align-self: end; }
  .archive__row { grid-template-columns: minmax(0, 1fr); gap: 16px; padding: 28px 0; }
  .archive__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; }
  .archive__year { font-size: 2.5rem; }
  .archive__date { margin-top: 0; }
  .archive__pics { grid-column: auto; }
  .catalogue-cta { grid-template-columns: minmax(0, 1fr) auto; padding: 24px; }
  .catalogue-cta__k { grid-column: 1 / -1; }
  .triptych { grid-template-columns: 1fr 1fr; }
  .triptych__fig--2 { display: none; }
}

@media (max-width: 640px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
  .card__title { font-size: .96875rem; }
  .card__meta { font-size: .625rem; }
  .card--lot .card__dept { display: none; }
  .head { flex-direction: column; align-items: flex-start; }
  .head__end { width: 100%; justify-content: space-between; }
  .checklist, .checklist--four, .pillars { grid-template-columns: minmax(0, 1fr); }
  .handles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .handles__text { grid-column: 1 / -1; }
  .field-pair { grid-template-columns: minmax(0, 1fr); }
  .foot__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .foot__contact { grid-column: 1 / -1; }
  .facts--two { grid-template-columns: minmax(0, 1fr); }
  .facts--list .facts__item { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .count__cell { padding-right: 14px; margin-right: 14px; }
  .count__cell b { font-size: 1.875rem; }
  .actions .btn { flex: 1 1 auto; }
  .lot__fields div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .rail__track > li { width: 62vw; }
  .front__plate--b .chip span, .front__plate--c .chip span { display: none; }
  .chip { left: 8px; bottom: 8px; padding: 5px 8px; font-size: .6875rem; }
}
@media (max-width: 380px) {
  .count__cell { gap: 6px; padding-right: 10px; margin-right: 10px; }
  .count__cell b { font-size: 1.625rem; }
  .count__cell small { letter-spacing: .06em; }
}

/* A telephone number never breaks across lines (ACA-WEBSITE-LAUNCH-CLOSEOUT-1). */
a[href^="tel:"] { white-space: nowrap; }
