/* ===== OneOfBest base styles ===== */
:root {
  --navy: #12203a;
  --navy-soft: #1e3157;
  --gold: #e6a417;
  --gold-dark: #b97f0c;
  --bg: #faf9f6;
  --card: #ffffff;
  --ink: #1a1a1a;
  --muted: #5b6472;
  --line: #e7e4dc;
  --good: #1a7f4b;
  --bad: #b23c3c;
  --radius: 12px;
  --wrap: 1080px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-soft); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 2em 0 .6em; }
h3 { font-size: 1.2rem; margin: 1.6em 0 .4em; }

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 20;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--navy); text-decoration: none; letter-spacing: -.01em; }
.brand b { color: var(--gold-dark); }
.nav a { color: var(--navy); text-decoration: none; margin-left: 22px; font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--gold-dark); }
@media (max-width: 640px) { .nav a { margin-left: 14px; font-size: .85rem; } .brand { font-size: 1.15rem; } }

/* ===== Hero ===== */
.hero { background: var(--navy); color: #fff; padding: 68px 0 60px; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero p { font-size: 1.15rem; color: #c7d0e0; max-width: 52ch; }
.hero .eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; margin-bottom: 14px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; background: var(--gold); color: #201500;
  padding: 13px 24px; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: .98rem; border: none; cursor: pointer;
  transition: background .15s ease;
}
.btn:hover { background: var(--gold-dark); color: #fff; }
.btn-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ===== Category grid ===== */
.section { padding: 56px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-decoration: none; color: var(--ink); transition: transform .12s ease, box-shadow .12s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(18,32,58,.1); }
.cat-card .label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.cat-card h3 { margin: .3em 0 .2em; }
.cat-card .winner { color: var(--gold-dark); font-weight: 600; }
.cat-card.soon { opacity: .55; pointer-events: none; }

/* ===== Pick page ===== */
.pick-hero { border-bottom: 1px solid var(--line); padding: 40px 0 34px; }
.pick-hero .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--gold-dark); }
.verdict-card {
  background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--gold);
  border-radius: var(--radius); padding: 26px; margin: 28px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.verdict-card h2 { margin: 0 0 .2em; }
.verdict-card .score { font-family: var(--font-head); font-size: 2.6rem; color: var(--navy); font-weight: 600; }
.verdict-card .score small { display: block; font-size: .8rem; color: var(--muted); font-family: var(--font-body); letter-spacing: .05em; }
@media (max-width: 640px) { .verdict-card { grid-template-columns: 1fr; } }

article p, article li { color: #2a2f38; }
article { padding: 10px 0 40px; }
article ul { padding-left: 1.2em; }

table.compare { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .95rem; }
table.compare th, table.compare td { border: 1px solid var(--line); padding: 11px 13px; text-align: left; }
table.compare thead th { background: var(--navy); color: #fff; font-weight: 600; }
table.compare tbody tr:nth-child(even) { background: #f4f2ec; }
.tick { color: var(--good); font-weight: 700; }
.cross { color: var(--bad); font-weight: 700; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 20px 0; }
.pros-cons > div { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.pros-cons h3 { margin-top: 0; }
.pros-cons .pros h3 { color: var(--good); }
.pros-cons .cons h3 { color: var(--bad); }
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }

.callout { background: #f4f2ec; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 22px 0; font-size: .95rem; }
.runner-up { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 14px 0; background: var(--card); }
.runner-up h3 { margin: 0 0 .3em; }
.runner-up .tag { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--muted); }

/* ===== FAQ ===== */
.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { font-weight: 600; cursor: pointer; font-family: var(--font-head); color: var(--navy); }
.faq details[open] summary { margin-bottom: .5em; }

/* ===== Newsletter ===== */
.newsletter { background: var(--navy); color: #fff; padding: 48px 0; text-align: center; }
.newsletter h2 { color: #fff; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.newsletter input { padding: 12px 16px; border-radius: 8px; border: none; font-size: 1rem; min-width: 280px; font-family: inherit; }

/* ===== Disclosure strip ===== */
.disclosure-strip { background: #f4f2ec; border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--muted); text-align: center; padding: 8px 20px; }

/* ===== Footer ===== */
.site-footer { background: #0d182c; color: #aeb9cc; padding: 44px 0 30px; font-size: .9rem; margin-top: 40px; }
.site-footer a { color: #dde4ef; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.site-footer .brand { color: #fff; display: block; margin-bottom: 8px; }
.site-footer nav a { display: block; margin: 4px 0; }
.site-footer .fine { margin-top: 26px; padding-top: 18px; border-top: 1px solid #1c2a44; font-size: .8rem; color: #7f8ca3; }

.breadcrumb { font-size: .82rem; color: var(--muted); padding: 14px 0 0; }
.breadcrumb a { color: var(--muted); }
