:root {
  --ink: #100b0f;
  --ink-soft: #1a1118;
  --plum: #20101d;
  --wine: #5f1832;
  --wine-bright: #88284b;
  --brass: #d7b16f;
  --brass-soft: #eed7aa;
  --paper: #eee5d7;
  --ivory: #faf6ef;
  --rose-paper: #e8d9d9;
  --smoke: #b6a9ad;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(33, 17, 28, .17);
  --shell: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

::selection {
  background: var(--brass);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 180px);
}

.section-dark {
  background:
    radial-gradient(circle at 78% 20%, rgba(113, 34, 67, .14), transparent 34rem),
    var(--ink);
  color: var(--ivory);
}

.section-wine {
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 177, 111, .09), transparent 28rem),
    var(--wine);
  color: var(--ivory);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}
.eyebrow-dark { color: #704225; }

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.3vw, 100px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.section-intro {
  max-width: 500px;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.button:hover { transform: translateY(-3px); }
.button span { font-size: 17px; font-weight: 400; line-height: 0; }
.button-brass {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}
.button-brass:hover { background: var(--brass-soft); box-shadow: 0 22px 60px rgba(0, 0, 0, .36); }
.button-ghost { border-color: rgba(255, 255, 255, .4); color: #fff; }
.button-ghost:hover { border-color: #fff; background: #fff; color: var(--ink); }
.button-ink { background: var(--ink); color: var(--ivory); }
.button-ink:hover { background: var(--wine); }

.text-link-light {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  padding-bottom: 7px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}
.text-link-light:hover { border-color: var(--brass); color: var(--brass); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}
.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(16, 11, 15, .88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.brand:hover img { transform: rotate(-9deg) scale(1.04); }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
}
.brand-copy span {
  margin-top: 5px;
  color: var(--smoke);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.25vw, 38px); }
.site-nav > a {
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}
.site-nav > a:hover { color: #fff; }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  border: 1px solid rgba(215,177,111,.55);
  border-radius: 999px;
  color: var(--brass-soft);
}
.site-nav .nav-cta:hover { border-color: var(--brass); background: var(--brass); color: var(--ink); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0a0709;
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle 420px at var(--spot-x, 55%) var(--spot-y, 44%), rgba(215, 177, 111, .12), transparent 70%);
  content: "";
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  display: block;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroBreath 16s ease-in-out infinite alternate;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8,5,7,.96) 0%, rgba(12,7,10,.87) 32%, rgba(10,7,9,.24) 70%, rgba(10,7,9,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42), transparent 33%, rgba(0,0,0,.55));
}
.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(215,177,111,.2);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit::before {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 26px rgba(215,177,111,.7);
  content: "";
}
.hero-orbit-one { right: 10vw; width: 44vw; height: 44vw; animation: orbitSpin 26s linear infinite; }
.hero-orbit-one::before { top: 12%; left: 18%; }
.hero-orbit-two { right: 4vw; width: 58vw; height: 58vw; border-color: rgba(255,255,255,.08); animation: orbitSpin 45s linear infinite reverse; }
.hero-orbit-two::before { right: 5%; bottom: 28%; width: 4px; height: 4px; }
.hero-inner { padding-top: 130px; padding-bottom: 110px; }
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 {
  max-width: 830px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(64px, 8.4vw, 138px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .84;
  text-wrap: balance;
}
.hero h1 em { color: var(--brass-soft); font-weight: 400; }
.hero-lead {
  max-width: 620px;
  margin: 40px 0 0;
  color: rgba(255,255,255,.7);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-foot {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-foot-line { width: 45px; height: 1px; background: rgba(255,255,255,.28); }
@keyframes heroBreath { to { transform: scale(1.035); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Proof */
.proof-strip { border-block: 1px solid var(--line-dark); background: #130d12; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  justify-content: center;
  padding: 30px clamp(20px, 3vw, 46px);
  border-right: 1px solid var(--line-dark);
}
.proof-item:first-child { border-left: 1px solid var(--line-dark); }
.proof-item strong { color: var(--brass-soft); font-family: var(--serif); font-size: clamp(40px, 4vw, 64px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.proof-item span { margin-top: 10px; color: var(--smoke); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

/* Manifesto */
.manifesto { overflow: hidden; background: var(--paper); color: var(--ink); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .62fr); gap: clamp(50px, 8vw, 130px); align-items: center; }
.manifesto-copy { position: relative; z-index: 1; }
.manifesto-mark {
  position: absolute;
  top: 50%;
  left: -3vw;
  color: rgba(95,24,50,.04);
  font-family: var(--serif);
  font-size: min(62vw, 920px);
  line-height: .7;
  transform: translateY(-50%);
  user-select: none;
}
.manifesto-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; margin-top: 52px; }
.manifesto-columns p { margin: 0; color: #554b4f; font-size: 17px; line-height: 1.78; }
.manifesto-quote { display: flex; align-items: center; gap: 15px; margin: 58px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-light); }
.manifesto-quote span { color: var(--wine); font-family: var(--serif); font-size: 74px; line-height: .5; }
.manifesto-quote p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.4vw, 38px); font-style: italic; }
.coin-portrait { position: relative; margin: 0; }
.coin-portrait::before { position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(95,24,50,.26); content: ""; }
.coin-portrait img { position: relative; width: 100%; aspect-ratio: .65; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.coin-portrait figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; color: #6b595e; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid rgba(215,177,111,.2); background: var(--ink); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 28px; padding: 22px 0; animation: marquee 34s linear infinite; }
.marquee span { color: rgba(255,255,255,.74); font-family: var(--serif); font-size: 18px; font-style: italic; letter-spacing: .02em; white-space: nowrap; }
.marquee i { color: var(--brass); font-size: 7px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Expertise */
.expertise-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .6fr); gap: 50px; align-items: end; }
.expertise-grid { display: grid; grid-template-columns: minmax(340px, .85fr) minmax(0, 1fr); gap: clamp(45px, 7vw, 110px); align-items: center; margin-top: clamp(60px, 8vw, 110px); }
.expertise-image { position: relative; margin: 0; }
.expertise-image::after { position: absolute; inset: auto -22px -22px auto; z-index: 0; width: 46%; height: 46%; border-right: 1px solid var(--brass); border-bottom: 1px solid var(--brass); content: ""; }
.expertise-image picture { position: relative; z-index: 1; display: block; }
.expertise-image img { display: block; width: 100%; min-height: 540px; object-fit: cover; }
.expertise-image figcaption { position: absolute; z-index: 2; right: 22px; bottom: 22px; padding: 10px 14px; background: rgba(16,11,15,.78); color: var(--brass-soft); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(12px); }
.service-list details { border-top: 1px solid var(--line-dark); }
.service-list details:last-child { border-bottom: 1px solid var(--line-dark); }
.service-list summary {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 29px 0;
  cursor: pointer;
  list-style: none;
}
.service-list summary::-webkit-details-marker { display: none; }
.service-list summary span { color: var(--brass); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.service-list summary strong { font-family: var(--serif); font-size: clamp(25px, 2.4vw, 38px); font-weight: 400; letter-spacing: -.03em; }
.service-list summary i { position: relative; width: 24px; height: 24px; }
.service-list summary i::before, .service-list summary i::after { position: absolute; top: 50%; left: 50%; width: 17px; height: 1px; background: var(--brass); content: ""; transform: translate(-50%, -50%); transition: transform 240ms var(--ease); }
.service-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.service-list details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.service-copy { max-width: 640px; padding: 0 42px 30px 62px; }
.service-copy p { margin: 0 0 20px; color: var(--smoke); font-size: 15px; line-height: 1.75; }
.service-copy a { color: var(--brass-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.service-copy a:hover { color: #fff; }

/* Auction image feature */
.auction-feature { position: relative; display: grid; min-height: min(880px, 90vh); align-items: end; overflow: hidden; isolation: isolate; }
.auction-feature-media { position: absolute; inset: 0; z-index: -3; display: block; overflow: hidden; }
.auction-feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s var(--ease); }
.auction-feature:hover .auction-feature-media img { transform: scale(1.025); }
.auction-feature-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(9,6,8,.88), rgba(9,6,8,.26) 64%), linear-gradient(0deg, rgba(8,5,7,.88), transparent 60%); }
.auction-feature-content { padding-block: clamp(90px, 11vw, 170px); }
.auction-feature h2 { max-width: 820px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 8vw, 126px); font-weight: 400; letter-spacing: -.065em; line-height: .88; }
.auction-feature-content > p:not(.eyebrow) { max-width: 590px; margin: 35px 0 0; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: clamp(19px, 1.65vw, 25px); }
.auction-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; margin-top: 40px; }

/* Legacy */
.legacy { background: var(--ivory); color: var(--ink); }
.legacy-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 160px); }
.legacy-heading { position: sticky; top: 140px; align-self: start; }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 90px 1fr; gap: 32px; padding: 44px 0 52px; border-top: 1px solid var(--line-light); }
.timeline li:last-child { border-bottom: 1px solid var(--line-light); }
.timeline > li > span { color: var(--wine); font-family: var(--serif); font-size: 25px; font-style: italic; }
.timeline h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 46px); font-weight: 400; letter-spacing: -.04em; }
.timeline p { max-width: 580px; margin: 16px 0 0; color: #66595d; font-size: 16px; line-height: 1.75; }

/* Editorial */
.editorial-grid { display: grid; grid-template-columns: .78fr 1.05fr .55fr; gap: clamp(20px, 3vw, 44px); align-items: center; }
.editorial-copy { padding-right: 20px; }
.editorial-copy .section-title { font-size: clamp(47px, 5.2vw, 82px); }
.editorial-copy > p:not(.eyebrow) { margin: 34px 0 32px; color: rgba(255,255,255,.7); }
.editorial-card { position: relative; margin: 0; overflow: hidden; background: #180d14; }
.editorial-card picture { display: block; width: 100%; height: 100%; }
.editorial-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease), filter 800ms ease; }
.editorial-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.editorial-card-main { aspect-ratio: .92; }
.editorial-card-tall { aspect-ratio: .64; transform: translateY(9%); }
.editorial-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; gap: 15px; padding: 22px; background: linear-gradient(0deg, rgba(8,5,7,.86), transparent); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.editorial-card figcaption strong { color: var(--brass-soft); }
.editorial-card figcaption span { color: rgba(255,255,255,.6); }

