/* ============================================================
   GearProof — Editorial Gear Reviews
   Inspired by outdoorgearlab.com: earthy, magazine-style
   ============================================================ */

:root {
  --gp-bg:        #fafaf7;
  --gp-paper:    #ffffff;
  --gp-ink:      #1a1a1a;
  --gp-ink-soft: #4a4a4a;
  --gp-mute:     #8a8a8a;
  --gp-line:     #e8e6e0;
  --gp-line-2:   #d4d2cc;

  --gp-brand:    #2d5e3a;     /* forest green */
  --gp-brand-d:  #1e4226;
  --gp-accent:   #c2410c;     /* burnt orange for scores/highlight */
  --gp-accent-l: #fef3e6;
  --gp-gold:     #b8860b;

  --gp-serif:    'Merriweather', 'Georgia', 'Times New Roman', serif;
  --gp-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --gp-max:      1240px;
  --gp-radius:   4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--gp-sans);
  color: var(--gp-ink);
  background: var(--gp-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--gp-serif); line-height: 1.25; color: var(--gp-ink); }

.gp-container { max-width: var(--gp-max); margin: 0 auto; padding: 0 1.5rem; }

/* ── Topbar / Header ────────────────────────────────── */
.gp-topbar {
  background: var(--gp-brand-d);
  color: #d8e8db;
  font-size: .8rem;
  padding: .45rem 0;
  text-align: center;
}

.gp-header {
  background: var(--gp-paper);
  border-bottom: 1px solid var(--gp-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.gp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.gp-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--gp-serif);
  font-size: 1.6rem;
  letter-spacing: -.01em;
  color: var(--gp-ink);
  flex-shrink: 0;
}
.gp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--gp-brand);
  color: #fff;
  border-radius: 50%;
  font-size: .85rem;
}
.gp-logo-text { font-weight: 400; }
.gp-logo-text strong { font-weight: 900; color: var(--gp-brand); }

.gp-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.gp-nav a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gp-ink);
  position: relative;
  padding: .3rem 0;
  transition: color .15s;
}
.gp-nav a:hover { color: var(--gp-brand); }
.gp-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gp-brand);
  transition: width .25s;
}
.gp-nav a:hover::after { width: 100%; }
.gp-nav-all {
  background: var(--gp-ink);
  color: #fff !important;
  padding: .55rem 1rem !important;
  border-radius: var(--gp-radius);
}
.gp-nav-all:hover { background: var(--gp-brand) !important; }
.gp-nav-all::after { display: none; }

.gp-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gp-ink);
}

/* ── Search ── */
.gp-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--gp-line-2);
  border-radius: 50%;
  cursor: pointer;
  color: var(--gp-ink);
  transition: all .15s;
  flex-shrink: 0;
  margin-left: -.5rem;
}
.gp-search-toggle:hover {
  background: var(--gp-brand);
  border-color: var(--gp-brand);
  color: #fff;
}
.gp-search-toggle.is-active {
  background: var(--gp-ink);
  border-color: var(--gp-ink);
  color: #fff;
}

.gp-search-panel {
  display: none;
  background: var(--gp-paper);
  border-bottom: 1px solid var(--gp-line);
  padding: 1.5rem 0;
  animation: gpSearchSlide .22s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}
.gp-search-panel.is-open {
  display: block;
}

.gp-search-label {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gp-brand);
  margin-bottom: .6rem;
}

.gp-search-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 2px solid var(--gp-ink);
  padding-bottom: .5rem;
}
.gp-search-icon {
  color: var(--gp-mute);
  flex-shrink: 0;
}
.gp-search-row input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.15rem;
  font-family: var(--gp-sans);
  padding: .5rem 0;
  background: transparent;
  color: var(--gp-ink);
  min-width: 0;
}
.gp-search-row input[type="search"]::placeholder {
  color: var(--gp-mute);
}
.gp-search-row input[type="search"]::-webkit-search-cancel-button { display: none; }

