/* Companion Guide — editorial review-site styles. Plain CSS, no build step. */
:root {
  --ink: #1c1e21;
  --muted: #5a616b;
  --faint: #8a919b;
  --paper: #ffffff;
  --wash: #f6f7f8;
  --line: #e5e7eb;
  --accent: #0f766e;      /* editorial teal */
  --accent-ink: #0b5e58;
  --gold: #b45309;
  --radius: 10px;
  --max: 1080px;
  --stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--stack); font-size: 17px; line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent-ink); }
a:hover { text-decoration-thickness: 2px; }

/* Skip link */
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: .5rem 1rem; z-index: 99; }
.skip:focus { left: 0; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: var(--max); margin: 0 auto; padding: .7rem 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.brand { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.brand span { color: var(--accent); }
.main-nav { margin-left: auto; display: flex; gap: 1.1rem; flex-wrap: wrap; }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: .95rem; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.disclosure-flag { border: 1px solid var(--line); border-radius: 999px; padding: .15rem .7rem; font-size: .8rem; background: var(--wash); }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.prose { max-width: 760px; }
main { padding: 2rem 0 3rem; }

/* Hero */
.hero { background: var(--wash); border-bottom: 1px solid var(--line); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 3rem 1.25rem 2.5rem; }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--accent); margin: 0 0 .6rem; }
.hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.01em; }
.hero p.lede { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 0 1.2rem; }
.updated { font-size: .85rem; color: var(--faint); }

/* Pick cards */
.picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2rem 0; }
@media (max-width: 760px) { .picks { grid-template-columns: 1fr; } }
.pick-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; background: #fff; display: flex; flex-direction: column; gap: .6rem; }
.pick-card.top { border-top: 4px solid var(--gold); }
.pick-badge { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); }
.pick-card h3 { margin: 0; font-size: 1.35rem; }
.pick-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.shot { background: var(--wash); border: 1px dashed var(--line); border-radius: 8px; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; color: var(--faint); font-size: .85rem; text-align: center; padding: 1rem; }

/* Buttons */
.btn { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; text-decoration: none; padding: .7rem 1.4rem; border-radius: 8px; margin-top: .4rem; }
.btn:hover { background: var(--accent-ink); color: #fff; }
.btn-ghost { display: inline-block; border: 1px solid var(--line); color: var(--ink); font-weight: 600; text-decoration: none; padding: .6rem 1.2rem; border-radius: 8px; }
.btn-ghost:hover { border-color: var(--ink); }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 560px; }
table.compare th, table.compare td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.compare thead th { background: var(--wash); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
table.compare tbody th { font-weight: 700; width: 30%; }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: none; }

/* Verdict boxes */
.verdict { background: var(--wash); border-left: 4px solid var(--accent); border-radius: 0 8px 8px 0; padding: 1.1rem 1.25rem; margin: 1.5rem 0; }
.verdict h2, .verdict h3 { margin-top: 0; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }
.pros h3 { color: var(--accent-ink); margin-top: 0; }
.cons h3 { color: #9a3412; margin-top: 0; }
.pros ul, .cons ul { margin: .4rem 0; padding-left: 1.2rem; }

/* Disclosure banner */
.fineprint { font-size: .85rem; color: var(--muted); background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; margin: 1.5rem 0; }

/* FAQ */
details.faq { border: 1px solid var(--line); border-radius: 8px; padding: .9rem 1.1rem; margin: .6rem 0; }
details.faq summary { font-weight: 700; cursor: pointer; }

/* Content placeholders */
.placeholder-note { border: 2px dashed var(--gold); background: #fffbeb; border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.5rem 0; font-size: .95rem; }
.placeholder-note strong { color: var(--gold); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--wash); margin-top: 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.site-footer h4 { margin: 0 0 .6rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: .3rem 0; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--ink); }
.copyright { max-width: var(--max); margin: 0 auto; padding: 1rem 1.25rem 2rem; font-size: .82rem; color: var(--faint); }

/* Breadcrumbs */
.crumbs { font-size: .85rem; color: var(--faint); margin-bottom: 1rem; }
.crumbs a { color: var(--faint); }

/* TOC-ish review meta */
.review-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: .9rem; color: var(--muted); margin: .6rem 0 1.4rem; }
h1 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; letter-spacing: -0.01em; }
h2 { margin-top: 2.2rem; }
hr.soft { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }
