@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@400;500;600;700&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --ink: #1A2A4A;
  --ink-soft: #2E3E5E;
  --cream: #FAF7F1;
  --stone: #EFEAE0;
  --flame: #D75A3C;
  --flame-dark: #B14A31;
  --sage: #6B8F71;
  --sage-dark: #547057;
  --charcoal: #2E2E2E;
  --ash: #6B6B6B;
  --hair: #D8D2C4;
  --paleblue: #E5ECF5;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-card: 0 1px 2px rgba(26,42,74,.04), 0 8px 24px rgba(26,42,74,.06);
  --shadow-lift: 0 4px 12px rgba(26,42,74,.08), 0 20px 40px rgba(26,42,74,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: 'Spectral', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(1.85rem, 5.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3.4vw, 2.15rem); margin-top: 2.4em; }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.22rem); margin-top: 1.6em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
a { color: var(--flame-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--flame); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(36px, 6vw, 72px) 0; }
.section-stone { background: var(--stone); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-paleblue { background: var(--paleblue); }

/* NAV — universal dropdown menu (desktop + mobile) */
.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
  position: sticky; top: 0; z-index: 40;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px; position: relative;
}
.brand-mark {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
  flex-shrink: 0; color: var(--ink);
}
.brand-mark-icon { width: 38px; height: 38px; flex-shrink: 0; }
.brand-mark-text {
  font-family: 'Spectral', Georgia, serif; font-weight: 600; font-size: 1.18rem;
  color: var(--ink); letter-spacing: -0.01em;
}
@media (max-width: 420px) { .brand-mark-text { font-size: 1.02rem; } }

.nav-toggle { position: absolute; left: -9999px; opacity: 0; }
.nav-toggle-label {
  display: inline-flex; cursor: pointer; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px;
  color: var(--ink); font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
  background: transparent; user-select: none;
  transition: background 0.15s, color 0.15s;
}
.nav-toggle-label:hover { background: var(--ink); color: var(--cream); }
.nav-toggle-label:hover .nav-toggle-label-bars span,
.nav-toggle-label:hover .nav-toggle-label-bars span::before,
.nav-toggle-label:hover .nav-toggle-label-bars span::after { background: var(--cream); }
.nav-toggle-label-text { text-transform: uppercase; }
.nav-toggle-label-bars {
  position: relative; width: 16px; height: 12px; display: inline-block;
}
.nav-toggle-label-bars span {
  position: absolute; left: 0; top: 5px; width: 16px; height: 2px;
  background: var(--ink); transition: all 0.2s;
}
.nav-toggle-label-bars span::before,
.nav-toggle-label-bars span::after {
  content: ''; position: absolute; left: 0; width: 16px; height: 2px;
  background: var(--ink); transition: all 0.2s;
}
.nav-toggle-label-bars span::before { top: -5px; }
.nav-toggle-label-bars span::after  { top: 5px; }

/* Open state — bars animate to X, label text reads "CLOSE" */
.nav-toggle:checked ~ .nav-row .nav-toggle-label .nav-toggle-label-text::before,
.nav-toggle:checked + * .nav-toggle-label .nav-toggle-label-text { /* fallback if sibling */ }
.nav-toggle:checked ~ .nav-dropdown { max-height: 640px; opacity: 1; visibility: visible; }

/* Dropdown panel */
.nav-dropdown {
  max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
  background: var(--cream); border-top: 1px solid var(--hair);
  transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.28s;
  position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 16px 32px rgba(26,42,74,0.08);
}
.nav-dropdown .wrap { padding-top: 14px; padding-bottom: 22px; }
.nav-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px 28px; list-style: none; padding: 0; margin: 0;
}
.nav-links li { display: block; }
.nav-links a {
  display: block; padding: 12px 0; color: var(--ink);
  text-decoration: none; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, padding 0.15s;
}
.nav-links a:hover { color: var(--flame-dark); padding-left: 6px; }
.nav-cta {
  display: inline-block !important; background: var(--flame); color: #fff !important;
  padding: 10px 20px !important; border-radius: 999px !important;
  font-weight: 600 !important; font-size: 0.9rem !important;
  margin-top: 8px; letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--flame-dark) !important; color: #fff !important; padding-left: 20px !important; }

