@charset "utf-8";

/* ==========================================================================
   Salvagio — salvagioyard.com
   Design language: museum-gallery tiles, edge-to-edge, alternating light and
   dark canvases, restrained type scale, generous negative space.
   Palette taken warm: paper ground, deep charcoal ink, one oxidised-copper
   accent. The material is the hero; the interface disappears.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces — warm translation of the parchment / white / near-black stack */
  --paper:        #f3efe7;   /* signature ground, the "parchment" tile      */
  --paper-warm:   #faf7f1;   /* the warm "white" tile                        */
  --paper-deep:   #ebe5d9;   /* pressed paper — insets, wells, table stripes */
  --tile-1:       #23201b;   /* primary dark tile                            */
  --tile-2:       #292520;   /* micro-step lighter, for adjacent dark tiles   */
  --tile-3:       #1c1a16;   /* micro-step darker, base of the stack         */
  --void:         #14120f;   /* the utility bar; the only near-void surface   */

  /* Ink */
  --ink:          #1c1a17;   /* every headline, every paragraph on light      */
  --ink-80:       #3a3630;
  --ink-60:       #5c574f;   /* 6.1:1 on --paper                              */
  --ink-45:       #6e685e;   /* 4.8:1 on --paper — the lightest permitted     */
  --on-dark:      #ffffff;
  --on-dark-mute: #c9c3b8;   /* 9.3:1 on --tile-1                             */
  --on-dark-dim:  #a49c8e;   /* 5.6:1 on --tile-1 — captions only             */

  /* The single accent: oxidised copper */
  --copper:       #2e6b5c;   /* 5.4:1 on --paper — every interactive signal   */
  --copper-deep:  #235248;   /* pressed / active                              */
  --copper-lift:  #7ac4ac;   /* the dark-tile-only variant, 8.0:1 on tile-1   */
  --copper-wash:  #dfeae4;   /* faint fill for chips on light grounds         */
  --copper-edge:  #b9cfc6;

  /* Material inks — used inside the SVG studies only */
  --oak-1:  #b4854f;
  --oak-2:  #9c6d3d;
  --oak-3:  #855a30;
  --oak-4:  #6d4826;
  --brick-1:#a85c42;
  --brick-2:#8f4a34;
  --brick-3:#733b2a;
  --brass-1:#c39a4e;
  --brass-2:#a87f3a;
  --brass-3:#7f5d28;
  --slate-1:#6f7570;
  --slate-2:#565b57;

  /* Hairlines */
  --rule:         #ddd6c8;
  --rule-soft:    #e7e1d4;
  --rule-dark:    #3b362f;
  --rule-dark-soft:#2f2b25;

  /* Radii — 0 for full-bleed tiles; the pill is the action signal */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Spacing */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 17px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 80px;  --s-10: 112px;

  /* Type */
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Iowan Old Style, Palatino, Georgia, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Structure */
  --wrap: 1160px;
  --wrap-narrow: 760px;
  --nav-h: 52px;

  /* The one shadow in the system — reserved for a material study resting on
     a surface. Never on chrome, never on text. */
  --material-shadow: 0 4px 34px rgba(28, 26, 23, 0.14);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
