/* ============================================================
   MAVIE — "The Catalogue" direction prototype
   Gallery stays quiet; colour lives inside the plates.
   Tokens: Paper / Ink / Viridian / Brass / Line
   ============================================================ */

:root {
  --paper: #FBFBF8;
  --ink: #17201F;
  --viridian: #185C4C;
  --viridian-deep: #114237;
  --brass: #B98A2F;
  --line: #E4E4DC;
  --sunk: #F3F3EC;
  --muted: #5A6461;

  --f-display: "Bricolage Grotesque", "Avenir Next", sans-serif;
  --f-body: "Source Serif 4", Georgia, serif;
  --f-mono: "Fragment Mono", ui-monospace, monospace;

  --w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 18.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--viridian); color: var(--paper); }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--viridian);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }

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

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--viridian);
  display: block;
  margin-bottom: 18px;
}

.spec {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.no-stamp {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brass);
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; }

.lede { font-size: 21px; line-height: 1.6; color: var(--muted); max-width: 34em; }

/* ---------- header ---------- */

.top {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.top__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}

.brand {
  font-family: var(--f-display);
  font-weight: 700; font-size: 22px; letter-spacing: 0.01em;
  text-decoration: none; display: flex; align-items: baseline; gap: 8px;
}
.brand small {
  font-family: var(--f-mono); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.14em; color: var(--brass); text-transform: uppercase;
}

.top nav { display: flex; gap: 26px; align-items: center; }
.top nav a {
  font-family: var(--f-display); font-weight: 500; font-size: 15.5px;
  text-decoration: none; color: var(--muted);
}
.top nav a:hover, .top nav a[aria-current="page"] { color: var(--ink); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--f-display); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 6px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--primary { background: var(--viridian); color: var(--paper); }
.btn--primary:hover { background: var(--viridian-deep); }
.btn--quiet { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--quiet:hover { border-color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 14.5px; }

/* ---------- sections ---------- */

.section { padding: 108px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section--sunk { background: var(--sunk); }

.section__head { max-width: 620px; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }

/* ---------- hero ---------- */

.hero { padding: 84px 0 100px; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 5.6vw, 66px);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal; color: var(--viridian);
}
.hero .lede { margin-bottom: 20px; }

.hero__price {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.07em;
  color: var(--ink); background: var(--sunk);
  border: 1px solid var(--line); border-radius: 6px;
  display: inline-block; padding: 9px 14px; margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__plate-note {
  margin-top: 16px; text-align: center;
}

/* ---------- plates (the signature) ---------- */

.plate {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(23,32,31,.04);
  transition: box-shadow .25s ease, transform .25s ease;
}
a.plate-link { text-decoration: none; display: block; }
.plate:hover { box-shadow: 0 18px 44px -18px rgba(23,32,31,.22); }

.plate__stage {
  padding: 18px 18px 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(23,32,31,.045), transparent 70%);
}

.plate__meta { padding: 16px 18px 18px; }

.plate__title-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 4px;
}
.plate__name { font-family: var(--f-display); font-weight: 600; font-size: 20px; }
.plate__who {
  font-size: 15.5px; color: var(--muted); line-height: 1.5;
  margin-bottom: 12px;
}
.plate__spec-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--line); padding-top: 12px;
}

/* swatches — split-circle material chips */
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(23,32,31,.18);
  cursor: pointer; padding: 0;
  background: var(--sw, #ccc);
  transition: transform .15s ease, box-shadow .15s ease;
}
.swatch:hover { transform: scale(1.12); }
.swatch[aria-pressed="true"] {
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--viridian);
}

/* ---------- the miniature websites ---------- */

.m {
  --m-bg: #fff; --m-ink: #222; --m-acc: #2456C4; --m-r: 6px;
  --m-hf: system-ui, sans-serif;
  font-size: 10px;
  font-family: system-ui, sans-serif;
  background: var(--m-bg); color: var(--m-ink);
  border: 1px solid rgba(23,32,31,.13);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10.6;
  display: flex; flex-direction: column;
  box-shadow: 0 -1px 0 rgba(255,255,255,.5) inset;
  transition: background-color .45s ease, color .45s ease;
  user-select: none;
}
.plate--lg .m { font-size: 12px; }

