/* ==========================================================================
   Track Day Diaries · Paddock Editorial
   Print-magazine skin. Light paper, near-black ink, serif display headlines,
   letter-spaced mono labels, hairline borders, red used sparingly.
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('/assets/fonts/IBMPlexMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('/assets/fonts/IBMPlexMono-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f7f5f1;
  --paper-2: #f1ede4;
  --card: #fffefb;
  --ink: #191919;
  --muted: #767065;
  --faint: #9a9488;
  --red: #e10600;
  --amber: #f5a623;
  --line: #e2ddd4;
  --line-2: #d8d2c6;
  --rule: #191919;
  --serif: Georgia, 'Times New Roman', 'Times', serif;
  --mono: 'Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 360;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.serif { font-family: var(--serif); }

.frame {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
}

/* ------------------------------------------------------------------ masthead */
.masthead { border-bottom: 1px solid var(--line); }
.masthead-inner {
  display: flex;
  align-items: baseline;
  gap: 30px;
  padding: 26px 0;
}
.wordmark {
  font-size: 15px;
  font-weight: 520;
  letter-spacing: 0.2em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a { padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); }

/* mobile disclosure menu (no JS) */
.nav-mobile { display: none; margin-left: auto; position: relative; }
.nav-mobile > summary {
  list-style: none;
  cursor: pointer;
  width: 26px; height: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile > summary span { display: block; height: 1.5px; width: 100%; background: var(--ink); }
.nav-mobile[open] > summary span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-mobile[open] > summary span:nth-child(2) { opacity: 0; }
.nav-mobile[open] > summary span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-mobile > summary span { transition: transform .2s ease, opacity .2s ease; }
.nav-mobile nav {
  position: absolute;
  right: 0; top: calc(100% + 14px);
  z-index: 30;
  background: var(--card);
  border: 1px solid var(--line-2);
  min-width: 190px;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 44px rgba(25,25,25,0.12);
}
.nav-mobile nav a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile nav a:last-child { border-bottom: 0; }
.nav-mobile nav a[aria-current="page"] { color: var(--ink); }

/* ------------------------------------------------------------------ generic labels */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.rule-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding: 14px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.rule-label a:hover { color: var(--ink); }

.mydata {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4a3407;
  background: var(--amber);
  padding: 2px 7px;
  border-radius: 2px;
  vertical-align: middle;
}

/* ------------------------------------------------------------------ hero (index) */
.hero { padding: 62px 0 0; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.14;
  letter-spacing: -0.005em;
  max-width: 900px;
  margin-top: 22px;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero .standfirst {
  max-width: 540px;
  color: var(--muted);
  margin-top: 24px;
  font-size: 16.5px;
}
.hero .photo { margin-top: 50px; position: relative; }
.hero .photo img {
  width: 100%;
  height: 64vh;
  min-height: 380px;
  max-height: 620px;
  object-fit: cover;
  object-position: center 62%;
}
.caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ledger stat row */
.ledger {
  display: flex;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--line);
  margin-top: 66px;
}
.ledger div { flex: 1; padding: 22px 4px; }
.ledger .n {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 36px);
  font-style: italic;
  line-height: 1;
}
.ledger .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------ essay row */
.essay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 84px 0;
  align-items: center;
}
.essay h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.26;
}
.essay p { color: var(--muted); margin-top: 18px; }
.essay .sig {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 26px;
}
.essay .read {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 14px;
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.essay figure { margin: 0; }
.essay img { width: 100%; height: 440px; object-fit: cover; }

/* ------------------------------------------------------------------ garage spread */
.spread { padding: 8px 0 84px; }
.spread .rule-label { padding-bottom: 34px; }
.cars { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.cars figure { margin: 0; }
.cars .shot { width: 100%; height: 390px; object-fit: cover; }
.cars figcaption { padding: 16px 2px 0; }
.cars .title { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.cars h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.cars .status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.cars p { color: var(--muted); font-size: 14.5px; margin-top: 10px; }
.cars .links { margin-top: 14px; display: flex; gap: 22px; flex-wrap: wrap; }
.cars .link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.credit {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 12px;
}
.credit a { border-bottom: 1px solid var(--line-2); }

/* ------------------------------------------------------------------ shop strip (index) */
.shopstrip { padding: 0 0 90px; }
.shopstrip .rule-label { padding-bottom: 36px; }
.prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.prods figure { margin: 0; }
.prods a { display: block; }
.prods .shot { width: 100%; height: 210px; object-fit: cover; background: var(--paper-2); }
.prods figcaption { padding: 12px 2px 0; }
.prods .name { font-size: 14.5px; font-weight: 460; }
.prods .price {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 4px;
}

/* ------------------------------------------------------------------ closing CTA band */
.cta-band {
  border-top: 1px solid var(--rule);
  padding: 46px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: var(--red); }
.cta-band .sub { color: var(--muted); margin-top: 14px; max-width: 44ch; font-size: 15px; }
.cta-band .actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn svg { width: 15px; height: 15px; }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.red { background: var(--red); border-color: var(--red); color: #fff; }
.btn.red:hover { background: transparent; color: var(--red); }
.text-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ------------------------------------------------------------------ footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 34px 0 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer a:hover { color: var(--ink); }

/* ------------------------------------------------------------------ interior page head */
.page-head { padding: 60px 0 4px; }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 18px;
  max-width: 15ch;
}
.page-head .lead {
  color: var(--muted);
  margin-top: 20px;
  max-width: 56ch;
  font-size: 16.5px;
}

/* ------------------------------------------------------------------ about */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  padding: 40px 0 30px;
  align-items: start;
}
.prose > p { margin-bottom: 22px; font-size: 16.5px; }
.prose > p:last-child { margin-bottom: 0; }
.about-portrait { position: relative; }
.about-portrait img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: 40% center; }
.about-portrait .caption { position: static; padding-top: 12px; }

.callout {
  border: 1px solid var(--rule);
  padding: 30px 32px;
  margin-top: 44px;
  display: grid;
  gap: 14px;
}
.callout h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; }
.callout p { color: var(--muted); max-width: 60ch; }
.callout .actions { margin-top: 8px; }

