/* ------------------------------------------------------------------
   Homepage
   ------------------------------------------------------------------ */
.home-hero {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}
.home-hero h1 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
  font-size: clamp(48px, 6.2vw, 88px);
  margin: 0 0 16px;
  color: var(--ink);
}
body[data-direction="editorial"] .home-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
body[data-direction="technical"] .home-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.home-hero p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 52ch;
  line-height: 1.5;
}
body[data-direction="editorial"] .home-hero p {
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}
.home-hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.home-hero-search {
  position: relative;
  flex: 1;
  max-width: 360px;
}
.home-hero-search input {
  width: 100%;
  padding: 12px 16px 12px 38px;
  font-family: var(--ui-font);
  font-size: 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}
.home-hero-search input:focus { border-color: var(--accent); }
.home-hero-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.hero-meter {
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 24px 24px 20px;
  display: grid;
  gap: 16px;
  font-family: var(--mono-font);
  font-size: 11px;
}
.hero-meter-title {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.hero-meter-title .dot-live {
  width: 6px; height: 6px; background: var(--good);
  display: inline-block; border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-meter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-2);
}
.hero-meter-row .bar-wrap { display: flex; align-items: center; gap: 8px; width: 100%; }
.hero-meter-row .bar-track { flex: 1; }
.hero-meter-row .val { color: var(--ink); font-weight: 600; min-width: 40px; text-align: right; }

/* Hero blog tile (replaces bench meter) */
.hero-blog {
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-align: left;
}
.hero-blog:hover { transform: translateY(-2px); }
.hero-blog:hover .hero-blog-title { color: var(--accent); }
.hero-blog:hover .hero-blog-arrow { transform: translateX(4px); }
.hero-blog-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-blog-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-blog-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
.hero-blog-body { padding: 20px 24px 22px; display: grid; gap: 10px; }
.hero-blog-cat {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.hero-blog-title {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.15;
  font-size: 24px;
  margin: 0;
  color: var(--ink);
  transition: color 0.15s;
}
body[data-direction="technical"] .hero-blog-title { font-size: 20px; letter-spacing: -0.03em; }
.hero-blog-dek {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
body[data-direction="editorial"] .hero-blog-dek {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}
.hero-blog-byline {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.hero-blog-arrow {
  margin-left: auto;
  font-size: 14px;
  color: var(--ink);
  transition: transform 0.2s;
}

/* Section header */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 24px;
}
.section-head h2 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1;
  font-size: 34px;
  margin: 0;
}
body[data-direction="technical"] .section-head h2 { font-size: 28px; letter-spacing: -0.03em; }
.section-head .meta {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Category strip */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}
.cat-card {
  padding: 24px 20px 20px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.18s;
  cursor: pointer;
  text-align: left;
  min-height: 140px;
}
.cat-card:hover { background: var(--ink); color: var(--paper); }
.cat-card:hover .cat-count,
.cat-card:hover .cat-desc { color: rgba(255,255,255,0.6); }
.cat-card:hover .cat-arrow { transform: translateX(4px); }
.cat-name {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 28px;
  line-height: 1;
  margin-top: auto;
}
body[data-direction="technical"] .cat-name { font-size: 22px; letter-spacing: -0.03em; }
.cat-count {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.18s;
}
.cat-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  transition: color 0.18s;
  max-width: 24ch;
}
.cat-arrow {
  margin-top: 4px;
  font-family: var(--mono-font);
  font-size: 16px;
  transition: transform 0.2s;
}

