/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --black: #1A1A1A;
  --red: #D42B2B;
  --white: #FFFFFF;
  --slate-dark: #2D3748;
  --slate: #4A5568;
  --slate-mid: #718096;
  --slate-light: #A0AEC0;
  --concrete: #CBD5E0;
  --concrete-dark: #A0AEC0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 120px 0 160px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--slate-dark);
  letter-spacing: -0.01em;
}

/* ===== NUMBERS ===== */
.numbers {
  background: var(--slate-dark);
  color: var(--white);
  padding: 40px 0;
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.num-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
  text-align: center;
}

.num-divider {
  width: 1px;
  height: 60px;
  background: var(--slate);
}

.num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.num-label {
  font-size: 13px;
  color: var(--concrete);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ===== CATEGORIES ===== */
.categories-section {
  background: var(--white);
  padding: 100px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 32px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cat-item {
  background: var(--white);
  border: 2px solid var(--slate-dark);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--slate-dark);
  border-radius: 0;
  transition: all 0.2s ease;
}

.cat-item:hover {
  background: var(--slate-dark);
  color: var(--white);
}

.cat-large { grid-column: span 1; }
.cat-wide { grid-column: span 1; }

.cat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--slate-dark);
  opacity: 1;
}

.cat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex: 1;
  letter-spacing: 0.01em;
}

.cat-count {
  font-size: 11px;
  color: var(--slate-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CLOSING ===== */
.closing-section {
  background: var(--white);
  padding: 120px 0 160px;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--slate-dark);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 18px;
  color: var(--slate-mid);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate-dark);
  color: var(--white);
  padding: 60px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--concrete);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-inner { flex-direction: column; gap: 32px; }
  .num-divider { width: 60px; height: 1px; }
}

@media (max-width: 600px) {
  .hero, .categories-section, .closing-section { padding: 60px 0; }
  .hero-inner, .section-inner, .closing-inner { padding: 0 20px; }
  .category-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 56px; }
}

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — NAV ===== */
.hm-page {
  background: var(--cream);
}

.sc-nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  height: 72px;
  border-bottom: 4px solid var(--black);
}

.sc-nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.12em;
}

.sc-nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.sc-nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 24px;
  border-left: 3px solid var(--black);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.1s, color 0.1s;
}

.sc-nav-links a:hover { background: var(--black); color: var(--cream); }

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — HERO ===== */
.sc-hero {
  position: relative;
  min-height: 85vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.sc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_175656/0f8222d7-aa94-47b9-bf0a-5b7c2a5990ae.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.sc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 30% 100%);
}

/* Full-width black band — edge-to-edge, monumental constructivist element */
.sc-hero-band {
  position: relative;
  z-index: 2;
  background: var(--black);
  width: 100%;
  padding: 100px 0 80px;
  /* Bottom-tapered diagonal — pairs with the steeper 20% top cut on .cd-reasoning */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

/* Lissitzky accent square — 72px red block behind headline */
.sc-hero-band::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 80px;
  width: 72px;
  height: 72px;
  background: var(--red);
  z-index: 0;
}

.sc-hero-text {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.sc-overline {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  margin-bottom: 20px;
}

.sc-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 400;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.sc-hero-meta {
  position: absolute;
  bottom: 80px;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 48px;
  background: var(--black);
  border-left: 6px solid var(--red);
}

.sc-meta-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}

.sc-meta-product {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.sc-meta-brand {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.sc-meta-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 14vw, 160px);
  font-weight: 400;
  color: var(--red);
  line-height: 0.9;
  letter-spacing: 0.01em;
  display: block;
}

.sc-meta-score span {
  font-size: 22px;
  opacity: 0.5;
}

.sc-hero-cta {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 18px 36px;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: background 0.15s;
  margin-top: 32px;
}

.sc-hero-cta:hover { background: var(--black); }

.sc-no-pick {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — STATS ===== */
.sc-stats {
  background: var(--black);
  padding: 0;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}

.sc-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 40px;
  text-align: center;
  border-right: 3px solid #2a2a2a;
}

.sc-stat:last-child { border-right: none; }

.sc-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.sc-stat-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  color: var(--cream);
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.sc-stat-red {
  color: var(--red);
}

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — CATEGORIES ===== */
.sc-categories {
  background: var(--cream);
  padding: 0;
}

.sc-categories-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.sc-section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px 0 40px;
  border-bottom: 4px solid var(--black);
  margin-bottom: 0;
}

.sc-section-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.5;
}

.sc-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.sc-cat-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  padding: 36px 32px;
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.04em;
  line-height: 1.1;
  transition: background 0.1s, color 0.1s;
}

.sc-cat-item:hover { background: var(--black); color: var(--cream); }

.sc-cat-arrow {
  font-size: 18px;
  opacity: 0.3;
  flex-shrink: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
}

.sc-cat-item:hover .sc-cat-arrow { opacity: 0.5; }

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — FEATURE IMAGE SECTION ===== */
.sc-feature {
  position: relative;
  background: var(--black);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-top: 4px solid var(--black);
}