/* MSIF */
.msif { overflow: hidden; background: var(--paper); color: var(--ink); }
.msif-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr); gap: clamp(55px, 8vw, 130px); align-items: center; }
.msif-image { position: relative; margin: 0; }
.msif-image::before { position: absolute; inset: -20px -20px 20px 20px; border: 1px solid rgba(95,24,50,.24); content: ""; }
.msif-image picture { position: relative; display: block; }
.msif-image img { display: block; width: 100%; min-height: 580px; object-fit: cover; }
.msif-stamp { position: absolute; right: -42px; bottom: -42px; display: grid; width: 118px; height: 118px; place-items: center; border: 1px solid var(--brass); border-radius: 50%; background: var(--wine); color: #fff; transform: rotate(8deg); }
.msif-stamp::before { position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.45); border-radius: 50%; content: ""; }
.msif-stamp span { margin-top: 18px; font-family: var(--serif); font-size: 30px; line-height: 1; }
.msif-stamp small { margin-top: -30px; color: var(--brass-soft); font-size: 7px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.msif-copy > p:not(.eyebrow,.msif-note) { margin: 38px 0 0; color: #5d5055; font-size: 18px; line-height: 1.75; }
.msif-note { margin: 25px 0 34px; padding-left: 20px; border-left: 2px solid var(--wine); color: #79676d; font-size: 14px; }

/* Process */
.process-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr); gap: 50px; align-items: end; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 85px 0 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.process-list li { min-height: 320px; padding: 34px 28px; border-right: 1px solid var(--line-dark); }
.process-list li:first-child { border-left: 1px solid var(--line-dark); }
.process-list span { color: var(--brass); font-family: var(--serif); font-size: 20px; font-style: italic; }
.process-list h3 { margin: 80px 0 18px; font-family: var(--serif); font-size: 29px; font-weight: 400; letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--smoke); font-size: 14px; line-height: 1.7; }

/* Contact */
.contact { overflow: hidden; background: var(--plum); }
.contact::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(215,177,111,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(215,177,111,.045) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 25%, #000 80%, transparent);
}
.contact-glow { position: absolute; top: 5%; left: 55%; width: 650px; height: 650px; border-radius: 50%; background: rgba(122,39,72,.28); filter: blur(100px); }
.contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .6fr); gap: clamp(70px, 12vw, 190px); align-items: end; }
.contact-lead h2 { margin: 0; font-family: var(--serif); font-size: clamp(62px, 8vw, 126px); font-weight: 400; letter-spacing: -.07em; line-height: .86; }
.contact-lead h2 em { color: var(--brass-soft); font-weight: 400; }
.contact-lead > p:not(.eyebrow) { max-width: 620px; margin: 38px 0 34px; color: var(--smoke); font-size: 18px; }
.contact-details { display: grid; gap: 29px; margin: 0; padding: 36px; border: 1px solid rgba(215,177,111,.3); background: rgba(16,11,15,.42); font-style: normal; backdrop-filter: blur(14px); }
.contact-details > div { padding-bottom: 24px; border-bottom: 1px solid var(--line-dark); }
.contact-details > div:last-child { padding: 0; border: 0; }
.contact-details span { display: block; margin-bottom: 9px; color: var(--brass); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-details p, .contact-details a { margin: 0; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 20px; line-height: 1.45; text-decoration: none; }
.contact-details a:hover { color: var(--brass-soft); }
.social-links { display: flex; flex-wrap: wrap; gap: 18px; }
.social-links a { font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

/* Footer */
.site-footer { border-top: 1px solid var(--line-dark); background: #090608; color: var(--smoke); }
.footer-top { display: grid; grid-template-columns: 1fr 1.4fr .7fr; gap: 40px; align-items: center; padding-block: 50px; }
.brand-footer { justify-self: start; }
.footer-top > p { max-width: 420px; margin: 0; font-family: var(--serif); font-size: 18px; }
.back-to-top { justify-self: end; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.back-to-top span { margin-left: 10px; color: var(--brass); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 22px; border-top: 1px solid var(--line-dark); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.footer-bottom a { color: var(--brass-soft); text-decoration: none; }

/* Reveal and parallax */
.js .reveal, html:not(.no-js) .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.js .reveal.is-visible, html:not(.no-js) .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms !important; }
.reveal-delay-2 { transition-delay: 180ms !important; }
.reveal-delay-3 { transition-delay: 270ms !important; }
[data-parallax] { will-change: transform; }

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: 10px; }
  .expertise-grid { grid-template-columns: .78fr 1fr; gap: 50px; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-copy { grid-column: 1 / -1; max-width: 780px; margin-bottom: 25px; }
  .editorial-card-main { aspect-ratio: 1.15; }
  .editorial-card-tall { aspect-ratio: .9; transform: translateY(0); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { border-left: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
  .process-list li:nth-child(4) { border-top: 1px solid var(--line-dark); }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .header-inner { min-height: 80px; }
  .brand img { width: 46px; height: 46px; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle-label { font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
  .menu-toggle-lines { position: relative; width: 28px; height: 18px; }
  .menu-toggle-lines i { position: absolute; right: 0; width: 28px; height: 1px; background: currentColor; transition: top 250ms var(--ease), transform 250ms var(--ease), width 250ms var(--ease); }
  .menu-toggle-lines i:first-child { top: 4px; }
  .menu-toggle-lines i:last-child { top: 13px; width: 19px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { top: 9px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { top: 9px; width: 28px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 110px var(--gutter) 50px;
    background: rgba(16,11,15,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 250ms ease, transform 250ms var(--ease);
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a { width: 100%; padding: 12px 0; color: #fff; font-family: var(--serif); font-size: clamp(32px, 8vw, 54px); font-weight: 400; letter-spacing: -.03em; text-transform: none; }
  .site-nav > a::after { display: none; }
  .site-nav .nav-cta { width: auto; margin-top: 20px; padding: 15px 20px; font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .hero { min-height: max(720px, 100svh); align-items: end; }
  .hero-image { object-position: 62% center; }
  .hero-veil { background: linear-gradient(90deg, rgba(8,5,7,.95), rgba(10,7,9,.44)), linear-gradient(0deg, rgba(8,5,7,.88), transparent 60%); }
  .hero-inner { padding-top: 140px; padding-bottom: 150px; }
  .hero-orbit-one { right: -22vw; width: 78vw; height: 78vw; }
  .hero-orbit-two { right: -36vw; width: 110vw; height: 110vw; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-left: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
  .proof-item:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .manifesto-grid, .expertise-grid, .legacy-grid, .msif-grid, .contact-grid { grid-template-columns: 1fr; }
  .manifesto-copy { order: 1; }
  .coin-portrait { width: min(76%, 520px); margin-inline: auto; order: 0; }
  .expertise-heading, .process-heading { grid-template-columns: 1fr; align-items: start; }
  .expertise-image img { min-height: 480px; }
  .legacy-heading { position: static; }
  .msif-image img { min-height: 480px; }
  .msif-copy { max-width: 680px; }
  .contact-grid { align-items: start; }
  .contact-details { max-width: 620px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  body { font-size: 15px; }
  .section { padding-block: 90px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy span { font-size: 7px; }
  .hero { min-height: 820px; }
  .hero-image { object-position: center; }
  .hero-veil { background: linear-gradient(90deg, rgba(8,5,7,.94), rgba(10,7,9,.4)), linear-gradient(0deg, rgba(8,5,7,.95), transparent 74%); }
  .hero h1 { font-size: clamp(58px, 18.5vw, 86px); line-height: .86; }
  .hero-lead { margin-top: 28px; font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-foot { bottom: 18px; }
  .proof-item { min-height: 128px; padding: 24px 18px; }
  .proof-item strong { font-size: 40px; }
  .proof-item span { font-size: 8px; }
  .section-title { font-size: clamp(45px, 14vw, 70px); }
  .manifesto-columns { grid-template-columns: 1fr; gap: 22px; margin-top: 35px; }
  .coin-portrait { width: calc(100% - 26px); }
  .coin-portrait img { aspect-ratio: 1; }
  .marquee-track { padding-block: 17px; }
  .expertise-heading { gap: 25px; }
  .expertise-grid { margin-top: 55px; }
  .expertise-image img { height: auto; min-height: 0; aspect-ratio: 4 / 5; object-position: center; }
  .service-list summary { grid-template-columns: 34px 1fr 24px; gap: 10px; padding: 24px 0; }
  .service-list summary strong { font-size: 25px; }
  .service-copy { padding: 0 0 26px 44px; }
  .auction-feature { min-height: 740px; }
  .auction-feature-media img { object-position: center; }
  .auction-feature h2 { font-size: clamp(58px, 18vw, 84px); }
  .auction-actions { align-items: stretch; flex-direction: column; }
  .text-link-light { align-self: flex-start; }
  .timeline li { grid-template-columns: 1fr; gap: 14px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card-main, .editorial-card-tall { aspect-ratio: .84; }
  .msif-image::before { inset: -12px -12px 12px 12px; }
  .msif-image img { height: auto; min-height: 0; aspect-ratio: 4 / 5; object-position: center; }
  .msif-stamp { right: -5px; bottom: -35px; width: 100px; height: 100px; }
  .msif-copy { margin-top: 35px; }
  .process-list { grid-template-columns: 1fr; margin-top: 55px; }
  .process-list li, .process-list li:nth-child(3), .process-list li:nth-child(4) { min-height: 0; padding: 30px 22px 36px; border: 1px solid var(--line-dark); border-top: 0; }
  .process-list li:first-child { border-top: 1px solid var(--line-dark); }
  .process-list h3 { margin-top: 35px; }
  .contact-lead h2 { font-size: clamp(58px, 17vw, 80px); }
  .contact-details { padding: 25px; }
  .contact-details p, .contact-details a { font-size: 18px; overflow-wrap: anywhere; }
  .footer-top { grid-template-columns: 1fr; }
  .back-to-top { justify-self: start; }
  .footer-top > p { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
}
