/* =============================================================
   MONTAGE AUTO LEASING — Editorial Noir
   Palette: warm parchment + deep ink + cognac/champagne accents
   ============================================================= */

:root {
  --ink: #0e0d0b;
  --ink-2: #18160f;
  --ink-3: #232017;
  --cream: #f1ece1;
  --cream-2: #e9e3d3;
  --cream-3: #ddd4bf;
  --paper: #f6f1e6;
  --rule: #1f1c14;
  --rule-cream: #c9bfa5;
  --rule-cream-soft: #ddd4bf;
  --muted: #7a7264;
  --muted-cream: #b6ad96;
  --cognac: #8a4a1f;
  --cognac-2: #6b3814;
  --champagne: #c2a37c;
  --gold: #b89366;

  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Cabinet Grotesk", "Satoshi", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "Cabinet Grotesk", monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "ss02" on, "kern" on, "liga" on;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ============================================================= */
/* UTILITY BAR                                                   */
/* ============================================================= */
.util {
  background: var(--ink);
  color: var(--cream-2);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid #2a2618;
}
.util__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}
.util__item { display: inline-flex; align-items: center; gap: 8px; }
.util__item:last-child { margin-left: auto; }
.util__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(194,163,124,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.util__link { color: var(--cream); }
.util__link:hover { color: var(--champagne); }
.util__hide-sm { display: none; }
@media (min-width: 800px) { .util__hide-sm { display: inline-flex; } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(194,163,124,.0); }
  50% { box-shadow: 0 0 0 6px rgba(194,163,124,.22); }
}

/* ============================================================= */
/* NAV                                                           */
/* ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,241,230,.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule-cream-soft);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-style: italic;
}
.brand__sub {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav__links {
  display: none;
  justify-content: center;
  gap: 30px;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--cognac); }
.nav__links a:hover::after { transform: scaleX(1); }
@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .ghost,
.nav__cta .solid {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.nav__cta .ghost {
  color: var(--ink);
  border: 1px solid transparent;
}
.nav__cta .ghost:hover { color: var(--cognac); }
.nav__cta .solid {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.nav__cta .solid:hover {
  background: var(--cognac-2);
  border-color: var(--cognac-2);
}
.nav__cta .solid span { transition: transform .3s var(--ease); display: inline-block; margin-left: 4px; }
.nav__cta .solid:hover span { transform: translate(2px, -2px); }

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  margin-right: -8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
@media (max-width: 720px) {
  .nav__cta .ghost { display: none; }
  .nav__cta .solid { padding: 10px 14px; font-size: 11px; }
  .brand__sub { display: none; }
}

/* ============================================================= */
/* HERO                                                          */
/* ============================================================= */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* slow vignette */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 75% at 12% 20%, rgba(194,163,124,.10), transparent 60%),
    radial-gradient(80% 60% at 88% 90%, rgba(138,74,31,.22), transparent 60%),
    linear-gradient(180deg, #0e0d0b 0%, #0a0907 100%);
  z-index: -1;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.78 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(40px, 6vw, 72px);
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2618;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-cream);
}
.hero__metaItem--right { text-align: right; }

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: .9;
  letter-spacing: -0.025em;
  margin: clamp(40px, 7vw, 84px) 0 clamp(32px, 4vw, 48px);
  font-size: clamp(64px, 13vw, 220px);
  color: var(--cream);
}
.hero__titleRow {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2.5vw, 36px);
  flex-wrap: wrap;
}
.hero__title .reveal { display: inline-block; }
.hero__em {
  font-style: italic;
  font-weight: 300;
  color: var(--champagne);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.04em;
}
.hero__emTie { display: inline; }

.hero__sub {
  max-width: 620px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: #d8cfb9;
  font-weight: 400;
  margin: 0 0 clamp(32px, 4vw, 48px);
}
.hero__sub p { margin: 0; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(56px, 8vw, 88px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  font-weight: 500;
  font-family: var(--sans);
}
.btn__arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn:hover .btn__arrow { transform: translate(3px, -3px); }
.btn--ink {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--ink:hover {
  background: var(--champagne);
  border-color: var(--champagne);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(241,236,225,.3);
}
.btn--ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}
.btn--cream {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--cream:hover { background: var(--cognac-2); border-color: var(--cognac-2); }
.btn--ghost-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(241,236,225,.3);
}

/* Ledger */
.hero__ledger {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid #2a2618;
  border-bottom: 1px solid #2a2618;
  padding: 0;
}
.ledger__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0 22px;
  border-right: 1px solid #2a2618;
  padding-right: 24px;
}
.ledger__row:last-child { border-right: 0; }
@media (max-width: 720px) {
  .ledger__row { border-right: 0; border-bottom: 1px solid #2a2618; padding: 18px 0; }
  .ledger__row:last-child { border-bottom: 0; }
}
.ledger__k {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-cream);
}
.ledger__v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: 18px;
  color: var(--cream);
}