.sc-feature-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_175656/75eaed93-4e2d-4ba0-b15e-cd581754e316.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.sc-feature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.9) 70%);
}

.sc-feature-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 80px;
}

.sc-feature-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 400;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.02em;
  max-width: 700px;
}

.sc-feature-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.5;
  max-width: 420px;
  line-height: 1.7;
  margin-top: 24px;
}

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — CLOSING ===== */
.sc-closing {
  background: var(--cream);
  padding: 100px 0 140px;
  border-top: 4px solid var(--black);
}

.sc-closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.sc-closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.sc-closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--black);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sc-closing-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sc-closing-tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  max-width: 380px;
}

.sc-closing-link {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background 0.15s;
  align-self: flex-start;
}

.sc-closing-link:hover { background: var(--black); }

/* ===== HOMEPAGE SOVIET CONSTRUCTIVIST — FOOTER ===== */
.site-footer {
  background: var(--black);
  border-top: 4px solid var(--black);
}

.sc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 80px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sc-footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.12em;
  opacity: 0.4;
}

.sc-footer-links {
  display: flex;
  gap: 0;
}

.sc-footer-links a {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  border-left: 2px solid #2a2a2a;
  transition: opacity 0.15s;
}

.sc-footer-links a:hover { opacity: 1; }

.sc-footer-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  color: var(--cream);
  opacity: 0.3;
  letter-spacing: 0.05em;
}

/* Full-bleed MERIDIAN band — monumental Constructivist closer */
.sc-footer-band {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--black);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 240px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  padding: 32px 0;
  border-top: 4px solid var(--black);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sc-hero-band { padding: 80px 0 60px; }
  .sc-hero-text { padding: 0 40px; }
  .sc-hero-meta {
    position: static;
    margin: 32px 40px 40px;
    padding: 28px 32px;
  }
  .sc-meta-product { font-size: 32px; }
  .sc-categories-inner { padding: 0 40px; }
  .sc-footer-inner { padding: 40px; }
}

@media (max-width: 900px) {
  .sc-nav { padding: 0 24px; }
  .sc-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .sc-stat { border-bottom: 3px solid #2a2a2a; }
  .sc-stat:nth-child(2n) { border-right: none; }
  .sc-stat:nth-last-child(-n+2) { border-bottom: none; }
  .sc-closing-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-feature-content { padding: 60px 40px; }
}

@media (max-width: 600px) {
  .sc-nav { padding: 0 20px; }
  .sc-nav-links a { padding: 0 16px; font-size: 12px; }
  .sc-hero-band { padding: 48px 0 40px; }
  .sc-hero-text { padding: 0 20px; }
  .sc-hero-meta { margin: 24px 20px 32px; padding: 24px; }
  .sc-stats-inner { grid-template-columns: 1fr 1fr; }
  .sc-stat { padding: 40px 20px; }
  .sc-stat-num { font-size: 64px; }
  .sc-categories-inner { padding: 0 20px; }
  .sc-cat-grid { grid-template-columns: 1fr 1fr; }
  .sc-cat-item { font-size: 22px; padding: 24px 20px; }
  .sc-closing-inner { padding: 0 20px 80px; }
  .sc-closing-headline { font-size: 64px; }
  .sc-feature-content { padding: 48px 20px; }
  .sc-feature-headline { font-size: 56px; }
  .sc-footer-inner { padding: 32px 20px; flex-wrap: wrap; }
}

/* ===== SITE NAV (non-homepage pages) ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  background: var(--white);
  border-bottom: 2px solid var(--slate-dark);
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 24px; }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--slate-dark); }

/* ===== CATEGORY GRID ===== */
.grid-hero {
  padding: 80px 0 60px;
  background: var(--white);
  border-bottom: 1px solid var(--concrete);
}

.grid-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.grid-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--slate-dark);
  margin-bottom: 20px;
}

.grid-sub {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 500px;
}

.grid-section { background: var(--white); padding: 80px 0; }

.grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.pick-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--concrete);
  border-radius: 0;
  padding: 28px;
  text-decoration: none;
  color: var(--slate-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pick-card:hover { border-color: var(--slate-dark); box-shadow: 3px 3px 0 var(--slate-dark); }

.pick-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pick-icon {
  width: 10px;
  height: 10px;
  background: var(--slate-dark);
  flex-shrink: 0;
}

.pick-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.pick-product { flex: 1; margin-bottom: 20px; }

.pick-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pick-name--empty { color: var(--slate-mid); font-style: italic; }

.pick-one-liner {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

.pick-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--concrete);
  padding-top: 16px;
}

.pick-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-dark);
}

.pick-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-dark);
  letter-spacing: 0.05em;
}

.pick-link--dim { color: var(--slate-mid); }

.grid-closing {
  background: var(--white);
  padding: 60px 0 80px;
}