img, svg { max-width: 100%; }
svg { display: block; }
a { color: var(--copper); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong, b { font-weight: 600; }
button { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

.num, .tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* --------------------------------------------------------------------------
   3. Focus + skip link
   -------------------------------------------------------------------------- */

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.on-dark :focus-visible,
.tile--dark :focus-visible,
.tile--dark-2 :focus-visible,
.tile--dark-3 :focus-visible,
.site-utility :focus-visible { outline-color: var(--copper-lift); }

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--copper);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: top 140ms ease;
}
.skip:focus { top: 12px; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Header — a thin void utility bar over a frosted paper sub-nav
   -------------------------------------------------------------------------- */

.site-utility {
  background: var(--void);
  color: var(--on-dark);
  font-size: 12px;
  letter-spacing: -0.01em;
}
.site-utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 34px;
  padding-block: 7px;
}
.site-utility p { color: #d6d0c5; margin: 0; }
.site-utility .util-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper-lift);
  margin-right: 8px;
  vertical-align: 1px;
}
.site-utility a { color: var(--copper-lift); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 239, 231, 0.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand:hover { text-decoration: none; }
.brand .brand-mark { width: 26px; height: 26px; flex: 0 0 auto; }
.brand .brand-word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand .brand-word .b-dot { color: var(--copper); }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: var(--r-sm);
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}
.nav-toggle:active { transform: scale(0.95); }

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.site-nav a {
  color: var(--ink-80);
  font-size: 14px;
  letter-spacing: -0.012em;
  padding: 6px 0;
  display: block;
}
.site-nav a:hover { color: var(--copper); text-decoration: none; }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--copper);
}
.header-cta { flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   5. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--wide { max-width: 1320px; }

.tile {
  padding-block: clamp(56px, 8vw, 100px);
  position: relative;
}
.tile--paper      { background: var(--paper); color: var(--ink); }
.tile--warm       { background: var(--paper-warm); color: var(--ink); }
.tile--dark       { background: var(--tile-1); color: var(--on-dark); }
.tile--dark-2     { background: var(--tile-2); color: var(--on-dark); }
.tile--dark-3     { background: var(--tile-3); color: var(--on-dark); }
.tile--tight      { padding-block: clamp(40px, 5vw, 64px); }
.tile--flush-top  { padding-top: 0; }

.tile--dark a:not(.btn), .tile--dark-2 a:not(.btn), .tile--dark-3 a:not(.btn) { color: var(--copper-lift); }
.tile--dark p, .tile--dark-2 p, .tile--dark-3 p { color: var(--on-dark-mute); }
.tile--dark h2, .tile--dark h3, .tile--dark h4,
.tile--dark-2 h2, .tile--dark-2 h3, .tile--dark-2 h4,
.tile--dark-3 h2, .tile--dark-3 h3, .tile--dark-3 h4 { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   6. Type
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 var(--s-4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--copper);
  flex: 0 0 auto;
  opacity: 0.7;
}
.tile--dark .eyebrow, .tile--dark-2 .eyebrow, .tile--dark-3 .eyebrow { color: var(--copper-lift); }
.tile--dark .eyebrow::before, .tile--dark-2 .eyebrow::before, .tile--dark-3 .eyebrow::before { background: var(--copper-lift); }
.eyebrow--center { justify-content: center; }

h1, .h-hero {
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink);
}
h2, .h-tile {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.024em;
}
h3, .h-sub {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.018em;
}
h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.014em;
}

.lead {
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.014em;
  color: var(--ink-60);
}
.tile--dark .lead, .tile--dark-2 .lead, .tile--dark-3 .lead { color: var(--on-dark-mute); }

.prose p + p { margin-top: var(--s-4); }
.prose p { color: var(--ink-60); }
.tile--dark .prose p,
.tile--dark-2 .prose p,
.tile--dark-3 .prose p { color: var(--on-dark-mute); }
.tile--dark .prose strong,
.tile--dark-2 .prose strong,
.tile--dark-3 .prose strong { color: var(--on-dark); }
.muted { color: var(--ink-60); }
.fine {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-45);
  letter-spacing: -0.008em;
}
.tile--dark .fine, .tile--dark-2 .fine, .tile--dark-3 .fine { color: var(--on-dark-dim); }

h1 + .lead, h2 + .lead, h3 + .lead { margin-top: var(--s-5); }
.section-head { max-width: 780px; }
.section-head .lead { margin-top: var(--s-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.pull {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.014em;
}

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  cursor: pointer;
  text-align: center;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 90ms ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.96); }

