/* ─────────────────────────────────────────────
   Bennett Street Watches: design tokens
   Beige · Black · White
   ───────────────────────────────────────────── */
:root {
  color-scheme: light;
  --linen: #F4EFE7;       /* page ground */
  --sand: #E9E0D2;        /* alternate section */
  --stone: #D6C9B4;       /* stronger beige */
  --ivory: #FBF9F5;       /* image tiles, cards */
  --white: #FFFFFF;
  --ink: #111111;         /* black */
  --ink-2: #2B2825;
  --muted: #6F675C;
  --line: #E0D6C6;
  --line-strong: #CDBFA8;
  --accent: #8F7759;      /* warm tan, used sparingly */
  --ok: #3F6A4B;
  --ok-bg: #E4ECE3;
  --danger: #9A3324;

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --radius: 4px;
  --shadow: 0 1px 2px rgba(40, 30, 15, .05), 0 8px 24px -12px rgba(40, 30, 15, .18);
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font: 400 15px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: var(--white); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
main { outline: none; min-height: 60vh; }

/* ── Type ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(42px, 5.6vw, 76px); }
h2 { font-size: clamp(32px, 3.6vw, 46px); }
h3 { font-size: 24px; }
.eyebrow {
  font: 600 11px/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.lede { font-size: 17px; color: var(--ink-2); max-width: 520px; }
.muted { color: var(--muted); }
.serif-italic { font-family: var(--serif); font-style: italic; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 46px; padding: 0 22px;
  border: 1px solid var(--ink); border-radius: var(--radius);
  font: 600 14px/1 var(--sans); letter-spacing: .01em;
  text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
  background: transparent; color: var(--ink); white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; border-color: #2a2a2a; }
.btn-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn:disabled { opacity: .55; cursor: progress; }
.btn-block { width: 100%; white-space: normal; text-align: center; height: auto; min-height: 48px; padding-top: 12px; padding-bottom: 12px; line-height: 1.35; }
/* grid children may shrink below their content width (prevents long buttons from widening the page) */
.hero-grid > *, .detail > *, .form-layout > *, .rd > *, .band > *, .how > *, .footer-grid > * { min-width: 0; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.link-btn { background: none; border: 0; padding: 0; cursor: pointer; text-align: left; }
.text-link { font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.text-link:hover { border-color: var(--ink); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid #000;
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.header-inner .site-nav { margin-left: auto; }
.wordmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1; }
.wm-text { display: flex; flex-direction: column; align-items: flex-start; }
.wm-mark { flex: none; color: var(--ink); }
.site-header .wm-mark, .wordmark-light .wm-mark { color: var(--sand); }
.wm-main { font: 600 23px/1 var(--serif); letter-spacing: .02em; }
.wm-sub { font: 600 9.5px/1 var(--sans); letter-spacing: .5em; text-transform: uppercase; color: var(--accent); margin-top: 5px; padding-left: 1px; }
.wordmark-light .wm-main, .site-header .wm-main { color: var(--white); }
.wordmark-light .wm-sub, .site-header .wm-sub { color: var(--stone); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a:not(.btn) {
  font-size: 14px; font-weight: 500; text-decoration: none;
  color: #CFC6B8; padding: 6px 0; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s;
}
.site-nav a:not(.btn):hover, .site-nav a.active { border-color: var(--stone); color: var(--white); }
.site-header .btn-dark { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.site-header .btn-dark:hover { background: var(--white); border-color: var(--white); }
.site-header :focus-visible { outline-color: var(--stone); }
.menu-btn { display: none; width: 40px; height: 40px; border: 0; background: none; cursor: pointer; padding: 10px 8px; }
.menu-btn span { display: block; height: 1.5px; background: var(--white); margin: 6px 0; transition: transform .2s; }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ── Watch visuals ── */
.visual { position: relative; background: var(--sand); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--zoom, 1)) rotate(var(--rotation, 0deg)); transform-origin: center; }
.visual.is-type { background: var(--ink); color: var(--white); text-align: center; padding: 12%; }
.visual.is-type span { display: block; font: 600 10px/1.2 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; }
.visual.is-type strong { display: block; font: 500 clamp(18px, 2.4vw, 34px)/1.1 var(--serif); }
.req .visual.is-type { padding: 8px; }
.req .visual.is-type span { font-size: 7.5px; letter-spacing: .2em; margin-bottom: 6px; }
.req .visual.is-type strong { font-size: 17px; }
.credit { font-size: 11.5px; color: var(--muted); margin-top: 10px; }
.credit a { color: var(--muted); }

/* ── Hero ── */
.hero { padding: 52px 0 64px; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(42px, 4.7vw, 66px); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lede { margin: 0 0 28px; max-width: 470px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual .visual { aspect-ratio: 1 / 1; border-radius: 2px; background: var(--ivory); box-shadow: var(--shadow); }
.hero-card {
  display: block; color: inherit;
  width: 100%; margin-top: 14px; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 20px;
}
.hero-card .tag { margin-bottom: 10px; }
.hero-card h4 { margin: 0 0 2px; font: 500 20px/1.2 var(--serif); }
.hero-card .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.hero-card .row strong { color: var(--ink); font-weight: 600; }
/* ── Sections ── */
.section { padding: 68px 0; }
.section-sand { background: var(--sand); }
.section-ink { background: var(--ink); color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; }
.section-head p { margin: 14px 0 0; }

.how-strip { background: var(--ivory); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { display: flex; gap: 16px; align-items: flex-start; padding: 28px 20px; }
.step:first-child { padding-left: 0; }
.step + .step { border-left: 1px solid var(--line); }
.step-num { font: italic 500 22px/1.2 var(--serif); color: var(--accent); }
.step h3 { font-size: 23px; margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }
.hero-seller { display: block; margin-top: 24px; font-size: 12px; color: var(--muted); text-decoration: none; }
.hero-seller span { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.hero-card-meta { font-size: 12px; color: var(--muted); }
.hero-card-action { display: block; font-size: 12px; font-weight: 500; margin-top: 12px; }
.custom-prompt, .catalog-note { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--muted); }
.custom-prompt { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line-strong); }
.custom-prompt a, .catalog-note a { color: var(--ink); }
.catalog-note { margin: -12px 0 28px; }
.catalog-grid { padding-bottom: 68px; }
.seller-band { padding: 48px 0; }
.seller-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.seller-band .eyebrow { color: var(--stone); }
.seller-band h2 { font-size: clamp(32px, 3.3vw, 44px); }
.seller-band p:last-child { color: #CFC6B8; font-size: 14px; margin-bottom: 0; }

/* ── Watch cards / grid ── */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { min-width: 0; display: flex; flex-direction: column; }
.card-image-link { display: block; position: relative; }
.card .visual { aspect-ratio: 1 / 1; border-radius: 2px; background: var(--ivory); transition: box-shadow .25s; }
.card .visual img { transition: transform .4s; }
.card-image-link:hover .visual { box-shadow: var(--shadow); }
.card-image-link:hover img { transform: scale(calc(var(--zoom, 1) * 1.025)) rotate(var(--rotation, 0deg)); }
.photo-label { position: absolute; left: 10px; bottom: 10px; padding: 5px 7px; background: rgba(251,249,245,.94); color: var(--ink-2); font-size: 10px; line-height: 1.2; border-radius: 2px; }
.card-body { padding: 18px 0 0; display: flex; flex-direction: column; flex: 1; }
.card-brand { font: 600 10.5px/1.3 var(--sans); letter-spacing: .17em; text-transform: uppercase; color: var(--accent); }
.card-title { font: 500 23px/1.15 var(--serif); margin: 8px 0; }
.card-title a { text-decoration: none; }
.card-title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.card-spec { font-size: 13px; color: var(--ink-2); margin-bottom: 3px; }
.card-meta { font-size: 12px; color: var(--muted); margin-bottom: 16px; overflow-wrap: anywhere; }
.card-foot { margin-top: auto; border-top: 1px solid var(--line-strong); padding-top: 12px; }
.card-request { display: flex; justify-content: space-between; align-items: center; gap: 8px; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s, background .2s; }
.card-request:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── Page header ── */
.page-head { padding: 60px 0 36px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(40px, 4.4vw, 58px); }
.page-head p { margin: 14px 0 0; }
.crumbs { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; letter-spacing: .02em; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ── Toolbar / filters ── */
.toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); margin-bottom: 36px; position: sticky; top: 72px; background: rgba(244,239,231,.94); backdrop-filter: blur(10px); z-index: 10; }
.search { position: relative; flex: 1 1 260px; max-width: 360px; }
.search input { width: 100%; height: 42px; padding: 0 14px 0 38px; border: 1px solid var(--line-strong); background: var(--white); border-radius: var(--radius); }
.search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.seg { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.seg button { border: 0; background: none; padding: 0 16px; height: 40px; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--ink-2); white-space: nowrap; }
.seg button + button { border-left: 1px solid var(--line); }
.seg button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.select { height: 42px; padding: 0 34px 0 14px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23111' fill='none' stroke-width='1.3'/%3E%3C/svg%3E") no-repeat right 13px center; appearance: none; -webkit-appearance: none; font-size: 13.5px; cursor: pointer; }
.toolbar .count { margin-left: auto; font-size: 13px; color: var(--muted); }
.empty { text-align: center; padding: 80px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.empty h3 { margin-bottom: 10px; }
.empty p { color: var(--muted); margin: 0 0 22px; }

/* ── Detail page ── */
.detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; padding: 44px 0 90px; align-items: start; }
.detail .visual { aspect-ratio: 1 / 1; border-radius: 2px; }
.detail-info .eyebrow { margin-bottom: 14px; }
.detail-info h1 { font-size: clamp(38px, 4vw, 54px); margin-bottom: 10px; }
.detail-ref { font-size: 14px; color: var(--muted); letter-spacing: .04em; }
.detail-price { display: flex; align-items: baseline; gap: 10px; margin: 28px 0 6px; }
.detail-price strong { font: 500 36px/1 var(--serif); }
.detail-price span { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.detail-note { font-size: 13px; color: var(--muted); margin: 0 0 30px; }
.detail-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.specs { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs th, .specs td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { font-weight: 500; color: var(--muted); width: 42%; }
.specs-title { font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; margin: 0 0 6px; padding-bottom: 14px; border-bottom: 1px solid var(--ink); }
.demand { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); font-size: 13.5px; margin-bottom: 28px; }
.demand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px var(--ok-bg); flex: none; }

/* ── Forms ── */
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; padding: 44px 0 96px; align-items: start; }
.summary { position: sticky; top: 110px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.summary .visual { aspect-ratio: 1 / 1; }
.summary-body { padding: 22px 24px 24px; }
.summary-body h3 { font-size: 26px; margin: 8px 0 4px; }
.summary-body dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 18px 0 0; font-size: 13.5px; }
.summary-body dt { color: var(--muted); }
.summary-body dd { margin: 0; text-align: right; }
.summary-change { display: inline-block; margin-top: 18px; font-size: 13px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.form-card h2 { font-size: 34px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin: 0 0 30px; }
fieldset { border: 0; padding: 0; margin: 0 0 30px; }
legend { font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; padding: 0 0 14px; margin-bottom: 20px; border-bottom: 1px solid var(--line); width: 100%; }
.field { margin-bottom: 20px; }
.field label, .field .label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.field input[type=text], .field input[type=email], .field input[type=number], .field select, .field textarea {
  width: 100%; height: 46px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--ivory);
  transition: border-color .2s, background .2s;
}
.field textarea { height: auto; min-height: 104px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; background: var(--ivory) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23111' fill='none' stroke-width='1.3'/%3E%3C/svg%3E") no-repeat right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--white); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field .err { color: var(--danger); font-size: 12px; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.money { position: relative; }
.money span { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.money input { padding-left: 28px !important; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label { margin: 0; padding: 0 16px; height: 40px; display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 40px; font-size: 13.5px; font-weight: 400; cursor: pointer; background: var(--ivory); transition: all .15s; }
.pills input:checked + label { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pills input:focus-visible + label { outline: 2px solid var(--ink); outline-offset: 2px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 10px; padding-top: 26px; border-top: 1px solid var(--line); }
.form-foot p { font-size: 12.5px; color: var(--muted); margin: 0; max-width: 330px; }

/* ── Requests board ── */
.req-list { display: flex; flex-direction: column; gap: 14px; }
.req {
  display: grid; grid-template-columns: 112px 1fr auto; gap: 26px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 24px 16px 16px;
  text-decoration: none; transition: border-color .2s, box-shadow .2s;
}
.req:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.req .visual { width: 112px; height: 112px; border-radius: 2px; }
.req-title { font: 500 23px/1.15 var(--serif); margin: 8px 0 4px; }
.req-facts { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; color: var(--muted); margin-top: 8px; }
.req-facts b { color: var(--ink); font-weight: 500; }
.req-side { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.req-budget small { display: block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.req-budget strong { font: 500 28px/1.1 var(--serif); }
.tag { display: inline-flex; align-items: center; gap: 6px; height: 22px; padding: 0 9px; border-radius: 2px; font: 600 10px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; background: var(--sand); color: var(--ink-2); }
.tag-wanted { background: var(--ink); color: var(--white); }
.tag-ok { background: var(--ok-bg); color: var(--ok); }
.tag-mine { background: transparent; border: 1px solid var(--line-strong); color: var(--muted); }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.offers-count { font-size: 12.5px; color: var(--muted); }

/* ── Request detail ── */
.rd { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 44px 0 96px; align-items: start; }
.rd-main .visual { aspect-ratio: 16 / 11; border-radius: 2px; margin-bottom: 24px; }
.rd h1 { font-size: clamp(36px, 3.6vw, 50px); margin: 12px 0 8px; }
.banner { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--ok-bg); color: var(--ok); border-radius: var(--radius); margin: 28px 0 0; font-size: 14px; }
.banner strong { display: block; color: #2c4d35; }
.facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); margin-top: 26px; }
.facts div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.facts div:nth-child(odd) { padding-right: 16px; }
.facts dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.facts dd { margin: 0; font-weight: 500; }
.notes { margin-top: 24px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); font-size: 14.5px; }
.notes h4 { margin: 0 0 6px; font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.notes p { margin: 0; white-space: pre-wrap; }
.offers h2 { font-size: 34px; }
.offer { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-top: 12px; }
.offer.accepted { border-color: var(--ok); box-shadow: 0 0 0 1px var(--ok); }
.offer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.offer-dealer { font-weight: 600; }
.offer-dealer small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.offer-price { font: 500 26px/1 var(--serif); white-space: nowrap; }
.offer-price small { display: block; font: 400 11.5px/1.4 var(--sans); color: var(--muted); text-align: right; margin-top: 4px; }
.offer .req-facts { margin-top: 12px; }
.offer p { margin: 12px 0 0; font-size: 14px; color: var(--ink-2); }
.offer-actions { margin-top: 14px; display: flex; gap: 10px; align-items: center; }
.contact-reveal { margin-top: 14px; padding: 12px 14px; background: var(--ok-bg); border-radius: var(--radius); font-size: 13.5px; color: #2c4d35; }
.no-offers { padding: 28px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--muted); margin-top: 12px; font-size: 14px; }
.offer-form { margin-top: 32px; }
.offer-form .form-card { padding: 30px; }
.offer-form .form-card h3 { font-size: 28px; margin-bottom: 4px; }
.owner-bar { display: flex; gap: 10px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.offer-photos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.offer-photos img { width: 96px; height: 96px; object-fit: cover; border-radius: var(--radius); }
.review-photo { max-width: 260px; max-height: 260px; object-fit: contain; }
.account-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-top: 48px; padding-bottom: 96px; }
.account-grid .form-card { min-width: 0; }
.alert-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 14px; }
.alert-row p { color: var(--muted); margin: 6px 0; }
@media (max-width: 700px) { .account-grid { grid-template-columns: 1fr; } }

/* ── Dealer band ── */
.band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.band h2 { color: var(--white); }
.band p { color: #BDB4A6; max-width: 520px; }
.band-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #333; }
.band-list li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid #333; font-size: 14px; }
.band-list li span { color: #BDB4A6; }
.band-list li b { font-weight: 500; }

/* ── How it works page ── */
.how { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px 0 96px; }
.how-col h2 { margin-bottom: 26px; }
.how-list { list-style: none; counter-reset: s; margin: 0; padding: 0; }
.how-list li { counter-increment: s; position: relative; padding: 22px 0 22px 58px; border-top: 1px solid var(--line); }
.how-list li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: 22px; font: italic 500 22px/1 var(--serif); color: var(--accent); }
.how-list h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.how-list p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* ── Credits ── */
.credits { padding: 44px 0 96px; }
.credit-row { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.credit-row .visual { width: 96px; height: 96px; }
.credit-row p { margin: 4px 0 0; font-size: 13.5px; color: var(--muted); }

/* ── Footer ── */
.site-footer { background: var(--ink); color: #CFC6B8; padding: 72px 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid #2c2c2c; }
.footer-grid h4 { font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin: 6px 0 18px; }
.footer-grid a:not(.wordmark), .footer-grid .link-btn { display: block; text-decoration: none; font-size: 14px; margin-bottom: 10px; color: #CFC6B8; }
.footer-grid a:not(.wordmark):hover, .footer-grid .link-btn:hover { color: var(--white); }
.footer-blurb { max-width: 320px; font-size: 14px; margin-top: 20px; }
.footer-legal { padding-top: 24px; font-size: 12px; color: #8E867A; display: flex; justify-content: space-between; gap: 40px; }
.footer-legal p { margin: 0; max-width: 760px; }

/* ── Toast ── */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); background: var(--ink); color: var(--white); padding: 14px 22px; border-radius: var(--radius); font-size: 14px; opacity: 0; pointer-events: none; transition: all .3s; z-index: 100; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Motion ── */
.fade-in { animation: fadeIn .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .wrap { padding: 0 20px; }
  .menu-btn { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid #000; padding: 8px 20px 20px; display: none; }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 16px 0; border-bottom: 1px solid #2c2c2c; }
  .site-nav .btn { margin-top: 16px; height: 46px; }
  .hero { padding: 40px 0 64px; }
  .hero-grid, .detail, .form-layout, .rd, .band, .how { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { width: 100%; max-width: 460px; margin: 0 auto; }
  .hero-visual .visual { aspect-ratio: 4 / 3; }
  .hero-copy { max-width: 600px; }
  .desktop-break { display: none; }
  .custom-prompt, .catalog-note, .seller-band .wrap { align-items: flex-start; flex-direction: column; }
  .grid, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 18px 0; border-left: 0; border-bottom: 1px solid var(--line-strong); }
  .section { padding: 48px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .summary { position: static; }
  .form-card { padding: 26px 20px; }
  .req { grid-template-columns: 84px 1fr; gap: 16px; padding: 14px; }
  .req .visual { width: 84px; height: 84px; }
  .req-side { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; padding-top: 12px; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { flex-direction: column; gap: 12px; }
  .toolbar { position: static; }
  .seg { max-width: 100%; overflow-x: auto; scrollbar-width: none; }
  .seg::-webkit-scrollbar { display: none; }
  .seg button { flex: none; }
  .toolbar .search { max-width: none; }
  .toolbar .select { flex: 1 1 40%; }
  .toolbar .count { margin-left: 0; width: 100%; }
}
@media (max-width: 520px) {
  .hero { padding: 32px 0 36px; }
  .hero-grid { gap: 28px; }
  .hero h1 { font-size: 43px; }
  .hero .eyebrow { font-size: 9px; letter-spacing: .17em; }
  .hero .lede { font-size: 15px; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; white-space: normal; letter-spacing: .04em; }
  .hero-seller { line-height: 1.9; margin-top: 16px; }
  .hero-seller span { display: inline-block; }
  .hero-visual .visual { aspect-ratio: 3 / 2; }
  .hero-card { padding: 14px 16px; }
  .card-brand { font-size: 9px; letter-spacing: .1em; }
  .card-spec, .card-meta { font-size: 11px; }
  .card-request { font-size: 11px; padding: 8px; gap: 3px; }
  .photo-label { font-size: 8px; left: 6px; bottom: 6px; padding: 4px; }
  .page-head { padding: 32px 0 24px; }
  .page-head h1 { font-size: 38px; }
  .toolbar .search { flex-basis: 100%; }
  .catalog-note { font-size: 12px; }
  .section-head { margin-bottom: 24px; }
  .seller-band .btn { white-space: normal; }

  .card-title { font-size: 19px; }
  .row-2 { grid-template-columns: 1fr; }

  .form-foot { flex-direction: column; align-items: stretch; }
}

/* ─────────────────────────────────────────────
   Redesign: home, requests board, request page
   ───────────────────────────────────────────── */
.num { font-family: var(--serif); font-weight: 600; font-variant-numeric: lining-nums tabular-nums; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .02em; color: var(--muted); }
.lbl { font: 600 11px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.first { color: var(--ok) !important; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 12px; line-height: 1.4; padding: 3px 8px; border-radius: 3px; background: var(--linen); border: 1px solid var(--line); color: var(--ink-2); white-space: nowrap; }
.chip-ready { background: var(--ok-bg); border-color: #C9D8C8; color: var(--ok); font-weight: 600; }
.chip-warn { background: #F6EEDC; border-color: #E6D5AE; color: #7A5B1E; font-weight: 600; }
.thumb { width: var(--s); height: var(--s); flex: none; display: block; border-radius: 6px; overflow: hidden; background: var(--sand); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-dial { background: none; border-radius: 50%; }
.thumb.is-dial svg { display: block; width: 100%; height: 100%; }

/* header account area */
.nav-account { display: flex; align-items: center; gap: 12px; }
.nav-signin { color: #CFC6B8; font-size: 14px; font-weight: 500; text-decoration: none; }
.nav-signin:hover { color: var(--white); }
.nav-bell { position: relative; width: 38px; height: 38px; border-radius: 50%; border: 1px solid #2c2a27; display: grid; place-items: center; color: var(--white); }
.nav-bell i { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--sand); color: var(--ink); font: 600 11px/18px var(--sans); font-style: normal; text-align: center; }
.nav-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--white); display: grid; place-items: center; font-weight: 600; font-size: 13px; text-decoration: none; }

/* home */
.home-hero { padding: 56px 0 64px; }
.home-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.home-grid > * { min-width: 0; }
.kicker { font-size: 14px; color: var(--accent); font-weight: 500; margin: 0 0 18px; }
.home-hero h1 { font-size: clamp(44px, 5.4vw, 74px); line-height: 1.02; }
.home-hero h1 em { color: var(--accent); font-style: italic; }
.home-hero .lede { font-size: 18px; max-width: 30em; margin: 22px 0 32px; }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.path { display: flex; flex-direction: column; gap: 10px; padding: 22px; background: var(--ivory); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; transition: border-color .15s, transform .15s; }
.path:hover { border-color: var(--ink); transform: translateY(-2px); }
.path .lbl { color: var(--muted); }
.path h3 { font-size: 24px; }
.path p { margin: 0; color: var(--muted); font-size: 14px; }
.path .go { margin-top: auto; font-weight: 600; font-size: 14px; }
.path-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.path-dark p, .path-dark .lbl { color: #A99F90; }
.home-explore { margin: 22px 0 0; font-size: 14px; color: var(--muted); }
.live-board { background: var(--ink); color: var(--linen); border-radius: 8px; padding: 22px 22px 14px; }
.live-top { display: flex; align-items: center; gap: 10px; }
.live-top .lbl { color: #A99F90; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #7FB08C; flex: none; animation: livePulse 2.4s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(127,176,140,.6); } 70%, 100% { box-shadow: 0 0 0 8px rgba(127,176,140,0); } }
.live-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 6px; padding-bottom: 18px; border-bottom: 1px solid #2c2a27; }
.live-stats b { display: block; font-size: 30px; line-height: 1; }
.live-stats small { color: #A99F90; font-size: 12px; }
.feed { list-style: none; margin: 0; padding: 0; }
.feed li { border-bottom: 1px solid #2c2a27; }
.feed li:last-child { border-bottom: 0; }
.feed a { display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; text-decoration: none; }
.feed a > span:nth-child(2) { min-width: 0; }
.feed-model { display: block; font: 500 19px/1.15 var(--serif); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed .mono { color: #A99F90; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed-amt { text-align: right; font-size: 20px; }
.feed-amt small { display: block; font: 400 12px var(--sans); color: #A99F90; }
.live-empty { padding: 28px 0; text-align: center; color: #A99F90; }
.live-foot { display: flex; justify-content: space-between; padding-top: 12px; font-size: 13px; color: #A99F90; }
.live-foot a { color: var(--linen); font-weight: 600; text-decoration: none; }
.sec { padding: 64px 0; }
.sec-sand { background: var(--sand); }
.sec-ivory { background: var(--ivory); border-block: 1px solid var(--line); }
.sec-ink { background: var(--ink); color: var(--linen); }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 12px 24px; margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(32px, 3.4vw, 44px); }
.sec-head p { margin: 8px 0 0; color: var(--muted); max-width: 42em; }
.brand-demand { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.brand-card { display: flex; flex-direction: column; gap: 6px; padding: 18px; background: var(--ivory); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; }
.brand-card:hover { border-color: var(--ink); }
.brand-card h3 { font-size: 22px; }
.brand-card .num { font-size: 26px; }
.brand-card small { color: var(--muted); }
.bar { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.bar i { display: block; height: 100%; background: var(--accent); }
.journey { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; counter-reset: j; }
.journey li { counter-increment: j; position: relative; padding-right: 16px; }
.journey li::before { content: counter(j); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--line-strong); font: 600 17px var(--serif); font-variant-numeric: lining-nums; position: relative; z-index: 1; }
.journey li::after { content: ""; position: absolute; top: 20px; left: 40px; right: 0; height: 1px; background: var(--line-strong); }
.journey li:last-child::after { display: none; }
.journey li.hl::before { background: var(--ink); color: var(--white); border-color: var(--ink); }
.journey b { display: block; margin: 16px 0 6px; font-weight: 600; }
.journey span { font-size: 14px; color: var(--muted); display: block; }
.journey em { display: inline-block; margin-top: 8px; font: 600 11px/1.2 var(--sans); font-style: normal; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.trust div { background: var(--ivory); padding: 22px; }
.trust svg { color: var(--accent); }
.trust b { display: block; margin: 12px 0 6px; font-weight: 600; }
.trust p { margin: 0; font-size: 14px; color: var(--muted); }
.dealer-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.dealer-band > * { min-width: 0; }
.dealer-band .lbl { color: #A99F90; margin: 0 0 14px; }
.dealer-band h2 { font-size: clamp(32px, 3.4vw, 46px); color: var(--white); }
.dealer-band p { color: #A99F90; max-width: 32em; margin: 16px 0 26px; }
.notif-card { display: grid; gap: 14px; background: var(--ivory); color: var(--ink); border-radius: 8px; padding: 18px; text-decoration: none; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.notif-top { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); }
.notif-top b { color: var(--ink); }
.notif-body { display: grid; grid-template-columns: 60px 1fr auto; gap: 16px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.notif-body > span:nth-child(2) { display: grid; gap: 6px; min-width: 0; }
.notif-model { font: 500 22px/1.1 var(--serif); }
.notif-body > .num { font-size: 24px; }

/* requests board */
.rq-head { padding: 40px 0 20px; }
.rq-head h1 { font-size: clamp(40px, 4.4vw, 58px); }
.rq-head p { color: var(--muted); margin: 10px 0 0; max-width: 46em; }
.tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 4px; margin-top: 20px; background: var(--sand); border-radius: 6px; width: fit-content; max-width: 100%; }
.tabs button { border: 0; background: transparent; padding: 8px 14px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; color: var(--muted); }
.tabs button[aria-selected="true"] { background: var(--ivory); color: var(--ink); box-shadow: 0 1px 2px rgba(40,30,15,.12); }
.rq-toolbar { position: sticky; top: 72px; z-index: 10; background: rgba(244,239,231,.96); backdrop-filter: blur(8px); border-block: 1px solid var(--line); }
.rq-toolbar .wrap { display: flex; gap: 10px; align-items: center; padding-block: 12px; }
.rq-search { flex: 1; display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--muted); }
.rq-search input { border: 0; outline: 0; background: transparent; width: 100%; font-size: 15px; color: var(--ink); }
.rq-toolbar .select { height: 44px; }
.rq-filters-btn { display: none; }
.rq-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 32px; padding-top: 24px; padding-bottom: 72px; }
.rq-side { display: grid; gap: 26px; align-content: start; position: sticky; top: 150px; }
.rq-side fieldset { margin: 0; display: grid; gap: 8px; }
.rq-side legend { border: 0; padding: 0; margin-bottom: 10px; width: auto; }
.opt { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.opt input { accent-color: var(--ink); width: 16px; height: 16px; }
.opt em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.pill-seg { display: flex; flex-wrap: wrap; gap: 6px; }
.pill-seg button { padding: 7px 11px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; font-size: 13px; cursor: pointer; }
.pill-seg button[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; cursor: pointer; }
.toggle input { appearance: none; -webkit-appearance: none; width: 38px; height: 22px; margin: 0; border-radius: 11px; background: var(--stone); position: relative; cursor: pointer; transition: background .15s; flex: none; }
.toggle input::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); transition: transform .15s; }
.toggle input:checked { background: var(--ok); }
.toggle input:checked::after { transform: translateX(16px); }
.rq-drawer-head { display: none; }
.rq-alert { display: grid; gap: 10px; padding: 16px; background: var(--ivory); border: 1px solid var(--line); border-radius: 6px; font-size: 13px; color: var(--muted); }
.rq-alert b { color: var(--ink); font-size: 14px; }
.rq-alert .btn { justify-self: start; }
.rq-active { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; min-height: 32px; margin-bottom: 12px; font-size: 13px; color: var(--muted); }
.rq-active b { color: var(--ink); }
.rq-active button { border: 1px solid var(--line-strong); background: var(--ivory); border-radius: 999px; padding: 4px 10px; font-size: 12px; cursor: pointer; }
.rq-active .rq-clear { border: 0; background: none; text-decoration: underline; color: var(--ink); }
.rq-rows { display: grid; gap: 8px; }
.rq-rows[aria-busy="true"] { opacity: .5; transition: opacity .2s; }
.rq-mine { padding-top: 20px; padding-bottom: 72px; }
.rq-loading { padding: 32px; color: var(--muted); text-align: center; }
.rq-row { display: grid; grid-template-columns: 56px minmax(0, 1.4fr) minmax(0, 1.2fr) 160px; gap: 20px; align-items: center; padding: 14px 18px; background: var(--ivory); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; transition: border-color .12s; }
.rq-row:hover { border-color: var(--ink); }
.rq-id, .rq-meta { min-width: 0; }
.rq-brand { font-size: 12px; color: var(--muted); }
.rq-row h3 { font-size: 22px; margin: 2px 0 3px; }
.rq-meta { display: grid; gap: 8px; }
.rq-loc { font-size: 13px; color: var(--muted); }
.rq-price { text-align: right; }
.rq-price .num { font-size: 26px; line-height: 1; }
.rq-price small { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
.rq-more { display: grid; justify-items: center; gap: 10px; margin-top: 20px; color: var(--muted); font-size: 13px; }
.rq-scrim { position: fixed; inset: 0; z-index: 55; background: rgba(17,17,17,.4); }

/* request page */
.wp-crumbs { margin: 28px 0 18px; }
.wp { display: grid; grid-template-columns: minmax(0, 1fr) 380px; grid-template-areas: "main panel" "rest panel"; column-gap: 40px; padding-bottom: 80px; align-items: start; }
.wp-main { grid-area: main; min-width: 0; }
.wp-rest { grid-area: rest; min-width: 0; }
.wp-panel { grid-area: panel; align-self: start; }
.wp-top { display: flex; gap: 28px; align-items: center; padding: 28px; background: var(--ivory); border: 1px solid var(--line); border-radius: 8px; }
.wp-top > div { min-width: 0; display: grid; gap: 8px; justify-items: start; }
.wp-top h1 { font-size: clamp(38px, 4vw, 56px); line-height: 1.02; }
.wp-top .mono { font-size: 14px; }
.wp-hero { margin-top: 16px; }
.wp-photo { border-radius: 8px; overflow: hidden; background: var(--ivory); aspect-ratio: 4 / 3; }
.wp-photo img { width: 100%; height: 100%; object-fit: cover; }
.wp-gallery { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.wp-gallery img { width: 96px; height: 96px; object-fit: cover; border-radius: 6px; }
.wp-budget { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin: 30px 0 8px; }
.wp-budget .num { font-size: 56px; line-height: 1; }
.wp-budget > span:last-child { color: var(--muted); }
.wp-specs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin: 22px 0 0; }
.wp-specs div { padding: 16px 12px 16px 0; border-bottom: 1px solid var(--line); min-width: 0; }
.wp-specs dt { margin-bottom: 6px; }
.wp-specs dd { margin: 0; font-size: 16px; }
.wp-section { margin-top: 44px; }
.wp-section > h2 { font-size: 32px; margin-bottom: 14px; }
.wp-offer { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; margin-top: 10px; display: grid; gap: 12px; }
.wp-offer.is-accepted { border-color: var(--ok); box-shadow: 0 0 0 1px var(--ok); }
.wp-offer-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.wp-offer-top small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.wp-offer-price { text-align: right; }
.wp-offer-price .num { font-size: 28px; line-height: 1; display: block; }
.wp-offer-price small { font-size: 12px; color: var(--muted); }
.wp-offer p { margin: 0; font-size: 14px; color: var(--ink-2); }
.wp-offer .offer-photos { margin-top: 0; }
.wp-offer-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.wp-panel { position: sticky; top: 96px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: grid; gap: 16px; box-shadow: 0 24px 48px -32px rgba(40,30,15,.35); min-width: 0; }
.wp-panel h2 { font-size: 30px; }
.wp-panel p { margin: 0; color: var(--muted); font-size: 14px; }
.wp-panel .wp-offer { margin-top: 0; }
.wp-signal { padding: 12px; background: var(--ok-bg); border-radius: 4px; color: var(--ok); font-weight: 600; font-size: 14px; }
.wp-signal.is-muted { background: var(--linen); color: var(--ink-2); }
.wp-steps { list-style: none; margin: 0; padding: 16px 0 0; display: grid; gap: 12px; border-top: 1px solid var(--line); counter-reset: st; }
.wp-steps li { counter-increment: st; display: grid; grid-template-columns: 24px 1fr; gap: 10px; font-size: 14px; }
.wp-steps li::before { content: counter(st); width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font: 600 12px var(--sans); color: var(--accent); }
.wp-expiry { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; font-size: 14px; }
.wp-owner-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; }
.wp-safe { font-size: 13px; color: var(--muted); background: var(--linen); padding: 12px; border-radius: 4px; }
.wp-mbar { display: none; }

@media (max-width: 960px) {
  .home-grid, .dealer-band { grid-template-columns: 1fr; gap: 32px; }
  .wp { grid-template-columns: 1fr; grid-template-areas: "main" "panel" "rest"; row-gap: 28px; }
  .journey { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  .journey li:nth-child(3)::after { display: none; }
  .trust { grid-template-columns: 1fr 1fr; }
  .rq-layout { grid-template-columns: 1fr; }
  .rq-filters-btn { display: inline-flex; }
  .rq-toolbar .select { display: none; }
  .rq-side { position: fixed; inset: 0 auto 0 0; z-index: 60; width: min(340px, 88vw); background: var(--linen); padding: 18px 20px 24px; overflow-y: auto; transform: translateX(-105%); transition: transform .2s ease; box-shadow: 20px 0 40px -20px rgba(0,0,0,.35); }
  .rq-side.open { transform: none; }
  .rq-drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .rq-drawer-head .select { display: block; }
  .wp-panel { position: static; }
  .wp-mbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; align-items: center; gap: 14px; padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px)); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(0,0,0,.3); }
  .wp-mbar small { display: block; color: var(--muted); font-size: 12px; }
  .wp-mbar .num { font-size: 24px; }
  .wp-mbar .btn { margin-left: auto; }
  body.has-mbar { padding-bottom: 84px; }
  body.has-mbar .toast { bottom: 100px; }
}
@media (max-width: 880px) {
  .nav-account { margin-left: auto; }
}
@media (max-width: 720px) {
  .paths { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr 1fr; }
  .journey li::after { display: none; }
  .live-stats b { font-size: 24px; }
  .rq-row { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 12px 14px; padding: 14px; }
  .rq-row .thumb { --s: 48px !important; }
  .rq-meta { grid-column: 1 / -1; }
  .rq-row h3 { font-size: 20px; }
  .rq-price { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; text-align: left; padding-top: 10px; border-top: 1px solid var(--line); }
  .rq-price small { margin-top: 0; text-align: right; }
  .rq-price .num { font-size: 22px; }
  .wp-top { flex-direction: column; align-items: flex-start; padding: 20px; }
  .wp-top .wp-dial { --s: 96px !important; }
  .wp-specs { grid-template-columns: 1fr 1fr; }
  .wp-budget .num { font-size: 44px; }
  .notif-body { grid-template-columns: 52px 1fr; }
  .notif-body > .num { grid-column: 2; }
}
@media (max-width: 460px) { .trust { grid-template-columns: 1fr; } .journey { grid-template-columns: 1fr; } }

/* ── Orders, accept/decline and the authentication desk ─────────────── */
.chip-bad { background: #F6E4E0; border-color: #E8C4BC; color: var(--danger); font-weight: 600; }
.sum { display: grid; gap: 8px; padding: 14px 0 0; border-top: 1px solid var(--line); font-size: 14px; }
.sum > div { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); }
.sum > div span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; text-align: right; }
.sum .tot { padding-top: 8px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.wp-confirm { display: grid; gap: 12px; padding: 16px; background: var(--linen); border: 1px solid var(--ink); border-radius: 6px; }
.wp-confirm p { color: var(--muted); }
.wp-confirm .sum { border-top: 0; padding-top: 0; }
.wp-confirm .pills label { height: 34px; padding: 0 12px; font-size: 13px; }
.wp-order-link { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 12px; background: var(--ok-bg); color: var(--ok); border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; }
.wp-order-link:hover { background: #d6e3d4; }

.order-head { margin-bottom: 24px; }
.order-head h1 { font-size: clamp(38px, 4vw, 54px); }
.order-head p { margin: 8px 0 0; color: var(--muted); }
.order-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; padding-bottom: 80px; align-items: start; }
.order-main { display: grid; gap: 16px; min-width: 0; }
.callout { display: grid; gap: 4px; padding: 18px 20px; border-radius: 6px; background: var(--ink); color: var(--white); }
.callout b { font: 500 24px/1.15 var(--serif); }
.callout small { font-size: 14px; color: #CFC6B8; }
.callout a { color: var(--white); }
.callout.is-fail { background: #F6E4E0; color: var(--danger); }
.callout.is-fail small { color: var(--danger); }
.order-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; min-width: 0; }
.order-card h2 { font-size: 28px; margin-bottom: 6px; }
.order-card > p { margin: 0 0 18px; }
.order-card .field:last-of-type { margin-bottom: 20px; }
.row-3 { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 16px; }
.intake { padding: 14px 16px; background: var(--linen); border-radius: 6px; margin-bottom: 14px; }
.intake p { margin: 6px 0 0; font-size: 15px; line-height: 1.5; }
.track { list-style: none; margin: 0; padding: 0; }
.track li { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 14px; padding-bottom: 22px; position: relative; }
.track li:last-child { padding-bottom: 0; }
.track li:not(:last-child)::before { content: ""; position: absolute; left: 16px; top: 34px; bottom: 0; width: 2px; background: var(--line); }
.track li.done:not(:last-child)::before { background: var(--ink); }
.track .dot { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--line-strong); background: var(--ivory); display: grid; place-items: center; position: relative; z-index: 1; color: var(--muted); font: 600 13px var(--sans); }
.track li.done .dot { background: var(--ink); border-color: var(--ink); color: var(--white); }
.track li.now .dot { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 5px rgba(143,119,89,.15); }
.track li.fail .dot { border-color: var(--danger); background: #F6E4E0; color: var(--danger); }
.track li > div { display: grid; gap: 3px; padding-top: 6px; min-width: 0; }
.track b { font-weight: 600; }
.track li:not(.done):not(.now):not(.fail) b { color: var(--muted); font-weight: 500; }
.track span { color: var(--muted); font-size: 14px; }
.track .track-note { color: var(--ink-2); font-style: italic; }
.track time { font-size: 13px; color: var(--muted); padding-top: 8px; white-space: nowrap; }
.order-sum { position: sticky; top: 96px; display: grid; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 22px; min-width: 0; }
.order-watch { display: flex; gap: 14px; align-items: center; text-decoration: none; padding-bottom: 6px; }
.order-model { font: 500 22px/1.1 var(--serif); }
.order-sum .line { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; padding-top: 10px; border-top: 1px solid var(--line); }
.order-sum .line > span:first-child { color: var(--muted); }
.order-sum .line > span:last-child { text-align: right; }
.order-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); text-decoration: none; }
.order-row small { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.order-row:hover b { text-decoration: underline; }
.nav-desk { margin-right: 4px; }

.desk { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; align-items: start; padding-top: 32px; padding-bottom: 96px; }
.desk-side { display: grid; gap: 24px; min-width: 0; }
.desk-side .form-card { padding: 28px; }
.desk-side .form-card h2 { font-size: 28px; }
.desk-tabs { display: flex; gap: 4px; padding: 4px; background: var(--sand); border-radius: 6px; width: fit-content; max-width: 100%; margin-bottom: 16px; }
.desk-tab { padding: 8px 14px; border-radius: 4px; font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; }
.desk-tab[aria-current="page"] { background: var(--ivory); color: var(--ink); box-shadow: 0 1px 2px rgba(40,30,15,.12); }
.tablewrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.desk-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 760px; }
.desk-table th { text-align: left; font: 600 11px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 14px 16px; border-bottom: 1px solid var(--line); }
.desk-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.desk-table tr:last-child td { border-bottom: 0; }
.desk-table .r { text-align: right; }
.desk-table td.num { font-size: 18px; }
.desk-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.desk-warn { color: var(--danger); font-size: 12px; margin-top: 6px; }
.desk-form-row td { background: var(--linen); }
.desk-form { display: grid; gap: 12px; max-width: 620px; }
.desk-form p { margin: 0; font-size: 14px; }
.desk-form .field { margin-bottom: 0; }

@media (max-width: 1080px) { .desk { grid-template-columns: 1fr; } }
@media (max-width: 960px) {
  .order-grid { grid-template-columns: 1fr; gap: 24px; }
  .order-sum { position: static; }
}
@media (max-width: 720px) {
  .row-3 { grid-template-columns: 1fr 1fr; }
  .row-3 > :first-child { grid-column: 1 / -1; }
  .order-card { padding: 20px; }
  .track li { grid-template-columns: 34px minmax(0, 1fr); }
  .track time { grid-column: 2; padding-top: 0; }
}
.desk-table td:first-child { white-space: nowrap; }