.grid-closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.grid-closing-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.grid-closing-sub {
  font-size: 15px;
  color: var(--slate);
  max-width: 500px;
  line-height: 1.7;
}

/* ===== CATEGORY DETAIL ===== */
.detail-hero {
  background: var(--white);
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--concrete);
}

.detail-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.detail-back {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-mid);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.detail-back:hover { color: var(--slate-dark); }

.detail-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 8px;
}

.detail-tagline {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

.detail-pick {
  background: var(--white);
  padding: 80px 0;
}

.detail-pick-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.pick-crown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.crown-mark { font-size: 16px; color: var(--slate-dark); }

.crown-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.pick-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--slate-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.pick-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--concrete);
}

.meta-block { display: flex; flex-direction: column; gap: 4px; }

.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.meta-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-dark);
}

.meta-note { font-size: 12px; color: var(--slate-mid); }

.pick-coming {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 500px;
}

.detail-reasoning {
  background: var(--white);
  padding: 80px 0;
}

.detail-reasoning-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.reasoning-header { margin-bottom: 32px; }

.reasoning-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.reasoning-body {
  font-size: 16px;
  color: var(--slate-dark);
  line-height: 1.8;
  max-width: 640px;
}

.reasoning-body h2, .reasoning-body h3, .reasoning-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--slate-dark);
  margin: 40px 0 16px;
  line-height: 1.2;
}

.reasoning-body h2 { font-size: 24px; }
.reasoning-body h3 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; margin: 32px 0 12px; }
.reasoning-body h4 { font-size: 16px; border-bottom: 1px solid var(--concrete); padding-bottom: 8px; }

.reasoning-body p { margin-bottom: 20px; }
.reasoning-body ul, .reasoning-body ol { margin: 0 0 20px 24px; }
.reasoning-body li { margin-bottom: 8px; line-height: 1.7; }
.reasoning-body strong { font-weight: 600; }
.reasoning-body em { font-style: italic; }

.reasoning-source {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--concrete);
}

.source-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 8px;
}

.source-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--concrete);
  transition: border-color 0.2s, color 0.2s;
}
.source-link:hover { color: var(--slate-dark); border-color: var(--slate-dark); }

.detail-closing {
  background: var(--white);
  padding: 60px 0 80px;
}

.detail-closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.detail-closing-note {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.7;
  font-style: italic;
}

/* ===== 404 — CONSTRUCTIVIST ===== */
.nf-page {
  background: var(--cream);
}

.nf-hero {
  background: var(--cream);
  border-bottom: 4px solid var(--black);
  overflow: hidden;
}

.nf-hero-band {
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  padding: 100px 0 120px;
}

.nf-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.nf-overline {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  margin-bottom: 20px;
}

.nf-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 400;
  line-height: 0.85;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.nf-divider {
  width: 80px;
  height: 6px;
  background: var(--red);
  margin: 40px 0;
}

.nf-tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.4;
  letter-spacing: 0.05em;
}

.nf-body {
  background: var(--cream);
  padding: 80px 0 100px;
}

.nf-body-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.nf-body-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.nf-body-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nf-body-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: var(--black);
  opacity: 0.55;
  line-height: 1.7;
  max-width: 400px;
}

.nf-cta {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background 0.15s;
  align-self: flex-start;
}

.nf-cta:hover { background: var(--black); }

.nf-deco-block {
  width: 160px;
  height: 160px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.nf-deco-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.15;
  line-height: 1;
}

@media (max-width: 900px) {
  .nf-hero-band { padding: 80px 0 100px; }
  .nf-hero-content { padding: 0 40px; }
  .nf-body-inner { padding: 0 40px; }
  .nf-body-grid { gap: 40px; }
  .nf-deco-block { width: 120px; height: 120px; }
  .nf-deco-num { font-size: 64px; }
}

@media (max-width: 600px) {
  .nf-hero-band { padding: 48px 0 64px; }
  .nf-hero-content { padding: 0 20px; }
  .nf-code { font-size: 80px; }
  .nf-divider { margin: 24px 0; }
  .nf-body { padding: 48px 0 60px; }
  .nf-body-inner { padding: 0 20px; }
  .nf-body-grid { grid-template-columns: 1fr; }
  .nf-body-right { display: none; }
  .nf-body-left { gap: 24px; }
  .nf-cta { font-size: 18px; padding: 14px 28px; }
}

/* ===== SEARCH ===== */
.search-hero {
  padding: 80px 0 60px;
  background: var(--white);
}

.search-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.search-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--slate-dark);
  margin-bottom: 28px;
  line-height: 1;
}

.search-form {
  display: flex;
  gap: 12px;
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  border: 2px solid var(--concrete);
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--slate-dark);
  transition: border-color 0.15s;
}

.search-input:focus { border-color: var(--slate-dark); }