.m * { transition: background-color .45s ease, color .45s ease, border-color .45s ease, border-radius .45s ease; }

.m-top {
  display: flex; align-items: center; gap: 0.8em;
  padding: 0.9em 1.2em;
  border-bottom: 1px solid color-mix(in srgb, var(--m-ink) 12%, transparent);
  flex: none;
}
.m-brand {
  font-family: var(--m-hf); font-weight: 700; font-size: 1.05em;
  display: flex; align-items: center; gap: 0.5em; white-space: nowrap;
}
.m-brand::before {
  content: ""; width: 0.7em; height: 0.7em; border-radius: 50%;
  background: var(--m-acc); display: inline-block;
}
.m-navs { display: flex; gap: 0.7em; margin-left: auto; }
.m-navs i {
  width: 2.2em; height: 0.35em; border-radius: 99px;
  background: color-mix(in srgb, var(--m-ink) 22%, transparent);
}
.m-cta {
  font-family: var(--m-hf); font-weight: 600; font-size: 0.85em;
  background: var(--m-acc); color: var(--m-bg);
  padding: 0.45em 1em; border-radius: var(--m-r); white-space: nowrap;
}

.m-hero { padding: 1.4em 1.2em 1.1em; flex: none; }
.m-h1 {
  font-family: var(--m-hf); font-weight: 700; font-size: 1.75em;
  line-height: 1.15; letter-spacing: -0.01em; max-width: 16em;
}
.m-sub {
  font-size: 0.95em; margin-top: 0.5em; max-width: 30em;
  color: color-mix(in srgb, var(--m-ink) 72%, transparent);
}
.m-btn {
  display: inline-block; margin-top: 0.9em;
  font-family: var(--m-hf); font-weight: 600; font-size: 0.9em;
  background: var(--m-acc); color: var(--m-bg);
  padding: 0.55em 1.2em; border-radius: var(--m-r);
}
.m-btn--ghost {
  background: transparent; color: var(--m-ink);
  border: 1px solid color-mix(in srgb, var(--m-ink) 30%, transparent);
  margin-left: 0.5em;
}

.m-band { padding: 0 1.2em 1.2em; flex: 1; min-height: 0; }

/* mini footer — closes the composition; the "fold" line */
.m-band { overflow: hidden; }
.m-foot {
  flex: none; display: flex; align-items: center; gap: 0.8em;
  padding: 0.7em 1.2em;
  border-top: 1px solid color-mix(in srgb, var(--m-ink) 12%, transparent);
  margin-top: auto;
}
.m-foot i {
  width: 2.6em; height: 0.32em; border-radius: 99px;
  background: color-mix(in srgb, var(--m-ink) 16%, transparent);
}
.m-foot b {
  margin-left: auto; width: 0.55em; height: 0.55em; border-radius: 50%;
  background: var(--m-acc);
}

/* small plates carry less content */
.plate:not(.plate--lg) .m { font-size: 9.5px; }
.plate:not(.plate--lg) .plate__spec-row .spec { font-size: 11px; white-space: nowrap; }
.plate:not(.plate--lg) .m-opt { display: none; }
.plate:not(.plate--lg) .m-hero { padding: 1.1em 1.2em 0.9em; }
.plate:not(.plate--lg) .m-navs i:nth-child(n+2) { display: none; }

