:root {
  --bg: #f6f1ea;
  --surface: #fffdf9;
  --surface-soft: #faf5ee;
  --surface-tint: #f1e9de;
  --text: #2d241c;
  --muted: #6f6257;
  --border: #e7dccd;
  --accent: #5e7f67;
  --accent-hover: #4b6752;
  --accent-soft: #e6eee7;
  --accent-deep: #38543f;
  --warm: #b97b52;
  --warm-soft: #f3e2d2;
  --shadow: 0 10px 30px rgba(66, 43, 26, 0.07);
  --shadow-lg: 0 18px 50px rgba(66, 43, 26, 0.10);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 760px;
  --max-wide: 1120px;
  --font: Georgia, "Times New Roman", serif;
  --ui: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ui);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-hover); }
img, svg { max-width: 100%; display: block; height: auto; }

.wrap { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }
.wrap--wide { width: min(100% - 1.5rem, var(--max-wide)); margin-inline: auto; }

.site-header {
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.95rem 0;
  width: min(100% - 1.5rem, var(--max-wide));
  margin-inline: auto;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo span { color: var(--warm); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover { color: var(--accent-deep); }

.disclosure-banner {
  background: #f6ead9;
  border-bottom: 1px solid #e7d2b3;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.disclosure-banner strong { color: var(--text); }

main { padding-bottom: 4rem; }
section { position: relative; }

.hero { padding: 2.4rem 0 2rem; }
.hero-editorial {
  background: linear-gradient(180deg, #faf4ec 0%, #f7f0e7 100%);
  border-bottom: 1px solid var(--border);
}
.hero-editorial__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-editorial__content { padding: 0.25rem 0; }
.hero-editorial__visual { position: relative; }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm);
  font-weight: 700;
}

.page-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: #2f251c;
}
.page-title--xl { max-width: 12ch; }

.lede {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}
.lede--warm { max-width: 44rem; }

.verdict {
  background: #fff9f2;
  border: 1px solid #efdcc3;
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.verdict--warm {
  border-left: 5px solid var(--warm);
}
.verdict__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--warm);
}
.verdict p:last-child { margin-bottom: 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.1rem;
}

.scene-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(231,220,205,0.85);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.floating-note {
  position: absolute;
  right: -0.5rem;
  bottom: 1rem;
  width: min(320px, 86%);
  background: rgba(255,253,249,0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.floating-note__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  font-weight: 800;
}
.floating-note p { margin: 0; font-size: 0.95rem; color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: none;
  text-decoration: none !important;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(94, 127, 103, 0.18);
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(94, 127, 103, 0.22);
}
.btn--secondary {
  background: transparent;
  color: var(--accent-deep) !important;
  border: 1.5px solid #c9d9ce;
  box-shadow: none;
}
.btn--secondary:hover { background: #f1f6f2; box-shadow: none; }
.btn--lg { width: 100%; max-width: 420px; }

.cta-note {
  margin-top: 0.7rem !important;
  margin-bottom: 0 !important;
  font-size: 0.86rem !important;
  color: var(--muted);
}
.cta-note--left { text-align: left; }

.article-body { padding-top: 0; }
.prose {
  font-size: 1.06rem;
}
.prose h2,
.prose h3,
.page-title {
  font-family: var(--font);
}
.prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.prose h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 0.6rem;
}
.prose p { margin: 0 0 1rem; }
.prose section, section .prose { margin-bottom: 0; }

.section-soft {
  padding: 1.2rem 0 0;
}
.section-soft--cream { padding: 3rem 0; background: transparent; }

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  transform: translateY(-1.6rem);
}
.facts-strip__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1rem;
  box-shadow: var(--shadow);
}
.facts-strip__item strong {
  display: block;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm);
  margin-bottom: 0.3rem;
}
.facts-strip__item span { color: var(--text); font-weight: 600; }

.split-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.story-card,
.quote-panel,
.glance-card,
.feature-row,
.policy-card,
.cta-box,
.specs-wrap,
.pros,
.cons,
.review-list li,
.callout,
.compare-note,
.editor-note,
.who-box,
.card,
.legal-card,
.aff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.story-card__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--warm-soft);
  color: var(--warm);
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
}
.story-card p { margin: 0; color: var(--muted); }
.quote-panel {
  padding: 1.2rem;
  background: #f4efe6;
}
.quote-panel p {
  margin: 0 0 0.7rem;
  font-family: var(--font);
  font-size: 1.2rem;
  line-height: 1.5;
}
.quote-panel span { color: var(--muted); font-size: 0.95rem; }

.glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.glance-card {
  padding: 1.25rem 1.3rem;
}
.glance-card--yes { border-top: 4px solid var(--accent); }
.glance-card--no { border-top: 4px solid var(--warm); }
.clean-list { margin: 0; padding-left: 1.1rem; }
.clean-list li { margin-bottom: 0.55rem; }

.feature-rows {
  display: grid;
  gap: 0.85rem;
}
.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  align-items: start;
}
.feature-row__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #efe7dc;
  color: var(--warm);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.feature-row p:last-child { margin-bottom: 0; color: var(--muted); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pros, .cons { padding: 1.15rem 1.2rem; }
.pros { border-top: 4px solid var(--accent); }
.cons { border-top: 4px solid var(--warm); }
.pros h3, .cons h3 { margin-top: 0; }
.pros ul, .cons ul { margin: 0; padding-left: 1.1rem; }
.pros li, .cons li { margin-bottom: 0.5rem; }

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 1rem 0 1.2rem;
}
.policy-card { padding: 1.1rem 1rem; text-align: center; }
.policy-card strong {
  display: block;
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--accent-deep);
  margin-bottom: 0.2rem;
}
.policy-card span { font-size: 0.88rem; color: var(--muted); }

.specs-wrap {
  overflow-x: auto;
  margin: 1rem 0 1rem;
}
.specs {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}
.specs th,
.specs td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.specs th {
  width: 34%;
  color: var(--muted);
  font-weight: 700;
  background: #fcf8f3;
}
.specs td { font-weight: 500; }
.specs tr:last-child th,
.specs tr:last-child td { border-bottom: none; }

.cta-box {
  padding: 1.6rem 1.4rem;
  text-align: center;
  margin: 1.5rem 0;
}
.cta-box--warm {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2e9 100%);
}
.cta-heading {
  font-family: var(--font);
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.cta-box p { color: var(--muted); }
.affiliate-line {
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1.4rem;
}
.as-of {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* General pages and shared components */
.page-hero, .hero--home {
  padding: 3rem 0;
  background: linear-gradient(180deg, #faf4ec 0%, #f3ebdf 100%);
  border-bottom: 1px solid var(--border);
}
.hero--home .page-title,
.page-hero .page-title { max-width: 14ch; }
.hero--home .lede { max-width: 50rem; }

.card-grid, .review-list {
  margin-top: 1.2rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.card {
  display: block;
  padding: 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #d8c7b2;
  color: inherit;
}
.card h3 { margin: 0 0 0.45rem; }
.card p { margin: 0; color: var(--muted); }
.card-cta { display: inline-block; margin-top: 0.8rem; font-weight: 700; color: var(--accent-deep); }

.review-list {
  list-style: none;
  padding: 0;
}
.review-list li {
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
}
.review-list h3 { margin: 0 0 0.35rem; }
.review-list .meta { color: var(--muted); margin: 0; }

.article-body > section { padding: 2.2rem 0; }

.legal-meta { color: var(--muted); font-size: 0.92rem; }

.site-footer {
  background: #2b241e;
  color: #ddd2c4;
  padding: 2.8rem 0 2.6rem;
  font-size: 0.92rem;
}
.site-footer__inner {
  width: min(100% - 1.5rem, var(--max-wide));
  margin-inline: auto;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-bottom: 1rem;
}
.site-footer a { color: #ead9c8; }
.site-footer a:hover { color: #fff7ef; }
.footer-brand {
  margin: 0 0 0.6rem !important;
  color: #fff7ef;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.9rem;
  margin-top: 1rem;
  color: #c7baa9;
  font-size: 0.85rem;
}
.site-footer p { margin: 0 0 0.35rem; }

@media (max-width: 920px) {
  .hero-editorial__grid,
  .split-feature,
  .glance-grid,
  .pros-cons,
  .policy-grid,
  .facts-strip {
    grid-template-columns: 1fr;
  }
  .floating-note {
    position: static;
    width: auto;
    margin-top: 0.9rem;
  }
  .page-title--xl { max-width: none; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .site-header__inner { align-items: flex-start; }
  .nav { gap: 0.35rem 0.8rem; }
  .hero { padding-top: 1.7rem; }
  .facts-strip { transform: none; }
  .article-body > section { padding: 1.8rem 0; }
  .btn--lg { width: 100%; }
}

/* Subtle affiliate disclosure used on editorial review pages */
.disclosure-note {
  margin: -0.1rem 0 1.15rem;
  padding: 0.62rem 0.78rem;
  border-left: 3px solid #d7c3aa;
  background: rgba(255, 253, 249, 0.58);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  border-radius: 0 10px 10px 0;
}
.disclosure-note strong {
  color: var(--text);
  font-weight: 700;
}
.disclosure-note a {
  white-space: nowrap;
}
