/* UI-7: Clean Review (The Verge-inspired)
   Palette: pure black/white minimal, hairline borders
   Type: Helvetica Neue/system-ui sans headings, Georgia serif body (no Google Fonts)
   Layout: full-width hero, single column long-read max 680px, generous whitespace
   Cards: 1px border, large padding, no shadow, 2px radius max
   Accent: CSS variable per-category (default #111) */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f7f7f7;
  --text: #111111;
  --text-muted: #6a6a6a;
  --border: #eeeeee;
  --accent: #111111;
  --accent-soft: #f0f0f0;
  --font-sans: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --maxw: 680px;
  --maxw-wide: 1200px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 28px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.nav-links { display: flex; flex-wrap: wrap; gap: 22px; }
.nav-links a {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a.active { color: var(--accent); border-bottom: 2px solid var(--accent); }

/* Container */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 28px; }

/* Hero (full-width) */
.hero-full {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.hero-full .hero-img-wrap {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: var(--surface-muted);
}
.hero-full .hero-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.hero-full .hero-caption {
  max-width: var(--maxw);
  margin: 14px auto 0;
  padding: 0 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-full .hero-text {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 28px 32px;
}
.hero-full h1 {
  font-size: 44px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero-full .lead {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-muted);
  margin: 0;
}

/* Hero fallback (no image) */
.hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.hero h1 { font-size: 44px; margin: 0 0 16px; letter-spacing: -0.02em; }
.hero .lead { font-family: var(--font-serif); font-size: 20px; color: var(--text-muted); margin: 0; }

/* Section heading */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 64px 0 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 { font-size: 28px; margin: 0; }
.section-head a { font-family: var(--font-sans); font-size: 13px; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; }

/* Article / product card list (minimal bordered rows) */
.card-list { display: flex; flex-direction: column; }
.card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.card-thumb {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: var(--surface-muted);
  border-radius: var(--radius);
}
.card-body h3 { font-size: 22px; margin: 0 0 8px; }
.card-body h3 a { color: var(--text); text-decoration: none; }
.card-body h3 a:hover { color: var(--accent); text-decoration: underline; }
.card-body .card-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-body p { margin: 0 0 16px; color: var(--text); }
.card-body .card-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
}

/* Badges */
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* CTA: black solid block button */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--text);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--text);
}
.cta-button:hover { background: var(--accent); color: #ffffff !important; text-decoration: none; }

/* Article page */
.article-page { padding: 48px 0 64px; }
.article-header { margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 28px; }
.article-header .category-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}
.article-header h1 {
  font-size: 40px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.article-header .article-meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
}
.article-hero-img {
  width: 100%;
  margin: 32px 0;
  border-radius: var(--radius);
}
.article-disclosure {
  background: var(--surface-muted);
  border-left: 3px solid var(--text);
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  margin: 28px 0;
  color: var(--text);
}
.article-content { font-size: 19px; line-height: 1.8; }
.article-content h2 {
  font-size: 28px;
  margin: 40px 0 14px;
}
.article-content h3 { font-size: 22px; margin: 32px 0 12px; }
.article-content p { margin: 0 0 22px; }
.article-content ul, .article-content ol { margin: 0 0 22px; padding-left: 24px; }
.article-content li { margin-bottom: 10px; }
.article-content blockquote {
  border-left: 3px solid var(--text);
  margin: 28px 0;
  padding: 6px 0 6px 20px;
  font-style: italic;
  color: var(--text-muted);
}
.article-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-family: var(--font-sans); font-size: 14px; }
.article-content th, .article-content td { border-bottom: 1px solid var(--border); padding: 12px 8px; text-align: left; }
.article-content th { font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 28px 0; }
.pros-cons h3 { font-size: 16px; }
.scorecard { margin: 28px 0; }
.scorecard table { font-size: 14px; }
.scorecard td:last-child { text-align: right; font-weight: 700; }

/* Category page */
.category-page { padding: 48px 0 64px; }
.category-page h1 { font-size: 38px; margin: 0 0 12px; letter-spacing: -0.02em; }
.category-page .lead { color: var(--text-muted); margin: 0 0 28px; font-family: var(--font-serif); font-size: 19px; }

/* Legal pages */
.legal-page { padding: 48px 0 64px; }
.legal-page h1 { font-size: 38px; margin: 0 0 18px; letter-spacing: -0.02em; }
.legal-page h2 { font-size: 24px; margin: 36px 0 12px; }
.legal-page h3 { font-size: 19px; margin: 26px 0 10px; }
.legal-page p, .legal-page ul, .legal-page ol { margin: 0 0 16px; }
.legal-page ul, .legal-page ol { padding-left: 24px; }
.legal-page li { margin-bottom: 8px; }
.legal-page .lead { font-size: 19px; color: var(--text-muted); font-family: var(--font-serif); }
.legal-page .contact-email { font-size: 20px; font-family: var(--font-serif); }
.legal-page .disclosure-callout {
  background: var(--surface-muted);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 22px 0;
  border-left: 3px solid var(--text);
}
.legal-revision { color: var(--text-muted); font-size: 13px; margin-top: 36px; font-family: var(--font-sans); }

/* Footer */
.site-footer {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 48px 28px 28px;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: var(--maxw-wide); margin: 0 auto 28px; }
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text); font-family: var(--font-sans); font-size: 14px; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-grid .affiliate-disclosure { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin: 0; font-family: var(--font-serif); }
.footer-bottom {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.affiliate-disclosure { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-family: var(--font-serif); }

/* Responsive */
@media (max-width: 640px) {
  .card { grid-template-columns: 1fr; gap: 16px; }
  .card-thumb { width: 100%; height: 240px; }
  .hero-full h1, .hero h1 { font-size: 30px; }
  .article-header h1 { font-size: 28px; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}