.search-btn {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  background: var(--slate-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.search-btn:hover { background: var(--slate); }

.search-results { padding: 0 0 100px; }

.search-results-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.search-count {
  font-size: 14px;
  color: var(--slate-mid);
  margin-bottom: 32px;
  font-weight: 500;
}

.search-empty {
  padding: 60px 0;
  text-align: center;
}

.search-empty-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.search-empty-sub {
  font-size: 15px;
  color: var(--slate-mid);
  margin-bottom: 24px;
}

.search-browse-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-dark);
  text-decoration: none;
}

.search-browse-link:hover { color: var(--slate); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-mid);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--slate-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--slate-dark); }
.breadcrumb-sep { color: var(--slate-light); font-size: 11px; }
.breadcrumb-current { color: var(--slate-dark); font-weight: 600; }

/* ===== ABOUT — SOVIET CONSTRUCTIVIST ===== */
.about-hero {
  background: var(--cream);
}

.about-hero-band {
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding: 100px 0 120px;
}

.about-hero-text {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-overline {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  margin-bottom: 20px;
}

.about-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about-hero-sub {
  background: var(--cream);
  padding: 80px 0 0;
}

.about-hero-sub-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: var(--black);
  line-height: 1.7;
  max-width: 560px;
}

/* Content — cream with hard separation bands */
.about-content {
  background: var(--cream);
  padding: 0;
  border-top: 4px solid var(--black);
}

.about-content-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-block {
  border-bottom: 4px solid var(--black);
  padding: 72px 0;
}

.about-block:last-child {
  border-bottom: none;
}

.about-block-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.about-block-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.about-block-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: start;
}

.about-block-body::before {
  content: '';
  width: 4px;
  background: var(--red);
  align-self: stretch;
  margin-right: 0;
}

.about-block-body p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 48px;
}

.about-block-body p:last-child { margin-bottom: 0; }

.about-block-body em {
  font-style: italic;
  color: var(--black);
}

/* Closing — black band with diagonal geometry */
.about-closing {
  background: var(--cream);
}

.about-closing-band {
  background: var(--black);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  padding: 120px 0 140px;
}

.about-closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about-closing-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 16px;
}

.about-closing-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.55;
  line-height: 1.7;
  margin-top: 0;
}

.about-closing-sub a {
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid rgba(245,240,232,0.3);
  text-decoration: none;
  transition: border-color 0.15s;
}

.about-closing-sub a:hover { border-bottom-color: var(--cream); }

@media (max-width: 900px) {
  .about-closing-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .about-hero-band { padding: 64px 0 80px; }
  .about-hero-text { padding: 0 20px; }
  .about-headline { font-size: 72px; }
  .about-hero-sub { padding: 48px 0 0; }
  .about-hero-sub-inner { padding: 0 20px; }
  .about-content-inner { padding: 0 20px; }
  .about-block { padding: 48px 0; }
  .about-block-num { font-size: 56px; }
  .about-block-title { font-size: 40px; }
  .about-block-body { grid-template-columns: 1fr; }
  .about-block-body::before { display: none; }
  .about-block-body p { padding-left: 0; }
  .about-closing-band { padding: 80px 0 100px; }
  .about-closing-inner { padding: 0 20px; gap: 32px; }
  .about-closing-headline { font-size: 56px; }
}

/* ===== CATEGORY DETAIL — SOVIET CONSTRUCTIVIST ===== */
.sc-page {
  background: var(--cream);
}

/* HERO — full-width black band, monumental headline */
.cd-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0 72px;
  border-bottom: 4px solid var(--black);
  /* Bottom-tapered diagonal — keeps the Rodchenko wedge continuous into .cd-reasoning */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.cd-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.cd-overline {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  margin-bottom: 20px;
}

.cd-freshness {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.5rem 0;
  opacity: 0.85;
}
.cd-freshness--fresh { color: #9bcfa3; }
.cd-freshness--stale { color: #d4a574; }
.cd-freshness-detail {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  opacity: 0.75;
}

.cd-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.cd-tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.4;
  margin-top: 28px;
  max-width: 500px;
  line-height: 1.6;
}

/* BREADCRUMB BAR — thin cream band below hero */
.cd-breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 3px solid var(--black);
  padding: 12px 0;
}

.cd-breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  opacity: 0.45;
}

.cd-breadcrumb-inner a {
  color: var(--black);
  opacity: 0.45;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.1s;
}

.cd-breadcrumb-inner a:hover { opacity: 0.8; }

.cd-breadcrumb-sep {
  font-size: 10px;
  opacity: 0.3;
}

.cd-breadcrumb-current {
  opacity: 0.8;
  font-weight: 600;
}

/* PICK SECTION — cream background, asymmetric layout */
.cd-pick {
  background: var(--cream);
  padding: 80px 0 100px;
}

.cd-pick-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: start;
  border-bottom: 4px solid var(--black);
  padding-bottom: 80px;
}

/* Left label column — vertical text */
.cd-pick-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 8px;
  padding-right: 48px;
  border-right: 4px solid var(--black);
}

.cd-pick-tag {
  font-size: 24px;
  color: var(--red);
}

