/* === VARIABLES === */
:root {
  --espresso: #1a0f07;
  --dark-roast: #2d1a0d;
  --medium-roast: #4a2c17;
  --sienna: #c4622d;
  --sienna-light: #d9794a;
  --cream: #f5f0e8;
  --sand: #e8dfd3;
  --warm-white: #faf8f5;
  --text-dark: #1a0f07;
  --text-mid: #6b4a32;
  --text-light: #9c7a5c;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

::selection {
  background: var(--sienna);
  color: var(--cream);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--sand);
  background: var(--warm-white);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--espresso);
  letter-spacing: -0.03em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--espresso); }

/* === HERO === */
.hero {
  background: var(--espresso);
  color: var(--cream);
  padding: 5rem 2rem 6rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--cream);
  max-width: 16ch;
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--sand);
  max-width: 56ch;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  border-top: 1px solid rgba(245,240,232,0.15);
  padding-top: 2.5rem;
}

.stat {
  padding: 0 3rem 0 0;
}

.stat + .stat {
  padding-left: 3rem;
  border-left: 1px solid rgba(245,240,232,0.15);
}

.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--sienna-light);
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.5;
}

/* === HOW === */
.how {
  background: var(--warm-white);
  padding: 6rem 2rem;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--sand);
  padding-top: 3rem;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--sienna);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--espresso);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* === APPROACH === */
.approach {
  background: var(--cream);
  padding: 6rem 2rem;
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.approach-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 1rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.criteria {
  background: var(--warm-white);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--sand);
}

.criteria-icon {
  color: var(--sienna);
  margin-bottom: 0.75rem;
}

.criteria h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.criteria p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* === REVIEWS === */
.reviews {
  background: var(--warm-white);
  padding: 6rem 2rem;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-desc {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
}

.card-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--espresso);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex-grow: 1;
}

.card-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  padding-top: 0.5rem;
  border-top: 1px solid var(--sand);
}

.review-card-link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

.review-card-link:hover {
  box-shadow: 0 4px 20px rgba(26,15,7,0.1);
  transform: translateY(-2px);
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--medium-roast);
  color: var(--cream);
  padding: 6rem 2rem;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna-light);
  margin-bottom: 2rem;
}

.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 400;
}

.philosophy-body {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  max-width: 65ch;
  margin: 0 auto;
}

/* === CLOSING === */
.closing {
  background: var(--espresso);
  color: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--sand);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--espresso);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

/* === REVIEW PAGE === */
.review-header {
  background: var(--espresso);
  color: var(--cream);
  padding: 4rem 2rem 3.5rem;
}

.review-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb-link {
  font-size: 0.82rem;
  color: var(--sienna-light);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
}

.breadcrumb-link:hover { text-decoration: underline; }

.review-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}

.review-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.review-subtitle {
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 2rem;
  max-width: 55ch;
  line-height: 1.6;
}

.review-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-grade-badge {
  background: var(--sienna);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

.review-meta-text {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* HERO IMAGE */
.review-hero-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.review-hero-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* VERDICT */
.verdict-section {
  background: var(--cream);
  padding: 4rem 2rem;
}

.verdict-inner {
  max-width: 760px;
  margin: 0 auto;
}

.verdict-box {
  padding: 2rem;
  border-radius: 4px;
  border: 2px solid;
  margin-bottom: 1.25rem;
}

.verdict-buy {
  background: #e8f5e9;
  border-color: #2e7d32;
}

.verdict-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2e7d32;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.verdict-text {
  font-size: 1rem;
  color: #1b5e20;
  line-height: 1.7;
}

.verdict-but-nots {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* TABLE OF CONTENTS */
.toc {
  background: var(--warm-white);
  padding: 2rem;
  border-bottom: 1px solid var(--sand);
}

.toc-inner {
  max-width: 760px;
  margin: 0 auto;
}

.toc-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li a {
  font-size: 0.85rem;
  color: var(--sienna);
  text-decoration: none;
  font-weight: 500;
}

.toc-list li a:hover { text-decoration: underline; }

/* BODY */
.review-body {
  padding: 4rem 2rem;
  background: var(--warm-white);
}

.review-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

.review-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.review-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-h2 {
  font-size: 1.5rem;
  color: var(--espresso);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}

/* SPECS TABLE */
.specs-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table th {
  text-align: left;
  padding: 0.6rem 1rem 0.6rem 0;
  color: var(--text-light);
  font-weight: 500;
  width: 45%;
  border-bottom: 1px solid var(--sand);
}

.specs-table td {
  padding: 0.6rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--sand);
}

/* AMAZON CTA */
.amazon-cta {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  text-align: center;
}

.amazon-btn {
  display: inline-block;
  background: var(--sienna);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.amazon-btn:hover { background: var(--sienna-light); }

.amazon-cta-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* CALLOUT */
.callout-box {
  background: var(--cream);
  border-left: 3px solid var(--sienna);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 3px 3px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* PROS & CONS */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pros-cons-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--espresso);
}

.pros-cons-heading svg { color: var(--sienna); }

.pros-list, .cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pros-list li, .cons-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: 700;
}

.cons-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c62828;
  font-weight: 700;
}

/* WHO IT'S FOR */
.who-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.who-card {
  padding: 1.75rem;
  border-radius: 4px;
  border: 1px solid;
}

.who-yes {
  background: #f1f8e9;
  border-color: #a5d6a7;
}

.who-no {
  background: #fce8e6;
  border-color: #ef9a9a;
}

.who-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.who-yes .who-card-label { color: #2e7d32; }
.who-no .who-card-label { color: #c62828; }

.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.who-card ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding-left: 1rem;
}

.who-yes ul li::before { content: '→ '; color: #2e7d32; }
.who-no ul li::before { content: '→ '; color: #c62828; }

/* COMPARISON TABLE */
.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.comparison-table th {
  text-align: left;
  padding: 0.65rem 1rem 0.65rem 0;
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--espresso);
  font-family: 'DM Sans', sans-serif;
}

.comparison-table th:not(:first-child) {
  color: var(--espresso);
  font-size: 0.82rem;
}

.comparison-table td {
  padding: 0.6rem 1rem 0.6rem 0;
  color: var(--text-mid);
  border-bottom: 1px solid var(--sand);
  vertical-align: top;
}

.comparison-table tr:last-child td { border-bottom: none; }

/* FINAL VERDICT */
.final-verdict {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--sand);
  margin-top: 3rem;
}

.final-verdict .review-h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.verdict-skip-box {
  background: #fff3e0;
  border: 1px solid #ffcc80;
  padding: 1.25rem;
  border-radius: 3px;
  font-size: 0.9rem;
  color: #e65100;
  line-height: 1.65;
  margin-top: 1.5rem;
}

/* FAQ */
.review-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.review-faq .review-h2 { border-top: none; margin-top: 0; }

.faq-item {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--sand);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 1rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE === */
  .approach-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .review-cards { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat + .stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(245,240,232,0.15); padding-top: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 3.5rem 1.25rem 4rem; }
  .how, .approach, .reviews, .philosophy, .closing { padding: 4rem 1.25rem; }
  .navbar { padding: 1rem 1.25rem; }
  .nav-tagline { display: none; }
  .review-header { padding: 3rem 1.25rem 2.5rem; }
  .review-hero-image { height: 240px; }
  .verdict-section, .review-body { padding: 3rem 1.25rem; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .review-hero-image-wrap { padding: 0 1.25rem; }
}