@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --black: #111009;
  --espresso: #2a1a0e;
  --roast: #4d2e14;
  --caramel: #c07c2a;
  --gold: #e8a83a;
  --cream: #faf8f4;
  --warm: #f2ece0;
  --border: #ddd5c0;
  --muted: #7a6a52;
  --text: #1e150a;
  --green: #2d6a4f;
  --red: #8b2a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--espresso);
  padding: 0 3rem;
  display: flex; justify-content: space-between; align-items: center;
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  font-family: 'Libre Baskerville', serif;
  color: var(--gold); font-size: 1.1rem;
  text-decoration: none; letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-buy {
  background: var(--caramel); color: white;
  padding: 0.45rem 1.2rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-buy:hover { background: var(--gold); color: var(--espresso); }

/* FOOTER */
footer {
  background: var(--espresso); color: rgba(255,255,255,0.35);
  padding: 3rem; text-align: center; font-size: 0.78rem; line-height: 2;
  margin-top: 6rem;
}
footer a { color: rgba(255,255,255,0.35); text-decoration: underline; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 0.9rem 2rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--caramel); color: white; }
.btn-gold:hover { background: var(--gold); color: var(--espresso); }
.btn-outline { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: white; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }

/* CARDS */
.card {
  background: white; border: 1px solid var(--border);
  padding: 2rem; transition: all 0.25s;
}
.card:hover { border-color: var(--caramel); transform: translateY(-2px); }

/* SCORES */
.score-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.7rem; font-size: 0.85rem; }
.score-bar-wrap { width: 100px; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.score-bar { height: 100%; background: var(--caramel); border-radius: 3px; }
.score-label { color: var(--muted); min-width: 110px; }

/* PROS CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pros { background: #f0f7f3; border-left: 3px solid var(--green); padding: 1.5rem; }
.cons { background: #fdf4f2; border-left: 3px solid var(--red); padding: 1.5rem; }
.pros h3 { color: var(--green); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.cons h3 { color: var(--red); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pros li { font-size: 0.88rem; }
.pros li::before { content: '✓  '; color: var(--green); font-weight: 600; }
.cons li { font-size: 0.88rem; }
.cons li::before { content: '✗  '; color: var(--red); font-weight: 600; }

/* CTA BOX */
.cta-box {
  background: var(--espresso); color: white;
  padding: 3.5rem 2rem; text-align: center; margin: 4rem 0;
}
.cta-box h2 { font-family: 'Libre Baskerville', serif; font-size: 1.8rem; margin-bottom: 0.8rem; }
.cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-size: 0.95rem; }
.cta-price { font-size: 1.2rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; }
.cta-note { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-top: 0.8rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.2rem 0; }
.faq-q { font-weight: 500; font-size: 0.95rem; color: var(--roast); margin-bottom: 0.5rem; }
.faq-a { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 1.5rem 0; }
.compare-table th { background: var(--espresso); color: white; padding: 0.8rem 1rem; text-align: left; font-weight: 500; }
.compare-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.compare-table tr:hover td { background: var(--warm); }
.compare-table .hl td { background: rgba(192,124,42,0.07); color: var(--text); font-weight: 500; }
.check { color: var(--green); font-weight: 600; }
.cross { color: var(--red); }

/* RATING STARS */
.stars { color: var(--gold); letter-spacing: 0.05em; }

/* SECTION */
.wrap { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.wrap h2 { font-family: 'Libre Baskerville', serif; font-size: 1.8rem; color: var(--roast); margin-bottom: 1.2rem; }
.wrap h3 { font-family: 'Libre Baskerville', serif; font-size: 1.2rem; color: var(--roast); margin: 1.8rem 0 0.8rem; }
.wrap p { color: var(--muted); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.8; }
.wrap p strong { color: var(--text); font-weight: 500; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* BADGE */
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; margin-bottom: 1rem;
}
.badge-gold { background: var(--gold); color: var(--espresso); }
.badge-dark { background: var(--espresso); color: var(--gold); }

/* SPECS GRID */
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin: 2rem 0; }
.spec-cell { background: var(--warm); padding: 1.2rem; text-align: center; }
.spec-val { font-family: 'Libre Baskerville', serif; font-size: 1.6rem; color: var(--roast); }
.spec-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* HERO - page reviews */
.page-hero {
  background: var(--espresso); color: white;
  padding: 4rem 2rem 3rem; text-align: center;
}
.page-hero h1 { font-family: 'Libre Baskerville', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; line-height: 1.2; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto 1.5rem; }
.page-hero .rating { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.page-hero .rating span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.affiliate-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.8rem; }

@media (max-width: 680px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .wrap { padding: 2.5rem 1.2rem; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.2rem; }
}
