/* AI Product Reviews — editorial, cream/white, dark accent */
:root {
  --cream: #f7f4ef;
  --cream-dark: #efeae2;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --border: #ddd6cb;
  --accent: #1c2b24;
  --accent-hover: #0f1a15;
  --highlight: #c45c26;
  --ok: #2d6a4f;
  --warn: #9a3412;
  --max: 42rem;
  --wide: 68rem;
  --radius: 6px;
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--highlight); }
a:focus-visible { outline: 2px solid var(--highlight); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--highlight); font-weight: 600; }
.nav-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  align-items: center;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent); text-decoration: underline; }

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}
.narrow { max-width: var(--max); margin-left: auto; margin-right: auto; }

.hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.hero h1, h1 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}
.meta-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  line-height: 1.3;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff !important; }
.btn-secondary {
  background: transparent;
  color: var(--accent) !important;
}
.btn-secondary:hover { background: var(--cream-dark); color: var(--accent) !important; }
.btn[disabled], .btn.is-disabled, button.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin: 1.25rem 0; }
.cta-note { font-size: 0.9rem; color: var(--muted); margin: 0.5rem 0 0; }

.section { margin: 2.75rem 0; }
.section h2 {
  font-family: var(--font);
  font-size: 1.55rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.section h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}
.section p { margin: 0 0 1rem; }
.section ul, .section ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.section li { margin-bottom: 0.4rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.card h3 { margin-top: 0; font-family: var(--font); font-size: 1.15rem; }
.card .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.35rem;
  margin: 0.35rem 0;
}
.card .price small { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--highlight);
  margin-bottom: 0.35rem;
}

.table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
th, td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { background: var(--cream-dark); font-weight: 600; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
.verdict-yes { color: var(--ok); font-weight: 600; }
.verdict-maybe { color: #854d0e; font-weight: 600; }
.verdict-no { color: var(--warn); font-weight: 600; }

.callout {
  background: var(--white);
  border-left: 3px solid var(--highlight);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout.disclosure {
  border-left-color: var(--border);
  background: var(--cream-dark);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--accent);
  color: #d8ddd9;
  padding: 2.5rem 1.25rem 2rem;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 2rem;
}
.site-footer a { color: #eef2ef; }
.site-footer a:hover { color: #fff; }
.site-footer h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a8b5ad;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  max-width: var(--wide);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #a8b5ad;
  font-size: 0.85rem;
}
.footer-disclosure { margin-top: 0.75rem; max-width: 48rem; }

.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }

.review-header .score-box {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.prose h2 { margin-top: 2rem; }
.pricing-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -0.5rem;
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 0.65rem; padding: 0.5rem 0 0.25rem; }
  .hero { padding-top: 1.5rem; }
}