/* ------------------------------------------------------------------ build */
.car-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--rule);
  margin: 8px 0 0;
}
.car-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.car-tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--red); }

.build-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 46px 0 34px;
}
.build-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
}
.build-hero .lead { color: var(--muted); margin-top: 16px; max-width: 44ch; }
.build-hero .art img { width: 100%; height: 300px; object-fit: cover; }
.build-hero .art.contain img { object-fit: contain; background: var(--paper-2); }
.build-hero figure { margin: 0; }

.sold-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--line);
  padding: 18px 2px;
  margin-bottom: 8px;
}
.sold-banner strong {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.sold-banner span { color: var(--muted); font-size: 14.5px; }
.sold-banner a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  margin-left: auto;
}

.mod-section { border-bottom: 1px solid var(--line); }
.mod-section > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 2px;
}
.mod-section > summary::-webkit-details-marker { display: none; }
.mod-section .sec-title { font-family: var(--serif); font-weight: 400; font-size: 23px; }
.mod-section .sec-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.mod-section .chev {
  margin-left: auto;
  font-family: var(--mono);
  color: var(--muted);
  transition: transform .2s ease;
}
.mod-section[open] .chev { transform: rotate(180deg); }
.mod-list { list-style: none; padding: 0 2px 26px; display: grid; gap: 0; }
.mod-item { padding: 16px 0; border-top: 1px solid var(--line); }
.mod-item:first-child { border-top: 1px solid var(--line-2); }
.mod-name {
  font-size: 15.5px;
  font-weight: 480;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mod-detail { color: var(--muted); font-size: 14px; margin-top: 5px; }
.mod-detail a { border-bottom: 1px solid var(--line-2); }
.mod-detail a:hover { border-bottom-color: var(--ink); }
.shop-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--line-2);
  color: var(--muted);
  border-radius: 2px;
}
.badge.built { border-color: var(--ink); color: var(--ink); }
.badge.bought { border-color: var(--line-2); color: var(--muted); }
.badge.sale { border-color: var(--red); color: var(--red); }
.badge.premium { border-color: #9c7a34; color: #7a5f22; }

.footnote {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 30px 2px 0;
  margin-top: 8px;
}
.footnote a { color: var(--ink); border-bottom: 1px solid var(--line-2); }

/* ------------------------------------------------------------------ gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 0 20px;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 78px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  pointer-events: none;
}
.gallery figure:hover img { transform: scale(1.03); }
.gallery .g-cap {
  position: absolute;
  z-index: 1;
  left: 12px; bottom: 10px; right: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.gallery .a43 { aspect-ratio: 4 / 3; }
.gallery .a34 { aspect-ratio: 3 / 4; }
.gallery .a169 { aspect-ratio: 16 / 9; }
.gallery .span2 { grid-column: span 2; }

/* ------------------------------------------------------------------ shop */
.shop-cat { padding: 8px 0 40px; }
.cat-head {
  border-top: 1px solid var(--rule);
  padding: 14px 2px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.cat-head h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; }
.cat-head .count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
}
.cat-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--red);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
}
.card { display: flex; flex-direction: column; scroll-margin-top: 24px; }
.card .card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.card .card-badges { display: flex; gap: 6px; flex-wrap: wrap; margin: 14px 0 0; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; margin-top: 10px; line-height: 1.2; }
.card .blurb { color: var(--muted); font-size: 14px; margin-top: 8px; }
.card .blurb a { border-bottom: 1px solid var(--line-2); }
.card .blurb a:hover { border-bottom-color: var(--ink); }

