/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Colour */
  --asphalt: #141414;
  --concrete: #F4F4F1;
  --ink: #1E1E1E;
  --ink-soft: #55575c;
  --line: #D7D5CE;

  /* Single accent pairing, used everywhere */
  --accent: #F2B705;      /* signal yellow */
  --accent-ink: #141414;  /* text on yellow */

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius: 3px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--concrete);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   SITE HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--asphalt);
  color: var(--concrete);
  padding: 18px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--concrete);
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-nav a {
  text-decoration: none;
  color: #C9C9C4;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.site-nav a:hover { color: var(--concrete); }

/* =========================================================
   SIGNATURE ELEMENT — NUMBER PLATE BADGE
   ========================================================= */
.plate-wrap {
  padding: 40px 0 8px;
}

.plate {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 4px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--plate-accent, var(--accent));
}

.plate .plate-sub {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.page-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  margin: 14px 0 4px;
}

/* pillar accent variants */
.plate--review   { --plate-accent: var(--accent); }
.plate--part     { --plate-accent: var(--accent); }
.plate--desirable{ --plate-accent: var(--accent); }

.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.pill--review    { background: var(--accent);    color: var(--accent-ink); }
.pill--part      { background: var(--accent);      color: var(--accent-ink); }
.pill--desirable { background: var(--accent); color: var(--accent-ink); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.15;
  margin: 4px 0 18px;
  font-weight: 500;
}

h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0 12px;
  text-transform: none;
}

h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}

p { margin: 0 0 16px; }

.lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

/* =========================================================
   LANE-DASH DIVIDER (structural device)
   ========================================================= */
.lane-divider {
  border: none;
  height: 4px;
  margin: 36px 0;
  background-image: repeating-linear-gradient(
    to right,
    var(--ink) 0px, var(--ink) 26px,
    transparent 26px, transparent 44px
  );
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 4px;
  opacity: 0.85;
}

/* =========================================================
   SPEC TABLE
   ========================================================= */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 14px;
  margin: 20px 0 32px;
  border: 1px solid var(--line);
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  width: 40%;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* =========================================================
   SOURCE SUMMARY BLOCKS
   ========================================================= */
.source-block {
  border-left: 3px solid var(--ink);
  padding: 4px 0 4px 18px;
  margin: 20px 0;
}
.source-block h3 { margin-top: 0; }

/* =========================================================
   PROS / CONS
   ========================================================= */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros-cons > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pros-cons h3 { margin-top: 0; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.pros-cons ul { margin: 0; padding-left: 18px; }
.pros-cons li { margin-bottom: 8px; }

@media (max-width: 560px) {
  .pros-cons { grid-template-columns: 1fr; }
  h1 { font-size: 27px; }
  .plate { font-size: 21px; }
}

/* =========================================================
   DISCLAIMER (Parts)
   ========================================================= */
.disclaimer {
  background: #fff;
  border: 1px solid var(--accent);
  border-left-width: 5px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  margin: 20px 0 32px;
}

/* =========================================================
   VIDEO / SOURCE LINKS
   ========================================================= */
.video-links, .sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.video-links li, .sources-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.video-links a, .sources-list a { text-decoration: underline; }

/* =========================================================
   AD SLOT
   ========================================================= */
.ad-slot {
  border: 1px dashed var(--ink-soft);
  padding: 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 30px 0;
  border-radius: var(--radius);
}

/* =========================================================
   HOMEPAGE
   ========================================================= */
.hero {
  background: var(--asphalt);
  color: var(--concrete);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background-image: repeating-linear-gradient(
    to right,
    var(--accent) 0px, var(--accent) 40px,
    transparent 40px, transparent 64px
  );
}
.hero h1 {
  font-size: 42px;
  max-width: 560px;
  margin: 0 0 14px;
}
.hero p {
  font-size: 18px;
  color: #C9C9C4;
  max-width: 480px;
  margin: 0;
}

.browse-section {
  padding: 50px 0 10px;
}
.browse-section h2 {
  margin-top: 0;
}
.browse-section .section-note {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: -8px;
  margin-bottom: 24px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 10px;
}
.pillar-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: #fff;
  border-top: 5px solid var(--card-accent, var(--accent));
}
.pillar-card.card--review    { --card-accent: var(--accent); }
.pillar-card.card--part      { --card-accent: var(--accent); }
.pillar-card.card--desirable { --card-accent: var(--accent); }

.pillar-card .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 8px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}
.pillar-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
}
.chip:hover { border-color: var(--ink); }
.chip .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dot-color, var(--accent));
}
.chip--part .dot { --dot-color: var(--accent); }
.chip--desirable .dot { --dot-color: var(--accent); }

@media (max-width: 700px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
}
.site-footer {
  background: var(--asphalt);
  color: #9C9C97;
  font-size: 13px;
  padding: 34px 0 40px;
  margin-top: 60px;
}
.site-footer a { color: #C9C9C4; text-decoration: none; }

/* Illustrations */
.illustration-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 10px 10px;
  margin: 4px 0 28px;
  text-align: center;
}
.illustration-wrap img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.illustration-wrap .illustration-caption {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.illustration-wrap--part img {
  max-width: 200px;
}
