/* ============================================================
   Fairfield Parts — site stylesheet
   Built on the Fairfield design tokens (imported below).
   Brand rules honoured throughout:
   - The number is the hero; prices/part numbers in tabular figures
   - Post-box red is the single accent (~10% max) — CTAs and flags only
   - Oat/cream paper, never clinical white (white = product photo + tickets)
   - Borders over shadow, tight radii, no gradients, no green,
     and nothing that looks like the steel-grey/orange sister brand
   ============================================================ */

@import url('tokens/colors.css');
@import url('tokens/typography.css');
@import url('tokens/spacing.css');

/* Self-hosted variable fonts (paths relative to this file) */
@font-face {
  font-family: "Bitter";
  src: url("../fonts/Bitter[wght].ttf") format("truetype-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/LibreFranklin[wght].ttf") format("truetype-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-text);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
}
img, svg { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); color: var(--text-heading); line-height: var(--lh-snug); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.num, .price, .part-num { font-feature-settings: var(--num-features); }

/* Small uppercase label */
.label-caps {
  font-family: var(--font-text); font-size: var(--text-2xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--text-muted);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--navy-800); color: var(--oat-50);
}
.site-header__inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 32px;
  min-height: 64px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
@media (max-width: 720px) { .site-header__inner { padding: 0 20px; } }
.wordmark { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 12px 0; }
.wordmark img { border-radius: 7px; display: block; }
.wordmark span {
  font-family: var(--font-display); font-weight: var(--fw-heavy); font-size: 21px;
  letter-spacing: .02em; color: var(--oat-50); white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; padding: 8px 12px;
  font-size: 15px; font-weight: var(--fw-semibold);
  color: var(--navy-400); transition: color 120ms ease;
}
.site-nav a:hover { color: var(--oat-50); }
.site-nav a[aria-current="page"] { color: var(--oat-50); }
.site-nav .nav-cta {
  margin-left: 8px; background: var(--red-600); color: var(--white);
  border-radius: var(--radius-md); padding: 9px 16px;
  transition: background 120ms ease;
}
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { background: var(--red-700); color: var(--white); }

.nav-toggle {
  display: none; margin-left: auto; background: none; cursor: pointer;
  border: 1px solid var(--navy-600); border-radius: var(--radius-md);
  color: var(--oat-50); padding: 8px 10px;
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    display: none; flex-basis: 100%; flex-direction: column; align-items: stretch;
    padding: 4px 0 16px; margin-left: 0; gap: 0;
  }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--navy-700); }
  .site-nav .nav-cta { margin: 12px 0 0; text-align: center; border-bottom: none; }
  .site-header.nav-open .site-nav { display: flex; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--navy-400); padding: 40px 32px 32px; font-size: 13px; }