.gp-search-submit {
  padding: .6rem 1.25rem !important;
  font-size: .8rem !important;
  flex-shrink: 0;
}

.gp-search-close {
  background: transparent;
  border: none;
  color: var(--gp-mute);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .15s;
}
.gp-search-close:hover {
  background: var(--gp-line);
  color: var(--gp-ink);
}

.gp-search-hint {
  font-size: .8rem;
  color: var(--gp-mute);
  margin-top: .6rem;
}
.gp-search-hint kbd {
  background: var(--gp-bg);
  border: 1px solid var(--gp-line-2);
  border-radius: 3px;
  padding: 1px 6px;
  font-family: ui-monospace, monospace;
  font-size: .75rem;
  color: var(--gp-ink);
}

@keyframes gpSearchSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero (homepage) ────────────────────────────────── */
.gp-hero {
  background: var(--gp-paper);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--gp-line);
}
.gp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gp-brand);
  margin-bottom: 1rem;
}
.gp-hero-eyebrow::before, .gp-hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gp-brand);
}
.gp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  max-width: 880px;
  margin: 0 auto 1.2rem;
  text-align: center;
}
.gp-hero h1 em { font-style: italic; color: var(--gp-brand); }
.gp-hero p {
  font-size: 1.05rem;
  color: var(--gp-ink-soft);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.gp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--gp-mute);
}
.gp-hero-meta strong { color: var(--gp-ink); font-weight: 700; }
.gp-hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }

/* ── Section primitives ───────────────────────────── */
.gp-section { padding: 3.5rem 0; }
.gp-section-tinted { background: var(--gp-bg); }

.gp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gp-ink);
  gap: 1rem;
}
.gp-section-head h2 {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.gp-section-head h2 .gp-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--gp-accent-l);
  color: var(--gp-accent);
  border-radius: 50%;
  font-size: .9rem;
  font-family: var(--gp-sans);
  font-weight: 900;
}
.gp-section-head a {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gp-brand);
}
.gp-section-head a:hover { color: var(--gp-brand-d); text-decoration: underline; }

/* ── Featured Top Pick (oversized hero card) ─────── */
.gp-top-pick {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--gp-paper);
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.gp-top-pick::before {
  content: 'EDITOR\'S CHOICE';
  position: absolute;
  top: 1rem; left: -2.2rem;
  background: var(--gp-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: .35rem 2.5rem;
  transform: rotate(-35deg);
}
.gp-top-pick-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gp-top-pick-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gp-top-pick:hover .gp-top-pick-media img { transform: scale(1.03); }
.gp-top-pick-cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gp-brand);
  margin-bottom: .8rem;
}
.gp-top-pick h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.gp-top-pick h2 a { color: var(--gp-ink); }
.gp-top-pick h2 a:hover { color: var(--gp-brand); }
.gp-top-pick-excerpt {
  font-size: 1rem;
  color: var(--gp-ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.gp-top-pick-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
}
.gp-stat-block { display: flex; flex-direction: column; }
.gp-stat-block .gp-stat-val {
  font-family: var(--gp-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gp-brand);
  line-height: 1;
}
.gp-stat-block .gp-stat-lbl {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gp-mute);
  margin-top: .35rem;
}
.gp-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────── */
.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.4rem;
  border-radius: var(--gp-radius);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s;
  border: 2px solid transparent;
  font-family: var(--gp-sans);
}
.gp-btn-primary { background: var(--gp-brand); color: #fff; }
.gp-btn-primary:hover { background: var(--gp-brand-d); transform: translateY(-1px); }
.gp-btn-buy { background: var(--gp-accent); color: #fff; }
.gp-btn-buy:hover { background: #9a3309; }
.gp-btn-outline {
  background: transparent;
  color: var(--gp-ink);
  border-color: var(--gp-ink);
}
.gp-btn-outline:hover { background: var(--gp-ink); color: #fff; }

/* ── Score Badge ──────────────────────────────────── */
.gp-score {
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  background: var(--gp-accent);
  color: #fff;
  padding: .45rem .7rem;
  border-radius: var(--gp-radius);
  font-weight: 800;
  font-size: .85rem;
}
.gp-score-big {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--gp-serif);
  font-size: 1.5rem; font-weight: 900;
  background: var(--gp-accent);
  color: #fff;
  border-radius: 50%;
  position: relative;
}
.gp-score-big::after {
  content: '/10';
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: .55rem; font-weight: 700;
  opacity: .8;
}

/* ── Review Card Grid ─────────────────────────────── */
.gp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.gp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gp-card {
  background: var(--gp-paper);
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.gp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  border-color: var(--gp-line-2);
}
.gp-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.gp-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gp-card:hover .gp-card-media img { transform: scale(1.05); }
.gp-card-score-tag {
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(255,255,255,.95);
  color: var(--gp-accent);
  padding: .25rem .55rem;
  border-radius: 3px;
  font-weight: 800;
  font-size: .8rem;
  backdrop-filter: blur(4px);
}
.gp-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gp-card-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gp-brand);
  margin-bottom: .55rem;
}
.gp-card h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  letter-spacing: -.005em;
  line-height: 1.3;
}
.gp-card h3 a { color: var(--gp-ink); }
.gp-card h3 a:hover { color: var(--gp-brand); }
.gp-card p {
  font-size: .88rem;
  color: var(--gp-ink-soft);
  flex: 1;
  margin-bottom: 1rem;
}
.gp-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--gp-mute);
  padding-top: .75rem;
  border-top: 1px solid var(--gp-line);
}