/* Featured review */
.featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.featured-image {
  aspect-ratio: 4 / 3;
}
.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
.featured-eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.featured-eyebrow .award {
  padding: 3px 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.featured h3 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
  font-size: 44px;
  margin: 0 0 16px;
}
body[data-direction="technical"] .featured h3 { font-size: 38px; letter-spacing: -0.04em; }
.featured-tagline {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 24px;
  line-height: 1.45;
}
body[data-direction="editorial"] .featured-tagline {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
}
.featured-score {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.featured-score .score-badge { font-size: 72px; }
.featured-score-details {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.featured-sub { display: flex; flex-direction: column; gap: 4px; }
.featured-sub .sub-label {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.featured-sub .sub-val {
  font-family: var(--mono-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.featured-byline {
  font-family: var(--mono-font);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   Review grid (used on homepage + listing)
   ------------------------------------------------------------------ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.review-grid.dense {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-align: left;
  padding: 0;
  border: none;
  width: 100%;
}
.review-card:hover { transform: translateY(-2px); }
.review-card:hover .rc-image { filter: brightness(1.04); }
.review-card:hover .rc-name { color: var(--accent); }

.rc-image {
  aspect-ratio: 4 / 3;
  position: relative;
  transition: filter 0.2s;
}
.rc-image .award-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono-font);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  z-index: 2;
}
.rc-image .rc-score-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--paper);
  padding: 6px 10px 4px;
  font-family: var(--mono-font);
  z-index: 2;
  min-width: 52px;
  text-align: right;
  line-height: 1;
}
.rc-image .rc-score-overlay .n {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
body[data-direction="technical"] .rc-image .rc-score-overlay .n {
  font-family: var(--mono-font);
  letter-spacing: -0.04em;
}
.rc-image .rc-score-overlay .d {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.rc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono-font);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rc-meta .cat { color: var(--accent); font-weight: 600; }
.rc-name {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  transition: color 0.15s;
}
body[data-direction="technical"] .rc-name {
  font-size: 18px;
  letter-spacing: -0.03em;
}
.rc-brand {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.rc-tagline {
  font-size: 13px;
  color: var(--ink-2);
  margin: 4px 0 0;
  line-height: 1.4;
}
body[data-direction="editorial"] .rc-tagline {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}
.rc-subs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 10px;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.rc-sub { display: flex; flex-direction: column; gap: 3px; }
.rc-sub-label {
  font-family: var(--mono-font);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.rc-sub-val {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.rc-byline {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
  display: flex;
  justify-content: space-between;
}
.review-grid.dense .rc-subs,
.review-grid.dense .rc-tagline,
.review-grid.dense .rc-byline { display: none; }
.review-grid.dense .rc-name { font-size: 16px; }

/* ------------------------------------------------------------------
   Category listing page
   ------------------------------------------------------------------ */
.listing-head {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: end;
}
.listing-head h1 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1;
  font-size: clamp(48px, 5.5vw, 72px);
  margin: 0 0 8px;
}
.listing-head p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  max-width: 46ch;
}
body[data-direction="editorial"] .listing-head p {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 17px;
}
.listing-head-meta {
  font-family: var(--mono-font);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}
.listing-head-meta strong { color: var(--ink); font-weight: 600; }

.listing-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.controls-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.select {
  padding: 6px 12px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  border-radius: 2px;
  outline: none;
}

.density-toggle {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  overflow: hidden;
}
.density-toggle button {
  padding: 6px 10px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--muted);
  border-right: 1px solid var(--line-2);
}
.density-toggle button:last-child { border-right: none; }
.density-toggle button.active { background: var(--ink); color: var(--paper); }

/* ------------------------------------------------------------------
   Review detail page
   ------------------------------------------------------------------ */
.detail-wrap { padding-bottom: 60px; }

.detail-head {
  padding: 16px 0 40px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 40px;
}
.detail-head .eyebrow-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.detail-head .award {
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-head h1 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 0.95;
  font-size: clamp(56px, 7vw, 104px);
  margin: 0 0 12px;
}
body[data-direction="technical"] .detail-head h1 { font-size: clamp(48px, 6vw, 84px); letter-spacing: -0.05em; }
.detail-head .brand {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 24px;
  color: var(--muted);
  margin: 0 0 24px;
  font-weight: 400;
}
body[data-direction="technical"] .detail-head .brand {
  font-family: var(--mono-font);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.detail-head .pullquote {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  padding: 0;
  max-width: 40ch;
  letter-spacing: -0.01em;
}
body[data-direction="editorial"] .detail-head .pullquote { font-style: italic; font-weight: 400; }
body[data-direction="technical"] .detail-head .pullquote { font-family: var(--ui-font); font-weight: 600; }

.detail-byline {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.detail-byline strong { color: var(--ink); font-weight: 600; }
.detail-byline .sep { color: var(--line-2); }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.82fr);
  grid-template-areas:
    "hero aside"
    "body aside";
  gap: 32px 48px;
  align-items: start;
}

.detail-hero-img {
  grid-area: hero;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
}

.detail-aside {
  grid-area: aside;
  align-self: stretch;
}

.detail-body {
  grid-area: body;
  padding-top: 0;
}

.detail-score-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 28px;
  position: sticky;
  top: 24px;
}
.detail-score-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.detail-score-head .big {
  font-family: var(--display-font);
  font-weight: 700;
  color: var(--accent);
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
body[data-direction="technical"] .detail-score-head .big {
  font-family: var(--mono-font);
  letter-spacing: -0.06em;
}
.detail-score-head .big-label {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}
.detail-subs { display: grid; gap: 12px; }
.detail-sub {
  display: grid;
  grid-template-columns: 70px 1fr 32px;
  gap: 12px;
  align-items: center;
  font-family: var(--mono-font);
  font-size: 11px;
}
.detail-sub-label {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.detail-sub-val {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.detail-sub .bar-track { height: 2px; }

.where-to-buy {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.where-to-buy h4 {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.price-big {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
body[data-direction="technical"] .price-big {
  font-family: var(--mono-font);
  letter-spacing: -0.04em;
}
.where-to-buy .btn { width: 100%; justify-content: center; }
.where-to-buy .affiliate-note {
  font-family: var(--mono-font);
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.03em;
}

.detail-lede {
  font-family: var(--display-font);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: var(--display-weight);
  letter-spacing: -0.005em;
  max-width: 58ch;
}
body[data-direction="editorial"] .detail-lede { font-weight: 400; }
body[data-direction="technical"] .detail-lede { font-family: var(--ui-font); font-weight: 500; font-size: 18px; }

.detail-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
  max-width: 62ch;
}
body[data-direction="editorial"] .detail-body p {
  font-family: var(--display-font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

.review-content {
  margin-bottom: 32px;
}
.review-section-heading {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 20px;
  margin: 2em 0 0.7em;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review-content .review-section-heading:first-child {
  margin-top: 0;
}

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin: 32px 0;
}
.proscons > div { padding: 20px 24px; }
.proscons > div + div { border-left: 1px solid var(--line); }
.proscons h4 {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.proscons h4 .sym { color: var(--ink); font-size: 14px; }
.proscons .pros h4 .sym { color: var(--good); }
.proscons .cons h4 .sym { color: var(--warn); }
.proscons ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.proscons li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.proscons .pros li::before {
  content: '+'; position: absolute; left: 0; color: var(--good); font-family: var(--mono-font); font-weight: 600;
}
.proscons .cons li::before {
  content: '−'; position: absolute; left: 0; color: var(--warn); font-family: var(--mono-font); font-weight: 600;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: var(--mono-font);
  font-size: 12px;
}
.specs-table caption {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 14px;
  font-weight: 500;
}
.specs-table tr { border-bottom: 1px solid var(--line); }
.specs-table tr:first-child { border-top: 1px solid var(--line); }
.specs-table td { padding: 10px 0; }
.specs-table td:first-child { color: var(--muted); letter-spacing: 0.03em; text-transform: uppercase; font-size: 11px; width: 40%; }
.specs-table td:last-child { color: var(--ink); font-weight: 600; text-align: right; }

/* More reviews strip at bottom of detail */
.more-reviews {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--ink);
}

/* ------------------------------------------------------------------
   Tweaks panel
   ------------------------------------------------------------------ */
.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(20,18,12,0.15);
  padding: 18px 20px 16px;
  z-index: 50;
  font-family: var(--ui-font);
  min-width: 280px;
  animation: tweaksIn 0.18s ease-out;
}
@keyframes tweaksIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tweaks-panel h3 {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweaks-row { display: grid; gap: 6px; margin-bottom: 14px; }
.tweaks-row:last-child { margin-bottom: 0; }
.tweaks-label {
  font-size: 11px;
  color: var(--ink);
  font-weight: 500;
}
.tweaks-seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border: 1px solid var(--ink);
  border-radius: 3px;
  overflow: hidden;
}
.tweaks-seg button {
  padding: 8px 10px;
  font-family: var(--ui-font);
  font-size: 12px;
  background: var(--paper);
  color: var(--ink);
  border-right: 1px solid var(--ink);
  transition: all 0.12s;
}
.tweaks-seg button:last-child { border-right: none; }
.tweaks-seg button.active {
  background: var(--ink);
  color: var(--paper);
}

/* ------------------------------------------------------------------
   Responsive — tablet
   ------------------------------------------------------------------ */
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; gap: 32px; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; gap: 24px; }
  .featured h3 { font-size: 32px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid.dense { grid-template-columns: repeat(2, 1fr); }
  .detail-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "aside"
      "body";
    gap: 24px;
  }
  .detail-score-card { position: static; }
  .listing-head { grid-template-columns: 1fr; }
  .listing-head-meta { text-align: left; }
}

/* ------------------------------------------------------------------
   Responsive — mobile
   ------------------------------------------------------------------ */
@media (max-width: 600px) {
  /* Layout */
  .page { padding: 0 16px; }

  /* Masthead */
  .masthead { padding: 16px 16px 12px; }
  .masthead-row { flex-direction: column; align-items: center; gap: 8px; }
  .masthead-date, .masthead-meta { min-width: auto; text-align: center; font-size: 10px; }
  .logo-svg { height: 66px !important; }
  .tagline { font-size: 11px; }

  /* Nav */
  .nav { padding: 0 16px; }
  .nav-inner { height: auto; flex-direction: column; gap: 10px; padding: 10px 0; }
  .nav-links { flex-wrap: wrap; gap: 12px 16px; justify-content: center; font-size: 12px; }
  .nav-search { display: none; }

  /* Homepage hero */
  .home-hero { padding: 28px 0 24px; gap: 20px; }
  .home-hero h1 { font-size: 36px; margin-bottom: 8px; }
  .home-hero p { font-size: 15px; margin-bottom: 16px; }
  .home-hero-actions { flex-direction: column; }
  .home-hero-search { max-width: 100%; }

  /* Hero blog tile */
  .hero-blog-title { font-size: 18px; }
  .hero-blog-body { padding: 14px 16px; }
  .hero-blog-head { padding: 10px 16px; }

  /* Category strip */
  .cat-strip { grid-template-columns: 1fr; }
  .cat-card { min-height: auto; padding: 16px; flex-direction: row; align-items: center; gap: 12px; }
  .cat-name { font-size: 20px; margin-top: 0; }
  .cat-desc { display: none; }
  .cat-arrow { margin-top: 0; margin-left: auto; }

  /* Featured review */
  .featured { gap: 16px; padding-bottom: 32px; margin-bottom: 32px; }
  .featured h3 { font-size: 28px; }
  .featured-tagline { font-size: 15px; }
  .featured-score { flex-direction: column; gap: 12px; }
  .featured-score .score-badge { font-size: 48px; }
  .featured-score-details { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Review grid */
  .review-grid { grid-template-columns: 1fr; gap: 28px; }
  .review-grid.dense { grid-template-columns: 1fr; }
  .rc-name { font-size: 18px; }
  .rc-subs { grid-template-columns: repeat(4, 1fr); gap: 4px 8px; }

  /* Section headers */
  .section-head { padding: 24px 0 14px; }
  .section-head h2 { font-size: 24px; }

  /* Listing page */
  .listing-head h1 { font-size: 36px; }
  .listing-controls { flex-direction: column; align-items: stretch; gap: 12px; }
  .chip-row { gap: 6px; }
  .chip { padding: 5px 10px; font-size: 11px; }
  .controls-right { justify-content: space-between; }

  /* Detail page */
  .detail-head h1 { font-size: 36px; }
  .detail-head .brand { font-size: 18px; margin-bottom: 16px; }
  .detail-head .pullquote { font-size: 18px; }
  .detail-byline { flex-wrap: wrap; gap: 8px 16px; }
  .detail-hero-img { margin-bottom: 20px; }
  .detail-body p { font-size: 15px; }
  .detail-lede { font-size: 18px; }
  .detail-score-card { padding: 20px; }
  .detail-score-head .big { font-size: 56px; }
  .price-big { font-size: 24px; }

  /* Pros/cons */
  .proscons { grid-template-columns: 1fr; }
  .proscons > div + div { border-left: none; border-top: 1px solid var(--line); }

  /* Specs table */
  .specs-table { font-size: 11px; }
  .specs-table td:first-child { width: 45%; }

  /* More reviews */
  .more-reviews { margin-top: 40px; }
  .more-reviews .review-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { margin-top: 48px; padding: 28px 0 20px; }
  .footer-inner { flex-direction: column; gap: 12px; padding: 0 16px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* Tweaks */
  .tweaks-toggle { right: 12px; bottom: 12px; }
  .tweaks-panel { right: 12px; bottom: 12px; left: 12px; min-width: auto; }

  /* Blog mobile */
  .blog-header { padding: 24px 0 20px; }
  .blog-title { font-size: 28px; }
  .blog-body { padding: 24px 0; }
  .blog-body h2 { font-size: 22px; }
  .blog-body h3 { font-size: 18px; }
}

/* ------------------------------------------------------------------
   Blog post view
   ------------------------------------------------------------------ */
.blog-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 32px;
}
.blog-header {
  padding: 40px 0 32px;
}
.blog-back {
  margin-bottom: 20px;
  font-size: 13px;
}
.blog-category-tag {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.blog-meta {
  font-family: var(--mono-font);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-meta-sep {
  opacity: 0.5;
}
.blog-hero-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--paper-2, #f4f1ea);
}
.blog-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-body {
  padding: 32px 0 60px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.blog-body p {
  margin-bottom: 1.4em;
}
.blog-body .blog-byline {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2em;
}
.blog-body h2 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 26px;
  margin-top: 2.2em;
  margin-bottom: 0.8em;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.blog-body h3 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.4;
  color: var(--accent);
}

/* ------------------------------------------------------------------
   Blog list view
   ------------------------------------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-bottom: 60px;
}
.blog-grid .hero-blog {
  width: 100%;
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