.tiers { list-style: none; margin: 14px 0 0; border-top: 1px solid var(--line); }
.tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.tier .t-name { color: var(--ink); }
.tier .t-price { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--muted); }
.tier.featured .t-name { color: var(--ink); font-weight: 500; }
.tier.featured .t-price { color: var(--red); }

.card .card-cta { margin-top: 16px; }
.card-cta .btn { width: 100%; justify-content: center; }
.btn.disabled,
.btn[aria-disabled="true"],
.btn:disabled {
  background: transparent;
  color: var(--faint);
  border-color: var(--line-2);
  cursor: not-allowed;
  pointer-events: none;
}
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  background:
    repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 11px, #eae4d8 11px, #eae4d8 22px);
}

/* keystone (DBC) */
.card.keystone .card-media { border: 1px solid var(--amber); }
.badge.keystone { border-color: var(--amber); color: #8a5a00; }

.quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.quicklinks a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.quicklinks a:hover { color: var(--ink); }
.quicklinks .cat-num { margin-right: 6px; }

.shop-outro {
  border-top: 1px solid var(--rule);
  padding: 40px 0 10px;
  display: grid;
  gap: 12px;
}
.shop-outro h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; }
.shop-outro p { color: var(--muted); max-width: 60ch; }

/* ------------------------------------------------------------------ product detail (DCT) */
.pd { padding: 46px 0 20px; }
.pd-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.pd-photos img { width: 100%; margin-bottom: 16px; display: block; }
.pd-photos img:last-child { margin-bottom: 0; }
.pd-title { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.6vw, 42px); line-height: 1.1; }
.pd-price { font-family: var(--mono); font-size: 20px; margin-top: 14px; }
.pd-price span { color: var(--muted); font-size: 13px; letter-spacing: 0.02em; }
.pd-bullets { list-style: none; margin: 24px 0; }
.pd-bullets li {
  padding: 11px 0 11px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.pd-bullets li::before { content: "\2713"; position: absolute; left: 2px; color: var(--red); font-weight: 700; }
.pd-buy { border: 1px solid var(--rule); padding: 22px; margin-top: 8px; }
.pd-buy .btn { width: 100%; justify-content: center; }
.pd-buy .note { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.6; }
#dct-buy-mount { min-height: 0; }
#dct-buy-mount:empty { display: none; }

.pd-sec { padding: 44px 0 0; }
.pd-sec h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-bottom: 16px;
}
.pd-sec ul { list-style: none; }
.pd-sec ul li { padding: 8px 0 8px 22px; position: relative; font-size: 15px; color: var(--ink); }
.pd-sec ul li::before { content: "\2022"; position: absolute; left: 4px; color: var(--red); }
.pd-video video { width: 100%; max-width: 720px; display: block; }
.pd-video .cap { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--muted); margin-top: 12px; }

.pd-warn { border: 1px solid var(--amber); background: #fdf6e7; padding: 22px 24px; margin-top: 44px; }
.pd-warn h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a5a00;
  border: 0;
  padding: 0;
  margin-bottom: 14px;
}
.pd-warn ul { list-style: none; }
.pd-warn ul li { padding: 8px 0 8px 26px; position: relative; font-size: 14.5px; }
.pd-warn ul li::before { content: "\26A0"; position: absolute; left: 0; color: var(--amber); }

.pd-table { width: 100%; border-collapse: collapse; margin-top: 4px; font-size: 14.5px; }
.pd-table th, .pd-table td { text-align: left; padding: 11px 14px 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.pd-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom-color: var(--line-2);
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 900px) {
  .essay, .cars, .cta-band, .about-grid, .build-hero, .pd-hero { grid-template-columns: 1fr; }
  .essay { gap: 34px; padding: 60px 0; }
  .essay img { height: 320px; }
  .about-grid { gap: 32px; }
  .about-portrait img { min-height: 300px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .prods { grid-template-columns: repeat(2, 1fr); }
  .build-hero .art img { height: 240px; }
  .cta-band { gap: 24px; }
  .pd-video video { max-width: 100%; }
}

@media (max-width: 720px) {
  .frame { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .masthead-inner { padding: 20px 0; }
  .hero { padding: 40px 0 0; }
  .hero .photo img { height: 52vh; min-height: 300px; }
  .ledger { flex-wrap: wrap; }
  .ledger div { flex: 1 1 50%; border-top: 1px solid var(--line); }
  .ledger div:first-child { border-top: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prods { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-band .actions { align-items: stretch; }
  .cta-band .btn { justify-content: center; }
  .sold-banner a { margin-left: 0; }
}

@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .span2 { grid-column: auto; }
  .prods { grid-template-columns: 1fr; }
  .caption { font-size: 9px; letter-spacing: 0.1em; }
}