/* ── Category Grid (homepage) ─────────────────────── */
.gp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gp-cat-card {
  position: relative;
  background: var(--gp-paper);
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all .2s;
  display: block;
}
.gp-cat-card:hover {
  border-color: var(--gp-brand);
  background: var(--gp-paper);
  transform: translateY(-2px);
}
.gp-cat-card .gp-cat-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: .5rem;
}
.gp-cat-card h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
  color: var(--gp-ink);
}
.gp-cat-card .gp-cat-count {
  font-size: .8rem;
  color: var(--gp-mute);
  font-weight: 500;
}

/* ── Editorial / How We Test ─────────────────────── */
.gp-trust-strip {
  background: var(--gp-paper);
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
  padding: 2.5rem 0;
}
.gp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.gp-trust-item {
  padding: 0 .5rem;
}
.gp-trust-num {
  font-family: var(--gp-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gp-brand);
  line-height: 1;
  margin-bottom: .5rem;
}
.gp-trust-lbl {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gp-ink-soft);
}

/* ── Newsletter ──────────────────────────────────── */
.gp-newsletter {
  background: var(--gp-brand-d);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.gp-newsletter h2 { color: #fff; font-size: 1.9rem; margin-bottom: .5rem; }
.gp-newsletter p { color: #c5d8c9; max-width: 540px; margin: 0 auto 1.75rem; }
.gp-nl-form {
  display: flex;
  gap: .5rem;
  max-width: 460px;
  margin: 0 auto;
}
.gp-nl-form input {
  flex: 1;
  padding: .85rem 1rem;
  border: none;
  border-radius: var(--gp-radius);
  font-size: .95rem;
  font-family: inherit;
}
.gp-nl-form button {
  background: var(--gp-accent);
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  border-radius: var(--gp-radius);
  font-weight: 800;
  font-size: .85rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: inherit;
}
.gp-nl-form button:hover { background: #9a3309; }

.gp-nl-success {
  text-align: center;
  padding: 1rem 0;
}
.gp-nl-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gp-accent);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(194,65,12,.4);
}
.gp-nl-success h2 { color: #fff; }
.gp-nl-success p {
  color: #c5d8c9;
  max-width: 480px;
  margin: .5rem auto 0;
}

@keyframes gpNlFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Footer ──────────────────────────────────────── */
.gp-footer {
  background: var(--gp-ink);
  color: #b8b8b8;
  padding: 3.5rem 0 1.5rem;
}
.gp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.gp-footer h4 {
  color: #fff;
  font-family: var(--gp-sans);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.gp-footer p { font-size: .87rem; line-height: 1.7; }
.gp-footer a {
  display: block;
  color: #b8b8b8;
  font-size: .87rem;
  margin-bottom: .4rem;
  transition: color .15s;
}
.gp-footer a:hover { color: #fff; }
.gp-footer-brand .gp-logo { color: #fff; margin-bottom: 1rem; }
.gp-footer-brand .gp-logo-text strong { color: #6db680; }
.gp-footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: #888;
}

/* ── Page template ───────────────────────────────── */
.gp-page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.gp-page-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--gp-ink);
}
.gp-page-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 .75rem;
  font-weight: 800;
}
.gp-page-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 .5rem;
  font-family: var(--gp-sans);
  font-weight: 700;
}
.gp-page-content p {
  color: var(--gp-ink-soft);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}
.gp-page-content ul, .gp-page-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}
.gp-page-content li {
  list-style: disc;
  margin-bottom: .4rem;
  color: var(--gp-ink-soft);
  line-height: 1.7;
}
.gp-page-content a {
  color: var(--gp-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gp-page-content strong { color: var(--gp-ink); font-weight: 700; }

/* ── Single Review ───────────────────────────────── */
.gp-review-header {
  background: var(--gp-paper);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--gp-line);
}
.gp-review-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gp-brand);
  margin-bottom: .8rem;
}
.gp-review-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  max-width: 920px;
}
.gp-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: .85rem;
  color: var(--gp-mute);
}
.gp-review-meta strong { color: var(--gp-ink); font-weight: 600; }
.gp-review-meta-divider { color: var(--gp-line-2); }