.cd-pick-tag-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.5;
  writing-mode: horizontal-tb;
}

/* Right body — offset content */
.cd-pick-body {
  padding-left: 56px;
}

.cd-pick-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cd-pick-one-liner {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  opacity: 0.55;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Meta grid */
.cd-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 3px solid var(--black);
  padding-top: 0;
}

.cd-meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 24px 24px 0;
  border-right: 2px solid rgba(26,26,26,0.12);
}

.cd-meta-block:last-child { border-right: none; }

.cd-full-reasoning-btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background 0.15s;
  margin-top: 32px;
}

.cd-full-reasoning-btn:hover { background: var(--black); }

.cd-meta-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}

.cd-meta-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
}

.cd-meta-red { color: var(--red); }

.cd-meta-score-unit {
  font-size: 20px;
  opacity: 0.5;
}

/* In-progress state */
.cd-pick-pending {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: var(--black);
  opacity: 0.55;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.cd-cta {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background 0.15s;
}

.cd-cta:hover { background: var(--black); }

.cd-cta--secondary {
  background: var(--black);
}

.cd-cta--secondary:hover { background: var(--red); }

/* REASONING — full-width black with diagonal clip-path at top */
.cd-reasoning {
  position: relative;
  background: var(--black);
  overflow: hidden;
  border-top: 4px solid var(--black);
  /* Diagonal clip — steep Rodchenko wedge, ~20deg top-left drop */
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  padding: 120px 0 100px;
}

.cd-reasoning-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.cd-reasoning-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.cd-reasoning-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}

.cd-reasoning-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  white-space: nowrap;
}

.cd-reasoning-rule {
  flex: 1;
  height: 6px;
  background: rgba(245,240,232,0.55);
}

.cd-reasoning-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.85;
  max-width: 680px;
}

.cd-reasoning-body p { margin-bottom: 24px; }
.cd-reasoning-body p:last-child { margin-bottom: 0; }

.cd-reasoning-body h2,
.cd-reasoning-body h3,
.cd-reasoning-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 48px 0 20px;
  text-transform: uppercase;
}

.cd-reasoning-body h2 { font-size: 36px; }
.cd-reasoning-body h3 { font-size: 24px; }
.cd-reasoning-body h4 { font-size: 18px; color: rgba(245,240,232,0.6); }

.cd-reasoning-body ul,
.cd-reasoning-body ol {
  margin: 0 0 24px 28px;
  padding: 0;
}

.cd-reasoning-body li {
  margin-bottom: 12px;
  line-height: 1.75;
}

.cd-reasoning-body strong {
  font-weight: 700;
  color: var(--cream);
}

.cd-reasoning-body em { font-style: italic; }

.cd-reasoning-editorial {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
  padding: 20px 0 36px;
  margin-bottom: 36px;
  border-bottom: 2px solid rgba(245,240,232,0.18);
  max-width: 680px;
}

.cd-reasoning-editorial p { margin-bottom: 12px; }
.cd-reasoning-editorial p:last-child { margin-bottom: 0; }

/* Cost-per-use prose under the primary meta grid */
.cd-pick-cpu-prose {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.7;
  max-width: 680px;
  margin: 24px 0 0;
}

.cd-pick-cpu-prose--muted {
  font-style: italic;
  opacity: 0.45;
}

/* Sources */
.cd-sources {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 5px solid rgba(245,240,232,0.6);
}

.cd-sources-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.3;
  margin-bottom: 20px;
}

.cd-sources-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-source-link {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 4px solid rgba(245,240,232,0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.15s;
}

.cd-source-link-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cd-source-link-name::after {
  content: '→';
  font-size: 12px;
  opacity: 0.3;
}

.cd-source-badge {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  padding: 3px 7px;
  border: 1px solid rgba(245,240,232,0.25);
  border-radius: 2px;
  white-space: nowrap;
}

.cd-source-link:hover { opacity: 0.7; }
.cd-source-link:hover .cd-source-link-name::after { opacity: 0.6; }

/* CLOSING — cream band */
.cd-closing {
  background: var(--cream);
  padding: 80px 0 100px;
  border-top: 0;
}

.cd-closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.cd-closing-text p {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--black);
  opacity: 0.45;
  line-height: 1.7;
}

.cd-closing-text p:first-child {
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 8px;
}

.cd-closing-cta {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background 0.15s;
  white-space: nowrap;
}

.cd-closing-cta:hover { background: var(--black); }

/* ===== PICK DETAIL ===== */
.pd-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0 72px;
  border-bottom: 4px solid var(--black);
  /* Bottom-tapered diagonal — matches .cd-hero above .pd-reasoning */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}