/* HERO — Pattern C (split layout) */
.hero-split {
  padding: clamp(32px, 6vw, 76px) 0 clamp(24px, 5vw, 60px);
  background:
    radial-gradient(1200px 400px at 90% 10%, rgba(215,90,60,0.07), transparent 60%),
    radial-gradient(1000px 500px at 10% 90%, rgba(107,143,113,0.06), transparent 65%),
    var(--cream);
}
.hero-split-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center;
}
.hero-flag {
  display: inline-block; font-family: 'Inter Tight', sans-serif; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--flame-dark); background: rgba(215,90,60,0.08);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; font-weight: 600;
}
.hero-split h1 { margin-top: 0; }
.hero-split .lede { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ink-soft); max-width: 560px; }
.hero-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.btn-primary {
  background: var(--flame); color: #fff; padding: 12px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.98rem; display: inline-block;
  transition: background 0.15s ease, transform 0.15s ease;
  text-align: center; min-height: 44px; line-height: 1.25;
}
.btn-primary:hover { background: var(--flame-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); padding: 11px 20px; border: 1.5px solid var(--ink);
  border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.98rem; display: inline-block;
  text-align: center; min-height: 44px; line-height: 1.25;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.hero-summary-panel {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-card);
}
.hero-summary-panel h3 {
  font-family: 'Inter Tight', sans-serif; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ash); margin: 0 0 16px; font-weight: 600;
}
.summary-stat {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 10px 0; border-bottom: 1px dashed var(--hair);
  flex-wrap: wrap;
}
.summary-stat:last-child { border-bottom: 0; }
.summary-label { color: var(--ink-soft); font-size: 0.92rem; flex: 1; min-width: 140px; }
.summary-value { color: var(--ink); font-weight: 600; font-family: 'Spectral', serif; font-size: 1rem; text-align: right; }

/* Editorial meta strip */
.edit-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 16px; background: #fff; border: 1px solid var(--hair);
  border-radius: var(--radius-md); margin: 24px 0 0; font-size: 0.85rem; color: var(--ash);
}
.edit-meta strong { color: var(--ink); font-weight: 600; }
.edit-meta .sep { color: var(--hair); }

/* RANKINGS — Pattern D (numbered editorial list) */
.ranking-intro { margin-bottom: 32px; max-width: 700px; }
.top-pick-list { list-style: none; padding: 0; margin: 0; }
.top-pick {
  display: grid; grid-template-columns: 50px 80px 1fr 200px;
  grid-template-rows: auto auto;
  gap: 14px 20px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--hair);
}
.top-pick:first-child { border-top: 2px solid var(--ink); }
.top-pick-tcs {
  grid-column: 1 / -1; grid-row: 2;
  font-size: 0.76rem; color: var(--ash); line-height: 1.55;
  padding: 12px 16px; margin: 6px 0 0;
  background: var(--cream); border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  text-align: left;
}
.top-pick-tcs strong { color: var(--ink-soft); font-weight: 600; }
.top-pick-number {
  font-family: 'Spectral', serif; font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 500; color: var(--ink);
  line-height: 1; letter-spacing: -0.02em; text-align: center;
}
.top-pick-logo {
  width: 80px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 5px;
}
.top-pick-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.top-pick-body { min-width: 0; }
.top-pick-name {
  font-family: 'Spectral', serif; font-size: clamp(1.15rem, 2.5vw, 1.35rem); color: var(--ink); margin: 0 0 4px;
}
.top-pick-offer {
  font-weight: 600; color: var(--flame-dark); margin-bottom: 6px; font-size: 1rem;
}
.top-pick-note { color: var(--ash); font-size: 0.9rem; margin: 0; }
.top-pick-tag {
  display: inline-block; background: var(--sage); color: #fff;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px; margin-left: 6px; font-weight: 600;
  vertical-align: middle;
}
.top-pick-cta {
  text-align: right; display: flex; flex-direction: column; gap: 6px; align-items: stretch;
}
.top-pick-cta .btn-primary { padding: 11px 16px; font-size: 0.88rem; width: 100%; }
.top-pick-terms {
  font-size: 0.7rem; color: var(--ash); text-align: right; line-height: 1.4;
}

.top-pick.is-featured {
  background: var(--stone); border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px) clamp(16px, 3vw, 26px);
  border-top: 2px solid var(--flame); border-bottom: 0; margin-bottom: 16px;
}
.top-pick.is-featured .top-pick-number { color: var(--flame); }