.btn--primary { background: var(--copper); color: #fff; }
.btn--primary:hover { background: var(--copper-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--copper);
  border-color: var(--copper-edge);
}
.btn--ghost:hover { background: var(--copper-wash); border-color: var(--copper); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }

.btn--on-dark { background: var(--copper-lift); color: #12241f; }
.btn--on-dark:hover { background: #98d3bf; color: #12241f; }

.btn--ghost-dark {
  background: transparent;
  color: var(--copper-lift);
  border-color: rgba(122, 196, 172, 0.42);
}
.btn--ghost-dark:hover { background: rgba(122, 196, 172, 0.12); border-color: var(--copper-lift); }

.btn--sm { min-height: 36px; padding: 8px 16px; font-size: 14px; }
.btn--wide { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.btn-row--center { justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.012em;
}
.textlink svg { width: 14px; height: 14px; flex: 0 0 auto; transition: transform 160ms ease; }
.textlink:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   8. Chips, grades, meta
   -------------------------------------------------------------------------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--copper-wash);
  color: var(--copper-deep);
  border: 1px solid var(--copper-edge);
}
.chip--neutral {
  background: var(--paper-deep);
  color: var(--ink-80);
  border-color: var(--rule);
}
.chip--urgent {
  background: #f6e3d9;
  color: #8a3b16;
  border-color: #e8c3ae;
}
.chip--on-dark {
  background: rgba(122, 196, 172, 0.14);
  color: var(--copper-lift);
  border-color: rgba(122, 196, 172, 0.35);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.hero {
  background: var(--paper);
  padding-block: clamp(48px, 7vw, 92px) clamp(40px, 6vw, 76px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%231c1a17' stroke-opacity='0.045' stroke-width='1'%3E%3Cpath d='M0 30h120M0 60h120M0 90h120'/%3E%3Cpath d='M30 0v120M60 0v120M90 0v120'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}
.hero > .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-5); }
.hero .lead { max-width: 34ch; }
.hero-meta {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-4);
}
.hero-meta dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.hero-meta dd {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink-80);
}

/* --------------------------------------------------------------------------
   10. The lot card — the marketplace's atom
   -------------------------------------------------------------------------- */

.lot {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lot--hero { box-shadow: var(--material-shadow); }

.lot-study {
  position: relative;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
}
.lot-study svg { width: 100%; height: auto; display: block; }
.lot-study .lot-tags {
  position: absolute;
  left: 14px; top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lot-study .lot-tags .chip { background: rgba(250, 247, 241, 0.94); backdrop-filter: blur(6px); }

.lot-body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-4); flex: 1; }
.lot-title-row { display: flex; align-items: flex-start; gap: var(--s-3); }
.lot-title-row h2,
.lot-title-row h3,
.lot-title-row h4 { font-size: 20px; font-weight: 600; letter-spacing: -0.018em; line-height: 1.25; flex: 1; min-width: 0; }
.lot-grid .lot-title-row h2,
.lot-grid .lot-title-row h3,
.lot-grid .lot-title-row h4 { font-size: 19px; letter-spacing: -0.016em; }
.lot-ref {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-45);
  text-transform: uppercase;
}

.lot-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3) var(--s-4);
  padding-block: var(--s-3);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.lot-specs > div { min-width: 0; }