.site-footer__inner { max-width: var(--container-max); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.site-footer__brand { max-width: 420px; }
.site-footer__wordmark { font-family: var(--font-display); font-weight: var(--fw-heavy); font-size: 18px; color: var(--oat-50); letter-spacing: .02em; }
.site-footer p { margin-top: 8px; line-height: 1.6; }
.site-footer__col { line-height: 1.9; }
.site-footer__head { color: var(--oat-100); font-weight: var(--fw-bold); margin-bottom: 4px; }
.site-footer__col a { color: var(--navy-400); text-decoration: none; display: block; }
.site-footer__col a:hover { color: var(--oat-100); }
.site-footer__legal {
  max-width: var(--container-max); margin: 28px auto 0; padding-top: 18px;
  border-top: 1px solid var(--navy-700); font-size: 12px; line-height: 1.6;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-text); font-weight: var(--fw-bold); font-size: 15px; line-height: 1;
  padding: 12px 20px; border-radius: var(--radius-md);
  cursor: pointer; text-decoration: none; user-select: none;
  border: var(--border-width-thick) solid transparent;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--sm { padding: 8px 14px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--accent { background: var(--red-600); color: var(--white); border-color: var(--red-600); }
.btn--accent:hover { background: var(--red-700); border-color: var(--red-700); }
.btn--primary { background: var(--navy-800); color: var(--oat-50); border-color: var(--navy-800); }
.btn--primary:hover { background: var(--navy-900); border-color: var(--navy-900); }
.btn--secondary { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn--secondary:hover { background: rgba(23,35,59,0.07); }
.btn--secondary-light { background: transparent; color: var(--oat-50); border-color: var(--navy-400); }
.btn--secondary-light:hover { border-color: var(--oat-50); }
.btn:focus-visible, a:focus-visible, .chip:focus-visible {
  outline: none; box-shadow: 0 0 0 2px var(--surface-page), 0 0 0 4px rgba(200,16,46,0.55);
}

/* ============================================================
   Badges, chips, part numbers
   ============================================================ */
.fitment-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--navy-800);
  background: var(--surface-raised); border: var(--border-width) solid var(--border-strong);
  border-radius: var(--radius-pill); padding: 4px 11px 4px 9px; line-height: 1.3;
}
.badge {
  display: inline-flex; align-items: center; padding: 3px 8px; line-height: 1.4;
  font-size: var(--text-2xs); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: var(--tracking-caps);
  border-radius: var(--radius-ticket);
}
.badge--accent { background: var(--red-600); color: var(--white); }
.badge--navy { background: var(--navy-800); color: var(--oat-50); }
.badge--muted { background: var(--oat-300); color: var(--char-700); }

.part-num-chip { display: inline-flex; flex-direction: column; gap: 2px; min-width: 0; }
.part-num-chip .val {
  font-feature-settings: var(--num-features);
  font-size: var(--text-sm); font-weight: var(--fw-semibold); letter-spacing: 0.02em;
  color: var(--navy-800); background: var(--oat-200);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-sm);
  padding: 3px 8px;
}
.part-num-chip--jd .val {
  color: var(--text-muted); background: transparent;
  border: 1px dashed var(--border-strong); white-space: normal;
}

/* Category chips (catalogue filter) */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: var(--fw-semibold); cursor: pointer; text-decoration: none;
  padding: 8px 15px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); background: transparent; color: var(--navy-800);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.chip:hover { background: rgba(23,35,59,0.06); }
.chip.is-on { background: var(--navy-800); color: var(--oat-50); border-color: var(--navy-800); }
.chip .n { font-feature-settings: var(--num-features); font-weight: var(--fw-regular); opacity: .7; font-size: 12px; }

/* ============================================================
   Price block (no live prices yet — the ask is the hero)
   ============================================================ */
.price-block { display: flex; flex-direction: column; gap: 4px; }
.price-block .ask {
  font-family: var(--font-text); font-feature-settings: var(--num-features);
  font-weight: var(--fw-heavy); letter-spacing: -0.02em; line-height: 1;
  color: var(--text-price);
}
.price-block .ask--md { font-size: var(--text-2xl); }
.price-block .ask--lg { font-size: var(--text-4xl); }
.price-block .sub { font-size: var(--text-xs); color: var(--text-muted); font-weight: var(--fw-medium); }

/* ============================================================
   Item cards (catalogue / featured)
   ============================================================ */
.item-card {
  display: flex; flex-direction: column;
  background: var(--surface-card);
  border: var(--border-width) solid var(--border-hairline);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.item-card__photo {
  position: relative; aspect-ratio: 4 / 3; background: var(--white);
  border-bottom: var(--border-width) solid var(--border-hairline);
  display: flex; align-items: center; justify-content: center;
}
.item-card__photo .ph {
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--char-300);
}
.item-card__photo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; padding: 12px; box-sizing: border-box;
}
.item-card__photo .fitment-badge { position: absolute; top: 12px; left: 12px; }
.item-card__body { display: flex; flex-direction: column; gap: 14px; padding: 18px 18px 20px; flex: 1; }
.item-card__body h3 { font-size: var(--text-xl); font-weight: var(--fw-bold); }
.item-card__body h3 a { text-decoration: none; }
.item-card__body h3 a:hover { color: var(--red-600); }
.item-card__refs { display: flex; flex-wrap: wrap; gap: 14px; }
.item-card__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  border-top: var(--border-width) solid var(--border-hairline); padding-top: 14px; margin-top: auto;
}
.item-card__lead { font-size: var(--text-xs); color: var(--text-muted); text-align: right; line-height: 1.3; }
.item-card__lead strong { color: var(--text-body); font-weight: var(--fw-semibold); }

