:root {
  --bg: #f7f3ed;
  --ink: #1a1410;
  --red: #c0392b;
  --gold: #d4a843;
  --mid: #5c4a3a;
  --low-badge: #2e6b3e;
  --mid-badge: #1a4a7a;
  --high-badge: #7a2e1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
}

.masthead {
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
  padding: 18px 24px;
  text-align: center;
}
.masthead-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-variant: small-caps;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: lowercase;
}
.masthead-tagline {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(212,168,67,0.6);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 72px;
}

.article-eyebrow {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
h1.article-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.article-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 32px;
}

.bracket-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.bracket-pill {
  font-family: 'Source Serif 4', serif;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  color: #fff;
}
.pill-low  { background: var(--low-badge); }
.pill-mid  { background: var(--mid-badge); }
.pill-high { background: var(--high-badge); }

.tier-section {
  margin-top: 56px;
  border-top: 1px solid rgba(92,74,58,0.2);
  padding-top: 40px;
}

h2.tier-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tier-badge {
  display: inline-block;
  padding: 3px 12px 4px;
  border-radius: 2px;
  color: #fff;
}
.badge-low  { background: var(--low-badge); }
.badge-mid  { background: var(--mid-badge); }
.badge-high { background: var(--high-badge); }

h3.product-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.product-price {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 22px;
}
.product-intro {
  font-style: italic;
  color: var(--mid);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 28px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 560px) { .pros-cons-grid { grid-template-columns: 1fr; } }

.pros-block, .cons-block {
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
  padding: 20px;
  border-top: 4px solid transparent;
}
.pros-block { border-top-color: var(--low-badge); }
.cons-block { border-top-color: var(--red); }

ul.pros-list, ul.cons-list { list-style: none; padding: 0; }
ul.pros-list li, ul.cons-list li {
  font-size: 0.9rem;
  padding: 5px 0 5px 26px;
  position: relative;
  border-bottom: 1px solid rgba(92,74,58,0.1);
}
ul.pros-list li::before { content: "✓"; position: absolute; left: 0; color: var(--low-badge); font-weight: 600; }
ul.cons-list li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 600; }

.best-for-strip {
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.best-for-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.affiliate-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 700;
}