/* the mini top bar never wraps or clips its CTA */
.m-brand { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.m-top { min-width: 0; }

/* trade */
.m-emg {
  display: flex; align-items: center; gap: 0.6em;
  background: color-mix(in srgb, var(--m-acc) 12%, var(--m-bg));
  border: 1px solid color-mix(in srgb, var(--m-acc) 30%, transparent);
  border-radius: var(--m-r);
  padding: 0.55em 0.9em; font-size: 0.85em; font-weight: 600;
  font-family: var(--m-hf); margin-bottom: 0.9em;
}
.m-emg::before { content: ""; width: 0.6em; height: 0.6em; border-radius: 50%;
  background: var(--m-acc); animation: m-pulse 2s infinite; }
@keyframes m-pulse { 50% { opacity: .35; } }
.m-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7em; }
.m-card {
  border: 1px solid color-mix(in srgb, var(--m-ink) 13%, transparent);
  border-radius: var(--m-r); padding: 0.7em 0.8em;
}
.m-card b { font-family: var(--m-hf); font-size: 0.95em; display: block; }
.m-card span { font-size: 0.8em; color: color-mix(in srgb, var(--m-ink) 65%, transparent); }
.m-stars {
  margin-top: 0.8em; font-size: 0.85em;
  color: color-mix(in srgb, var(--m-ink) 75%, transparent);
}
.m-stars b { color: var(--m-acc); letter-spacing: 0.1em; }

/* practice */
.m-team { display: flex; gap: 0.5em; margin: 0.9em 0 0.7em; }
.m-team i {
  width: 2.1em; height: 2.1em; border-radius: 50%;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--m-acc) 55%, var(--m-bg)),
    color-mix(in srgb, var(--m-acc) 25%, var(--m-bg)));
  border: 2px solid var(--m-bg);
}
.m-cred {
  font-size: 0.78em; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--m-ink) 55%, transparent);
}

/* table (menu) */
.m-menu { border-top: 1px solid color-mix(in srgb, var(--m-ink) 15%, transparent); }
.m-dish {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1em;
  padding: 0.55em 0; font-size: 0.92em;
  border-bottom: 1px dashed color-mix(in srgb, var(--m-ink) 18%, transparent);
}
.m-dish b { font-weight: 500; }
.m-dish span { font-family: var(--m-hf); color: var(--m-acc); font-weight: 600; }

/* studio (timetable) */
.m-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6em; }
.m-slot {
  display: flex; justify-content: space-between; gap: 0.6em;
  border: 1px solid color-mix(in srgb, var(--m-ink) 14%, transparent);
  border-radius: var(--m-r); padding: 0.55em 0.8em; font-size: 0.85em;
}
.m-slot b { font-family: var(--m-hf); }
.m-slot span { color: var(--m-acc); font-weight: 600; font-family: var(--m-hf); }

/* stay (photo) */
.m-photo {
  border-radius: var(--m-r); height: 7.5em; margin-bottom: 0.9em;
  background: var(--m-photo, linear-gradient(160deg, #9cc, #367));
  position: relative; overflow: hidden;
}
.m-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.28));
}
.m-avail {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8em;
  border: 1px solid color-mix(in srgb, var(--m-ink) 15%, transparent);
  border-radius: var(--m-r); padding: 0.55em 0.8em; font-size: 0.85em;
}
.m-avail b { font-family: var(--m-hf); }
.m-avail .m-cta { font-size: 0.95em; }

/* shop (products) */
.m-prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7em; }
.m-prod i {
  display: block; aspect-ratio: 4 / 3; border-radius: var(--m-r);
  background: linear-gradient(145deg,
    color-mix(in srgb, var(--m-acc) 30%, var(--m-bg)),
    color-mix(in srgb, var(--m-acc) 12%, var(--m-bg)));
  margin-bottom: 0.4em;
}
.m-prod b { font-size: 0.8em; font-family: var(--m-hf); display: block; }
.m-prod span { font-size: 0.75em; color: var(--m-acc); font-weight: 600; }

/* firm (case rows) */
.m-case {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1em;
  padding: 0.6em 0; font-size: 0.9em;
  border-bottom: 1px solid color-mix(in srgb, var(--m-ink) 12%, transparent);
}
.m-case b { font-family: var(--m-hf); font-weight: 600; }
.m-case span { color: color-mix(in srgb, var(--m-ink) 60%, transparent); font-size: 0.88em; white-space: nowrap; }