/* Brand marquee */
.hero__brandsWrap {
  border-top: 1px solid #2a2618;
  background: #0a0907;
  position: relative;
  overflow: hidden;
}
.hero__brands {
  padding: 22px 0;
  overflow: hidden;
}
.hero__brandsTrack {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 70s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 64px);
  color: var(--cream);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.01em;
}
.hero__brandsTrack .dot { color: var(--cognac); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================= */
/* SHARED SECTION                                                */
/* ============================================================= */
.section__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--gutter) clamp(36px, 4vw, 56px);
}
.section__head--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .section__head--split {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 64px;
  }
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.eyebrow--cream { color: var(--muted-cream); }
.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -0.025em;
  margin: 0;
}
.section__title em {
  font-style: italic;
  color: var(--cognac);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section__meta {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}
.section__meta p { margin-top: 0; }
.section__meta-single {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
}
.section__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.chip {
  background: transparent;
  border: 1px solid var(--rule-cream-soft);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip--on, .chip.chip--on { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============================================================= */
/* MANIFESTO                                                     */
/* ============================================================= */
.manifesto {
  border-top: 1px solid var(--rule-cream-soft);
}
.manifesto__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 10vw, 120px);
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .manifesto__grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
}

.manifesto__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
}
.dropcap {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(76px, 11vw, 140px);
  line-height: .8;
  float: left;
  margin: 6px 14px -6px -2px;
  color: var(--cognac);
}

.manifesto__rules {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rule {
  border-top: 1px solid var(--rule-cream-soft);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas:
    "no   title"
    "no   body";
  column-gap: 18px;
  row-gap: 8px;
  align-items: start;
}
.rule__no {
  grid-area: no;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 100;
  font-size: 22px;
  color: var(--cognac);
  font-weight: 400;
  padding-top: 4px;
}
.rule__title {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.rule p {
  grid-area: body;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

/* ============================================================= */
/* COLLECTION (cards)                                            */
/* ============================================================= */
.collection {
  background: var(--cream);
  border-top: 1px solid var(--rule-cream-soft);
  border-bottom: 1px solid var(--rule-cream-soft);
}
.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule-cream-soft);
  border: 1px solid var(--rule-cream-soft);
}
@media (min-width: 720px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cards { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: background .35s var(--ease);
  position: relative;
}
.card:hover { background: var(--cream); }
.card[hidden] { display: none; }

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1814 0%, #0e0d0b 100%);
  overflow: hidden;
  isolation: isolate;
}
.card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
  filter: saturate(.9) contrast(1.05);
}
.card:hover .card__media img { transform: scale(1.04); filter: saturate(1) contrast(1.05); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,13,11,.55) 100%);
  pointer-events: none;
}
.card__no {
  position: absolute;
  top: 16px; left: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  text-align: left;
  letter-spacing: -0.02em;
}
.card__no::before { content: ""; display:block; width: 24px; height: 1px; background: var(--champagne); margin-bottom: 8px; }
.card__tag {
  position: absolute;
  bottom: 16px; left: 18px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 10px;
  border: 1px solid rgba(241,236,225,.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(14,13,11,.35);
}
.card__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  z-index: 0;
}
.card__fbName {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
}
.card__fbSub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-cream);
  margin-top: 6px;
}

.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.card__top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.card__marque {
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.card__model {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.card__year {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 48;
  font-size: 13px;
  color: var(--cognac);
  padding-top: 2px;
}
.card__data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-cream-soft);
  border-bottom: 1px solid var(--rule-cream-soft);
  padding: 14px 0;
  margin: 0;
}
.card__data > div {
  padding: 0 12px;
  border-right: 1px solid var(--rule-cream-soft);
}
.card__data > div:first-child { padding-left: 0; }
.card__data > div:last-child { border-right: 0; padding-right: 0; }
.card__data dt {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.card__data dd {
  margin: 0;
  font-family: var(--serif);
  font-variation-settings: "opsz" 48, "SOFT" 50;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card__data dd span { font-size: 12px; color: var(--muted); font-family: var(--sans); margin-left: 2px; }
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 4px;
  transition: color .25s var(--ease);
  margin-top: auto;
  width: fit-content;
}
.card__cta span { transition: transform .3s var(--ease); display: inline-block; }
.card__cta:hover { color: var(--cognac); }
.card__cta:hover span { transform: translateX(4px); }

.collection__foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 10vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid transparent;
}
.collection__foot p {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.link-underline {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all .25s var(--ease);
}
.link-underline:hover { color: var(--cognac); border-bottom-color: var(--cognac); }

/* ============================================================= */
/* FEATURE QUOTE                                                 */
/* ============================================================= */
.feature {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 80% 50%, rgba(138,74,31,.20), transparent 60%);
}
.feature__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .feature__inner { grid-template-columns: 1.4fr 1fr; align-items: center; } }

.feature__copy { max-width: 720px; }
.feature__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 24px 0 24px;
  color: var(--cream);
}
.feature__attr {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-cream);
  margin: 0;
}