.gp-review-hero {
  margin: 0 0 2rem;
}
.gp-review-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.gp-review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: flex-start;
}
.gp-review-content {
  font-size: 1.04rem;
}
.gp-review-content h2 {
  font-size: 1.55rem;
  margin: 2.25rem 0 .85rem;
  font-weight: 800;
  letter-spacing: -.005em;
}
.gp-review-content h3 {
  font-size: 1.2rem;
  margin: 1.6rem 0 .6rem;
  font-family: var(--gp-sans);
  font-weight: 700;
}
.gp-review-content p {
  margin-bottom: 1.2rem;
  line-height: 1.85;
  color: #2a2a2a;
}
.gp-review-content ul { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.gp-review-content li { list-style: disc; margin-bottom: .4rem; line-height: 1.7; }
.gp-review-content a { color: var(--gp-brand); text-decoration: underline; }

/* Sticky verdict sidebar */
.gp-verdict-card {
  background: var(--gp-paper);
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  padding: 1.5rem;
  position: sticky;
  top: 96px;
}
.gp-verdict-score-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--gp-line);
}
.gp-verdict-score-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gp-mute);
  margin-bottom: .3rem;
}
.gp-verdict-score-stars { color: var(--gp-gold); font-size: 1rem; }
.gp-verdict-h {
  font-family: var(--gp-sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gp-mute);
  margin-bottom: .5rem;
}
.gp-verdict-text {
  font-size: .92rem;
  color: var(--gp-ink-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.gp-verdict-cta {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
}

/* Pros / Cons */
.gp-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--gp-bg);
  border-radius: 6px;
  border-left: 4px solid var(--gp-brand);
}
.gp-proscons h4 {
  font-family: var(--gp-sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.gp-pros h4 { color: var(--gp-brand); }
.gp-cons h4 { color: #b91c1c; }
.gp-proscons ul { padding: 0; }
.gp-proscons li {
  list-style: none;
  padding-left: 1.4rem;
  position: relative;
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .55rem;
  color: var(--gp-ink-soft);
}
.gp-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--gp-brand); font-weight: 900; }
.gp-cons li::before { content: '✕'; position: absolute; left: 0; color: #b91c1c; font-weight: 900; }

/* Rating bars */
.gp-rating-bars { margin: 1.5rem 0; }
.gp-rating-bar {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .65rem;
}
.gp-rating-bar-lbl {
  width: 130px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gp-ink);
  flex-shrink: 0;
}
.gp-rating-bar-track {
  flex: 1;
  height: 7px;
  background: var(--gp-line);
  border-radius: 999px;
  overflow: hidden;
}
.gp-rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gp-brand), var(--gp-accent));
  border-radius: 999px;
}
.gp-rating-bar-val {
  font-weight: 700;
  font-size: .82rem;
  color: var(--gp-brand);
  width: 35px;
  text-align: right;
}