.pd-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.pd-overline {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  margin-bottom: 20px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.pd-overline:hover { opacity: 0.7; }
.pd-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pd-one-liner {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.45;
  max-width: 560px;
  line-height: 1.6;
  margin-top: 28px;
  margin-bottom: 0;
}
.pd-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.pd-badge { display: flex; align-items: baseline; gap: 4px; }
.pd-badge--score { background: var(--red); padding: 10px 20px; }
.pd-badge-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.02em;
}
.pd-badge-unit {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: var(--cream);
  opacity: 0.6;
}
.pd-badge--grade {
  border: 2px solid rgba(245,240,232,0.5);
  padding: 10px 18px;
}
.pd-source-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 18px 32px;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 36px;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.pd-source-cta:hover { background: var(--black); }
.pd-source-cta-arrow { transition: transform 0.15s; }
.pd-source-cta:hover .pd-source-cta-arrow { transform: translate(2px, -2px); }
.pd-breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 3px solid var(--black);
  padding: 12px 0;
}
.pd-breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  opacity: 0.45;
}
.pd-breadcrumb-inner a {
  color: var(--black);
  opacity: 0.45;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.1s;
}
.pd-breadcrumb-inner a:hover { opacity: 0.8; }
.pd-breadcrumb-current { opacity: 0.8; font-weight: 600; }
.pd-specs {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 4px solid var(--black);
}
.pd-specs-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.pd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 3px solid var(--black);
}
.pd-product-col {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.pd-product-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}
.pd-product-brand {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.45;
  margin-bottom: 8px;
}
.pd-product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.pd-product-supplier {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: var(--black);
  opacity: 0.45;
  margin-top: 8px;
}
.pd-specs-table { display: flex; flex-direction: column; }
.pd-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.pd-spec-key {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}
.pd-spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
}
.pd-source-link {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(26,26,26,0.25);
  transition: opacity 0.15s;
}
.pd-source-link:hover { opacity: 0.6; }
.pd-raw-specs { margin-top: 48px; }
.pd-raw-specs-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
  margin-bottom: 24px;
}
.pd-raw-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.pd-raw-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid rgba(26,26,26,0.12);
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.pd-raw-spec-key {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}
.pd-raw-spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
}
.pd-reasoning {
  position: relative;
  background: var(--black);
  overflow: hidden;
  border-top: 4px solid var(--black);
  /* Diagonal clip — steep Rodchenko wedge, ~20deg top-left drop */
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  padding: 120px 0 100px;
}
.pd-reasoning-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.pd-reasoning-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
.pd-reasoning-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  white-space: nowrap;
}
.pd-reasoning-rule {
  flex: 1;
  height: 6px;
  background: rgba(245,240,232,0.55);
}
.pd-reasoning-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.85;
  max-width: 680px;
}
.pd-reasoning-body p { margin-bottom: 24px; }
.pd-reasoning-body p:last-child { margin-bottom: 0; }
.pd-reasoning-body h2, .pd-reasoning-body h3, .pd-reasoning-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 48px 0 20px;
  text-transform: uppercase;
}
.pd-reasoning-body h2 { font-size: 36px; }
.pd-reasoning-body h3 { font-size: 24px; }
.pd-reasoning-body h4 { font-size: 18px; color: rgba(245,240,232,0.6); }
.pd-reasoning-body ul, .pd-reasoning-body ol { margin: 0 0 24px 28px; padding: 0; }
.pd-reasoning-body li { margin-bottom: 12px; line-height: 1.75; }
.pd-reasoning-body strong { font-weight: 700; color: var(--cream); }
.pd-reasoning-body em { font-style: italic; }
.pd-reasoning-empty {
  max-width: 680px;
  border-left: 4px solid rgba(245, 240, 232, 0.35);
  padding: 4px 0 4px 28px;
  margin: 0;
}
.pd-reasoning-empty-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  margin: 0 0 16px 0;
}
.pd-reasoning-empty-rule {
  height: 5px;
  background: rgba(245, 240, 232, 0.55);
  margin: 0 0 24px 0;
}
.pd-reasoning-empty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
}
.pd-reasoning-empty-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.55;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}
.pd-sources {
  background: var(--black);
  padding: 0 0 80px;
  border-top: 0;
}
.pd-sources-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.pd-sources-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  padding-top: 64px;
}
.pd-sources-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  white-space: nowrap;
}
.pd-sources-rule {
  flex: 1;
  height: 5px;
  background: rgba(245,240,232,0.55);
}
.pd-sources-list { display: flex; flex-direction: column; gap: 0; }
.pd-source-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 4px solid rgba(245,240,232,0.55);
  text-decoration: none;
  transition: opacity 0.15s;
}
.pd-source-item:hover { opacity: 0.7; }
.pd-source-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pd-source-name {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}
.pd-source-type {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
}
.pd-source-arrow { font-size: 14px; color: var(--cream); opacity: 0.3; }
.pd-updates {
  background: var(--cream);
  padding: 80px 0;
  border-top: 4px solid var(--black);
}
.pd-updates-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.pd-updates-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.pd-updates-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
  white-space: nowrap;
}
.pd-updates-rule {
  flex: 1;
  height: 2px;
  background: rgba(26,26,26,0.12);
}
.pd-updates-list { display: flex; flex-direction: column; gap: 0; }
.pd-update-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.pd-update-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  opacity: 0.45;
  letter-spacing: 0.05em;
  padding-top: 3px;
}
.pd-update-reason {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 12px;
}
.pd-update-diff { display: flex; flex-direction: column; gap: 4px; }
.pd-diff-label { font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 500; }
.pd-diff-from { color: var(--black); opacity: 0.4; }
.pd-diff-to { color: var(--red); font-weight: 600; }
.pd-closing {
  background: var(--cream);
  padding: 80px 0 100px;
}
.pd-closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.pd-closing-text p {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--black);
  opacity: 0.45;
  line-height: 1.7;
}
.pd-closing-text p:first-child { font-weight: 600; opacity: 0.7; margin-bottom: 8px; }
.pd-closing-cta {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background 0.15s;
  white-space: nowrap;
}
.pd-closing-cta:hover { background: var(--black); }