.feature__plate { display: flex; justify-content: center; }
.plate {
  border: 1.5px solid var(--champagne);
  padding: 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--champagne);
  background: rgba(194,163,124,.04);
  transform: rotate(-2deg);
  font-family: var(--serif);
  font-variation-settings: "opsz" 48;
  min-width: 240px;
}
.plate__top, .plate__bot {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--champagne);
}
.plate__mid {
  font-size: 36px;
  letter-spacing: .3em;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin: 4px 0;
}

/* ============================================================= */
/* PROCESS                                                       */
/* ============================================================= */
.process { border-top: 1px solid var(--rule-cream-soft); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0 var(--gutter) clamp(96px, 12vw, 160px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-cream-soft);
}
@media (min-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--rule-cream-soft);
  border-bottom: 1px solid var(--rule-cream-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background .3s var(--ease);
}
.step:hover { background: var(--cream); }
@media (max-width: 899px) { .step:last-child { border-bottom: 0; } .step { border-right: 0; } }
@media (min-width: 900px) and (max-width: 1199px) {
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-child(n+3) { border-bottom: 0; }
}
@media (min-width: 1200px) {
  .step:last-child { border-right: 0; }
  .step { border-bottom: 0; }
}
.step__no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 56px;
  color: var(--cognac);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step__body { padding-left: 0; }
.step__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.step__body p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.step__time {
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-top: 14px;
  display: inline-block;
}

/* ============================================================= */
/* VOICES                                                        */
/* ============================================================= */
.voices {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.voices::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 20% 30%, rgba(194,163,124,.10), transparent 60%);
}
.voices .section__head { position: relative; }
.voices__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(96px, 12vw, 140px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #2a2618;
  border-top: 1px solid #2a2618;
  border-bottom: 1px solid #2a2618;
}
@media (min-width: 900px) { .voices__grid { grid-template-columns: repeat(3, 1fr); } }
.voice {
  background: var(--ink);
  margin: 0;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: background .3s var(--ease);
}
.voice:hover { background: var(--ink-2); }
.voice::before {
  content: "“";
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 84px;
  color: var(--cognac);
  line-height: 1;
  opacity: .8;
}
.voice blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 20px;
  line-height: 1.4;
  margin: 32px 0 0;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.voice figcaption {
  border-top: 1px solid #2a2618;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}
.voice__name {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 48;
  font-size: 18px;
  color: var(--champagne);
}
.voice__role {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-cream);
}

/* ============================================================= */
/* CTA / FORM                                                    */
/* ============================================================= */
.cta {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid #2a2618;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 80% 20%, rgba(194,163,124,.10), transparent 60%),
    radial-gradient(60% 80% at 10% 90%, rgba(138,74,31,.18), transparent 60%);
}
.cta__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(48px, 8vw, 120px);
  line-height: .95;
  margin: 18px 0 22px;
  letter-spacing: -0.025em;
}
.cta__title em {
  font-style: italic;
  color: var(--champagne);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: clamp(18px, 2vw, 24px);
  color: #d8cfb9;
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 560px;
}

.form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid #2a2618;
  padding-top: 36px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label > span {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-cream);
}
.form input, .form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #3b3422;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  padding: 10px 0 12px;
  font-variation-settings: "opsz" 48;
  transition: border-color .3s var(--ease);
  width: 100%;
}
.form textarea { resize: vertical; min-height: 80px; line-height: 1.45; font-size: 16px; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--champagne); }
.form input::placeholder, .form textarea::placeholder { color: #6f6553; font-style: italic; }
.form__full { display: flex; flex-direction: column; gap: 8px; }
.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
.form__ack {
  margin: 12px 0 0;
  color: var(--champagne);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 48;
  opacity: 0;
  transform: translateY(4px);
  transition: all .4s var(--ease);
  height: 0;
  overflow: hidden;
}
.form__ack.on { opacity: 1; transform: none; height: auto; }
.form__ack.is-error { color: #e9a37c; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================= */
/* FOOTER                                                        */
/* ============================================================= */
.foot {
  background: #0a0907;
  color: var(--cream);
  border-top: 1px solid #2a2618;
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .foot__top { grid-template-columns: 1fr 2fr; } }

.foot__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--cream);
}
.foot__brand .brand__mark { color: var(--cream); width: 44px; height: 44px; }
.foot__brand .brand__name {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
}
.foot__tag {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-cream);
  margin-top: 6px;
}

.foot__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 600px) { .foot__cols { grid-template-columns: repeat(3, 1fr); } }
.foot__col h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted-cream);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot__col a, .foot__col p {
  display: block;
  font-family: var(--serif);
  font-variation-settings: "opsz" 48;
  font-size: 17px;
  color: var(--cream);
  margin: 0 0 10px;
  transition: color .25s var(--ease);
  line-height: 1.45;
}
.foot__col a:hover { color: var(--champagne); }

.foot__bot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter) 32px;
  border-top: 1px solid #2a2618;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-cream);
}
.foot__tiny { color: #6f6553; }

/* ============================================================= */
/* REVEAL / OBSERVED                                             */
/* ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.obs {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.obs.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