/* STATS PANEL */
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0 0;
}
.stat-card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-md); padding: 20px;
}
.stat-value {
  font-family: 'Spectral', serif; font-size: clamp(1.5rem, 3.2vw, 2rem); color: var(--ink); font-weight: 600; line-height: 1;
}
.stat-label {
  font-size: 0.78rem; color: var(--ash); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px;
}

/* CONTENT PROSE */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
  border-left: 3px solid var(--flame); padding: 8px 18px; margin: 1.4em 0;
  background: var(--stone); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft); font-style: italic;
}
.callout {
  background: var(--paleblue); border-left: 3px solid var(--ink);
  padding: 16px 20px; margin: 1.5em 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout strong { color: var(--ink); }

/* REVIEWS — Pattern B (alternating zigzag) */
.review { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: start;
  padding: 40px 0; border-top: 1px solid var(--hair);
}
.review:nth-child(even) { grid-template-columns: 1fr 300px; }
.review:nth-child(even) .review-media { order: 2; }
.review-media {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px) clamp(16px, 3vw, 22px); text-align: center; box-shadow: var(--shadow-card);
}
.review-media img { max-width: 160px; max-height: 64px; object-fit: contain; margin-bottom: 16px; }
.review-media .review-spins {
  font-family: 'Spectral', serif; font-size: clamp(1.5rem, 3.5vw, 1.8rem); color: var(--ink); font-weight: 600; line-height: 1;
}
.review-media .review-spins-label {
  font-size: 0.72rem; color: var(--ash); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 5px; margin-bottom: 16px;
}
.review-media .btn-primary { width: 100%; padding: 11px; font-size: 0.88rem; }
.review-body h3 {
  font-size: clamp(1.25rem, 3vw, 1.55rem); margin-top: 0; color: var(--ink);
}
.review-body .review-headline {
  color: var(--flame-dark); font-weight: 600; margin: 0 0 14px; font-size: clamp(0.96rem, 2vw, 1.04rem);
}
.review-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 22px;
  padding: 16px; background: var(--cream); border: 1px solid var(--hair); border-radius: var(--radius-md);
}
.review-fact-label {
  font-size: 0.68rem; color: var(--ash); text-transform: uppercase; letter-spacing: 0.09em;
}
.review-fact-value {
  font-family: 'Spectral', serif; font-size: clamp(0.95rem, 2.2vw, 1.1rem); color: var(--ink); font-weight: 600; margin-top: 3px;
  word-wrap: break-word;
}
.review-terms {
  font-size: 0.76rem; color: var(--ash); line-height: 1.5; padding-top: 14px; border-top: 1px solid var(--hair);
}

/* FAQ */
.faq-list { margin-top: 26px; }
.faq-item {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-md);
  margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--ink);
  font-family: 'Spectral', serif; font-size: clamp(1rem, 2.1vw, 1.08rem); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--flame); font-size: 1.4rem; font-weight: 500; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { border-bottom: 1px solid var(--hair); }
.faq-body { padding: 16px 20px; color: var(--ink-soft); }
.faq-body p { margin: 0; }

/* HIDDEN ADDRESS */
.hidden-address {
  font-size: 0; color: var(--cream); line-height: 0; position: relative; display: inline-block;
}
.hidden-address a { color: var(--cream); text-decoration: none; }