/* ===== SHARED PRIMARY CTA TOKEN ===== */
.sc-cta-primary {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  background: var(--red);
  padding: 18px 36px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s;
  margin-top: 32px;
  white-space: nowrap;
}
.sc-cta-primary:hover { background: var(--black); }

/* ===== GLOBAL RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cd-hero-content { padding: 0 40px; }
  .cd-breadcrumb-inner { padding: 0 40px; }
  .cd-pick-inner { padding: 0 40px; }
  .cd-reasoning-inner { padding: 0 40px; }
  .cd-closing-inner { padding: 0 40px; }
  .pd-hero-content { padding: 0 40px; }
  .pd-breadcrumb-inner { padding: 0 40px; }
  .pd-specs-inner { padding: 0 40px; }
  .pd-reasoning-inner { padding: 0 40px; }
  .pd-sources-inner { padding: 0 40px; }
  .pd-updates-inner { padding: 0 40px; }
  .pd-closing-inner { padding: 0 40px; }
  .pd-specs-grid { gap: 40px; }
  .pd-source-cta { font-size: 18px; padding: 14px 24px; margin-top: 24px; }
}

@media (max-width: 900px) {
  .pick-grid { grid-template-columns: repeat(2, 1fr); }
  .pick-meta { gap: 24px; }
  .grid-hero-inner, .grid-inner, .grid-closing-inner { padding: 0 20px; }
  .detail-hero-inner, .detail-pick-inner, .detail-reasoning-inner, .detail-closing-inner { padding: 0 20px; }
  .about-hero-inner, .about-inner, .about-closing-inner { padding: 0 20px; }
  .cd-pick-inner {
    grid-template-columns: 1fr;
  }
  .cd-pick-label {
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 3px solid var(--black);
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 32px;
  }
  .cd-pick-body { padding-left: 0; }
  .cd-closing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-nav { padding: 20px; }
  .grid-hero { padding: 60px 0 40px; }
  .grid-section { padding: 60px 0; }
  .pick-grid { grid-template-columns: 1fr; }
  .detail-pick, .detail-reasoning, .detail-closing { padding: 60px 0; }
  .pick-meta { flex-direction: column; gap: 20px; }
  .not-found-code { font-size: 80px; }
  .about-hero { padding: 60px 0 80px; }
  .about-content { padding: 60px 0; }
  .cd-hero { padding: 48px 0 40px; }
  .cd-hero-content { padding: 0 20px; }
  .cd-breadcrumb-inner { padding: 0 20px; }
  .cd-pick { padding: 48px 0 60px; }
  .cd-pick-inner { padding: 0 20px; padding-bottom: 48px; }
  .cd-pick-title { font-size: 40px; }
  .cd-meta { grid-template-columns: repeat(2, 1fr); }
  .cd-reasoning { padding: 80px 0 60px; clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }
  .cd-reasoning-inner { padding: 0 20px; }
  .cd-closing { padding: 48px 0 60px; }
  .cd-closing-inner { padding: 0 20px; }
  .pd-hero { padding: 48px 0 40px; }
  .pd-hero-content { padding: 0 20px; }
  .pd-badges { gap: 12px; }
  .pd-badge-val { font-size: 36px; }
  .pd-breadcrumb-inner { padding: 0 20px; }
  .pd-specs { padding: 48px 0; }
  .pd-specs-inner { padding: 0 20px; }
  .pd-specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-product-name { font-size: 28px; }
  .pd-reasoning { padding: 80px 0 60px; clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }
  .pd-reasoning-inner { padding: 0 20px; }
  .pd-sources-inner { padding: 0 20px; }
  .pd-updates-inner { padding: 0 20px; }
  .pd-update-item { grid-template-columns: 1fr; gap: 12px; }
  .pd-closing { padding: 48px 0 60px; }
  .pd-closing-inner { padding: 0 20px; grid-template-columns: 1fr; gap: 40px; }
  .pd-reasoning-empty-title { font-size: 40px; }
  .pd-source-cta { font-size: 16px; padding: 12px 20px; }
}

/* ===== SECONDARY PICKS — ranked alternates below primary ===== */
.cd-secondary {
  background: var(--cream);
  padding: 0 0 100px;
}