/* Affiliate box */
.gp-buy-box {
  background: linear-gradient(135deg, var(--gp-accent-l), #fff);
  border: 2px solid var(--gp-accent);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  text-align: center;
}
.gp-buy-box-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gp-accent);
  margin-bottom: .5rem;
}
.gp-buy-box h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.gp-buy-box p {
  color: var(--gp-ink-soft);
  font-size: .92rem;
  margin-bottom: 1.2rem;
}

/* ── Archive ─────────────────────────────────────── */
.gp-archive-header {
  text-align: center;
  padding: 3rem 0 2.5rem;
  border-bottom: 2px solid var(--gp-ink);
  margin-bottom: 2.5rem;
}
.gp-archive-header h1 {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -.015em;
}
.gp-archive-header p {
  color: var(--gp-ink-soft);
  margin-top: .8rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.gp-pagination {
  margin: 3rem 0;
  text-align: center;
}
.gp-pagination a, .gp-pagination span {
  display: inline-block;
  padding: .55rem .85rem;
  margin: 0 .15rem;
  border: 1px solid var(--gp-line-2);
  border-radius: 3px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gp-ink);
  background: var(--gp-paper);
}
.gp-pagination a:hover { background: var(--gp-brand); color: #fff; border-color: var(--gp-brand); }
.gp-pagination .current {
  background: var(--gp-ink);
  color: #fff;
  border-color: var(--gp-ink);
}

/* ── Mobile ──────────────────────────────────────── */
@media (max-width: 960px) {
  .gp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gp-category-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .gp-top-pick { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .gp-review-layout { grid-template-columns: 1fr; }
  .gp-verdict-card { position: static; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gp-nav { display: none; }
  .gp-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--gp-paper);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gp-line);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    align-items: stretch;
  }
  .gp-nav.is-open a::after { display: none; }
  .gp-menu-toggle { display: block; }

  .gp-search-submit { padding: .55rem .8rem !important; font-size: .75rem !important; }
  .gp-search-row input[type="search"] { font-size: 1rem; }
  .gp-search-row { gap: .4rem; }

  .gp-hero { padding: 2.5rem 0; }
  .gp-hero h1 { font-size: 1.8rem; }
  .gp-section { padding: 2.5rem 0; }
  .gp-section-head { flex-wrap: wrap; }
  .gp-section-head h2 { font-size: 1.35rem; }

  .gp-proscons { grid-template-columns: 1fr; }
  .gp-top-pick-stats { gap: 1rem; }
}
@media (max-width: 480px) {
  .gp-grid-3, .gp-grid-4 { grid-template-columns: 1fr; }
  .gp-category-grid { grid-template-columns: 1fr; }
  .gp-trust-grid { grid-template-columns: 1fr; }
  .gp-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gp-nl-form { flex-direction: column; }
  .gp-nl-form button { padding: .85rem; }
  .gp-page-title { font-size: 1.7rem; }
}