/* Compact list row variant for long catalogue */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-cards { grid-template-columns: 1fr; } }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { background: var(--navy-800); color: var(--oat-50); padding: 72px 32px 80px; }
@media (max-width: 720px) { .hero { padding: 48px 20px 56px; } }
.hero__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 {
  font-weight: var(--fw-heavy); font-size: clamp(40px, 6.5vw, 60px);
  line-height: 1.02; letter-spacing: -.01em; margin: 18px 0 16px; color: var(--oat-50);
}
.hero__lead { font-size: 19px; line-height: 1.55; color: var(--oat-100); max-width: 460px; margin: 0 0 28px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* The price ticket — printed-label register */
.ticket {
  background: var(--surface-ticket); color: var(--text-body);
  border-radius: var(--radius-ticket); padding: 26px 28px;
  box-shadow: var(--shadow-raised); position: relative;
}
.ticket .badge { position: absolute; top: 16px; right: 18px; }
.ticket__title {
  font-size: 12px; font-weight: var(--fw-bold); text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted);
}
.ticket__refs { font-size: 13px; color: var(--text-muted); margin: 4px 0 14px; font-feature-settings: var(--num-features); }
.ticket__note { font-size: 12px; color: var(--text-muted); margin: 12px 0 0; text-align: center; }
.ticket input[type="text"] {
  width: 100%; border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 12px 13px; font-family: var(--font-text); font-size: 16px;
  font-feature-settings: var(--num-features); background: var(--white); color: var(--text-body);
  margin-bottom: 12px;
}
.ticket input[type="text"]:focus { outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(200,16,46,0.18); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 48px 0; }
.section--tight { padding: 40px 0 8px; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.section__head h2 { font-weight: var(--fw-heavy); font-size: 30px; }
.section__link { background: none; border: none; cursor: pointer; text-decoration: none; font-weight: var(--fw-semibold); font-size: 15px; color: var(--red-600); }
.section__link:hover { color: var(--red-700); }

.support { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .support { grid-template-columns: 1fr; } }
.support > div { border-top: 3px solid var(--navy-800); padding-top: 14px; }
.support h3 { font-size: 20px; font-weight: var(--fw-bold); margin: 0 0 6px; }
.support p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-muted); }

/* Category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-tile {
  display: block; text-decoration: none;
  background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-card);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.cat-tile:hover { border-color: var(--border-strong); box-shadow: var(--shadow-raised); }
.cat-tile .n { font-size: 12px; color: var(--text-muted); font-feature-settings: var(--num-features); }
.cat-tile h3 { font-size: 19px; font-weight: var(--fw-bold); margin: 4px 0 6px; }
.cat-tile p { font-size: 14px; line-height: 1.5; color: var(--text-muted); margin: 0; }

/* Callout strips */
.callout {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding: 20px 24px; border-radius: var(--radius-lg);
}
.callout--ink { background: var(--surface-ink); }
.callout--ticket { background: var(--surface-card); border: var(--border-width) solid var(--border-hairline); border-left: 4px solid var(--red-600); }
.callout__text { display: flex; flex-direction: column; gap: 4px; min-width: 220px; flex: 1 1 auto; }
.callout__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--fw-bold); line-height: var(--lh-snug); }
.callout--ink .callout__title { color: var(--oat-50); }
.callout--ticket .callout__title { color: var(--text-heading); }
.callout__body { font-size: var(--text-md); }
.callout--ink .callout__body { color: var(--text-on-ink-muted); }
.callout--ticket .callout__body { color: var(--text-muted); }

/* ============================================================
   Page head bands (interior pages)
   ============================================================ */
.band {
  background: var(--oat-100); border-bottom: 1px solid var(--border-hairline);
  padding: 32px;
}
@media (max-width: 720px) { .band { padding: 24px 20px; } }
.band__inner { max-width: var(--container-max); margin: 0 auto; }
.band h1 { font-weight: var(--fw-heavy); font-size: 34px; margin: 0 0 4px; }
.band p { margin: 0; font-size: 16px; color: var(--text-muted); max-width: 640px; }
.band .search { max-width: 460px; margin-top: 20px; }
.band .search input {
  width: 100%; border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 12px 14px; font-family: var(--font-text); font-size: 16px;
  font-feature-settings: var(--num-features); background: var(--white);
}
.band .search input:focus { outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(200,16,46,0.18); }