/* gathering */
.m-date {
  display: inline-block; font-family: var(--m-hf); font-weight: 700;
  font-size: 0.8em; letter-spacing: 0.1em;
  background: color-mix(in srgb, var(--m-acc) 14%, var(--m-bg));
  color: var(--m-acc);
  border-radius: var(--m-r); padding: 0.35em 0.8em; margin-bottom: 0.7em;
}
.m-people { display: flex; align-items: center; margin-top: 0.9em; }
.m-people i {
  width: 2em; height: 2em; border-radius: 50%;
  border: 2px solid var(--m-bg); margin-right: -0.6em;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--m-acc) 60%, var(--m-bg)),
    color-mix(in srgb, var(--m-acc) 22%, var(--m-bg)));
}
.m-people i:nth-child(2n) {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--m-ink) 45%, var(--m-bg)),
    color-mix(in srgb, var(--m-ink) 20%, var(--m-bg)));
}
.m-people b {
  margin-left: 1.4em; font-size: 0.85em; font-family: var(--m-hf);
  color: color-mix(in srgb, var(--m-ink) 70%, transparent); font-weight: 500;
}

/* ---------- collection grids ---------- */

.collection {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.showroom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px;
}

/* ---------- steps ---------- */

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  counter-reset: step; list-style: none;
}
.steps li { counter-increment: step; }
.steps .no-stamp { display: block; margin-bottom: 12px; }
.steps h3 { font-size: 21px; margin-bottom: 8px; }
.steps p { font-size: 16.5px; color: var(--muted); }

/* ---------- promise strip ---------- */

.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.promise { display: flex; gap: 16px; align-items: flex-start; }
.promise__seal {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--brass); color: var(--brass);
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 15px;
}
.promise h3 { font-size: 19px; margin-bottom: 4px; }
.promise p { font-size: 16px; color: var(--muted); }

/* ---------- filter chips (designs page) ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip {
  font-family: var(--f-display); font-weight: 500; font-size: 14.5px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 99px; padding: 7px 15px; cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.chip:hover { border-color: var(--viridian); }
.chip[aria-pressed="true"] { background: var(--viridian); border-color: var(--viridian); color: var(--paper); }

.plate.is-dim { opacity: .3; }
.plate.is-hit { box-shadow: 0 0 0 2px var(--viridian), 0 18px 44px -18px rgba(23,32,31,.25); }
.plate { transition: box-shadow .25s ease, opacity .3s ease; }

/* ---------- pricing ---------- */

.trims { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.trim {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 38px 36px;
}
.trim--full { border-color: var(--viridian); box-shadow: 0 14px 40px -22px rgba(24,92,76,.35); }
.trim .price {
  font-family: var(--f-display); font-weight: 700; font-size: 46px;
  letter-spacing: -0.02em; margin: 10px 0 4px;
}
.trim h3 { font-size: 24px; }
.trim ul { list-style: none; margin-top: 20px; }
.trim li {
  padding: 9px 0 9px 26px; font-size: 16.5px;
  border-bottom: 1px solid var(--sunk); position: relative;
}
.trim li::before {
  content: "—"; position: absolute; left: 0; color: var(--viridian);
}

.care { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.care__tier {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px 28px;
}
.care__tier .price { font-family: var(--f-display); font-weight: 700; font-size: 32px; }
.care__tier .price small { font-family: var(--f-body); font-weight: 400; font-size: 16px; color: var(--muted); }
.care__tier h3 { font-size: 20px; margin-bottom: 6px; }
.care__tier p { font-size: 16px; color: var(--muted); margin-top: 12px; }

/* ---------- services board ---------- */

.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.job {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px; display: flex; flex-direction: column;
}
.job h3 { font-size: 21px; margin-bottom: 8px; }
.job > p { font-size: 16px; color: var(--muted); }
.job__spec {
  margin-top: auto; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-top: 1px solid var(--sunk);
}
.job__price { font-family: var(--f-display); font-weight: 700; font-size: 22px; white-space: nowrap; }
.job__price small { font-family: var(--f-mono); font-weight: 400; font-size: 11px; letter-spacing: .08em; color: var(--muted); display: block; }
.tag--oncall {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em;
  color: var(--viridian); border: 1px solid color-mix(in srgb, var(--viridian) 35%, transparent);
  border-radius: 99px; padding: 4px 10px; text-transform: uppercase; white-space: nowrap;
}

/* ---------- contact block ---------- */

.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact__ways { display: flex; flex-direction: column; gap: 14px; }
.contact__way {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); background: #fff; border-radius: 10px;
  padding: 18px 20px; text-decoration: none;
  transition: border-color .18s ease;
}
.contact__way:hover { border-color: var(--viridian); }
.contact__way .promise__seal { width: 34px; height: 34px; font-size: 13px; }
.contact__way b { font-family: var(--f-display); font-size: 17px; display: block; }
.contact__way span { font-size: 15px; color: var(--muted); }

.form { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px 28px; }
.form label {
  display: block; font-family: var(--f-mono); font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin: 18px 0 7px;
}
.form label:first-of-type { margin-top: 0; }
.form input, .form textarea {
  width: 100%; font-family: var(--f-body); font-size: 17px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: 12px 14px;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--viridian); outline-offset: 0; border-color: transparent; }