.cd-secondary-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.cd-secondary-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 8px;
}

.cd-secondary-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
  white-space: nowrap;
}

.cd-secondary-rule {
  flex: 1;
  height: 2px;
  background: rgba(26,26,26,0.12);
}

.cd-secondary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 4px solid var(--black);
}

.cd-secondary-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 36px 24px 36px 0;
  border-bottom: 2px solid rgba(26,26,26,0.12);
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}

.cd-secondary-item:hover {
  background: var(--black);
  color: var(--cream);
}

.cd-secondary-item:hover .cd-meta-red { color: var(--cream); }
.cd-secondary-item:hover .cd-meta-score-unit { opacity: 0.5; }

.cd-secondary-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  font-weight: 400;
  color: var(--black);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: 0.02em;
}

.cd-secondary-item:hover .cd-secondary-rank {
  color: var(--cream);
  opacity: 0.45;
}

.cd-secondary-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cd-secondary-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.15s;
}

.cd-secondary-item:hover .cd-secondary-title { color: var(--cream); }

.cd-secondary-one-liner {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.6;
  margin: 0;
  max-width: 640px;
}

.cd-secondary-item:hover .cd-secondary-one-liner {
  color: var(--cream);
  opacity: 0.7;
}

.cd-secondary-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0;
  margin-top: 20px;
  border-top: 3px solid var(--black);
  padding-top: 0;
  max-width: 640px;
}

.cd-secondary-item:hover .cd-secondary-meta {
  border-top-color: rgba(245,240,232,0.2);
}

.cd-secondary-meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px 18px 0;
  border-right: 2px solid rgba(26,26,26,0.12);
}

.cd-secondary-meta-block:last-child { border-right: none; }

.cd-secondary-item:hover .cd-secondary-meta-block {
  border-right-color: rgba(245,240,232,0.12);
}

.cd-secondary-meta-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}

.cd-secondary-item:hover .cd-secondary-meta-label {
  color: var(--cream);
  opacity: 0.5;
}

.cd-secondary-meta-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
}

.cd-secondary-meta-value--muted {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0.45;
}

.cd-secondary-item:hover .cd-secondary-meta-value--muted {
  color: var(--cream);
  opacity: 0.55;
}

.cd-secondary-reasoning {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.7;
  max-width: 640px;
  margin: 16px 0 0;
}

.cd-secondary-reasoning p { margin: 0; }

.cd-secondary-item:hover .cd-secondary-reasoning {
  color: var(--cream);
  opacity: 0.78;
}

@media (max-width: 1100px) {
  .cd-secondary-inner { padding: 0 40px; }
}

@media (max-width: 900px) {
  .cd-secondary-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 28px 16px 28px 0;
  }
  .cd-secondary-rank { font-size: 56px; }
  .cd-secondary-meta { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .cd-secondary-inner { padding: 0 20px; }
  .cd-secondary { padding: 0 0 60px; }
  .cd-secondary-item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 24px 12px 24px 0;
  }
  .cd-secondary-rank { font-size: 40px; }
  .cd-secondary-title { font-size: 28px; }
  .cd-secondary-meta { grid-template-columns: repeat(2, 1fr); }
  .cd-secondary-meta-block { padding-right: 12px; }
  .cd-secondary-meta-value { font-size: 22px; }
}

/* ===== DURABILITY / REPAIR / LONGEVITY CALLOUT ===== */
.cd-durability {
  background: var(--cream-dark);
  padding: 80px 0 100px;
  border-top: 4px solid var(--black);
}

.cd-durability-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.cd-durability-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.cd-durability-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
  white-space: nowrap;
}

.cd-durability-rule {
  flex: 1;
  height: 2px;
  background: rgba(26,26,26,0.12);
}

.cd-durability-intro {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.7;
  margin: 0 0 40px;
  max-width: 720px;
}

.cd-durability-list {
  border-top: 3px solid var(--black);
}

.cd-durability-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}

.cd-durability-row:last-child { border-bottom: none; }

.cd-durability-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cd-durability-name-tag {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}

.cd-durability-name-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.cd-durability-name-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.cd-durability-name-link:hover { color: var(--red); border-color: var(--red); }

.cd-durability-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cd-durability-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: baseline;
}

.cd-durability-item-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}

.cd-durability-item-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

@media (max-width: 1100px) {
  .cd-durability-inner { padding: 0 40px; }
}

@media (max-width: 900px) {
  .cd-durability { padding: 60px 0 80px; }
  .cd-durability-inner { padding: 0 40px; }
  .cd-durability-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }
  .cd-durability-item { grid-template-columns: 140px 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .cd-durability-inner { padding: 0 20px; }
  .cd-durability { padding: 48px 0 60px; }
  .cd-durability-item { grid-template-columns: 1fr; gap: 4px; }
  .cd-durability-item-value { font-size: 22px; }
}