/* Catalogue filter row */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.count-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   Product page
   ============================================================ */
.crumb {
  display: inline-block; text-decoration: none; font-size: 14px; font-weight: var(--fw-semibold);
  color: var(--text-muted); margin: 24px 0 20px;
}
.crumb:hover { color: var(--navy-800); }
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 40px; }
@media (max-width: 900px) { .product { grid-template-columns: 1fr; gap: 28px; } }
.product__photo {
  aspect-ratio: 4 / 3; background: var(--white); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.product__photo span {
  font-size: 12px; font-weight: var(--fw-bold); text-transform: uppercase;
  letter-spacing: .08em; color: var(--char-300);
}
.product__photo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; padding: 16px; box-sizing: border-box;
}
.product__thumbs { display: flex; gap: 10px; margin-bottom: 20px; }
.product__thumbs img {
  width: 96px; height: 96px; object-fit: contain; background: var(--white);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-md);
  padding: 6px; box-sizing: border-box;
}
.product h1 { font-weight: var(--fw-heavy); font-size: 36px; margin: 12px 0 16px; line-height: 1.1; }
.product__refs { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.product__price-row { border-top: 1px solid var(--border-hairline); padding-top: 18px; }
.product__meta { font-size: 14px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; max-width: 420px; }
.product__desc { margin-top: 18px; font-size: 16px; line-height: 1.6; max-width: 60ch; }

/* Enquiry panel (on product page and enquire page) */
.panel {
  background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg); padding: 28px;
}
.panel h2 { font-weight: var(--fw-heavy); font-size: 24px; margin: 0 0 4px; }
.panel > p { font-size: 14px; color: var(--text-muted); margin: 0 0 20px; }

/* Wear check section */
.wear-check { border-top: 1px solid var(--border-hairline); margin-top: 8px; padding: 28px 0 8px; }
.wear-check h2 { font-size: 24px; font-weight: var(--fw-bold); margin-bottom: 10px; }
.wear-check p { font-size: 15.5px; line-height: 1.65; max-width: 72ch; }
.wear-check a { color: var(--red-600); font-weight: var(--fw-semibold); text-decoration: none; }
.wear-check a:hover { text-decoration: underline; }

/* ============================================================
   Forms
   ============================================================ */
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: block; }
.field__label {
  display: block; font-size: 13px; font-weight: var(--fw-semibold);
  color: var(--char-700); margin-bottom: 6px;
}
.field__label .opt { color: var(--text-muted); font-weight: var(--fw-regular); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field select, .field textarea {
  width: 100%; border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 11px 13px; font-family: var(--font-text); font-size: 16px;
  background: var(--white); color: var(--text-body);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.field textarea { resize: vertical; }
.field .num { font-feature-settings: var(--num-features); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(200,16,46,0.18);
}
.field__hint { display: block; color: var(--text-muted); font-size: 12px; margin-top: 5px; }
.radio-row { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 4px; }
.radio-row label { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; cursor: pointer; }
.radio-row input[type="radio"], .check-label input[type="checkbox"] { accent-color: var(--red-600); width: 16px; height: 16px; }
.check-label { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; cursor: pointer; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* Enquiry list (localStorage) */
.pick-list {
  background: var(--surface-raised); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-ticket); box-shadow: var(--shadow-ticket);
  padding: 16px 18px; margin-bottom: 20px;
}
.pick-list__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.pick-list__clear { background: none; border: none; cursor: pointer; font-size: 12px; color: var(--text-muted); text-decoration: underline; padding: 0; }
.pick-list ul { list-style: none; margin: 0; padding: 0; font-size: 14px; font-feature-settings: var(--num-features); }
.pick-list li { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-top: 1px solid var(--border-hairline); }
.pick-list li:first-child { border-top: none; }
.pick-list__remove { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 0 2px; font-size: 15px; }
.pick-list__remove:hover { color: var(--red-600); }
.pick-list__empty { font-size: 13px; color: var(--text-muted); }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  background: var(--navy-800); color: var(--oat-50);
  border-left: 4px solid var(--red-600);
  padding: 14px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-raised);
  font-size: 14px; opacity: 0; transform: translateY(8px);
  transition: opacity 120ms ease, transform 120ms ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: none; pointer-events: auto; }