.lot-specs dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.lot-specs dd {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.lot-clock {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--s-4);
  display: grid;
  gap: var(--s-3);
}
.lot-clock-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.lot-clock-head strong { color: #8a3b16; letter-spacing: 0.02em; }
.lot-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.lot-price .now {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.lot-price .was {
  font-size: 16px;
  color: var(--ink-60);
  text-decoration: line-through;
}
.lot-price .unit { font-size: 14px; color: var(--ink-60); }
.lot-step {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.45;
}
.lot-step b { color: var(--copper-deep); }

.lot-grid .lot-clock { margin-top: auto; }

.lot-foot {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: auto;
}

/* Lot grid */
.lot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.lot-grid .lot { background: var(--paper-warm); }
.tile--dark .lot,
.tile--dark-2 .lot,
.tile--dark-3 .lot {
  background: var(--tile-2);
  border-color: var(--rule-dark);
}
.tile--dark .lot-study,
.tile--dark-2 .lot-study,
.tile--dark-3 .lot-study { background: #17150f; border-bottom-color: var(--rule-dark); }
.tile--dark .lot-title-row h2, .tile--dark .lot-title-row h3, .tile--dark .lot-title-row h4,
.tile--dark-2 .lot-title-row h2, .tile--dark-2 .lot-title-row h3, .tile--dark-2 .lot-title-row h4,
.tile--dark-3 .lot-title-row h2, .tile--dark-3 .lot-title-row h3, .tile--dark-3 .lot-title-row h4 { color: var(--on-dark); }
.tile--dark .lot-ref,
.tile--dark-2 .lot-ref,
.tile--dark-3 .lot-ref { color: var(--on-dark-dim); }
.tile--dark .lot-specs,
.tile--dark-2 .lot-specs,
.tile--dark-3 .lot-specs { border-color: var(--rule-dark-soft); }
.tile--dark .lot-specs dt,
.tile--dark-2 .lot-specs dt,
.tile--dark-3 .lot-specs dt { color: var(--on-dark-dim); }
.tile--dark .lot-specs dd,
.tile--dark-2 .lot-specs dd,
.tile--dark-3 .lot-specs dd { color: var(--on-dark); }
.tile--dark .lot .grade,
.tile--dark-2 .lot .grade,
.tile--dark-3 .lot .grade { background: var(--copper); }

/* The price ticket stays a light "museum label" even on a dark lot card, so
   its type has to out-rank the tile's on-dark paragraph colour. */
.lot .lot-clock-head { color: var(--ink-60); }
.lot .lot-clock-head strong { color: #8a3b16; }
.lot .lot-step { color: var(--ink-60); }
.lot-study .lot-tags .chip--urgent { background: rgba(246, 227, 217, 0.95); }
.lot-study .lot-tags .chip--neutral { background: rgba(235, 229, 217, 0.95); }

/* --------------------------------------------------------------------------
   11. Cards, split panels, generic grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--top { align-items: start; }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mt-8 { margin-top: var(--s-8); }

.card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.card h3, .card h4 { letter-spacing: -0.016em; font-size: 18px; line-height: 1.3; }
.card p { color: var(--ink-60); font-size: 15px; line-height: 1.5; margin: 0; }
.card--flat { background: transparent; border-color: var(--rule); }
.card--dark {
  background: var(--tile-2);
  border-color: var(--rule-dark);
  color: var(--on-dark);
}
.card--dark p { color: var(--on-dark-mute); }
.card--accent { border-color: var(--copper-edge); background: var(--copper-wash); }

.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--copper-wash);
  border: 1px solid var(--copper-edge);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.card-icon svg { width: 22px; height: 22px; }
.tile--dark .card-icon, .tile--dark-2 .card-icon, .tile--dark-3 .card-icon {
  background: rgba(122, 196, 172, 0.13);
  border-color: rgba(122, 196, 172, 0.3);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--top { align-items: start; }
.split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.split--wide-right { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }

/* --------------------------------------------------------------------------
   12. The two sides — seller / buyer panels
   -------------------------------------------------------------------------- */

.sides { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.side { background: var(--paper-warm); padding: clamp(24px, 3.4vw, 40px); display: flex; flex-direction: column; gap: var(--s-4); }
.side--b { background: var(--paper); }
.side-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}
.side h3 { font-size: clamp(21px, 2.4vw, 26px); }
.side p { color: var(--ink-60); margin: 0; }
.side ul { display: grid; gap: 10px; margin-top: 4px; }
.side ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-80);
}
.side ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--copper);
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   13. Steps, flows, numbered lists
   -------------------------------------------------------------------------- */

.steps { counter-reset: step; display: grid; gap: var(--s-5); }
.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step {
  counter-increment: step;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: var(--s-4);
  border-top: 2px solid var(--rule);
}
.tile--dark .step, .tile--dark-2 .step, .tile--dark-3 .step { border-top-color: var(--rule-dark); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}
.tile--dark .step::before, .tile--dark-2 .step::before, .tile--dark-3 .step::before { color: var(--copper-lift); }
.step h3, .step h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.014em; line-height: 1.3; }
.step svg { margin-block: 4px 6px; }
.step p { font-size: 15px; line-height: 1.5; color: var(--ink-60); margin: 0; }
.step .step-time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-45);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Scroll-safe diagram frame */
.diagram {
  margin-top: var(--s-7);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: var(--paper-warm);
  padding: clamp(16px, 2.4vw, 28px);
}
.tile--dark .diagram, .tile--dark-2 .diagram, .tile--dark-3 .diagram {
  background: var(--tile-3);
  border-color: var(--rule-dark);
}
.diagram-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.diagram-scroll > svg { min-width: 720px; width: 100%; height: auto; }
.diagram-caption {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule-soft);
  font-size: 13px;
  color: var(--ink-45);
  line-height: 1.5;
}
.tile--dark .diagram-caption, .tile--dark-2 .diagram-caption, .tile--dark-3 .diagram-caption {
  border-top-color: var(--rule-dark-soft);
  color: var(--on-dark-dim);
}
.scroll-hint { display: none; }