/* FOOTER — 4-col */
.site-foot {
  background: var(--ink); color: var(--cream);
  padding: 50px 0 26px; font-size: 0.9rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-col h4 {
  font-family: 'Inter Tight', sans-serif; color: var(--cream);
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 16px; font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: rgba(250,247,241,0.78); text-decoration: none; }
.foot-col a:hover { color: var(--flame); }
.foot-brand p { color: rgba(250,247,241,0.72); max-width: 320px; }
.foot-helpline {
  margin-top: 16px; padding: 13px 15px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
}
.foot-helpline strong { color: var(--cream); display: block; margin-bottom: 2px; font-size: 0.85rem; }
.foot-helpline a { color: var(--flame); font-weight: 600; }
.foot-bottom {
  padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  color: rgba(250,247,241,0.6); font-size: 0.82rem;
}

/* AFFILIATE DISCLOSURE */
.aff-disclose {
  background: var(--stone); border-left: 3px solid var(--ink-soft);
  padding: 13px 18px; font-size: 0.85rem; color: var(--ink-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 28px;
}

/* COMPARISON TABLE — with mobile scroll wrapper */
.comp-table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.93rem;
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--hair); display: table;
}
.comp-table th {
  background: var(--ink); color: var(--cream); text-align: left;
  padding: 13px 14px; font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.comp-table td {
  padding: 13px 14px; border-top: 1px solid var(--hair); color: var(--ink-soft);
  vertical-align: top;
}
.comp-table tr:nth-child(even) td { background: var(--cream); }
.comp-table td strong { color: var(--ink); }

/* Table scroll wrapper — prose tables get auto-scroll on mobile */
.prose table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
.prose table thead, .prose table tbody, .prose table tr { display: table; width: 100%; table-layout: fixed; }
@media (min-width: 720px) {
  .prose table, .prose table thead, .prose table tbody, .prose table tr { display: table; white-space: normal; }
  .prose table { table-layout: auto; }
}

/* AUTHOR BLOCK */
.author-panel {
  display: grid; grid-template-columns: 80px 1fr; gap: 18px; align-items: center;
  padding: 22px; background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-md);
  margin: 28px 0;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: 'Spectral', serif; font-size: 1.6rem; font-weight: 600; flex-shrink: 0;
}
.author-body h4 { margin: 0 0 4px; font-size: 1.1rem; }
.author-body p { margin: 0; font-size: 0.92rem; color: var(--ash); }

/* TEAM GRID for about page */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.team-member { background: #fff; padding: 24px; border: 1px solid var(--hair); border-radius: var(--radius-md); }
.team-member .author-avatar { margin-bottom: 16px; }
.team-member h3 { font-size: 1.2rem; margin: 0 0 6px; }
.team-role { color: var(--flame-dark); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 0.94rem; color: var(--ink-soft); }

/* ============= RESPONSIVE ============= */

/* Tablet / smaller desktop */
@media (max-width: 1000px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Phone landscape + tablet portrait */
@media (max-width: 900px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Menu button shrinks slightly on mobile */
  .nav-toggle-label { padding: 8px 14px; font-size: 0.84rem; }

  /* Rankings on mobile */
  .top-pick {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px 14px;
    padding: 20px 0;
  }
  .top-pick-number { grid-column: 1; grid-row: 1 / span 2; align-self: start; padding-top: 4px; }
  .top-pick-logo { grid-column: 2; grid-row: 1; width: 72px; height: 44px; }
  .top-pick-body { grid-column: 1 / -1; grid-row: 2; }
  .top-pick-cta { grid-column: 1 / -1; grid-row: 3; align-items: stretch; text-align: center; }
  .top-pick-cta .btn-primary { width: 100%; }
  .top-pick-terms { text-align: center; }
  .top-pick.is-featured { padding: 20px 16px; }

  /* Reviews */
  .review, .review:nth-child(even) { grid-template-columns: 1fr; gap: 22px; padding: 32px 0; }
  .review:nth-child(even) .review-media { order: 0; }
  .review-facts { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; }
  .review-fact-label { font-size: 0.62rem; }

  /* Misc */
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  h2 { margin-top: 1.6em; }

  /* Hero summary panel sits cleaner below text */
  .hero-summary-panel { margin-top: 8px; }
}

/* Smaller phones */
@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --gutter: 14px; }
  .section { padding: 32px 0; }
  .nav-row { padding: 10px 0; }
  .brand-mark-text { max-width: 140px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; }
  .edit-meta { font-size: 0.8rem; padding: 10px 12px; gap: 6px 10px; }
  .edit-meta .sep { display: none; }
  .summary-stat { padding: 9px 0; }
  .summary-label { min-width: 0; flex: 1 1 60%; font-size: 0.88rem; }
  .summary-value { font-size: 0.94rem; }
  .hero-summary-panel h3 { font-size: 0.7rem; }
  .top-pick-cta .btn-primary { font-size: 0.92rem; padding: 12px; }
  .review-facts { grid-template-columns: 1fr 1fr; }
  .review-media img { max-width: 130px; max-height: 50px; }
  .review-media .review-spins { font-size: 1.4rem; }
  .callout { padding: 14px 16px; font-size: 0.94rem; }
  .aff-disclose { padding: 12px 14px; font-size: 0.82rem; }
  .foot-bottom { font-size: 0.78rem; }
  .foot-bottom > div { width: 100%; }
  .team-member { padding: 20px; }
}

/* Print (rare, but tidy) */
@media print {
  .site-nav, .hero-actions, .top-pick-cta, .nav-cta { display: none !important; }
  body { background: white; }
}