.toast a { color: var(--oat-50); font-weight: var(--fw-bold); }

/* ============================================================
   Steps / prose / notices
   ============================================================ */
.steps { margin: 28px 0; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid var(--border-hairline); }
.step:last-child { border-bottom: 1px solid var(--border-hairline); }
.step__num {
  font-family: var(--font-display); font-weight: var(--fw-heavy); font-size: 34px; line-height: 1;
  color: var(--oat-400); font-feature-settings: var(--num-features);
}
.step h3 { font-size: 20px; font-weight: var(--fw-bold); margin-bottom: 6px; }
.step p { font-size: 15.5px; line-height: 1.6; color: var(--char-700); max-width: 62ch; margin: 0; }

.prose { max-width: 70ch; }
.prose p { font-size: 16px; line-height: 1.65; }
.prose .lead { font-size: 19px; line-height: 1.55; }
.prose h2 { font-size: 26px; font-weight: var(--fw-bold); margin: 32px 0 10px; }
.prose ul { padding-left: 20px; font-size: 16px; line-height: 1.65; }
.prose li { margin-bottom: 6px; }

.notice {
  background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-left: 4px solid var(--red-600); border-radius: var(--radius-md);
  padding: 14px 18px; font-size: 14px; line-height: 1.6; color: var(--char-700); margin: 24px 0;
}

/* Wear guide entries */
.guide-entry { border-top: 1px solid var(--border-hairline); padding: 24px 0; }
.guide-entry:last-of-type { border-bottom: 1px solid var(--border-hairline); }
.guide-entry h3 { font-size: 20px; font-weight: var(--fw-bold); margin-bottom: 4px; }
.guide-entry p { font-size: 15px; line-height: 1.65; max-width: 75ch; margin: 10px 0; }
.guide-entry .applies { font-size: 14px; }
.guide-entry .applies a { color: var(--red-600); font-weight: var(--fw-semibold); text-decoration: none; }
.guide-entry .applies a:hover { text-decoration: underline; }
.guide-entry .applies .part-num { color: var(--text-muted); font-size: 12px; font-feature-settings: var(--num-features); }

/* Success state */
.sent-panel { padding: 20px 4px; }
.sent-panel h2 { font-weight: var(--fw-heavy); font-size: 26px; margin: 14px 0 8px; }
.sent-panel p { font-size: 16px; line-height: 1.55; color: var(--text-muted); margin: 0 0 20px; }

/* Spec table (product print + contact) */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; font-feature-settings: var(--num-features); }
.spec-table td { padding: 6px 0; vertical-align: top; border-bottom: 1px solid var(--border-hairline); }
.spec-table td:first-child { color: var(--text-muted); width: 150px; padding-right: 12px; }

/* ============================================================
   Print — product pages double as A4 price-sheet one-pagers
   ============================================================ */
@media print {
  @page { margin: 14mm; }
  body { background: #fff; font-size: 12px; }
  .site-header, .site-footer, .nav-toggle, .crumb, .toast,
  .panel, .callout, .no-print { display: none !important; }
  .product { grid-template-columns: 1fr; gap: 16px; padding-bottom: 0; }
  .product__photo { max-height: 200px; }
  .item-card, .cat-tile, .ticket { box-shadow: none; }
  .print-head {
    display: flex !important; align-items: baseline; justify-content: space-between;
    border-bottom: 3px solid var(--navy-800); padding-bottom: 8px; margin-bottom: 16px;
  }
  .print-head .wm { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--navy-800); letter-spacing: .02em; }
  .print-foot {
    display: block !important; margin-top: 20px; border-top: 1px solid var(--border-hairline);
    padding-top: 10px; font-size: 10px; color: var(--char-500);
  }
  a { text-decoration: none; color: inherit; }
}
.print-head, .print-foot { display: none; }