/* --------------------------------------------------------------------------
   14. Feature list
   -------------------------------------------------------------------------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--s-7);
}
.feature {
  background: var(--tile-1);
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.feature:nth-child(even) { background: var(--tile-2); }
.feature h3 { font-size: 18px; letter-spacing: -0.016em; color: var(--on-dark); }
.feature p { font-size: 15px; line-height: 1.5; color: var(--on-dark-mute); margin: 0; }
.feature .feature-mark { width: 40px; height: 40px; }
.feature .feature-tag {
  margin-top: auto;
  padding-top: var(--s-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}

/* --------------------------------------------------------------------------
   15. Material gallery
   -------------------------------------------------------------------------- */

.materials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.material {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-warm);
  display: flex;
  flex-direction: column;
}
.material figure { margin: 0; background: var(--paper-deep); }
.material svg { width: 100%; height: auto; }
.material figcaption {
  padding: var(--s-4);
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 6px;
}
.material figcaption h3 { font-size: 17px; letter-spacing: -0.014em; color: var(--ink); }
.material figcaption p { font-size: 14px; line-height: 1.45; color: var(--ink-60); margin: 0; }
.material .m-stat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-deep);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   16. Price-step figure + stat rows
   -------------------------------------------------------------------------- */

.figure-frame {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2.4vw, 28px);
}
.tile--dark .figure-frame, .tile--dark-2 .figure-frame, .tile--dark-3 .figure-frame {
  background: var(--tile-3);
  border-color: var(--rule-dark);
}
.figure-frame > figcaption {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule-soft);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-45);
}
.tile--dark .figure-frame > figcaption,
.tile--dark-2 .figure-frame > figcaption,
.tile--dark-3 .figure-frame > figcaption { border-top-color: var(--rule-dark-soft); color: var(--on-dark-dim); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.stat {
  border-top: 2px solid var(--copper);
  padding-top: var(--s-4);
}
.tile--dark .stat, .tile--dark-2 .stat, .tile--dark-3 .stat { border-top-color: var(--copper-lift); }
.stat dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.tile--dark .stat dt, .tile--dark-2 .stat dt { color: var(--on-dark-dim); }
.stat dd {
  margin: 10px 0 0;
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stat .stat-note { display: block; margin-top: 8px; font-size: 14px; font-weight: 400; color: var(--ink-60); letter-spacing: -0.01em; line-height: 1.45; }
.tile--dark .stat .stat-note, .tile--dark-2 .stat .stat-note { color: var(--on-dark-mute); }

/* --------------------------------------------------------------------------
   17. Pricing
   -------------------------------------------------------------------------- */

.price-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--s-6);
  margin-top: var(--s-7);
  align-items: start;
}
.price-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 40px);
  display: grid;
  gap: var(--s-5);
}
.price-card--accent { border-color: var(--copper); box-shadow: inset 0 0 0 1px var(--copper); }
.price-headline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-headline .figure {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.95;
}
.price-headline .qualifier { font-size: 17px; color: var(--ink-60); }

.price-list { display: grid; gap: 12px; }
.price-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-80);
}
.price-list li svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; }

