@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --cream: #faf6f0;
  --ink: #1a1208;
  --rust: #c4522a;
  --gold: #d4a853;
  --muted: #7a6e62;
  --card-bg: #fff9f2;
  --border: #e8ddd0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--rust); }

nav ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: row;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--rust); }

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--muted); text-decoration: underline; }

/* UTILS */
.section { max-width: 860px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid var(--rust);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1.4rem;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; }
.muted { color: var(--muted); }

.cta-btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  margin-top: 1rem;
}
.cta-btn:hover { background: #a83f1f; transform: translateY(-1px); }

.cta-btn.outline {
  background: transparent;
  color: var(--rust);
  border: 1.5px solid var(--rust);
}
.cta-btn.outline:hover { background: var(--rust); color: #fff; }

/* PROSE */
.prose p { margin-bottom: 1.2rem; color: #3a3028; font-size: 0.97rem; line-height: 1.75; }
.prose h2 { margin: 2.5rem 0 0.8rem; }
.prose h3 { margin: 1.8rem 0 0.5rem; }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.prose ul li { margin-bottom: 0.4rem; font-size: 0.95rem; }

/* VERDICT BOX */
.verdict {
  background: var(--ink);
  color: var(--cream);
  border-radius: 1rem;
  padding: 2rem 2.2rem;
  margin: 2.5rem 0;
}
.verdict h3 { color: var(--gold); margin-bottom: 0.8rem; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.verdict p { color: #c5b9a8; font-size: 0.93rem; margin-bottom: 0; }

/* PROS CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros, .cons {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 1.4rem;
  background: var(--card-bg);
}
.pros h4 { color: #2d7a4f; margin-bottom: 0.8rem; }
.cons h4 { color: var(--rust); margin-bottom: 0.8rem; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros ul li::before { content: "✓ "; color: #2d7a4f; font-weight: 700; }
.cons ul li::before { content: "✗ "; color: var(--rust); font-weight: 700; }
.pros ul li, .cons ul li { font-size: 0.87rem; margin-bottom: 0.4rem; }

/* SCORE BAR */
.score-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.score-label { font-size: 0.85rem; width: 130px; flex-shrink: 0; }
.score-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; }
.score-fill { height: 6px; background: var(--rust); border-radius: 3px; }
.score-num { font-size: 0.82rem; color: var(--muted); width: 30px; text-align: right; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade { animation: fadeUp 0.5s ease both; }