.form button { margin-top: 22px; width: 100%; }

@media (max-width: 1020px) {
  .board { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .board { grid-template-columns: 1fr; }
}

.custom-line {
  margin-top: 56px; padding: 30px 36px;
  border: 1px dashed var(--brass); border-radius: 10px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.custom-line p { color: var(--muted); max-width: 40em; }
.custom-line h3 { font-size: 21px; margin-bottom: 6px; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line); background: var(--sunk);
  padding: 64px 0 40px; margin-top: 0;
}
.foot__grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot__brand p { color: var(--muted); font-size: 16px; max-width: 22em; margin-top: 8px; }
.foot__cols { display: flex; gap: 64px; }
.foot__cols h4 {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 400;
}
.foot__cols ul { list-style: none; }
.foot__cols li { margin-bottom: 8px; }
.foot__cols a { text-decoration: none; font-size: 16px; color: var(--ink); }
.foot__cols a:hover { color: var(--viridian); }
.foot__legal {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- reveals ---------- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- toast ---------- */

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(8px);
  background: var(--ink); color: var(--paper);
  font-family: var(--f-display); font-size: 15px;
  padding: 12px 22px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
  z-index: 100; max-width: min(90vw, 480px); text-align: center;
}
.toast.is-on { opacity: 1; transform: translateX(-50%); }

/* ---------- stub pages ---------- */

.stub { padding: 120px 0 140px; }
.stub .lede { margin-top: 14px; }
.stub ul { margin: 28px 0 40px 0; list-style: none; max-width: 34em; }
.stub li {
  padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line);
  position: relative; color: var(--muted); font-size: 17px;
}
.stub li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }

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

@media (max-width: 1020px) {
  .collection { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .promises { grid-template-columns: 1fr; }
  .care { grid-template-columns: 1fr; }
  .trims { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { font-size: clamp(38px, 9vw, 52px); }
  .showroom { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .top nav { gap: 16px; }
  .top nav a { font-size: 14px; }
  .top .btn { display: none; }
}

@media (max-width: 600px) {
  .collection { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  body { font-size: 17.5px; }
  .custom-line { flex-direction: column; align-items: flex-start; }
  .brand { font-size: 17px; }
  .brand small { display: none; }
  .top .wrap { padding: 0 14px; }
  .top__inner { height: 56px; gap: 10px; }
  .top nav { gap: 10px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .top nav::-webkit-scrollbar { display: none; }
  .top nav a { font-size: 12.5px; white-space: nowrap; }
  .plate--lg .m { font-size: 10px; }
  .hero { padding-top: 56px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .m, .m *, .plate, .btn, .swatch { transition: none !important; }
  .m-emg::before { animation: none; }
}