.worked {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
}
.worked caption {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.worked th, .worked td {
  padding: 11px var(--s-4);
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--rule-soft);
}
.worked th { font-weight: 400; color: var(--ink-60); }
.worked td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
}
.worked tr:last-child th, .worked tr:last-child td { border-bottom: 0; }
.worked tfoot th, .worked tfoot td {
  background: var(--paper-deep);
  font-weight: 700;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */

.faq { margin-top: var(--s-7); border-top: 1px solid var(--rule); }
.faq details {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 44px var(--s-5) 0;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -7px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .faq-body { padding: 0 0 var(--s-5); max-width: 68ch; }
.faq .faq-body p { color: var(--ink-60); font-size: 16px; }
.faq .faq-body p + p { margin-top: var(--s-3); }

/* --------------------------------------------------------------------------
   19. Closing CTA
   -------------------------------------------------------------------------- */

.closer { text-align: center; }
.closer h2 { max-width: 20ch; margin-inline: auto; }
.closer .lead { max-width: 56ch; margin: var(--s-5) auto 0; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-block: var(--s-8) var(--s-6);
  color: var(--ink-60);
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: var(--s-6);
}
.footer-brand { display: grid; gap: var(--s-4); align-content: start; max-width: 34ch; }
.footer-brand p { font-size: 14px; line-height: 1.55; color: var(--ink-60); }
.footer-col h2, .footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { color: var(--ink-60); font-size: 14px; }
.footer-col a:hover { color: var(--copper); }
.footer-bottom {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-45);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.footer-bottom a { color: var(--ink-45); }
.footer-note {
  margin-top: var(--s-5);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-45);
  max-width: 92ch;
}

/* --------------------------------------------------------------------------
   21. Contact page
   -------------------------------------------------------------------------- */

.contact-hero { padding-block: clamp(44px, 6vw, 80px) clamp(32px, 4vw, 52px); }
.contact-hero .lead { max-width: 58ch; margin-top: var(--s-5); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}

.form-panel {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3.2vw, 40px);
}
.form-panel > h2 { font-size: clamp(22px, 2.6vw, 28px); }
.form-panel > p.muted { margin-top: var(--s-3); font-size: 15px; }

form.contact-form { margin-top: var(--s-6); display: grid; gap: var(--s-5); }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
.field label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.field .hint { font-size: 13px; color: var(--ink-45); line-height: 1.45; }
.field .opt { font-weight: 400; color: var(--ink-45); }
.req { color: var(--copper); font-weight: 700; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  min-height: 46px;
  letter-spacing: -0.011em;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.5; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%235c574f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-45); opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(46, 107, 92, 0.18);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--copper); outline-offset: 1px; }

.field .err {
  font-size: 13px;
  font-weight: 600;
  color: #9a3412;
  min-height: 0;
  display: none;
  line-height: 1.4;
}
.field.is-invalid .err { display: block; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #b45309; box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.14); }

.checkline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-60);
}
.checkline input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 2px 0 0;
  accent-color: var(--copper);
  flex: 0 0 auto;
}

.form-status {
  border: 1px solid var(--copper-edge);
  background: var(--copper-wash);
  color: var(--copper-deep);
  border-radius: var(--r-md);
  padding: var(--s-4);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.form-status:empty { display: none; }
.form-status[data-state="error"] {
  border-color: #e8c3ae;
  background: #f6e3d9;
  color: #8a3b16;
}

.aside-stack { display: grid; gap: var(--s-5); }
.aside-stack > h2 { font-size: clamp(20px, 2.2vw, 24px); letter-spacing: -0.018em; }
.route-card {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-warm);
}
.route-card .route-head {
  padding: var(--s-4) var(--s-5);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 12px;
}
.route-card .route-head h3 { font-size: 16px; letter-spacing: -0.012em; }
.route-card .route-body { padding: var(--s-5); display: grid; gap: var(--s-3); }
.route-card .route-body p { font-size: 15px; line-height: 1.5; color: var(--ink-60); margin: 0; }
.route-card .route-body a { font-weight: 600; }

.timeline { display: grid; gap: 0; margin-top: var(--s-5); }
.timeline li {
  position: relative;
  padding: 0 0 var(--s-5) 34px;
  border-left: 1px solid var(--rule);
  margin-left: 9px;
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -6px; top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--copper);
}
.timeline h3, .timeline h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; margin-bottom: 4px; }
.timeline p { font-size: 14px; line-height: 1.5; color: var(--ink-60); margin: 0; }
.tile--dark .timeline li,
.tile--dark-2 .timeline li,
.tile--dark-3 .timeline li { border-left-color: var(--rule-dark); }
.tile--dark .timeline li::before,
.tile--dark-2 .timeline li::before,
.tile--dark-3 .timeline li::before { background: var(--tile-1); border-color: var(--copper-lift); }
.tile--dark .timeline p,
.tile--dark-2 .timeline p,
.tile--dark-3 .timeline p { color: var(--on-dark-mute); }
.timeline .t-when {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-deep);
  display: block;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.tile--dark .timeline .t-when,
.tile--dark-2 .timeline .t-when,
.tile--dark-3 .timeline .t-when { color: var(--copper-lift); }

.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--s-7);
}
.contact-facts > div { background: var(--paper-warm); padding: clamp(20px, 2.6vw, 28px); display: grid; gap: 8px; align-content: start; }
.contact-facts dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.contact-facts dd { margin: 0; font-size: 16px; line-height: 1.5; color: var(--ink-80); }

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1068px) {
  .lot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .materials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s-7); }
  .hero .lead { max-width: 46ch; }
  .split, .split--wide-left, .split--wide-right,
  .contact-layout, .price-panels { grid-template-columns: minmax(0, 1fr); }
  .sides { grid-template-columns: minmax(0, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-row { grid-template-columns: minmax(0, 1fr); gap: var(--s-5); }
  .contact-facts { grid-template-columns: minmax(0, 1fr); }
  .scroll-hint {
    display: block;
    font-size: 12px;
    color: var(--ink-45);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }
  .tile--dark .scroll-hint, .tile--dark-2 .scroll-hint, .tile--dark-3 .scroll-hint { color: var(--on-dark-dim); }
}

@media (max-width: 1040px) {
  .js .nav-toggle { display: inline-flex; }
  .js .site-nav { display: none; }
  .js .site-header[data-open="true"] .site-nav { display: block; }
  .site-nav {
    order: 4;
    width: 100%;
    margin-left: 0;
    border-top: 1px solid var(--rule);
    padding-block: var(--s-3) var(--s-4);
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--rule-soft); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { padding: 12px 2px; font-size: 16px; }
  .site-nav a[aria-current="page"] { box-shadow: none; color: var(--copper); }
  .site-header .wrap { flex-wrap: wrap; padding-block: 8px; }
  .js .site-header:not([data-open="true"]) .header-cta { display: none; }
  .js .site-header[data-open="true"] .header-cta {
    display: inline-flex;
    order: 5;
    width: 100%;
    margin-bottom: var(--s-3);
  }
  .site-utility .wrap { font-size: 11px; }
  .site-utility .util-hide { display: none; }
}

@media (max-width: 700px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .lot-grid { grid-template-columns: minmax(0, 1fr); }
  .materials { grid-template-columns: minmax(0, 1fr); }
  .features { grid-template-columns: minmax(0, 1fr); }
  .steps--4, .steps--3 { grid-template-columns: minmax(0, 1fr); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: var(--s-6); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { grid-template-columns: minmax(0, 1fr); gap: var(--s-4); }
  .btn-row .btn { width: 100%; }
  .diagram-scroll > svg { min-width: 620px; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .lot-price .now { font-size: 26px; }
  .lot-specs { grid-template-columns: minmax(0, 1fr); }
  .brand .brand-word { font-size: 20px; }
}

/* --------------------------------------------------------------------------
   23. Motion + print
   -------------------------------------------------------------------------- */

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

@media print {
  .site-header, .site-utility, .skip, .btn-row, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .tile { padding-block: 24px; break-inside: avoid; }
  .tile--dark, .tile--dark-2, .tile--dark-3 { background: #fff !important; color: #000 !important; }
}
